/* =====================
   RESET & BASE
   ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #f5f0e8;
  --bg-alt: #ece7db;
  --fg: #1a1a18;
  --fg-muted: #5c5a52;
  --accent: #b8712e;
  --accent-dark: #8c5520;
  --green-deep: #1a3a2a;
  --green-mid: #2d5240;
  --cream: #f5f0e8;
  --border: rgba(26, 26, 24, 0.12);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* =====================
   NAVIGATION
   ===================== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2.5rem;
  background: rgba(245, 240, 232, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--fg);
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--fg); }

/* =====================
   HERO
   ===================== */
.hero {
  padding: 7rem 2.5rem 5rem;
  overflow: hidden;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 2rem;
}

.hero-headline em {
  font-style: italic;
  color: var(--green-deep);
}

.hero-lede {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--fg-muted);
  max-width: 520px;
}

/* Abstract organic visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.orb-container {
  position: relative;
  width: 380px;
  height: 380px;
}

.orb {
  position: absolute;
  border-radius: 50%;
  mix-blend-mode: multiply;
}

.orb-1 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle at 40% 40%, #3d7a56 0%, #1a3a2a 70%, #0f2018 100%);
  top: 50px;
  left: 50px;
  opacity: 0.85;
}

.orb-2 {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle at 50% 50%, #c9883a 0%, #9a6820 100%);
  top: 20px;
  right: 20px;
  opacity: 0.5;
}

.orb-3 {
  width: 120px;
  height: 120px;
  background: radial-gradient(circle at 40% 40%, #e8b86a 0%, #b8712e 100%);
  bottom: 30px;
  left: 30px;
  opacity: 0.6;
}

.orb-ring {
  position: absolute;
  width: 360px;
  height: 360px;
  top: 10px;
  left: 10px;
  border-radius: 50%;
  border: 1px solid rgba(26, 58, 42, 0.15);
}

/* =====================
   SHARED SECTION
   ===================== */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.section-label {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 3rem;
}

/* =====================
   HOW IT WORKS
   ===================== */
.how {
  padding: 6rem 0;
  background: var(--green-deep);
  color: var(--cream);
}

.how .section-label { color: rgba(245, 240, 232, 0.5); }

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(245, 240, 232, 0.15);
}

.how-card {
  padding: 2.5rem 2.5rem 2.5rem 0;
  border-right: 1px solid rgba(245, 240, 232, 0.15);
}

.how-card:first-child { padding-left: 0; }
.how-card:last-child { border-right: none; padding-right: 0; padding-left: 2.5rem; }
.how-card:nth-child(2) { padding-left: 2.5rem; }

.how-number {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.4);
  display: block;
  margin-bottom: 1.25rem;
}

.how-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.how-card p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(245, 240, 232, 0.65);
}

.how-callout {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(245, 240, 232, 0.15);
  max-width: 680px;
}

.how-callout p {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(245, 240, 232, 0.7);
}

/* =====================
   OUTCOMES
   ===================== */
.outcomes {
  padding: 7rem 0;
  background: var(--bg);
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.outcome {
  background: var(--cream);
  padding: 2.5rem;
}

.outcome-metric {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.outcome-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.outcome p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* =====================
   MANIFESTO
   ===================== */
.manifesto {
  padding: 8rem 0;
  background: var(--bg-alt);
}

.manifesto-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6rem;
  align-items: start;
}

.manifesto-overline {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.manifesto-headline {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 2rem;
}

.manifesto-body {
  font-size: 1.0625rem;
  color: var(--fg-muted);
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: 1.25rem;
}

.manifesto-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 3rem;
  border: 1px solid var(--border);
  background: var(--cream);
  text-align: center;
  min-width: 200px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--fg-muted);
  line-height: 1.4;
  margin-top: 0.75rem;
  max-width: 140px;
}

/* =====================
   CLOSING
   ===================== */
.closing {
  padding: 7rem 2.5rem;
  background: var(--green-deep);
  color: var(--cream);
  text-align: center;
}

.closing-inner {
  max-width: 800px;
  margin: 0 auto;
}

.closing-text {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.closing-sub {
  font-size: 1.0625rem;
  color: rgba(245, 240, 232, 0.55);
}

/* =====================
   FOOTER
   ===================== */
.site-footer {
  background: var(--cream);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2.5rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6rem;
  margin-bottom: 3rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  max-width: 260px;
}

.footer-links {
  display: flex;
  gap: 4rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col-head {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 0.25rem;
}

.footer-col a {
  font-size: 0.875rem;
  color: var(--fg);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 2.5rem 0;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: var(--fg-muted);
  font-style: italic;
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1024px) {
  .hero-inner { gap: 3rem; }
  .how-grid { grid-template-columns: 1fr; }
  .how-card { border-right: none; border-bottom: 1px solid rgba(245, 240, 232, 0.15); padding: 2rem 0; }
  .how-card:last-child { border-bottom: none; }
  .outcomes-grid { grid-template-columns: repeat(2, 1fr); }
  .manifesto-inner { grid-template-columns: 1fr; gap: 3rem; }
  .manifesto-stat { align-self: start; }
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  .site-nav { padding: 1rem 1.5rem; }
  .nav-links { gap: 1.25rem; }
  .hero { padding: 4rem 1.5rem 3rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 0; }
  .hero-visual { display: none; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .manifesto-stat { flex-direction: row; align-items: center; gap: 1rem; text-align: left; min-width: auto; }
  .stat-number { font-size: 3rem; }
  .stat-label { max-width: none; margin-top: 0; }
  .closing { padding: 5rem 1.5rem; }
  .footer-inner { gap: 2rem; }
  .footer-links { gap: 2rem; }
}

@media (max-width: 480px) {
  .nav-links a { font-size: 0.8rem; }
  .hero-headline { font-size: 2.5rem; }
  .manifesto-headline { font-size: 1.5rem; }
  .closing-text { font-size: 1.75rem; }
}