:root {
  --bg: #1a1a2e;
  --bg-alt: #16162a;
  --fg: #f5f0e8;
  --fg-muted: #a0998e;
  --accent: #c8956c;
  --accent-dim: rgba(200, 149, 108, 0.15);
  --border: rgba(245, 240, 232, 0.1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 60px;
  border-bottom: 1px solid var(--border);
}

.nav-brand .brand-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--fg);
}

.nav-meta {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* Hero */
.hero {
  padding: 120px 60px 100px;
  max-width: 900px;
}

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
  font-weight: 500;
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--fg);
  margin-bottom: 40px;
  letter-spacing: -0.01em;
}

.hero-headline em {
  font-style: italic;
  color: var(--accent);
}

.hero-lede {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 600px;
  line-height: 1.7;
}

/* Stats */
.stats {
  padding: 0 60px 80px;
}

.stats-grid {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 860px;
}

.stat-item {
  flex: 1;
  padding: 32px 40px;
  border: 1px solid var(--border);
}

.stat-item:first-child {
  border-right: none;
}

.stat-item:last-child {
  border-left: none;
}

.stat-item:only-child {
  border: 1px solid var(--border);
}

/* Only-child selector won't work well for 3-item grid without JS, use negative margin approach */
.stats-grid .stat-item + .stat-item {
  margin-left: -1px;
}

.stat-number {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 6px;
}

.stat-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.stat-divider { display: none; }

/* Manifesto */
.manifesto {
  background: var(--bg-alt);
  padding: 100px 60px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.manifesto-inner {
  max-width: 760px;
}

.manifesto-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 40px;
}

.manifesto-body p {
  font-size: 1.05rem;
  color: var(--fg-muted);
  margin-bottom: 24px;
  line-height: 1.75;
}

.manifesto-body p:last-child {
  margin-bottom: 0;
  color: var(--accent);
  font-weight: 400;
}

/* How */
.how {
  padding: 100px 60px;
  max-width: 900px;
}

.how-header {
  margin-bottom: 60px;
}

.how-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.step:first-child {
  border-top: 1px solid var(--border);
}

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--accent);
  padding-top: 6px;
}

.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 16px;
  line-height: 1.2;
}

.step-body {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* Coverage */
.coverage {
  background: var(--bg-alt);
  padding: 80px 60px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.coverage-inner {
  max-width: 760px;
}

.coverage-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 20px;
}

.coverage-body {
  font-size: 0.95rem;
  color: var(--fg-muted);
  margin-bottom: 40px;
}

.coverage-regions {
  display: flex;
  gap: 0;
  margin-bottom: 28px;
}

.region {
  flex: 1;
  padding: 28px 32px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.region + .region {
  margin-left: -1px;
}

.region-code {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--fg);
  line-height: 1;
}

.region-name {
  font-size: 0.75rem;
  color: var(--fg-muted);
  letter-spacing: 0.06em;
}

.coverage-note {
  font-size: 0.8rem;
  color: var(--fg-muted);
  opacity: 0.7;
}

/* Closing */
.closing {
  padding: 120px 60px;
}

.closing-inner {
  max-width: 760px;
}

.closing-statement {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 300;
  line-height: 1.3;
  color: var(--fg);
  margin-bottom: 28px;
}

.closing-sub {
  font-size: 1rem;
  color: var(--fg-muted);
}

/* Footer */
.footer {
  padding: 40px 60px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--fg-muted);
}

.footer-meta {
  font-size: 0.7rem;
  color: var(--fg-muted);
  opacity: 0.6;
}

.footer-meta a {
  color: var(--fg-muted);
  text-decoration: none;
}

.footer-meta a:hover {
  color: var(--fg);
}

/* Mobile */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .hero { padding: 72px 24px 60px; }
  .stats { padding: 0 24px 60px; }
  .manifesto { padding: 72px 24px; }
  .how { padding: 72px 24px; }
  .coverage { padding: 72px 24px; }
  .closing { padding: 72px 24px; }
  .footer { padding: 32px 24px; }

  .stats-grid {
    flex-direction: column;
    gap: 1px;
  }
  .stats-grid .stat-item + .stat-item { margin-left: 0; }
  .stat-item { border: 1px solid var(--border); }
  .stat-item + .stat-item { border-top: none; }

  .step { grid-template-columns: 48px 1fr; gap: 20px; }

  .coverage-regions { flex-direction: column; }
  .region + .region { margin-left: 0; margin-top: -1px; }

  .footer-inner { flex-direction: column; gap: 12px; align-items: flex-start; }
}