/* --- Variables --- */
:root {
  --bg: #F5E6C8;
  --bg-alt: #EDD9B5;
  --ink: #1B2A1B;
  --ink-light: #3D5C3D;
  --accent: #C9650A;
  --accent-light: #E8873A;
  --white: #FDFAF5;
  --muted: #7A8A6E;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 7rem;

  --radius: 4px;
  --radius-lg: 12px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* --- Nav --- */
.nav {
  padding: var(--space-md) var(--space-lg);
  border-bottom: 1px solid rgba(27,42,27,0.12);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 0.875rem;
  color: var(--muted);
  font-weight: 500;
}

/* --- Section label --- */
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: var(--space-md);
}

/* --- Hero --- */
.hero {
  padding: var(--space-2xl) var(--space-lg) var(--space-xl);
  max-width: 1100px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--space-md);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.hero-body {
  font-size: 1.1rem;
  color: var(--ink-light);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}
.hero-stat-row {
  display: flex;
  gap: var(--space-lg);
}
.hero-stat {
  display: flex;
  flex-direction: column;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.25rem;
  max-width: 100px;
}
.hero-cta-strip {
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(27,42,27,0.12);
}
.cta-badge {
  display: inline-block;
  background: var(--ink);
  color: var(--bg);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* --- Why --- */
.why {
  background: var(--ink);
  color: var(--bg);
  padding: var(--space-2xl) var(--space-lg);
}
.why-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.why .section-label { color: var(--accent-light); }
.why-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-xl);
  color: var(--bg);
}
.why-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.why-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--space-md);
  padding: var(--space-lg) 0;
  border-top: 1px solid rgba(245,230,200,0.15);
  align-items: start;
}
.why-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(245,230,200,0.2);
  line-height: 1;
  padding-top: 0.1rem;
}
.why-content h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--bg);
}
.why-content p {
  color: rgba(245,230,200,0.65);
  font-size: 1rem;
  line-height: 1.6;
}

/* --- Features --- */
.features {
  padding: var(--space-2xl) var(--space-lg);
  max-width: 1100px;
  margin: 0 auto;
}
.features-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: var(--space-lg);
}
.feature-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--space-md);
  padding: var(--space-lg) 0;
  border-top: 1px solid rgba(27,42,27,0.12);
  align-items: start;
}
.feature-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(27,42,27,0.15);
  line-height: 1;
  padding-top: 0.1rem;
}
.feature-body h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--ink);
}
.feature-body p {
  color: var(--ink-light);
  font-size: 1rem;
  line-height: 1.7;
}

/* --- How --- */
.how {
  background: var(--bg-alt);
  padding: var(--space-2xl) var(--space-lg);
}
.how-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.how-steps {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
  flex-wrap: wrap;
}
.how-step {
  flex: 1;
  min-width: 180px;
}
.how-step-icon {
  color: var(--accent);
  margin-bottom: var(--space-sm);
}
.how-step h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--ink);
}
.how-step p {
  color: var(--ink-light);
  font-size: 0.95rem;
  line-height: 1.6;
}
.how-step-arrow {
  color: var(--muted);
  opacity: 0.5;
  flex-shrink: 0;
}

/* --- Manifesto --- */
.manifesto {
  background: var(--ink);
  padding: var(--space-2xl) var(--space-lg);
}
.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.4;
  color: var(--bg);
  margin-bottom: var(--space-lg);
  letter-spacing: -0.01em;
}
.manifesto-sub {
  font-size: 1rem;
  color: rgba(245,230,200,0.6);
  line-height: 1.7;
}

/* --- Footer --- */
.footer {
  background: var(--bg);
  border-top: 1px solid rgba(27,42,27,0.12);
  padding: var(--space-xl) var(--space-lg);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.footer-top {
  margin-bottom: var(--space-xl);
}
.footer-brand { }
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ink);
}
.footer-tagline {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}
.footer-bottom {
  border-top: 1px solid rgba(27,42,27,0.1);
  padding-top: var(--space-md);
}
.footer-copy {
  font-size: 0.8rem;
  color: var(--muted);
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  .hero-headline {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
  }
  .hero-stat-row {
    gap: var(--space-md);
  }
  .why-item,
  .feature-row {
    grid-template-columns: 48px 1fr;
  }
  .how-steps {
    flex-direction: column;
    align-items: flex-start;
  }
  .how-step-arrow { display: none; }
  .manifesto-quote {
    font-size: 1.4rem;
  }
}