/* Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --bg: #FAF7F2;
  --fg: #1C1C1A;
  --muted: #6B6560;
  --accent: #C8622A;
  --accent-dim: rgba(200,98,42,0.12);
  --sage: #8BA888;
  --sage-dim: rgba(139,168,136,0.12);
  --border: #E8E2D8;
  --ff-head: 'Playfair Display', Georgia, serif;
  --ff-body: 'DM Sans', system-ui, sans-serif;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-head);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.navbar-tag {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Hero */
.hero {
  position: relative;
  padding: 100px 48px 120px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: 680px;
  position: relative;
  z-index: 1;
}
.hero-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  padding: 6px 14px;
  border: 1.5px solid var(--accent-dim);
  border-radius: 20px;
  background: var(--accent-dim);
}
.hero-headline {
  font-family: var(--ff-head);
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 32px;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 16px;
}
.hero-sub--accent {
  color: var(--fg);
  font-weight: 500;
}
.hero-decoration {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 24px;
  pointer-events: none;
}
.hero-circle {
  border-radius: 50%;
  opacity: 0.35;
}
.hero-circle--1 { width: 220px; height: 220px; background: var(--accent-dim); }
.hero-circle--2 { width: 160px; height: 160px; background: var(--sage-dim); }
.hero-circle--3 { width: 100px; height: 100px; background: var(--accent-dim); }

/* Stats */
.stats {
  background: var(--fg);
  color: #FAF7F2;
  padding: 64px 48px;
}
.stats-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
}
.stat { text-align: center; padding: 0 32px; }
.stat-number {
  font-family: var(--ff-head);
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(250,247,242,0.6);
  font-weight: 400;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(250,247,242,0.15);
}

/* Manifesto */
.manifesto { padding: 120px 48px; }
.manifesto-inner { max-width: 640px; }
.manifesto-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 20px;
}
.manifesto-headline {
  font-family: var(--ff-head);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
}
.manifesto-body {
  font-size: 17px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 16px;
}
.manifesto-visual {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 56px;
  flex-wrap: wrap;
}
.manifesto-block {
  border: 2px solid var(--border);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  flex: 1;
  min-width: 180px;
}
.manifesto-block--warm { border-color: rgba(200,98,42,0.25); background: var(--accent-dim); }
.manifesto-block--sage { border-color: rgba(139,168,136,0.25); background: var(--sage-dim); }
.block-icon { margin-bottom: 16px; display: flex; justify-content: center; }
.block-label { font-family: var(--ff-head); font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.block-desc { font-size: 13px; color: var(--muted); line-height: 1.5; }
.manifesto-arrow { flex-shrink: 0; }

/* How */
.how {
  background: var(--fg);
  color: #FAF7F2;
  padding: 120px 48px;
}
.how-inner { max-width: 860px; }
.how-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(200,98,42,0.7);
  margin-bottom: 20px;
}
.how-headline {
  font-family: var(--ff-head);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 64px;
}
.how-steps { display: flex; flex-direction: column; gap: 48px; }
.step { display: flex; gap: 32px; align-items: flex-start; }
.step-num {
  font-family: var(--ff-head);
  font-size: 48px;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.5;
  line-height: 1;
  flex-shrink: 0;
  width: 72px;
}
.step-title {
  font-family: var(--ff-head);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}
.step-desc { font-size: 15px; line-height: 1.7; color: rgba(250,247,242,0.65); }

/* Closing */
.closing { padding: 120px 48px; border-top: 1px solid var(--border); }
.closing-inner { max-width: 660px; }
.closing-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  padding: 6px 14px;
  border: 1.5px solid var(--accent-dim);
  border-radius: 20px;
  background: var(--accent-dim);
}
.closing-headline {
  font-family: var(--ff-head);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 32px;
}
.closing-headline em { font-style: italic; color: var(--accent); }
.closing-body {
  font-size: 18px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 20px;
}
.closing-body--bold { color: var(--fg); font-weight: 500; }

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px;
  text-align: center;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-head);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}
.footer-tagline { font-size: 14px; color: var(--muted); margin-bottom: 4px; }
.footer-legal { font-size: 12px; color: var(--accent); font-style: italic; font-family: var(--ff-head); }

/* Responsive */
@media (max-width: 768px) {
  .navbar { padding: 16px 24px; }
  .hero { padding: 72px 24px 88px; }
  .hero-decoration { display: none; }
  .stats { padding: 48px 24px; }
  .stats-inner { grid-template-columns: 1fr; gap: 32px; }
  .stat-divider { display: none; }
  .manifesto { padding: 80px 24px; }
  .manifesto-visual { flex-direction: column; gap: 20px; }
  .how { padding: 80px 24px; }
  .closing { padding: 80px 24px; }
  .footer { padding: 40px 24px; }
  .step { gap: 20px; }
  .step-num { font-size: 36px; width: 48px; }
}