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

:root {
  --bg: #FAF8F5;
  --cream: #F0EBE3;
  --text: #1A1A1A;
  --muted: #6B6560;
  --accent: #C84B31;
  --border: #DDD8D0;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  padding: 28px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: baseline;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* SECTION SHARED */
.section-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

/* HERO */
.hero {
  padding: 80px 48px 96px;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.hero-stroke-wrap {
  margin-bottom: 32px;
}
.hero-stroke {
  width: 60px;
  height: 3px;
  background: var(--accent);
}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--text);
  letter-spacing: -0.03em;
  margin-bottom: 32px;
}
.hero-sub {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 300;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.7;
}

/* MANIFESTO */
.manifesto {
  background: var(--cream);
  padding: 80px 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.manifesto-inner {
  max-width: 680px;
  margin: 0 auto;
}
.manifesto-text {
  font-family: var(--sans);
  font-size: 17px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 28px;
}
.manifesto-highlight {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  font-weight: 600;
  color: var(--accent);
  border-left: 3px solid var(--accent);
  padding-left: 20px;
  margin: 40px 0;
}

/* HOW IT WORKS */
.how {
  padding: 80px 48px;
}
.how-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 32px;
}
.how-step {}
.step-num {
  display: block;
  font-family: var(--serif);
  font-size: 11px;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.step-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
}
.step-desc {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* WHO IT'S FOR */
.who {
  background: var(--text);
  padding: 80px 48px;
}
.who-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.who .section-label { color: #A09080; }
.who-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.who-card {
  background: #232320;
  padding: 36px 32px;
}
.who-label {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: #F5F0E8;
  margin-bottom: 10px;
}
.who-desc {
  font-family: var(--sans);
  font-size: 14px;
  color: #8A8480;
  line-height: 1.65;
}

/* CLOSING */
.closing {
  padding: 96px 48px;
}
.closing-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.closing-stroke-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}
.closing-stroke {
  width: 80px;
  height: 2px;
  background: var(--accent);
}
.closing-quote {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 400;
  font-style: italic;
  color: var(--text);
  line-height: 1.5;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px 48px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}
.footer-note {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.06em;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav, .hero, .manifesto, .how, .who, .closing, .footer {
    padding-left: 24px;
    padding-right: 24px;
  }
  .how-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .who-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 56px;
    padding-bottom: 64px;
  }
}
@media (max-width: 480px) {
  .how-steps {
    grid-template-columns: 1fr;
  }
  .nav-tagline {
    display: none;
  }
}