:root {
  --green-950: #041f19;
  --green-900: #06352a;
  --green-800: #084b3a;
  --red: #d5222c;
  --red-dark: #a8151d;
  --cream: #f7f0dc;
  --paper: #fffdf7;
  --ink: #15201c;
  --muted: #59645f;
  --line: rgba(6, 53, 42, .16);
  --shadow: 0 18px 50px rgba(4, 31, 25, .12);
  --shell: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.shell { width: var(--shell); margin-inline: auto; }
.skip-link {
  position: fixed; left: 12px; top: -80px; z-index: 100;
  background: var(--cream); color: var(--green-950); padding: 12px 18px;
  font-weight: 800; border-radius: 0 0 8px 8px;
}
.skip-link:focus { top: 0; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(4, 31, 25, .96);
  border-bottom: 1px solid rgba(247, 240, 220, .14);
  backdrop-filter: blur(14px);
}
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: flex; align-items: center; gap: 12px; color: var(--cream); text-decoration: none; }
.brand img { width: 58px; height: 58px; object-fit: contain; }
.brand span { display: grid; line-height: 1; text-transform: uppercase; letter-spacing: .055em; }
.brand strong { font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; font-size: 1.25rem; letter-spacing: .06em; }
.brand small { margin-top: 5px; color: #f24c52; font-weight: 900; letter-spacing: .28em; }
nav { display: flex; align-items: center; gap: clamp(16px, 2.5vw, 32px); }
nav a { color: rgba(255,255,255,.82); text-decoration: none; font-size: .88rem; font-weight: 800; letter-spacing: .035em; }
nav a:hover, nav a:focus-visible { color: white; }
nav a.active { color: white; text-decoration: underline; text-decoration-color: var(--red); text-decoration-thickness: 3px; text-underline-offset: 8px; }
.nav-cta { border: 1px solid var(--red); border-radius: 4px; padding: 10px 15px; }
nav a.nav-cta.active { background: var(--red); text-decoration: none; }

.hero { background: var(--green-950); color: white; }
.hero-image { max-height: 610px; overflow: hidden; background: #061d17; }
.hero-image img { width: 100%; height: auto; min-height: 360px; object-fit: cover; object-position: center; }
.hero-intro { display: grid; grid-template-columns: 1.04fr .96fr; gap: 64px; align-items: center; padding-block: 55px 62px; }
.eyebrow { margin: 0 0 12px; color: var(--red); font-size: .78rem; font-weight: 950; letter-spacing: .22em; text-transform: uppercase; }
.eyebrow.light { color: #ff6269; }
h1, h2, h3 { margin-top: 0; line-height: 1.02; }
h1, h2 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  text-transform: uppercase; letter-spacing: .035em; font-weight: 900;
}
h1 { margin-bottom: 0; font-size: clamp(2.6rem, 5.5vw, 5.4rem); max-width: 780px; }
h2 { margin-bottom: 22px; font-size: clamp(2.25rem, 4.5vw, 4.5rem); }
h3 { font-size: 1.35rem; }
.hero-copy { max-width: 620px; }
.hero-copy > p { margin: 0; color: rgba(255,255,255,.78); font-size: clamp(1.05rem, 1.5vw, 1.3rem); }
.button-row { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 28px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 12px 20px; border: 2px solid transparent; border-radius: 4px; text-decoration: none; font-size: .88rem; font-weight: 950; letter-spacing: .045em; text-transform: uppercase; transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible { outline: 3px solid #ffcc4d; outline-offset: 3px; }
.button-primary { background: var(--red); color: white; }
.button-primary:hover { background: #ef303a; }
.button-secondary { border-color: rgba(255,255,255,.5); color: white; }
.button-secondary:hover { background: white; color: var(--green-950); }
.button-light { background: var(--cream); color: var(--green-950); white-space: nowrap; }

.proof-strip { background: var(--red); color: white; }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-grid p { margin: 0; padding: 20px 16px; display: flex; align-items: center; gap: 10px; border-left: 1px solid rgba(255,255,255,.23); font-size: .78rem; font-weight: 900; letter-spacing: .05em; text-transform: uppercase; }
.proof-grid p:last-child { border-right: 1px solid rgba(255,255,255,.23); }
.proof-grid span { color: var(--cream); opacity: .72; font-family: Georgia, serif; font-style: italic; }

.section { padding-block: clamp(80px, 9vw, 130px); }
.page-hero { padding-block: clamp(78px, 10vw, 140px); background: var(--green-950); color: white; overflow: hidden; position: relative; }
.page-hero::after { content: "29"; position: absolute; right: -22px; bottom: -145px; color: rgba(255,255,255,.035); font-family: Impact, sans-serif; font-size: 29rem; line-height: 1; pointer-events: none; }
.page-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(48px, 8vw, 110px); align-items: end; }
.page-hero h1 { max-width: 820px; }
.page-hero-grid > p { margin: 0 0 8px; max-width: 620px; color: rgba(255,255,255,.74); font-size: clamp(1.1rem, 1.8vw, 1.42rem); line-height: 1.55; }
.page-hero-cream { background: var(--cream); color: var(--ink); }
.page-hero-cream::after { color: rgba(6,53,42,.045); }
.page-hero-cream .page-hero-grid > p { color: var(--muted); }
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(52px, 8vw, 115px); }
.section-heading h2 { max-width: 760px; }
.section-heading.wide { display: grid; grid-template-columns: 1.15fr .85fr; gap: 70px; align-items: end; margin-bottom: 50px; }
.section-heading.wide > p { margin: 0 0 15px; color: var(--muted); }
.section-heading.center { max-width: 820px; margin: 0 auto 55px; text-align: center; }
.mission { background: var(--paper); }
.mission-copy { padding-top: 8px; }
.mission-copy p { color: var(--muted); }
.mission-copy .lead { margin-top: 0; color: var(--ink); font-size: clamp(1.25rem, 2vw, 1.7rem); line-height: 1.45; font-weight: 650; }
blockquote { margin: 34px 0 0; padding: 26px 0 26px 26px; border-left: 6px solid var(--red); color: var(--green-800); font-family: Georgia, serif; font-size: clamp(1.35rem, 2.5vw, 2rem); font-style: italic; }
.text-link { display: inline-flex; gap: 9px; margin-top: 16px; color: var(--green-800); font-weight: 900; text-decoration-color: var(--red); text-decoration-thickness: 2px; text-underline-offset: 5px; }
.text-link:hover span { transform: translateX(4px); }
.text-link span { transition: transform .2s ease; }

.explore { background: #f0ead8; border-block: 1px solid var(--line); }
.overview-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.overview-card { min-height: 330px; padding: 30px 25px; display: flex; flex-direction: column; background: var(--paper); border: 1px solid var(--line); border-top: 5px solid var(--red); color: var(--ink); text-decoration: none; box-shadow: 0 8px 24px rgba(4,31,25,.06); transition: transform .2s ease, box-shadow .2s ease; }
.overview-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.overview-card > span { color: var(--red); font-family: Georgia, serif; font-size: 2rem; font-weight: 900; font-style: italic; }
.overview-card h3 { margin: 45px 0 12px; font-size: 1.55rem; }
.overview-card p { margin: 0; color: var(--muted); font-size: .95rem; }
.overview-card strong { margin-top: auto; padding-top: 28px; color: var(--green-800); font-size: .78rem; letter-spacing: .04em; text-transform: uppercase; }
.home-involved { background: var(--paper); }

.pilot { background: #f0ead8; border-block: 1px solid var(--line); }
.program-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.program-card { min-height: 315px; padding: 30px 25px; display: flex; flex-direction: column; border-radius: 5px; box-shadow: var(--shadow); }
.program-card h3 { margin: auto 0 12px; font-size: 1.65rem; }
.program-card p { margin: 0; font-size: .96rem; line-height: 1.55; }
.card-number { font-family: Georgia, serif; font-size: 2.1rem; font-weight: 900; font-style: italic; opacity: .48; }
.program-card.red { background: var(--red); color: white; transform: rotate(-.8deg); }
.program-card.cream { background: var(--paper); color: var(--ink); transform: translateY(12px); }
.program-card.green { background: var(--green-800); color: white; transform: translateY(-8px); }
.program-card.dark { background: var(--green-950); color: white; transform: rotate(.8deg) translateY(8px); }
.development-note { margin-top: 58px; display: grid; grid-template-columns: 200px 1fr; gap: 28px; padding: 28px 30px; border: 1px solid var(--line); background: rgba(255,255,255,.46); }
.development-note strong { color: var(--red-dark); text-transform: uppercase; letter-spacing: .09em; }
.development-note p { margin: 0; color: var(--muted); }

.session { background: var(--paper); }
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 3px solid var(--green-900); }
.steps li { padding: 28px 24px 0; border-left: 1px solid var(--line); }
.steps li:last-child { border-right: 1px solid var(--line); }
.steps span { display: grid; place-items: center; width: 42px; height: 42px; margin: -51px 0 28px; background: var(--paper); border: 3px solid var(--green-900); border-radius: 50%; color: var(--red); font-weight: 950; }
.steps h3 { margin-bottom: 8px; }
.steps p { margin: 0; color: var(--muted); font-size: .95rem; }

.safety { background: var(--green-950); color: white; position: relative; overflow: hidden; }
.safety::after { content: "29"; position: absolute; right: -25px; bottom: -130px; color: rgba(255,255,255,.035); font-family: Impact, sans-serif; font-size: 30rem; line-height: 1; }
.safety-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: center; }
.safety-title p:last-child { color: rgba(255,255,255,.7); }
.check-list { margin: 0; padding: 0; list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.check-list li { min-height: 95px; padding: 20px 20px 20px 52px; position: relative; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; }
.check-list li::before { content: "✓"; position: absolute; left: 19px; top: 50%; transform: translateY(-50%); color: #ff5961; font-weight: 950; }

.story { background: var(--cream); }
.story-grid { display: grid; grid-template-columns: .68fr 1.32fr; gap: clamp(50px, 9vw, 130px); align-items: center; }
.story-mark { aspect-ratio: 1; background: var(--red); color: white; border: 13px solid var(--green-900); outline: 7px solid var(--cream); box-shadow: 0 0 0 10px var(--red), var(--shadow); display: grid; place-content: center; text-align: center; transform: rotate(-2deg); }
.story-mark span { font-family: Impact, sans-serif; font-size: clamp(6rem, 13vw, 11rem); line-height: .78; }
.story-mark p { margin: 30px 0 0; font-size: .75rem; font-weight: 950; letter-spacing: .13em; line-height: 1.5; text-transform: uppercase; }
.story-copy p { color: #47524d; }
.story-copy .story-close { margin-top: 28px; color: var(--green-900); font-size: 1.18rem; font-weight: 750; }
.story-page { padding-block: clamp(85px, 10vw, 145px); }

.involved { background: var(--paper); }
.involved-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.involved-card { min-height: 290px; padding: 28px 24px; border: 1px solid var(--line); border-top: 5px solid var(--red); background: white; color: var(--ink); display: flex; flex-direction: column; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.involved-card:hover { transform: translateY(-5px); border-color: rgba(213,34,44,.48); box-shadow: var(--shadow); }
.involved-card:focus-visible { outline: 3px solid #ffcc4d; outline-offset: 4px; }
.involved-card > span { color: var(--red-dark); font-size: .75rem; font-weight: 950; letter-spacing: .11em; text-transform: uppercase; }
.involved-grid h3 { margin: 28px 0 10px; }
.involved-grid p { margin: 0; color: var(--muted); font-size: .94rem; }
.involved-grid .card-action { margin-top: auto; padding-top: 24px; color: var(--green-800); font-size: .78rem; font-weight: 950; letter-spacing: .045em; text-transform: uppercase; }
.contact-panel { margin-top: 70px; padding: clamp(32px, 5vw, 60px); background: var(--green-800); color: white; display: flex; align-items: center; justify-content: space-between; gap: 45px; border-radius: 5px; }
.contact-panel h2 { margin-bottom: 15px; font-size: clamp(2.1rem, 4vw, 3.8rem); }
.contact-panel p { margin: 0; max-width: 760px; color: rgba(255,255,255,.75); }
.email-link { color: white; font-weight: 850; text-underline-offset: 3px; }

.next-page { padding-block: clamp(52px, 7vw, 85px); background: var(--green-800); color: white; }
.next-page-inner { display: flex; align-items: center; justify-content: space-between; gap: 45px; }
.next-page h2 { margin-bottom: 0; max-width: 850px; font-size: clamp(2rem, 4vw, 3.7rem); }

footer { padding: 55px 0 24px; background: var(--green-950); color: white; }
.footer-grid { display: grid; grid-template-columns: auto 1fr auto; gap: 24px; align-items: center; }
.footer-brand img { width: 84px; height: 84px; object-fit: contain; }
.footer-grid strong { text-transform: uppercase; font-size: 1.1rem; letter-spacing: .06em; }
.footer-grid p { margin: 4px 0; color: rgba(255,255,255,.7); }
.footer-grid small { color: rgba(255,255,255,.48); }
.footer-grid > a:last-child { color: var(--cream); font-size: .82rem; font-weight: 900; text-decoration: none; text-transform: uppercase; }
.legal-note { margin-top: 34px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.42); font-size: .72rem; }

@media (max-width: 980px) {
  .nav-wrap { padding-block: 10px; align-items: flex-start; }
  nav { justify-content: flex-end; flex-wrap: wrap; padding-top: 12px; }
  nav a { font-size: .76rem; }
  .hero-intro, .page-hero-grid, .split, .safety-grid, .story-grid { grid-template-columns: 1fr; gap: 44px; }
  .section-heading.wide { grid-template-columns: 1fr; gap: 8px; }
  .program-grid, .involved-grid, .overview-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-grid p:nth-child(2) { border-right: 1px solid rgba(255,255,255,.23); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 62px 0; }
  .steps li:nth-child(2) { border-right: 1px solid var(--line); }
  .story-mark { max-width: 440px; margin-inline: auto; }
}

@media (max-width: 680px) {
  :root { --shell: min(100% - 28px, 1180px); }
  body { font-size: 16px; }
  .site-header { position: static; }
  .nav-wrap { display: block; }
  .brand { justify-content: center; }
  nav { justify-content: center; gap: 10px 18px; padding: 8px 0 10px; }
  nav a { font-size: .72rem; }
  .nav-cta { padding: 7px 10px; }
  .hero-image img { min-height: 260px; object-position: 38% center; }
  .hero-intro { padding-block: 38px 48px; }
  .page-hero { padding-block: 62px 72px; }
  .page-hero::after { right: -16px; bottom: -72px; font-size: 16rem; }
  .button-row, .button { width: 100%; }
  .proof-grid, .program-grid, .involved-grid, .overview-grid, .steps, .check-list { grid-template-columns: 1fr; }
  .proof-grid p { border-right: 1px solid rgba(255,255,255,.23); }
  .program-card { min-height: 270px; transform: none !important; }
  .development-note { grid-template-columns: 1fr; gap: 8px; }
  .steps { gap: 56px; border-top: 0; }
  .steps li, .steps li:last-child { border: 0; border-top: 2px solid var(--green-900); padding-inline: 0; }
  .contact-panel { display: block; }
  .contact-panel .button { margin-top: 26px; }
  .next-page-inner { display: block; }
  .next-page .button { margin-top: 28px; }
  .footer-grid { grid-template-columns: 70px 1fr; }
  .footer-grid > a:last-child { grid-column: 1 / -1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
