:root {
  --bg: #FDFAF4;
  --fg: #1a1614;
  --fg-muted: #6b6560;
  --accent: #C4522A;
  --accent-green: #6B8F71;
  --border: #e8e2d9;
}

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

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

/* Navigation */
.nav {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border);
}
.nav-wordmark {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--fg);
  letter-spacing: -0.02em;
}

/* Hero */
.hero {
  padding: 6rem 2rem 4rem;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.hero-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--fg);
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.7;
}
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.plate-visual {
  background: var(--fg);
  color: var(--bg);
  border-radius: 16px;
  padding: 3rem 2.5rem;
  text-align: center;
  max-width: 280px;
}
.plate-icon {
  margin-bottom: 1.25rem;
}
.plate-label {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 400;
  font-style: italic;
}

/* Stats */
.stats {
  padding: 3rem 2rem;
  background: var(--fg);
  color: var(--bg);
}
.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
}
.stat {
  text-align: center;
  padding: 0 2rem;
}
.stat-num {
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  font-weight: 700;
  display: block;
  color: var(--accent);
  letter-spacing: -0.03em;
}
.stat-desc {
  font-size: 0.8rem;
  color: rgba(253,250,244,0.6);
  margin-top: 0.25rem;
  display: block;
  line-height: 1.4;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(253,250,244,0.15);
}

/* How it works */
.how-it-works {
  padding: 6rem 2rem;
  border-bottom: 1px solid var(--border);
}
.how-it-works-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.section-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -0.03em;
  margin-bottom: 4rem;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.step-num {
  font-family: 'Fraunces', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--border);
  display: block;
  margin-bottom: 1rem;
  letter-spacing: -0.04em;
}
.step-title {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.75rem;
}
.step-body {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* Features */
.features {
  padding: 6rem 2rem;
  background: #f7f3ed;
}
.features-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 0;
}
.feature {
  padding: 2.5rem;
  background: var(--bg);
}
.feature-icon {
  margin-bottom: 1.25rem;
}
.feature-title {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.6rem;
}
.feature-body {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* Manifesto */
.manifesto {
  padding: 6rem 2rem;
  background: var(--fg);
  color: var(--bg);
}
.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.manifesto-quote {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: var(--bg);
  margin-bottom: 2rem;
}
.manifesto-sub {
  font-size: 0.95rem;
  color: rgba(253,250,244,0.6);
  line-height: 1.7;
}

/* Closing */
.closing {
  padding: 7rem 2rem 8rem;
  border-bottom: 1px solid var(--border);
}
.closing-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.closing-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.closing-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Footer */
.footer {
  padding: 3rem 2rem;
  text-align: center;
}
.footer-wordmark {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--fg);
  margin-bottom: 0.5rem;
}
.footer-sub {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .stats-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: left;
  }
  .stat {
    padding: 0;
    text-align: left;
  }
  .stat-divider { display: none; }
  .steps {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .hero { padding: 3rem 1.5rem 3rem; }
  .how-it-works, .features, .manifesto, .closing, .footer {
    padding: 4rem 1.5rem;
  }
}