/* ============ Tokens ============ */
:root {
  --sun: #FFC93C;
  --sun-deep: #F5B400;
  --orange: #FF7A3D;
  --orange-deep: #E8622A;
  --sky: #7EC8F0;
  --sky-deep: #4FA8E8;
  --lake: #2E7FB8;
  --lake-deep: #1F5F8E;
  --sage: #8FB596;
  --wetland: #5E9C6E;
  --wetland-deep: #3F7D5A;
  --mountain: #5F7A99;
  --mountain-light: #8FA5BF;
  --cream: #FFF6E8;
  --cream-deep: #F3E6CF;
  --sand: #E9D9B8;
  --navy: #1C2B3A;
  --navy-soft: #35485C;
  --ink: var(--navy);
  --ink-soft: #4A5B6E;

  --display: "Bricolage Grotesque", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  --body: "DM Sans", "Helvetica Neue", Arial, system-ui, sans-serif;

  --radius: 20px;
  --radius-lg: 32px;
  --shadow: 0 10px 30px -12px rgba(28, 43, 58, .25);
  --shadow-lg: 0 24px 60px -20px rgba(28, 43, 58, .35);
  --ease: cubic-bezier(.22, 1, .36, 1);
  --container: 1200px;
  --gutter: clamp(16px, 4vw, 40px);
  --section: clamp(72px, 10vw, 140px);
}

/* ============ Reset ============ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: clamp(16px, 1.05vw + 12px, 19px);
  line-height: 1.55;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p, figure, address { margin: 0; }
address { font-style: normal; }
:focus-visible { outline: 3px solid var(--navy); outline-offset: 3px; border-radius: 6px; }
.skip { position: absolute; left: 8px; top: -60px; background: var(--navy); color: var(--cream); padding: 10px 16px; border-radius: 10px; z-index: 200; text-decoration: none; }
.skip:focus { top: 8px; }

.container { width: min(100% - 2 * var(--gutter), var(--container)); margin-inline: auto; }
section { position: relative; }
section[id] { scroll-margin-top: 76px; }

/* ============ Type ============ */
.display {
  font-family: var(--display);
  font-weight: 800;
  line-height: .98;
  letter-spacing: -.02em;
  font-size: clamp(2.2rem, 5.2vw, 4.4rem);
  text-wrap: balance;
}
.display-xl { font-size: clamp(2.8rem, 8vw, 6.5rem); }
.eyebrow {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .8rem;
  color: var(--orange-deep);
  margin-bottom: 14px;
}
.lede { font-size: clamp(1.05rem, 1.3vw, 1.3rem); max-width: 62ch; color: var(--ink-soft); }
.section-head { margin-bottom: clamp(36px, 5vw, 64px); }
.section-head .lede { margin-top: 18px; }

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background-color .18s;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px) scale(1.02); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0) scale(.98); }
.btn-lg { padding: 18px 32px; font-size: 1.1rem; }
.btn-sm { padding: 10px 18px; font-size: .95rem; }
.btn-sun { background: var(--sun); color: var(--navy); }
.btn-sun:hover { background: var(--sun-deep); }
.btn-navy { background: var(--navy); color: var(--cream); }
.btn-navy:hover { background: var(--navy-soft); }
.btn-orange { background: var(--orange); color: var(--navy); }
.btn-orange:hover { background: var(--orange-deep); }
.btn-lake { background: var(--lake); color: var(--cream); }
.btn-lake:hover { background: var(--lake-deep); }
.btn-ghost { background: rgba(255, 246, 232, .82); color: var(--navy); border-color: var(--navy); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: var(--cream); }
.btn-link { font-family: var(--display); font-weight: 700; color: var(--navy); text-decoration: none; padding: 12px 8px; border-bottom: 2px solid transparent; transition: border-color .2s; }
.btn-link:hover { border-color: var(--navy); }

/* ============ Header ============ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  transition: background-color .3s, box-shadow .3s;
}
.site-header.scrolled { background: rgba(255, 246, 232, .92); backdrop-filter: blur(10px); box-shadow: 0 1px 0 rgba(28, 43, 58, .08); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 14px 0; }
.brand { display: inline-flex; align-items: center; gap: 10px; white-space: nowrap; text-decoration: none; font-family: var(--display); font-size: 1.25rem; font-weight: 500; color: var(--navy); }
.brand strong { font-weight: 800; }
.brand-mark { display: block; width: 38px; height: 38px; flex: none; border-radius: 50%; overflow: hidden; box-shadow: 0 2px 8px rgba(28, 43, 58, .2); }
.nav-menu { display: flex; align-items: center; gap: clamp(14px, 2vw, 30px); }
.nav-menu > a:not(.btn) { text-decoration: none; font-weight: 500; color: var(--navy); padding: 6px 2px; border-bottom: 2px solid transparent; transition: border-color .2s; }
.nav-menu > a:not(.btn):hover { border-color: var(--orange); }
.nav-toggle { display: none; background: none; border: 0; width: 44px; height: 44px; padding: 10px; border-radius: 12px; flex-direction: column; justify-content: center; gap: 5px; }
.nav-toggle span { display: block; height: 3px; border-radius: 2px; background: var(--navy); transition: transform .25s, opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 960px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: absolute; left: var(--gutter); right: var(--gutter); top: calc(100% + 6px);
    flex-direction: column; align-items: stretch; gap: 4px;
    background: var(--cream); padding: 12px; border-radius: var(--radius); box-shadow: var(--shadow-lg);
    transform-origin: top; transform: scaleY(.9); opacity: 0; pointer-events: none;
    transition: transform .2s var(--ease), opacity .2s;
  }
  .nav-menu.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-menu > a:not(.btn) { padding: 12px 14px; border-radius: 12px; border-bottom: 0; }
  .nav-menu > a:not(.btn):hover { background: var(--cream-deep); }
  .nav-menu .btn { margin-top: 6px; }
  .site-header { background: rgba(255, 246, 232, .92); backdrop-filter: blur(10px); }
}

/* ============ Hero ============ */
.hero {
  margin-top: -72px;
  min-height: clamp(640px, 92svh, 900px);
  display: grid; align-items: end;
  overflow: hidden;
  color: var(--navy);
}
.hero-scene { position: absolute; inset: 0; z-index: 0; }
.hero-svg { width: 100%; height: 100%; }
.layer { will-change: transform; }
.hero-content {
  position: relative; z-index: 1;
  padding-block: clamp(120px, 18vh, 200px) clamp(160px, 24vh, 240px);
  max-width: 720px;
  margin-left: max(var(--gutter), calc((100% - var(--container)) / 2));
}
.hero h1 { display: grid; gap: 6px; }
.h1-a { font-family: var(--display); font-weight: 800; letter-spacing: -.03em; line-height: .95; font-size: clamp(3rem, 8vw, 6.4rem); }
.h1-b { font-family: var(--display); font-weight: 700; letter-spacing: -.015em; line-height: 1.05; font-size: clamp(1.35rem, 2.6vw, 2.1rem); color: var(--navy-soft); }
.hero .eyebrow { color: var(--navy); background: var(--sun); display: inline-block; padding: 6px 12px; border-radius: 8px; }
.hero-tag { margin-top: 22px; font-family: var(--display); font-weight: 700; font-size: clamp(1.05rem, 1.6vw, 1.35rem); }
.hero-lede { margin-top: 10px; max-width: 56ch; color: var(--navy); }
.hero-ctas { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 14px; margin-top: 30px; }

@media (max-width: 720px) {
  .hero { min-height: 100svh; align-items: start; }
  .hero-content { padding-block: 110px 300px; }
  .hero-svg { height: 100%; }
  .hero .hero-lede { font-size: .98rem; }
  .btn-link { padding-inline: 4px; }
}
@media (max-width: 720px) and (max-height: 700px) { .hero-content { padding-bottom: 240px; } }

/* Environmental animation */
.sun { animation: sun-rise 22s var(--ease) both; transform-origin: center; }
@keyframes sun-rise { from { transform: translateY(70px); } to { transform: translateY(0); } }
.sun-glow { animation: glow 6s ease-in-out infinite alternate; transform-origin: 980px 400px; }
@keyframes glow { from { opacity: .8; transform: scale(.96); } to { opacity: 1; transform: scale(1.04); } }
.cloud-a { animation: drift 70s linear infinite; }
.cloud-b { animation: drift 95s linear infinite; }
.cloud-c { animation: drift 80s linear infinite reverse; }
@keyframes drift { from { transform: translateX(-60px); } to { transform: translateX(60px); } }
.wave { animation: wave 6s ease-in-out infinite alternate; }
.w2 { animation-duration: 8s; animation-delay: -2s; }
.w3 { animation-duration: 7s; animation-delay: -4s; }
@keyframes wave { from { transform: translateX(0); } to { transform: translateX(40px); } }
.duck-family { animation: swim 60s linear infinite; }
@keyframes swim { from { transform: translate(-140px, 700px); } to { transform: translate(1520px, 700px); } }
.duck-family-2 { animation: swim2 70s linear infinite; }
@keyframes swim2 { from { transform: translate(-120px, 585px); } to { transform: translate(1520px, 585px); } }
.duck-family-sm { animation: swim-sm 40s linear infinite; }
@keyframes swim-sm { from { transform: translate(-80px, 372px); } to { transform: translate(580px, 372px); } }
.duckling { animation: bobble 1.4s ease-in-out infinite alternate; transform-box: fill-box; transform-origin: center; }
.d2 { animation-delay: -.5s; } .d3 { animation-delay: -1s; }
@keyframes bobble { from { transform: translateY(0); } to { transform: translateY(-2px); } }
.duck-solo { animation: bobble 2.2s ease-in-out infinite alternate; transform-box: fill-box; transform-origin: center; }
.egret { animation: egret 9s ease-in-out infinite; transform-box: fill-box; transform-origin: bottom center; }
@keyframes egret { 0%, 80%, 100% { transform: none; } 40% { transform: translateY(-2px) rotate(-1.5deg); } 60% { transform: translateY(0) rotate(1deg); } }
.reed { animation: sway 5s ease-in-out infinite alternate; transform-box: fill-box; transform-origin: bottom center; }
.r2 { animation-duration: 6s; animation-delay: -2s; } .r3 { animation-duration: 5.5s; animation-delay: -1s; }
@keyframes sway { from { transform: rotate(-2.5deg); } to { transform: rotate(2.5deg); } }
.bob, .bob-b, .bob-fast, .wave-arm { transform-box: fill-box; transform-origin: bottom center; }
.bob { animation: bob .55s ease-in-out infinite alternate; }
.bob-b { animation: bob .6s ease-in-out infinite alternate; animation-delay: -.3s; }
.bob-fast { animation: bob .42s ease-in-out infinite alternate; }
@keyframes bob { from { transform: translateY(0); } to { transform: translateY(-4px); } }
.wave-arm { animation: wave-arm 2.6s ease-in-out infinite; }
@keyframes wave-arm { 0%, 100% { transform: rotate(0); } 30% { transform: rotate(-2.5deg); } 60% { transform: rotate(2deg); } }
.map-pin { animation: pin 2s ease-in-out infinite; transform-box: fill-box; transform-origin: bottom center; }
@keyframes pin { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* Scroll reveals */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.way-grid .reveal:nth-child(2), .moments .reveal:nth-child(2), .roles .reveal:nth-child(2), .info-grid .reveal:nth-child(2), .steps .reveal:nth-child(2) { transition-delay: .08s; }
.way-grid .reveal:nth-child(3), .moments .reveal:nth-child(3), .roles .reveal:nth-child(3), .info-grid .reveal:nth-child(3), .steps .reveal:nth-child(3) { transition-delay: .16s; }
.way-grid .reveal:nth-child(4), .moments .reveal:nth-child(4), .roles .reveal:nth-child(4), .info-grid .reveal:nth-child(4) { transition-delay: .24s; }
.way-grid .reveal:nth-child(5), .moments .reveal:nth-child(5), .roles .reveal:nth-child(5), .info-grid .reveal:nth-child(5) { transition-delay: .32s; }
.way-grid .reveal:nth-child(6), .moments .reveal:nth-child(6), .roles .reveal:nth-child(6) { transition-delay: .4s; }
.roles .reveal:nth-child(7) { transition-delay: .48s; }

/* ============ Info signs ============ */
.info { margin-top: -80px; z-index: 2; padding-bottom: var(--section); }
.info-grid { display: grid; grid-template-columns: 1.3fr 1fr 1.3fr .7fr .7fr; gap: 14px; }
.sign {
  border-radius: var(--radius); padding: 24px;
  display: flex; flex-direction: column; justify-content: flex-start; gap: 4px;
  min-height: 170px;
  box-shadow: var(--shadow-lg);
  transition: transform .25s var(--ease);
}
.sign:hover { transform: translateY(-4px) rotate(-.4deg); }
.sign-label { font-family: var(--display); font-weight: 700; text-transform: uppercase; letter-spacing: .12em; font-size: .72rem; opacity: .8; }
.sign-big { font-family: var(--display); font-weight: 800; line-height: 1.05; font-size: clamp(1.4rem, 1.8vw, 1.9rem); letter-spacing: -.01em; }
.sign-big small { font-size: .55em; font-weight: 700; }
.sign-huge { font-family: var(--display); font-weight: 800; line-height: 1; font-size: clamp(2.6rem, 4vw, 4rem); letter-spacing: -.03em; }
.sign address { margin-top: 4px; font-size: .95rem; line-height: 1.4; opacity: .9; }
.sign-next { margin-top: auto; padding-top: 10px; font-weight: 700; font-size: .9rem; }
.sign-sun { background: var(--sun); color: var(--navy); }
.sign-sky { background: var(--sky); color: var(--navy); }
.sign-sky .sign-label + .sign-big { margin-bottom: 8px; }
.sign-lake { background: var(--lake); color: var(--cream); }
.sign-sage { background: var(--wetland); color: var(--cream); }
.sign-orange { background: var(--orange); color: var(--navy); }
.sign-sage, .sign-orange { justify-content: space-between; }

@media (max-width: 980px) {
  .info-grid { grid-template-columns: repeat(2, 1fr); }
  .sign-lake { grid-column: 1 / -1; }
}
@media (max-width: 520px) {
  .info { margin-top: -60px; }
  .info-grid { gap: 10px; }
  .sign { min-height: 0; padding: 18px; }
  .sign-lake, .sign-sky { grid-column: 1 / -1; }
  .sign-sky { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; grid-auto-flow: column; column-gap: 16px; }
}

/* ============ Everyone ============ */
.everyone { padding-block: 0 var(--section); text-align: center; }
.everyone .lede { margin: 20px auto 0; }
.pill-cloud { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 36px; max-width: 900px; margin-inline: auto; }
.pill-cloud li {
  font-family: var(--display); font-weight: 700; font-size: .95rem;
  padding: 10px 18px; border-radius: 999px; border: 2px solid var(--navy);
  transition: transform .2s var(--ease), background-color .2s, color .2s;
}
.pill-cloud li:hover { transform: translateY(-3px) rotate(-1deg); background: var(--navy); color: var(--cream); }
.pill-cloud li:nth-child(3n) { background: var(--sun); border-color: var(--sun); }
.pill-cloud li:nth-child(5n) { background: var(--sky); border-color: var(--sky); }
.pill-cloud li:nth-child(7n) { background: var(--sage); border-color: var(--sage); }
.pill-cloud li:last-child { background: var(--orange); border-color: var(--orange); font-size: 1.1rem; }

/* ============ Video ============ */
.video-section { background: var(--navy); color: var(--cream); padding-block: var(--section); overflow: hidden; }
.video-section .eyebrow { color: var(--sun); }
.video-section::before {
  content: ""; position: absolute; inset: auto -10% -40% -10%; height: 60%;
  background: radial-gradient(ellipse at center, rgba(46, 127, 184, .5), transparent 70%);
  pointer-events: none;
}
.video-frame { position: relative; max-width: 1000px; margin: 0 auto; }
.video-facade {
  position: relative; aspect-ratio: 16 / 9; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--lake-deep); box-shadow: var(--shadow-lg), 0 0 0 10px rgba(255, 246, 232, .06);
  display: grid; place-items: center;
}
.video-facade img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .9; filter: saturate(1.05); }
.video-facade iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.play {
  position: relative; z-index: 1;
  width: clamp(72px, 10vw, 104px); aspect-ratio: 1; border-radius: 50%; border: 0;
  background: var(--sun); color: var(--navy); display: grid; place-items: center;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .35);
  transition: transform .2s var(--ease), background-color .2s;
}
.play svg { width: 44%; margin-left: 6%; }
.play:hover { transform: scale(1.08); background: var(--sun-deep); }
.video-facade::after { content: ""; position: absolute; inset: 0; border-radius: inherit; box-shadow: inset 0 0 0 1px rgba(255, 246, 232, .12); pointer-events: none; }
.video-caption { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 18px; padding-inline: 8px; font-weight: 500; }
.video-caption a { color: var(--sun); text-decoration: none; font-weight: 700; }
.video-caption a:hover { text-decoration: underline; }

/* ============ Run your way ============ */
.your-way { padding-block: var(--section); }
.way-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.way {
  border-radius: var(--radius); padding: 28px; min-height: 230px;
  display: flex; flex-direction: column; gap: 8px; position: relative; overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.way::after { content: ""; position: absolute; right: -40px; bottom: -40px; width: 140px; height: 140px; border-radius: 50%; background: rgba(255, 246, 232, .18); transition: transform .4s var(--ease); }
.way:hover { transform: translateY(-6px) rotate(-.6deg); box-shadow: var(--shadow-lg); }
.way:hover::after { transform: scale(1.7); }
.way:hover .way-icon { transform: rotate(-8deg) scale(1.08); }
.way-icon { width: 56px; height: 56px; transition: transform .3s var(--ease); margin-bottom: auto; }
.way h3 { font-family: var(--display); font-weight: 800; font-size: 1.5rem; letter-spacing: -.01em; }
.way p { font-size: .98rem; opacity: .9; }
.way-orange { background: var(--orange); color: var(--navy); }
.way-sun { background: var(--sun); color: var(--navy); }
.way-sage { background: var(--wetland); color: var(--cream); }
.way-sky { background: var(--sky); color: var(--navy); }
.way-lake { background: var(--lake); color: var(--cream); }
.way-navy { background: var(--navy); color: var(--cream); }
@media (max-width: 900px) { .way-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .way-grid { grid-template-columns: 1fr; } .way { min-height: 0; } .way-icon { margin-bottom: 8px; } }

/* ============ Community ============ */
.community { background: var(--cream-deep); padding-block: var(--section); }
.moments { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.moment { grid-column: span 2; border-radius: var(--radius); overflow: hidden; background: var(--cream); box-shadow: var(--shadow); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.moment:nth-child(1), .moment:nth-child(2) { grid-column: span 3; }
.moment:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.moment svg { width: 100%; height: auto; aspect-ratio: 400 / 240; }
.moment-lg svg { aspect-ratio: 400 / 240; }
.moment figcaption { padding: 18px 22px 22px; display: grid; gap: 4px; }
.moment strong { font-family: var(--display); font-size: 1.15rem; font-weight: 800; }
.moment span { font-size: .95rem; color: var(--ink-soft); }
@media (max-width: 900px) { .moment, .moment:nth-child(1), .moment:nth-child(2) { grid-column: span 3; } }
@media (max-width: 560px) { .moments { grid-template-columns: 1fr; } .moment, .moment:nth-child(1), .moment:nth-child(2) { grid-column: auto; } }

/* ============ Students ============ */
.students { padding-block: var(--section); }
.students-inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.students .eyebrow { color: var(--lake); }
.stack-list { margin: 28px 0 22px; display: grid; gap: 6px; }
.stack-list li { font-family: var(--display); font-weight: 800; font-size: clamp(1.3rem, 2.2vw, 1.9rem); letter-spacing: -.01em; line-height: 1.1; display: flex; align-items: center; gap: 14px; }
.stack-list li::before { content: ""; width: 14px; height: 14px; border-radius: 4px; background: var(--orange); flex: none; transform: rotate(45deg); }
.stack-list li:nth-child(2)::before { background: var(--sky-deep); }
.stack-list li:nth-child(3)::before { background: var(--wetland); }
.stack-list li:nth-child(4)::before { background: var(--sun); }
.students-copy p { color: var(--ink-soft); max-width: 50ch; }
.students-copy .btn { margin-top: 26px; }
.students-art svg { width: 100%; height: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
@media (max-width: 820px) { .students-inner { grid-template-columns: 1fr; } .students-art { order: -1; } }

/* ============ Course ============ */
.course { background: var(--navy); color: var(--cream); padding-block: var(--section); overflow: hidden; }
.course .eyebrow { color: var(--sun); }
.course .lede { color: rgba(255, 246, 232, .82); }
.course-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.check-list { display: grid; gap: 12px; margin: 28px 0 32px; }
.check-list li { display: flex; align-items: center; gap: 12px; font-weight: 500; }
.check-list li::before { content: ""; flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--sun) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 12l5 5 9-10' fill='none' stroke='%231C2B3A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 16px no-repeat; }
.map-card {
  display: block; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 0 10px rgba(255, 246, 232, .06); background: #DCEBD6;
  text-decoration: none; color: inherit;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.map-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg), 0 0 0 10px rgba(255, 246, 232, .14); }
.map-card:hover .map-open { background: var(--navy-soft); transform: scale(1.04); }
.map-card:hover .map-pin { animation-duration: 1.1s; }
.map-facade { position: relative; aspect-ratio: 600 / 440; display: grid; place-items: center; }
.map-art { position: absolute; inset: 0; width: 100%; height: 100%; }
.map-open { position: relative; z-index: 1; box-shadow: var(--shadow-lg); pointer-events: none; }
.map-note { position: absolute; left: 16px; bottom: 14px; z-index: 1; font-size: .85rem; font-weight: 700; color: var(--navy); background: rgba(255, 246, 232, .9); padding: 6px 12px; border-radius: 999px; }
@media (max-width: 820px) { .course-grid { grid-template-columns: 1fr; } }

/* ============ How ============ */
.how { padding-block: var(--section); }
.how .section-head { text-align: center; }
.how .section-head .display { margin-inline: auto; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: step; }
.step { position: relative; background: var(--cream-deep); border-radius: var(--radius); padding: 32px 28px 28px; display: grid; gap: 10px; align-content: start; transition: transform .25s var(--ease); }
.step:hover { transform: translateY(-4px); }
.step-num { position: absolute; top: -16px; left: 24px; width: 44px; height: 44px; border-radius: 50%; background: var(--navy); color: var(--cream); font-family: var(--display); font-weight: 800; font-size: 1.2rem; display: grid; place-items: center; box-shadow: var(--shadow); }
.step-art { width: 120px; height: 90px; margin: 8px 0 6px; }
.step h3 { font-family: var(--display); font-weight: 800; font-size: 1.4rem; }
.step p { color: var(--ink-soft); font-size: .98rem; }
.step a { font-weight: 700; color: var(--lake); text-decoration: none; }
.step a:hover { text-decoration: underline; }
.how-note { margin: 36px auto 0; max-width: 60ch; text-align: center; display: flex; align-items: center; justify-content: center; gap: 10px; font-weight: 500; color: var(--ink-soft); }
@media (max-width: 820px) { .steps { grid-template-columns: 1fr; gap: 28px; } }

/* ============ Family ============ */
.family { background: var(--sky); padding-block: var(--section); overflow: hidden; }
.family-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.family .eyebrow { color: var(--lake-deep); }
.family-copy p { margin-top: 18px; color: var(--navy-soft); max-width: 52ch; }
.family-copy .btn { margin-top: 28px; }
.family-art svg { width: 100%; height: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
@media (max-width: 820px) { .family-inner { grid-template-columns: 1fr; } }

/* ============ Volunteer ============ */
.volunteer { padding-block: var(--section); }
.volunteer .eyebrow { color: var(--wetland-deep); }
.roles { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 14px; }
.role { background: var(--cream-deep); border-radius: var(--radius); padding: 22px; display: grid; gap: 4px; transition: transform .25s var(--ease), background-color .25s; }
.role:nth-child(odd) { transform: rotate(-.6deg); } .role:nth-child(even) { transform: rotate(.6deg); }
.role:hover { transform: translateY(-4px) rotate(0); background: var(--cream); box-shadow: var(--shadow); }
.role-icon { width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 10px; }
.role-icon svg { width: 26px; height: 26px; }
.role strong { font-family: var(--display); font-weight: 800; font-size: 1.15rem; }
.role span:last-child { font-size: .92rem; color: var(--ink-soft); }
.vol-cta { margin-top: 44px; background: var(--navy); color: var(--cream); border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 44px); display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.vol-cta h3 { font-family: var(--display); font-weight: 800; font-size: clamp(1.5rem, 2.4vw, 2rem); }
.vol-cta p { margin-top: 8px; max-width: 58ch; color: rgba(255, 246, 232, .82); }

/* ============ Why ============ */
.why { background: var(--orange); color: var(--navy); padding-block: var(--section); overflow: hidden; }
.why::before { content: ""; position: absolute; right: -15%; top: -30%; width: 60vw; height: 60vw; border-radius: 50%; background: var(--sun); opacity: .55; pointer-events: none; }
.why-inner { position: relative; display: grid; gap: clamp(28px, 4vw, 48px); }
.why .display-xl { max-width: 16ch; }
.why-body { display: grid; gap: 22px; max-width: 64ch; font-size: clamp(1.05rem, 1.4vw, 1.3rem); }
.why-mantra { font-family: var(--display); font-weight: 700; line-height: 1.3; font-size: clamp(1.15rem, 1.7vw, 1.5rem); }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 12px; }
.stats li { background: var(--cream); border-radius: var(--radius); padding: 22px; display: grid; gap: 2px; font-weight: 700; font-size: .9rem; color: var(--ink-soft); }
.stat { font-family: var(--display); font-weight: 800; font-size: clamp(2rem, 3.5vw, 3rem); color: var(--navy); line-height: 1; }
@media (max-width: 700px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* ============ Finale ============ */
.finale { position: relative; overflow: hidden; min-height: 760px; display: grid; align-items: start; color: var(--navy); }
.finale-scene { position: absolute; inset: 0; }
.finale-scene svg { width: 100%; height: 100%; }
.finale-content { position: relative; z-index: 1; text-align: center; padding-block: clamp(72px, 10vw, 120px) 380px; display: grid; justify-items: center; gap: 14px; }
.finale-tag { font-family: var(--display); font-weight: 700; font-size: clamp(1.1rem, 1.8vw, 1.5rem); }
.finale .hero-ctas { justify-content: center; margin-top: 14px; }
.finale-details { margin-top: 22px; display: flex; gap: 20px 40px; flex-wrap: wrap; justify-content: center; text-align: left; background: rgba(255, 246, 232, .88); backdrop-filter: blur(6px); padding: 20px 28px; border-radius: var(--radius); box-shadow: var(--shadow); font-size: .98rem; line-height: 1.5; }
@media (max-width: 720px) { .finale { min-height: 0; } .finale-content { padding-bottom: 300px; } .finale-details { text-align: center; } }

/* ============ Footer ============ */
.site-footer { background: var(--navy); color: var(--cream); padding-block: 56px 120px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 36px; }
.footer-brand .brand-mark { width: 44px; height: 44px; margin-bottom: 14px; }
.footer-name { font-family: var(--display); font-weight: 800; font-size: 1.25rem; }
.footer-fine { margin-top: 10px; font-size: .88rem; color: rgba(255, 246, 232, .7); max-width: 40ch; }
.footer-links { display: grid; gap: 8px; align-content: start; }
.footer-links h2 { font-family: var(--display); font-weight: 700; font-size: .8rem; text-transform: uppercase; letter-spacing: .14em; color: var(--sun); margin-bottom: 6px; }
.footer-links a { color: var(--cream); text-decoration: none; opacity: .9; }
.footer-links a:hover { opacity: 1; text-decoration: underline; }
.footer-links address { line-height: 1.5; }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* ============ Sticky mobile CTA ============ */
.sticky-cta { display: none; }
@media (max-width: 720px) {
  .sticky-cta {
    display: block; position: fixed; left: 16px; right: 16px; bottom: 14px; z-index: 90;
    transform: translateY(120%); transition: transform .35s var(--ease);
  }
  .sticky-cta.show { transform: none; }
  .sticky-cta .btn { width: 100%; padding: 16px; font-size: 1.05rem; box-shadow: var(--shadow-lg); }
  .site-footer { padding-bottom: 110px; }
}

/* ============ Reduced motion ============ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .duck-family { transform: translate(600px, 700px); }
  .duck-family-2 { transform: translate(600px, 585px); }
  .duck-family-sm { transform: translate(300px, 372px); }
  .layer { transform: none !important; }
  .sticky-cta { transform: none; }
}
