:root {
  --bg: #F7F4EF;
  --bg-alt: #FFFFFF;
  --fg: #111827;
  --fg-muted: #6B7280;
  --accent: #FF6B35;
  --accent-dark: #D94F1C;
  --navy: #1A2744;
  --navy-light: #243356;
  --border: #E5DDD5;
  --tag-bg: #F0EBE4;
  --tag-fg: #5C4A33;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 244, 239, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.nav-badge {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--tag-bg);
  padding: 0.25rem 0.75rem;
  border-radius: 2rem;
}

/* ── HERO ── */
.hero {
  background: var(--navy);
  color: #fff;
  padding: 6rem 2rem 5rem;
}
.hero-inner {
  max-width: 1080px;
  margin: 0 auto;
}
.hero-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.hero-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  color: #fff;
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 620px;
  margin-bottom: 3.5rem;
  line-height: 1.7;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}
.stat {
  display: flex;
  flex-direction: column;
  padding: 0 2.5rem;
}
.stat:first-child { padding-left: 0; }
.stat-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 0.4rem;
}
.stat-divider {
  width: 1px;
  height: 2.5rem;
  background: rgba(255,255,255,0.15);
}

/* ── WHAT ── */
.what { padding: 5rem 2rem; }
.what-inner { max-width: 1080px; margin: 0 auto; }
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.section-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.what-body {
  color: var(--fg-muted);
  font-size: 1.05rem;
  max-width: 580px;
  margin-bottom: 3rem;
}
.what-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.what-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
}
.what-icon {
  width: 48px;
  height: 48px;
  background: var(--tag-bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.what-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}
.what-card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ── OUTCOMES ── */
.outcomes { background: var(--navy); color: #fff; padding: 5rem 2rem; }
.outcomes-inner { max-width: 1080px; margin: 0 auto; }
.outcomes .section-label { color: var(--accent); }
.outcomes-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.outcomes-grid:last-child { border-bottom: none; }
.outcome-before, .outcome-after {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.outcome-before { color: #FF8A6B; }
.outcome-after { color: #7ED4A6; }
.outcome-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}
.outcome-arrow { color: rgba(255,255,255,0.3); display: flex; }

/* ── HOW / MODELS ── */
.how { padding: 5rem 2rem; }
.how-inner { max-width: 1080px; margin: 0 auto; }
.how .section-headline { margin-bottom: 3rem; }
.models { display: flex; flex-direction: column; gap: 0; }
.model {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}
.model:last-child { border-bottom: none; }
.model-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.4;
  line-height: 1;
  padding-top: 0.25rem;
}
.model-body h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.model-body p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.model-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tag {
  background: var(--tag-bg);
  color: var(--tag-fg);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 2rem;
}

/* ── TERRITORY ── */
.territory { padding: 5rem 2rem; background: var(--bg-alt); }
.territory-inner { max-width: 1080px; margin: 0 auto; }
.map-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.map-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 2.5rem;
  max-width: 500px;
  line-height: 1.2;
}
.cities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.city {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--fg);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.4rem 1rem;
  border-radius: 6px;
}
.map-note {
  font-size: 0.9rem;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.6;
}

/* ── PRINCIPLES ── */
.principles { padding: 5rem 2rem; }
.principles-inner { max-width: 1080px; margin: 0 auto; }
.principles .section-headline { margin-bottom: 2.5rem; }
.principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.principle {}
.principle-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.35;
  margin-bottom: 0.75rem;
}
.principle h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.principle p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ── CLOSE ── */
.close { background: var(--navy); color: #fff; padding: 7rem 2rem; }
.close-inner { max-width: 1080px; margin: 0 auto; text-align: center; }
.close-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.close-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  max-width: 540px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}
.close-cta {}
.cta-line {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.cta-sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
}

/* ── FOOTER ── */
.footer { padding: 3rem 2rem; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1080px; margin: 0 auto; }
.footer-brand {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.footer-tagline {
  font-size: 0.875rem;
  color: var(--fg-muted);
  margin-bottom: 0.5rem;
}
.footer-meta {
  font-size: 0.75rem;
  color: var(--fg-muted);
  opacity: 0.7;
  letter-spacing: 0.05em;
}

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  .hero { padding: 4rem 1.5rem 3.5rem; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .stat { padding: 0; }
  .stat-divider { display: none; }
  .outcomes-grid { grid-template-columns: 1fr; gap: 1rem; }
  .outcome-arrow { transform: rotate(90deg); }
  .model { grid-template-columns: 1fr; gap: 0.5rem; }
  .model-num { font-size: 1.5rem; }
  .what-grid { grid-template-columns: 1fr; }
  .principles-grid { grid-template-columns: 1fr; }
  .section-headline { font-size: 1.75rem; }
}
