/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #faf8f4;
  --bg-alt: #f2ede5;
  --fg: #1a1a18;
  --fg-muted: #6b6860;
  --accent: #2d5a27;
  --accent-mid: #3d7a35;
  --accent-light: #e8f0e6;
  --accent-warm: #b8621a;
  --border: #ddd8cf;
  --shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.04);
}

html { scroll-behavior: smooth; }

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

/* --- Navigation --- */
nav {
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.wordmark {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.nav-cta {
  padding: 8px 20px;
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s;
}
.nav-cta:hover { background: var(--accent-mid); }

/* --- Hero --- */
.hero {
  padding: 80px 40px 96px;
  background: var(--bg);
}

.hero-inner {
  max-width: 820px;
  margin: 0 auto;
}

.eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-warm);
  font-weight: 600;
  margin-bottom: 20px;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--fg);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.lede {
  font-size: 1.2rem;
  color: var(--fg-muted);
  max-width: 600px;
  line-height: 1.65;
  margin-bottom: 56px;
}

.hero-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.stat {
  background: var(--bg);
  padding: 28px 32px;
}

.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* --- Proof --- */
.proof {
  background: var(--accent);
  color: #fff;
  padding: 80px 40px;
}

.proof-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.proof-headline {
  margin-bottom: 56px;
}

.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  line-height: 0.5;
  color: rgba(255,255,255,0.25);
  display: block;
  margin-bottom: 20px;
}

blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 400;
  line-height: 1.5;
  color: #e8f0e6;
  max-width: 780px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
  overflow: hidden;
}

.proof-card {
  background: var(--accent);
  padding: 32px 28px;
}

.proof-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1;
}

.proof-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

/* --- How --- */
.how {
  background: var(--bg);
  padding: 96px 40px;
}

.how-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.how h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 56px;
  color: var(--fg);
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.step {
  border-top: 2px solid var(--accent);
  padding-top: 24px;
}

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-light);
  display: block;
  margin-bottom: 16px;
  line-height: 1;
}

.step h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
  line-height: 1.3;
}

.step p {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* --- Outcomes --- */
.outcomes {
  background: var(--bg-alt);
  padding: 96px 40px;
}

.outcomes-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.outcomes h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 48px;
  color: var(--fg);
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.outcome {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 28px 32px;
  box-shadow: var(--shadow);
}

.outcome-icon {
  color: var(--accent);
  margin-bottom: 16px;
}

.outcome h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}

.outcome p {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* --- Closing --- */
.closing {
  background: var(--fg);
  color: #fff;
  padding: 96px 40px;
}

.closing-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.closing h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 28px;
  color: #fff;
}

.closing-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 40px;
}

.closing-cta {
  display: inline-block;
  padding: 16px 40px;
  background: var(--accent);
  color: #fff;
  border-radius: 10px;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: -0.01em;
}
.closing-cta:hover {
  background: var(--accent-mid);
  transform: translateY(-2px);
}

/* --- Footer --- */
footer {
  background: var(--fg);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 32px 40px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.footer-wordmark {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
}

.footer-tagline {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* --- Responsive --- */
@media (max-width: 900px) {
  nav, .hero, .proof, .how, .outcomes, .closing, footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero-stat-row,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .how-steps {
    grid-template-columns: 1fr 1fr;
  }

  .outcome-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    padding-top: 60px;
    padding-bottom: 72px;
  }
}

@media (max-width: 600px) {
  .how-steps {
    grid-template-columns: 1fr;
  }

  .outcome-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 2.2rem;
  }
}