:root {
  --bg: #F7F5F1;
  --bg-warm: #F0EDE6;
  --fg: #1A2B24;
  --fg-mid: #4A5E56;
  --fg-light: #7A8E87;
  --accent: #B8926A;
  --accent-dark: #8C6F4F;
  --green: #2D4A3E;
  --green-light: #3D6252;
  --border: #D8D2C8;
  --white: #FFFFFF;
}

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

html { scroll-behavior: smooth; }

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

/* ── Typography ── */
h1, h2, h3 { font-family: 'Fraunces', serif; font-weight: 600; line-height: 1.1; }

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-light);
  margin-bottom: 1rem;
}

/* ── Nav ── */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 4rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav-logo { display: flex; align-items: center; gap: 0.5rem; }
.logo-mark { color: var(--accent); font-size: 1.2rem; }
.logo-name { font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.1rem; color: var(--green); }

.nav-links { display: flex; gap: 2.5rem; }
.nav-links a {
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg-mid);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--green); }

/* ── Hero ── */
.hero {
  padding: 6rem 4rem 4rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: start;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 700;
  color: var(--green);
  line-height: 1.05;
  margin-bottom: 2rem;
}

.hero-headline em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--fg-mid);
  max-width: 38ch;
  line-height: 1.7;
}

.hero-stat-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 2rem;
  min-width: 280px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.stat-row {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 0.75rem 0;
}

.stat-number {
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--green);
  min-width: 2.5ch;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--fg-mid);
  line-height: 1.4;
}

.stat-divider {
  height: 1px;
  background: var(--border);
}

.hero-aside {
  grid-column: 1 / -1;
}

.hero-tagline-card {
  margin-top: 2rem;
  padding: 1.5rem 2rem;
  background: var(--bg-warm);
  border-left: 3px solid var(--accent);
}

.tagline-text {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--fg-mid);
  line-height: 1.6;
}

/* ── Pains ── */
.pains {
  padding: 6rem 4rem;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.pains-header { margin-bottom: 3rem; }

.pains-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--fg);
  max-width: 20ch;
  line-height: 1.15;
}

.pains-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  border: 1px solid var(--border);
}

.pain-card {
  padding: 2.5rem;
  background: var(--bg);
  border-right: 2px solid var(--border);
  border-bottom: 2px solid var(--border);
}

.pain-card:nth-child(2n) { border-right: none; }
.pain-card:nth-child(3) { border-bottom: none; }
.pain-card:nth-child(4) { border-right: none; border-bottom: none; }

.pain-icon {
  display: inline-block;
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.pain-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  color: var(--green);
  margin-bottom: 0.75rem;
}

.pain-card p {
  font-size: 0.9rem;
  color: var(--fg-mid);
  line-height: 1.65;
}

/* ── Features ── */
.features {
  padding: 6rem 4rem;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.features-header { margin-bottom: 4rem; }

.features-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--fg);
  max-width: 22ch;
  line-height: 1.15;
}

.features-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
}

.feature-item {
  padding: 2.5rem;
  border-right: 2px solid var(--border);
  border-bottom: 2px solid var(--border);
  background: var(--white);
}

.feature-item:nth-child(2n) { border-right: none; }
.feature-item:nth-child(4), .feature-item:nth-child(5) { border-bottom: none; }
.feature-item:last-child { border-bottom: none; }

.feature-number {
  font-family: 'Fraunces', serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.feature-body h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  color: var(--green);
  margin-bottom: 0.75rem;
}

.feature-body p {
  font-size: 0.9rem;
  color: var(--fg-mid);
  line-height: 1.65;
}

/* ── Philosophy ── */
.philosophy {
  padding: 6rem 4rem;
  background: var(--green);
  color: var(--white);
}

.philosophy-inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 4rem;
  align-items: start;
}

.philosophy .section-label { color: rgba(255,255,255,0.5); }

.philosophy-quote {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.4;
  color: var(--white);
  margin-bottom: 2rem;
  padding-left: 1.5rem;
  border-left: 3px solid var(--accent);
}

.philosophy-body {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* ── Outcomes ── */
.outcomes {
  padding: 6rem 4rem;
  background: var(--bg-warm);
  border-bottom: 1px solid var(--border);
}

.outcomes-header { margin-bottom: 3rem; }

.outcomes-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--fg);
  max-width: 20ch;
  line-height: 1.15;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}

.outcome-card {
  padding: 2.5rem 2rem;
  background: var(--white);
  border-right: 2px solid var(--border);
}

.outcome-card:last-child { border-right: none; }

.outcome-metric {
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.outcome-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  color: var(--green);
  margin-bottom: 0.75rem;
}

.outcome-card p {
  font-size: 0.875rem;
  color: var(--fg-mid);
  line-height: 1.65;
}

/* ── Closing ── */
.closing {
  padding: 8rem 4rem;
  background: var(--bg);
  text-align: center;
}

.closing-headline {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--green);
  max-width: 16ch;
  margin: 0 auto 1.5rem;
  line-height: 1.1;
}

.closing-sub {
  font-size: 1.05rem;
  color: var(--fg-mid);
  max-width: 42ch;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Footer ── */
.footer {
  padding: 3rem 4rem;
  border-top: 1px solid var(--border);
  background: var(--bg);
  display: flex;
  align-items: center;
  gap: 2rem;
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--fg-light);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .nav { padding: 1rem 1.5rem; }
  .hero { padding: 4rem 1.5rem 3rem; grid-template-columns: 1fr; gap: 2rem; }
  .hero-stat-block { min-width: unset; width: 100%; }
  .pains { padding: 4rem 1.5rem; }
  .pains-grid { grid-template-columns: 1fr; }
  .pain-card { border-right: none; }
  .pain-card:nth-child(3) { border-bottom: 2px solid var(--border); }
  .pain-card:last-child { border-bottom: none; }
  .features { padding: 4rem 1.5rem; }
  .features-layout { grid-template-columns: 1fr; }
  .feature-item { border-right: none; }
  .feature-item:nth-child(4) { border-bottom: 2px solid var(--border); }
  .feature-item:last-child { border-bottom: none; }
  .philosophy { padding: 4rem 1.5rem; }
  .philosophy-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .outcomes { padding: 4rem 1.5rem; }
  .outcomes-grid { grid-template-columns: 1fr 1fr; }
  .outcome-card:nth-child(2) { border-right: none; }
  .outcome-card:nth-child(3) { border-bottom: none; }
  .outcome-card:last-child { border-bottom: none; }
  .closing { padding: 5rem 1.5rem; }
  .footer { padding: 2rem 1.5rem; flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .nav-links { display: none; }
}

@media (max-width: 480px) {
  .outcomes-grid { grid-template-columns: 1fr; }
  .outcome-card { border-right: none; border-bottom: 2px solid var(--border); }
  .outcome-card:last-child { border-bottom: none; }
}