:root {
  --bg: #F5F0E8;
  --bg-alt: #EDE7D9;
  --fg: #1A1A1A;
  --fg-muted: #5C5C5C;
  --accent: #1A4D2E;
  --accent-light: #2D6B4A;
  --accent-tint: #EAF2EC;
  --border: #D8D0C3;
  --white: #FFFFFF;
  --radius: 6px;
}

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

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

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

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Bitter', Georgia, serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.nav-logo-accent { color: var(--accent); }
.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ── HERO ── */
.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem 4rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 4rem;
  align-items: start;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.hero-headline {
  font-family: 'Bitter', Georgia, serif;
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 560px;
}
.hero-stats {
  border-left: 1px solid var(--border);
  padding-left: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.stat { display: flex; flex-direction: column; gap: 0.25rem; }
.stat-number {
  font-family: 'Bitter', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  line-height: 1.4;
  font-weight: 400;
}
.hero-visual { margin-top: 3rem; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--accent-tint);
  border: 1px solid rgba(26, 77, 46, 0.15);
  border-radius: 999px;
  padding: 0.5rem 1rem 0.5rem 0.5rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--accent);
}
.badge-icon {
  background: var(--white);
  border-radius: 999px;
  padding: 4px;
  display: flex;
}

/* ── PHILOSOPHY ── */
.philosophy {
  background: var(--accent);
  padding: 5rem 2rem;
}
.philosophy-inner { max-width: 1100px; margin: 0 auto; }
.philosophy-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.5rem;
}
.philosophy-headline {
  font-family: 'Bitter', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  max-width: 640px;
  margin-bottom: 1.5rem;
}
.philosophy-body {
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: 3.5rem;
}
.philosophy-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 3rem;
}
.pillar { display: flex; flex-direction: column; gap: 0.75rem; }
.pillar-marker {
  width: 2rem;
  height: 2px;
  background: rgba(255,255,255,0.4);
  border-radius: 999px;
  margin-bottom: 0.25rem;
}
.pillar h3 {
  font-family: 'Bitter', Georgia, serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}
.pillar p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}

/* ── OUTCOMES ── */
.outcomes { padding: 5rem 2rem; background: var(--bg); }
.outcomes-inner { max-width: 1100px; margin: 0 auto; }
.outcomes-header { margin-bottom: 3rem; }
.section-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.outcomes-headline {
  font-family: 'Bitter', Georgia, serif;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 600;
  color: var(--fg);
  line-height: 1.2;
  max-width: 580px;
}
.outcomes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.outcome-card {
  background: var(--bg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: background 0.2s;
}
.outcome-card:hover { background: var(--bg-alt); }
.outcome-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--accent-tint);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}
.outcome-card h3 {
  font-family: 'Bitter', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--fg);
}
.outcome-card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ── PILOT ── */
.pilot {
  padding: 5rem 2rem;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pilot-inner { max-width: 1100px; margin: 0 auto; }
.pilot-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--accent-tint);
  border: 1px solid rgba(26, 77, 46, 0.2);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 2rem;
}
.pilot-headline {
  font-family: 'Bitter', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--fg);
  line-height: 1.2;
  max-width: 560px;
  margin-bottom: 1.25rem;
}
.pilot-body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 620px;
  margin-bottom: 3rem;
}
.pilot-includes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  border-top: 1px solid var(--border);
  padding-top: 2.5rem;
}
.pilot-col h4 {
  font-family: 'Bitter', Georgia, serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pilot-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.pilot-col ul li {
  font-size: 0.9rem;
  color: var(--fg-muted);
  padding-left: 1.25rem;
  position: relative;
}
.pilot-col ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 999px;
}

/* ── CLOSING ── */
.closing {
  padding: 5rem 2rem;
  background: var(--bg);
}
.closing-inner { max-width: 1100px; margin: 0 auto; position: relative; }
.closing-visual {
  position: absolute;
  top: -2rem;
  right: 0;
  width: 200px;
  height: 200px;
  pointer-events: none;
}
.closing-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  border: 1px solid rgba(26, 77, 46, 0.12);
}
.closing-ring { width: 120px; height: 120px; }
.closing-ring-2 { width: 160px; height: 160px; opacity: 0.7; }
.closing-ring-3 { width: 200px; height: 200px; opacity: 0.4; }
.closing-headline {
  font-family: 'Bitter', Georgia, serif;
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  font-weight: 600;
  color: var(--fg);
  line-height: 1.3;
  max-width: 700px;
  position: relative;
  z-index: 1;
  margin-bottom: 1.25rem;
}
.closing-body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 560px;
  position: relative;
  z-index: 1;
}

/* ── FOOTER ── */
.footer {
  background: var(--accent);
  padding: 3.5rem 2rem 2rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
  font-family: 'Bitter', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.footer-logo span { color: rgba(255,255,255,0.5); }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.5; }
.footer-meta p { font-size: 0.82rem; color: rgba(255,255,255,0.4); line-height: 1.6; text-align: right; }
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 1.5rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-stats {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--border);
    padding-top: 2rem;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .philosophy-pillars { grid-template-columns: 1fr; gap: 1.5rem; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .pilot-includes { grid-template-columns: 1fr; gap: 2rem; }
  .footer-inner { flex-direction: column; }
  .footer-meta p { text-align: left; }
  .closing-visual { display: none; }
}