:root {
  --bg-deep: #111111;
  --bg-warm: #f5f0ea;
  --accent: #b8960c;
  --accent-light: #d4af37;
  --text-light: #f0ece4;
  --text-dark: #1a1a1a;
  --text-muted: #6b6560;
  --text-muted-light: #9a9188;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg-deep);
  color: var(--text-light);
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.nav-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-light);
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--text-muted-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* MANIFESTO */
.manifesto {
  padding: 100px 48px 80px;
  max-width: 900px;
}
.overline {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 24px;
}
.manifesto-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--text-light);
  margin-bottom: 36px;
}
.manifesto-sub {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--text-muted-light);
  max-width: 560px;
  font-weight: 300;
}

/* WHAT */
.what {
  background: var(--bg-warm);
  padding: 80px 48px;
}
.what-inner { max-width: 900px; margin: 0 auto; }
.section-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 40px;
}
.what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.what-card {
  padding: 40px 40px 40px 0;
  border-bottom: 1px solid rgba(26,26,26,0.1);
  border-right: 1px solid rgba(26,26,26,0.1);
}
.what-card:nth-child(even) { border-right: none; }
.what-card:nth-last-child(-n+2) { border-bottom: none; }
.what-icon {
  display: inline-block;
  color: var(--accent);
  font-size: 1.25rem;
  margin-bottom: 16px;
}
.what-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.what-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-muted);
  font-weight: 300;
}

/* RESULTS */
.results {
  background: var(--bg-deep);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 80px 48px;
}
.results-inner { max-width: 900px; margin: 0 auto; }
.results-stats {
  display: flex;
  align-items: center;
  gap: 0;
}
.result-stat {
  flex: 1;
  padding: 0 48px 0 0;
}
.result-stat:first-child { padding-left: 0; }
.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 12px;
}
.stat-label {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--text-muted-light);
  font-weight: 300;
}
.result-divider {
  width: 1px;
  height: 80px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* BELIEF */
.belief {
  background: var(--accent);
  padding: 80px 48px;
}
.belief-inner { max-width: 900px; margin: 0 auto; }
.belief-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-style: italic;
  color: #111111;
  line-height: 1.2;
  margin-bottom: 28px;
}
.belief-attribution {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #1a1a1a;
  font-weight: 400;
  max-width: 600px;
}

/* CLOSING */
.closing {
  background: #0d0d0d;
  padding: 100px 48px;
  text-align: center;
}
.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.1;
  margin-bottom: 20px;
}
.closing-sub {
  font-size: 1rem;
  color: var(--text-muted-light);
  font-weight: 300;
  letter-spacing: 0.05em;
}

/* FOOTER */
.footer {
  background: var(--bg-deep);
  padding: 32px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.footer-copy {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* MOBILE */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .manifesto { padding: 60px 24px 50px; }
  .what { padding: 60px 24px; }
  .what-grid { grid-template-columns: 1fr; }
  .what-card { border-right: none; }
  .what-card:nth-last-child(-n+2) { border-bottom: 1px solid rgba(26,26,26,0.1); }
  .what-card:last-child { border-bottom: none; }
  .results { padding: 60px 24px; }
  .results-stats { flex-direction: column; gap: 32px; }
  .result-divider { width: 40px; height: 1px; }
  .belief { padding: 60px 24px; }
  .closing { padding: 70px 24px; }
  .footer { padding: 24px; }
}

@media (max-width: 480px) {
  .manifesto-headline { font-size: 2.5rem; }
  .stat-number { font-size: 3rem; }
  .result-stat { padding-right: 0; }
}