:root {
  --bg: #F8F4EE;
  --bg-alt: #F0EBE3;
  --fg: #1C1C1E;
  --fg-muted: #6B6560;
  --accent: #B8956A;
  --accent-dark: #8C6F4A;
  --navy: #1B2A3B;
  --white: #FFFFFF;
}

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

html { font-size: 16px; }

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

/* ─── HEADER ─── */
.site-header {
  padding: 20px 40px;
  border-bottom: 1px solid rgba(28,28,30,0.08);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wordmark {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.wordmark-link { text-decoration: none; }
.header-nav { display: flex; align-items: center; gap: 24px; }
.header-nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.15s ease;
}
.header-nav-link:hover { color: var(--fg); }
.header-tagline {
  font-size: 0.75rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
}

/* ─── HERO ─── */
.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 40px 60px;
}
.hero-inner {
  max-width: 720px;
}
.hero-label {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 24px;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 1.0625rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 560px;
}

/* ─── STATS ─── */
.stats-row {
  background: var(--navy);
  display: flex;
  align-items: stretch;
  padding: 40px 40px;
  gap: 0;
}
.stats-row .stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 40px;
}
.stats-row .stat-item:first-child { padding-left: 0; }
.stats-row .stat-item:last-child { padding-right: 0; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.4;
}
.stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.12);
  align-self: stretch;
  flex-shrink: 0;
}

/* ─── PHILOSOPHY ─── */
.philosophy {
  padding: 80px 40px;
}
.philosophy-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.section-title.centered { text-align: center; }
.philosophy-body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}
.callout-card {
  background: var(--bg-alt);
  border-left: 3px solid var(--accent);
  padding: 28px 32px;
  margin-top: 8px;
}
.callout-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.0625rem;
  color: var(--fg);
  line-height: 1.6;
}
.callout-icon { margin-bottom: 12px; }

/* ─── HOW IT WORKS ─── */
.how-it-works {
  background: var(--bg-alt);
  padding: 80px 40px;
}
.how-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.step-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 48px;
}
.step {
  padding: 32px;
  background: var(--white);
  border: 1px solid rgba(28,28,30,0.07);
}
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 16px;
}
.step-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}
.step-body {
  font-size: 0.9375rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ─── MANIFESTO ─── */
.manifesto {
  padding: 80px 40px;
}
.manifesto-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.manifesto-label {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 24px;
}
.manifesto-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  max-width: 800px;
}
.manifesto-body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.8;
  max-width: 680px;
}

/* ─── CLOSING ─── */
.closing {
  border-top: 1px solid rgba(28,28,30,0.1);
  padding: 60px 40px 80px;
}
.closing-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.closing-statement {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: var(--fg);
  line-height: 1.5;
  max-width: 680px;
  margin-bottom: 32px;
}
.closing-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.meta-sep { color: var(--accent); }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .site-header { padding: 16px 24px; }
  .hero { padding: 48px 24px 40px; }
  .hero-headline { font-size: 2.25rem; }

  .stats-row {
    flex-direction: column;
    gap: 24px;
    padding: 40px 24px;
  }
  .stats-row .stat-item { padding: 0; }
  .stat-divider { display: none; }

  .philosophy { padding: 60px 24px; }
  .philosophy-inner { grid-template-columns: 1fr; gap: 32px; }

  .how-it-works { padding: 60px 24px; }
  .step-grid { grid-template-columns: 1fr; gap: 20px; }

  .manifesto { padding: 60px 24px; }
  .closing { padding: 48px 24px 64px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 1.875rem; }
  .header-tagline { display: none; }
}
