:root {
  --bg: #FAF7F2;
  --surface: #FFFFFF;
  --ink: #1A1814;
  --ink-muted: #6B6560;
  --accent: #2D5A3D;
  --accent-warm: #C06B35;
  --border: #E8E2D9;
  --card-bg: #FFFFFF;
}

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

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

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-cta {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 8px 18px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.nav-cta:hover {
  background: var(--accent);
  color: #fff;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.nav-tagline {
  font-size: 13px;
  color: var(--ink-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
  padding: 80px 48px 100px;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}

.hero-content { max-width: 640px; }

.hero-kicker {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: 20px;
  font-weight: 600;
}

.hero-headline {
  font-size: clamp(36px, 5vw, 56px);
  color: var(--ink);
  margin-bottom: 28px;
  line-height: 1.15;
}

.hero-sub {
  font-size: 18px;
  color: var(--ink-muted);
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 48px;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.content-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  max-width: 340px;
  box-shadow: 0 2px 16px rgba(26,24,20,0.06);
}

.card-label {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}

.card-body {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 12px;
}

.card-tag {
  font-size: 11px;
  color: var(--ink-muted);
  background: var(--bg);
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid var(--border);
}

.hero-accent { position: relative; width: 200px; }

.accent-shape {
  width: 200px;
  height: 280px;
  background: linear-gradient(160deg, #2D5A3D 0%, #3A7350 50%, #C06B35 100%);
  border-radius: 24px;
  opacity: 0.12;
}

/* PROOF STRIP */
.proof {
  background: var(--ink);
  color: #F5F0E8;
  padding: 56px 48px;
}

.proof-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
}

.proof-stat { text-align: center; }

.proof-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--accent-warm);
  margin-bottom: 8px;
}

.proof-label {
  font-size: 14px;
  color: #A89F94;
  line-height: 1.45;
  display: block;
  max-width: 220px;
  margin: 0 auto;
}

/* HOW IT WORKS */
.how {
  padding: 96px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-kicker {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: 16px;
  font-weight: 600;
}

.section-headline {
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--ink);
  margin-bottom: 64px;
  max-width: 560px;
}

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

.step { }

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  color: var(--border);
  font-weight: 700;
  display: block;
  margin-bottom: 16px;
}

.step-title {
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 12px;
}

.step-desc {
  font-size: 15px;
  color: var(--ink-muted);
  line-height: 1.65;
}

/* VOICE LIBRARY */
.voice {
  background: #F0EBE3;
  padding: 96px 48px;
}

.voice .section-headline { margin-bottom: 56px; }

.voice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.voice-card {
  background: var(--surface);
  border-radius: 16px;
  padding: 32px 36px;
  border: 1px solid var(--border);
}

.voice-icon { font-size: 32px; margin-bottom: 16px; }

.voice-name {
  font-size: 19px;
  color: var(--ink);
  margin-bottom: 10px;
}

.voice-desc {
  font-size: 15px;
  color: var(--ink-muted);
  line-height: 1.6;
}

/* MANIFESTO */
.manifesto {
  padding: 96px 48px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.manifesto-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 32px);
  font-style: italic;
  color: var(--ink);
  line-height: 1.45;
  margin-bottom: 36px;
}

.manifesto-body {
  font-size: 17px;
  color: var(--ink-muted);
  line-height: 1.75;
  max-width: 680px;
  margin: 0 auto;
}

/* CLOSING STATEMENT */
.closing {
  background: var(--accent);
  color: #F5F0E8;
  padding: 96px 48px;
}

.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  color: #F5F0E8;
  margin-bottom: 20px;
  max-width: 640px;
}

.closing-sub {
  font-size: 17px;
  color: #B8C9B8;
  max-width: 540px;
  line-height: 1.65;
  margin-bottom: 56px;
}

.closing-vision {
  border-top: 1px solid rgba(245,240,232,0.2);
  padding-top: 40px;
  max-width: 600px;
}

.vision-label {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: 12px;
  font-weight: 600;
}

.vision-text {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-style: italic;
  color: #E8E0D4;
  line-height: 1.55;
}

/* FOOTER */
.footer {
  padding: 48px;
  text-align: center;
  border-top: 1px solid var(--border);
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--ink-muted);
  margin-bottom: 16px;
}

.footer-legal {
  font-size: 12px;
  color: var(--ink-muted);
  opacity: 0.7;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 48px 24px 64px; }
  .hero-accent { display: none; }
  .hero-visual { flex-direction: row; flex-wrap: wrap; }
  .content-card { max-width: 100%; flex: 1 1 280px; }
  .proof-inner { grid-template-columns: 1fr; gap: 32px; }
  .how-steps { grid-template-columns: 1fr; }
  .voice-grid { grid-template-columns: 1fr; }
  .nav { padding: 20px 24px; }
}

@media (max-width: 600px) {
  body { font-size: 16px; }
  .hero { padding: 40px 20px 56px; }
  .how { padding: 64px 24px; }
  .voice { padding: 64px 24px; }
  .manifesto { padding: 64px 24px; }
  .closing { padding: 64px 24px; }
  .proof { padding: 48px 24px; }
}