:root {
  --bg: #FAF6F1;
  --fg: #3D2B1F;
  --accent: #C4785B;
  --sage: #7A9E7E;
  --muted: #9C8B7E;
  --soft: #EDE6DD;
  --heading-font: 'Cormorant Garamond', Georgia, serif;
  --body-font: 'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--body-font);
  font-weight: 300;
  line-height: 1.7;
  font-size: 17px;
  overflow-x: hidden;
}

/* HERO */
.hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 40px 100px;
  background: linear-gradient(165deg, var(--bg) 0%, var(--soft) 60%, #E8DDD4 100%);
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 30% 70%, rgba(122,158,126,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(196,120,91,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.hero-eyebrow {
  font-family: var(--body-font);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}
h1 {
  font-family: var(--heading-font);
  font-size: clamp(42px, 7vw, 86px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 32px;
}
h1 em {
  font-style: italic;
  color: var(--accent);
}
.lede {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--muted);
  max-width: 580px;
  line-height: 1.8;
  font-weight: 300;
}

/* MANIFESTO */
.manifesto {
  background: var(--fg);
  color: var(--bg);
  padding: 80px 40px;
  text-align: center;
}
.manifesto blockquote {
  font-family: var(--heading-font);
  font-size: clamp(20px, 3vw, 30px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}
.manifesto blockquote::before { content: '\201C'; }
.manifesto blockquote::after { content: '\201D'; }

/* FEATURES */
.features {
  padding: 100px 40px;
}
.features-header {
  text-align: center;
  margin-bottom: 72px;
}
.features-header h2 {
  font-family: var(--heading-font);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--fg);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
}
.feature {
  padding: 0;
}
.feature-icon {
  font-size: 28px;
  color: var(--accent);
  margin-bottom: 20px;
  line-height: 1;
}
.feature h3 {
  font-family: var(--heading-font);
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 14px;
  color: var(--fg);
}
.feature p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 16px;
}

/* PRINCIPLES */
.principles {
  background: var(--soft);
  padding: 80px 40px;
}
.principles-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 60px;
}
.principle {
  position: relative;
  padding-left: 0;
}
.principle-number {
  font-family: var(--heading-font);
  font-size: 64px;
  font-weight: 300;
  color: var(--accent);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 16px;
}
.principle h3 {
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 14px;
  color: var(--fg);
}
.principle p {
  color: var(--muted);
  line-height: 1.7;
}

/* OUTCOMES */
.outcomes {
  padding: 100px 40px;
  text-align: center;
}
.outcomes-header {
  margin-bottom: 64px;
}
.outcomes-header h2 {
  font-family: var(--heading-font);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  line-height: 1.3;
  max-width: 600px;
  margin: 0 auto;
  color: var(--fg);
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
}
.outcome-stat {
  font-family: var(--heading-font);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
}
.outcome p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  max-width: 220px;
  margin: 0 auto;
}

/* CLOSING */
.closing {
  background: linear-gradient(160deg, var(--sage) 0%, #5C7A5F 100%);
  padding: 100px 40px;
  text-align: center;
  color: #fff;
}
.closing-inner h2 {
  font-family: var(--heading-font);
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 24px;
  color: #fff;
}
.closing-inner p {
  font-size: 18px;
  opacity: 0.85;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
}

/* FOOTER */
footer {
  background: var(--fg);
  color: rgba(250,246,241,0.5);
  text-align: center;
  padding: 40px;
  font-size: 13px;
  font-family: var(--body-font);
  letter-spacing: 0.05em;
}
footer p { color: rgba(250,246,241,0.4); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero { padding: 60px 28px 80px; }
  .features { padding: 72px 28px; }
  .features-grid { gap: 36px; }
  .principles { padding: 72px 28px; }
  .principles-inner { gap: 40px; }
  .outcomes { padding: 72px 28px; }
  .outcomes-grid { grid-template-columns: 1fr; gap: 40px; }
  .closing { padding: 72px 28px; }
  .manifesto { padding: 60px 28px; }
}