/* ── TOKENS ──────────────────────────────────────────── */
:root {
  --brand-orange:       #D64E1A;
  --brand-orange-light: #E8693A;
  --brand-dark:         #140E0B;
  --brand-charcoal:     #1E1612;
  --brand-mid:          #2C1F18;
  --brand-warm:         #F5F0EA;
  --brand-warm-dim:     rgba(245,240,234,0.6);
  --brand-warm-ghost:   rgba(245,240,234,0.12);
  --font-display:       'Playfair Display', Georgia, serif;
  --font-body:          'IBM Plex Sans', system-ui, sans-serif;
  --font-mono:          'IBM Plex Mono', monospace;
  --max-w:              1200px;
  --radius:             4px;
  --radius-lg:          8px;
  --transition:         0.2s ease;
}

/* ── RESET ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: #FAF8F5;
  color: #1A1210;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── SHARED ──────────────────────────────────────────── */
.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-orange);
  margin-bottom: 1.25rem;
}
.eyebrow-rule {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--brand-orange);
  flex-shrink: 0;
}
.section-eyebrow.centered { justify-content: center; }
.accent { color: var(--brand-orange); }

/* ── NAV ─────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--brand-dark);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--brand-warm);
  white-space: nowrap;
}
.nav-links {
  display: flex;
  gap: 1.75rem;
}
.nav-links a {
  font-size: 13px;
  color: rgba(245,240,234,0.5);
  transition: color var(--transition);
  white-space: nowrap;
}
.nav-links a:hover { color: var(--brand-warm); }
.nav-cta {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--brand-orange);
  color: var(--brand-warm);
  padding: 8px 16px;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: background var(--transition);
}
.nav-cta:hover { background: var(--brand-orange-light); }
.nav-burger {
  display: none;
  background: none;
  border: none;
  color: var(--brand-warm);
  font-size: 20px;
  cursor: pointer;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--brand-charcoal);
  padding: 1rem 2rem;
  gap: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 14px;
  color: rgba(245,240,234,0.65);
  padding: 0.25rem 0;
}

/* ── HERO ────────────────────────────────────────────── */
.hero {
  background: var(--brand-dark);
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid var(--brand-orange);
}
.hero-bg-text {
  position: absolute;
  bottom: -0.1em;
  right: -0.05em;
  font-family: var(--font-display);
  font-size: clamp(120px, 22vw, 280px);
  font-weight: 700;
  color: rgba(255,255,255,0.025);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.02em;
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 5rem 2rem 4rem;
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-orange);
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--brand-warm);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}
.hero-deck {
  font-size: 16px;
  font-weight: 300;
  color: var(--brand-warm-dim);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 2rem;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}
.btn-primary {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--brand-orange);
  color: var(--brand-warm);
  padding: 12px 24px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background var(--transition);
  display: inline-block;
}
.btn-primary:hover { background: var(--brand-orange-light); }
.btn-outline {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,240,234,0.65);
  padding: 11px 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(245,240,234,0.2);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
  display: inline-block;
}
.btn-outline:hover {
  color: var(--brand-warm);
  border-color: rgba(245,240,234,0.45);
}
.btn-outline-dark {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-orange);
  padding: 10px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--brand-orange);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
  display: inline-block;
  margin-top: 1.5rem;
}
.btn-outline-dark:hover {
  background: var(--brand-orange);
  color: var(--brand-warm);
}
.hero-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.badge {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: var(--radius);
  background: rgba(214, 78, 26, 0.15);
  color: var(--brand-orange-light);
  border: 1px solid rgba(214, 78, 26, 0.3);
}
.badge.dim {
  background: var(--brand-warm-ghost);
  color: rgba(245,240,234,0.4);
  border-color: rgba(245,240,234,0.1);
}

/* cover */
.hero-cover-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.hero-cover-frame {
  position: relative;
}
.hero-cover-frame::before {
  content: '';
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(214,78,26,0.25);
  border-radius: var(--radius);
  pointer-events: none;
}
.hero-cover-img {
  width: 210px;
  height: 315px;
  object-fit: cover;
  border-radius: var(--radius);
  border-left: 3px solid var(--brand-orange);
  display: block;
}
.cover-caption {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(245,240,234,0.4);
  letter-spacing: 0.08em;
  text-align: center;
  line-height: 1.6;
}
.cover-caption span { color: rgba(245,240,234,0.25); }

/* ── TICKER ──────────────────────────────────────────── */
.ticker {
  background: var(--brand-charcoal);
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
}
.ticker-inner {
  display: flex;
  gap: 3rem;
  padding: 0 2rem;
  flex-wrap: wrap;
}
.tick {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.tick-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--brand-orange);
  flex-shrink: 0;
}
.tick span:last-child {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: rgba(245,240,234,0.4);
  text-transform: uppercase;
}

/* ── STATS ───────────────────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid #E8E2DA;
}
.stat-card {
  padding: 2rem 1.75rem;
  border-right: 1px solid #E8E2DA;
}
.stat-card:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--brand-orange);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-num span { font-size: 24px; }
.stat-label {
  font-size: 12px;
  color: #6B5E55;
  line-height: 1.4;
}

/* ── TWO HEISTS ──────────────────────────────────────── */
.two-heists {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  border-bottom: 1px solid #E8E2DA;
}
.heist-divider { background: #E8E2DA; }
.heist-block { padding: 3rem 2.5rem; }
.heist-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8A7B72;
  margin-bottom: 1rem;
}
.heist-tag.accent-tag { color: var(--brand-orange); }
.heist-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: #1A1210;
  margin-bottom: 1rem;
  line-height: 1.3;
}
.heist-body {
  font-size: 14px;
  color: #4A3D37;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.heist-works {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.work-pill {
  font-size: 11px;
  color: #6B5E55;
  background: #F0EAE3;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid #DDD5CB;
}
.heist-parallels { display: flex; flex-direction: column; gap: 0.75rem; }
.parallel-item {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 13px;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #EEE8E2;
}
.parallel-item:last-child { border-bottom: none; }
.pi-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8A7B72;
  width: 100px;
  flex-shrink: 0;
}
.pi-val { color: #2C1F18; font-size: 13px; }

/* ── TIMELINE ────────────────────────────────────────── */
.timeline-section {
  padding: 4rem 0;
  border-bottom: 1px solid #E8E2DA;
  background: #FDFAF7;
}
.tl-header {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem 2rem;
}
.timeline {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: calc(2rem + 82px);
  top: 0;
  bottom: 0;
  width: 1px;
  background: #D8D0C8;
}
.tl-item {
  display: flex;
  gap: 0;
  padding: 0 0 2.5rem;
  position: relative;
}
.tl-item:last-child { padding-bottom: 0; }
.tl-meta {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  width: 100px;
  flex-shrink: 0;
  padding-top: 4px;
}
.tl-year {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: #8A7B72;
  text-align: right;
  width: 68px;
  flex-shrink: 0;
  line-height: 1.4;
}
.tl-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  margin-top: 3px;
}
.tl-dot.muted { background: #C8BFB8; }
.tl-dot.accent { background: var(--brand-orange); }
.tl-dot.accent.large { width: 14px; height: 14px; margin-top: 1px; }
.tl-content { padding-left: 1.5rem; }
.tl-content h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: #1A1210;
  margin-bottom: 0.5rem;
}
.tl-content p {
  font-size: 13px;
  color: #5A4D46;
  line-height: 1.75;
}

/* ── AUTHOR ──────────────────────────────────────────── */
.author-section {
  background: var(--brand-dark);
  padding: 5rem 2rem;
  border-bottom: 2px solid var(--brand-orange);
}
.author-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.author-name {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--brand-warm);
  margin-bottom: 1.25rem;
}
.author-bio {
  font-size: 14px;
  color: var(--brand-warm-dim);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.author-quote-wrap { padding-top: 1rem; }
.author-quote {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
  color: var(--brand-warm);
  line-height: 1.65;
  padding-left: 1.5rem;
  border-left: 3px solid var(--brand-orange);
}
.author-quote cite {
  display: block;
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--brand-orange);
  margin-top: 1.25rem;
}

/* ── EMAIL ───────────────────────────────────────────── */
.email-section {
  background: var(--brand-charcoal);
  padding: 2.5rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.email-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.email-title {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--brand-warm);
  margin-bottom: 4px;
}
.email-sub {
  font-size: 13px;
  color: rgba(245,240,234,0.4);
}
.email-form {
  display: flex;
  gap: 8px;
}
.email-form input {
  font-family: var(--font-body);
  font-size: 13px;
  padding: 10px 14px;
  border: 1px solid rgba(245,240,234,0.15);
  border-radius: var(--radius);
  background: rgba(245,240,234,0.07);
  color: var(--brand-warm);
  width: 220px;
  outline: none;
  transition: border-color var(--transition);
}
.email-form input::placeholder { color: rgba(245,240,234,0.28); }
.email-form input:focus { border-color: rgba(245,240,234,0.35); }
.email-form button {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--brand-orange);
  color: var(--brand-warm);
  padding: 10px 18px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition);
}
.email-form button:hover { background: var(--brand-orange-light); }

/* ── BUY ─────────────────────────────────────────────── */
.buy-section {
  padding: 4rem 2rem;
  border-bottom: 1px solid #E8E2DA;
}
.buy-header {
  max-width: var(--max-w);
  margin: 0 auto;
  margin-bottom: 2.5rem;
}
.buy-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.buy-card {
  padding: 1.75rem 1.5rem;
  border: 1px solid #DDD5CB;
  border-radius: var(--radius-lg);
  background: #FFF;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  cursor: pointer;
}
.buy-card:hover {
  border-color: var(--brand-orange);
  transform: translateY(-2px);
}
.buy-store {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1A1210;
  font-weight: 500;
}
.buy-format {
  font-size: 12px;
  color: #8A7B72;
}
.buy-arrow {
  margin-top: auto;
  padding-top: 1rem;
  font-size: 18px;
  color: var(--brand-orange);
}
.buy-signed {
  border-color: rgba(214,78,26,0.3);
  background: rgba(214,78,26,0.03);
}

/* ── FOOTER ──────────────────────────────────────────── */
.footer {
  background: var(--brand-dark);
  padding: 2rem;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-logo {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(245,240,234,0.3);
}
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a {
  font-size: 12px;
  color: rgba(245,240,234,0.3);
  transition: color var(--transition);
}
.footer-links a:hover { color: rgba(245,240,234,0.6); }
.footer-copy {
  font-size: 11px;
  color: rgba(245,240,234,0.2);
}

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: block; }
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; padding: 3rem 1.5rem; }
  .hero-cover-wrap { order: -1; }
  .hero-cover-img { width: 160px; height: 240px; }
  .hero-bg-text { font-size: 120px; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat-card:nth-child(2) { border-right: none; }
  .stat-card:nth-child(3), .stat-card:nth-child(4) { border-top: 1px solid #E8E2DA; }
  .two-heists { grid-template-columns: 1fr; }
  .heist-divider { height: 1px; width: 100%; }
  .heist-block { padding: 2rem 1.5rem; }
  .timeline::before { left: calc(1.5rem + 82px); }
  .author-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .buy-grid { grid-template-columns: 1fr 1fr; }
  .email-inner { flex-direction: column; align-items: flex-start; }
  .email-form { width: 100%; }
  .email-form input { flex: 1; width: auto; }
}

@media (max-width: 560px) {
  .stats-row { grid-template-columns: 1fr 1fr; }
  .buy-grid { grid-template-columns: 1fr 1fr; }
  .ticker-inner { gap: 1.5rem; }
  .tl-year { font-size: 9px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
}
