:root {
  --navy: #06183f;
  --ink: #03102b;
  --blue: #168fdf;
  --sky: #86d2ff;
  --gold: #f1ad3d;
  --foam: #f5f7f4;
  --paper: #fffdf7;
  --white: #fff;
  --line: rgba(6, 24, 63, .18);
  --poster: "Bowlby One SC", sans-serif;
  --display: "Barlow Condensed", sans-serif;
  --body: "Nunito Sans", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body { margin: 0; background: var(--foam); color: var(--ink); font-family: var(--body); overflow-x: clip; }
button, input, select, textarea { font: inherit; }
img { display: block; max-width: 100%; }
a, button { -webkit-tap-highlight-color: transparent; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }

.grain { position: fixed; inset: 0; opacity: .038; pointer-events: none; z-index: 99; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.85'/%3E%3C/svg%3E"); }
.announce { min-height: 36px; padding: 7px 4vw; display: flex; align-items: center; justify-content: center; gap: 9px; background: var(--sky); font: 800 11px/1.2 var(--body); letter-spacing: .08em; color: var(--navy); text-align: center; }
.announce strong { background: var(--navy); color: white; padding: 4px 7px; border-radius: 999px; white-space: nowrap; }
.announce a { color: inherit; margin-left: 8px; text-underline-offset: 3px; white-space: nowrap; }

.site-header { height: 76px; padding: 0 4vw; display: flex; align-items: center; justify-content: space-between; background: rgba(245, 247, 244, .94); backdrop-filter: blur(16px); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 50; }
.mini-brand { display: flex; align-items: center; gap: 10px; color: var(--navy); text-decoration: none; font: 900 14px/12px var(--display); letter-spacing: .08em; }
.mini-brand img { width: 48px; height: 48px; object-fit: cover; border-radius: 50%; border: 2px solid var(--navy); background: white; }
.site-header nav { display: flex; align-items: center; gap: 30px; }
.site-header nav a { color: var(--ink); text-decoration: none; text-transform: uppercase; font: 800 13px var(--display); letter-spacing: .08em; }
.site-header nav a:not(.nav-cta):hover { color: var(--blue); }
.nav-cta { padding: 12px 19px; border: 2px solid var(--navy); box-shadow: 4px 4px 0 var(--sky); }
.nav-toggle { display: none; }

.hero { min-height: calc(100svh - 112px); position: relative; display: grid; grid-template-columns: minmax(0, 1.06fr) minmax(300px, .94fr); align-items: center; overflow: hidden; isolation: isolate; background: var(--navy); color: white; padding: 7vh 5vw 13vh; }
.hero::before { content: ""; position: absolute; inset: 0; z-index: -2; background: linear-gradient(115deg, transparent 0 49%, rgba(23, 142, 222, .09) 49% 50%, transparent 50% 100%); background-size: 42px 42px; }
.hero::after { content: ""; position: absolute; right: -8%; top: -30%; z-index: -1; width: min(57vw, 850px); aspect-ratio: 1; border: 90px solid rgba(23, 142, 222, .18); border-radius: 50%; box-shadow: 0 0 0 40px rgba(140, 210, 255, .06), 0 0 0 140px rgba(255, 255, 255, .03); }
.hero-rings { position: absolute; width: 150%; height: 60%; left: -35%; bottom: -43%; border-radius: 50%; border: 2px solid rgba(140, 210, 255, .45); box-shadow: 0 -22px 0 rgba(23, 142, 222, .16), 0 -44px 0 rgba(255, 255, 255, .07), 0 -66px 0 rgba(140, 210, 255, .1); transform: rotate(-5deg); }
.hero-copy { position: relative; z-index: 4; min-width: 0; max-width: 790px; }
.eyebrow, .overline { font: 800 12px var(--body); letter-spacing: .18em; color: var(--sky); }
.hero h1 { max-width: 820px; font: 400 clamp(56px, 7.5vw, 118px)/.86 var(--poster); letter-spacing: -.04em; margin: 28px 0 32px; text-transform: uppercase; text-wrap: balance; }
.hero h1 em, .road h2 em, .join h2 em { font-family: var(--display); font-weight: 900; font-style: italic; color: var(--sky); }
.hero-lede { font-size: clamp(16px, 1.35vw, 21px); line-height: 1.55; max-width: 560px; color: rgba(255, 255, 255, .78); }
.hero-actions { display: flex; align-items: center; gap: 30px; margin-top: 36px; }
.button { display: inline-flex; align-items: center; justify-content: space-between; gap: 26px; min-width: 205px; min-height: 54px; padding: 16px 20px; text-decoration: none; text-transform: uppercase; border: 0; cursor: pointer; font: 900 15px var(--display); letter-spacing: .08em; transition: transform .2s, box-shadow .2s; }
.button:hover { transform: translate(-2px, -2px); }
.button-light { background: var(--sky); color: var(--navy); box-shadow: 6px 6px 0 white; }
.button-light:hover { box-shadow: 9px 9px 0 white; }
.button-white { background: #fff; color: var(--navy); box-shadow: 7px 7px 0 var(--sky); width: 100%; }
.button-blue { background: var(--blue); color: white; box-shadow: 6px 6px 0 var(--sky); }
.text-link { color: white; text-underline-offset: 5px; font: 800 13px var(--body); }
.hero-mark { position: relative; z-index: 3; display: grid; place-items: center; min-width: 0; }
.hero-logo-card { width: min(37vw, 560px); aspect-ratio: 1; padding: 3.5%; display: grid; place-items: center; border-radius: 50%; background: white; border: 8px solid var(--sky); box-shadow: 0 18px 0 rgba(0, 0, 0, .2), 0 0 0 10px var(--navy), 0 0 0 13px rgba(255, 255, 255, .25); transform: rotate(2deg); overflow: hidden; }
.hero-mark img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 50%; }
.logo-halo { position: absolute; width: 88%; aspect-ratio: 1; border: 1px solid rgba(255, 255, 255, .25); border-radius: 50%; box-shadow: 0 0 80px rgba(23, 142, 222, .33); }
.stamp { position: absolute; right: 5%; bottom: 5%; width: 94px; aspect-ratio: 1; border-radius: 50%; background: var(--gold); color: var(--navy); display: grid; place-items: center; text-align: center; font: 900 23px/18px var(--display); transform: rotate(9deg); border: 5px solid var(--navy); outline: 2px solid var(--gold); }
.hero-doodle { position: absolute; pointer-events: none; }
.hero-doodle-ball { left: 47%; top: 14%; width: 26px; aspect-ratio: 1; border-radius: 50%; background: white; box-shadow: inset 0 0 0 2px var(--gold); transform: rotate(-15deg); }
.hero-doodle-ball::before, .hero-doodle-ball::after { content: ""; position: absolute; width: 18px; height: 22px; border: 1px dashed #d83939; border-top: 0; border-bottom: 0; border-radius: 50%; top: 2px; }
.hero-doodle-ball::before { left: -4px; }.hero-doodle-ball::after { right: -4px; }
.hero-doodle-star { left: 51%; bottom: 23%; color: var(--gold); font-size: 30px; transform: rotate(12deg); }
.hero-ticker { position: absolute; bottom: 28px; left: 0; display: flex; gap: 30px; align-items: center; white-space: nowrap; font: 800 15px var(--display); letter-spacing: .2em; color: rgba(255, 255, 255, .58); animation: ticker 26s linear infinite; }
.hero-ticker i { color: var(--sky); font-size: 8px; }
@keyframes ticker { to { transform: translateX(-30%); } }

.section-pad { padding: 108px 6vw; }
.section-num { font: 900 11px var(--body); letter-spacing: .16em; color: var(--blue); }
.manifesto { background: #fff; }
.manifesto-grid { display: grid; grid-template-columns: .72fr 1.55fr; gap: 8vw; margin: 66px 0 84px; }
.kicker { font: 800 18px/1.5 var(--body); max-width: 300px; border-left: 5px solid var(--gold); padding-left: 23px; }
.manifesto h2, .program h2, .coach-intro h2, .season h2, .gallery h2 { font: 900 clamp(52px, 6.2vw, 94px)/.85 var(--display); letter-spacing: -.035em; margin: 0; text-transform: uppercase; text-wrap: balance; }
.manifesto h2 span { color: var(--blue); }
.manifesto-copy > p { max-width: 720px; font-size: 17px; line-height: 1.72; color: #42506b; }
.values-strip { display: grid; grid-template-columns: repeat(5, 1fr); border: 2px solid var(--navy); box-shadow: 8px 8px 0 var(--sky); }
.values-strip article { min-width: 0; padding: 30px 22px 26px; border-right: 1px solid var(--line); background: white; }
.values-strip article:nth-child(even) { background: var(--paper); }
.values-strip article:last-child { border-right: 0; }
.values-strip b { color: var(--blue); font: 900 11px var(--body); }
.values-strip h3 { font: 900 25px var(--display); text-transform: uppercase; margin: 18px 0 8px; }
.values-strip p { font-size: 12px; line-height: 1.55; color: #5d6880; }

.program { background: var(--foam); }
.section-heading, .coach-intro, .gallery-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-bottom: 66px; }
.section-heading h2, .coach-intro h2, .gallery h2 { margin-top: 20px; }
.section-heading h2 i, .coach-intro h2 i, .gallery h2 i { font-style: italic; color: var(--blue); }
.section-heading > p, .coach-intro p, .gallery-head p { max-width: 420px; line-height: 1.7; color: #526077; }
.program-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.program-card { min-width: 0; min-height: 315px; padding: 34px; display: flex; flex-direction: column; justify-content: space-between; position: relative; overflow: hidden; border: 2px solid var(--navy); }
.program-card > * { position: relative; z-index: 2; }
.program-card > span { font: 900 11px var(--body); letter-spacing: .16em; }
.program-card strong { font: 900 clamp(43px, 4.8vw, 74px)/.87 var(--display); text-wrap: balance; }
.program-card small { font: 700 13px/1.45 var(--body); max-width: 290px; }
.program-card.dark { background: var(--navy); color: white; }
.program-card.dark::after { content: ""; position: absolute; width: 260px; height: 260px; border-radius: 50%; border: 40px solid var(--blue); right: -100px; top: -100px; }
.program-card.wave { background: var(--sky); color: var(--navy); }
.program-card.wave::after { content: ""; position: absolute; width: 430px; height: 220px; border: 30px solid #fff; border-radius: 50%; right: -170px; bottom: -170px; box-shadow: 0 0 0 20px var(--blue); }
.program-card.outline { background: white; box-shadow: inset 0 0 0 6px var(--paper); }
.program-card.sky { background: var(--blue); color: white; }
.program-card.sky::after { content: "★"; position: absolute; right: 26px; top: 18px; color: var(--gold); font-size: 42px; transform: rotate(10deg); }
.age-rail { margin-top: 44px; display: grid; grid-template-columns: auto auto minmax(22px, 1fr) auto minmax(22px, 1fr) auto minmax(22px, 1fr) auto; align-items: center; gap: 14px; padding: 24px; border: 2px solid var(--navy); background: white; }
.age-rail > span { font: 900 11px var(--body); letter-spacing: .15em; color: #667086; }
.age-rail b { font: 900 29px var(--display); white-space: nowrap; }
.age-rail i { width: 100%; height: 3px; background: var(--sky); }
.age-rail .active { background: var(--navy); color: white; padding: 8px 12px; }
.age-rail .destination { display: flex; align-items: center; gap: 8px; color: var(--blue); }
.age-rail small { font: 900 8px var(--body); letter-spacing: .1em; }

.coaches { background: #fff; }
.coach-intro { margin-top: 52px; }
.coach-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.coach-card { min-width: 0; display: grid; grid-template-columns: 43% 57%; border: 2px solid var(--navy); background: var(--foam); box-shadow: 7px 7px 0 var(--sky); overflow: hidden; }
.coach-photo { position: relative; min-height: 420px; background: var(--navy); overflow: hidden; }
.coach-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; filter: saturate(.9) contrast(1.04); }
.coach-photo span { position: absolute; bottom: 0; left: 0; right: 0; padding: 12px; background: var(--blue); color: white; text-align: center; font: 900 13px var(--display); letter-spacing: .12em; }
.coach-card > div:last-child { min-width: 0; padding: 36px 28px; display: flex; flex-direction: column; justify-content: center; }
.coach-card h3 { font: 900 clamp(38px, 4vw, 50px)/.9 var(--display); margin: 0 0 20px; }
.coach-card p { font-size: 14px; line-height: 1.65; color: #57637a; }
.coach-card a { color: var(--blue); font: 900 13px var(--body); margin-top: 22px; overflow-wrap: anywhere; }

.road { position: relative; background: var(--navy); color: white; overflow: hidden; }
.road-bg { position: absolute; inset: 0; background: radial-gradient(circle at 75% 25%, rgba(23, 142, 222, .45), transparent 38%), repeating-radial-gradient(ellipse at 50% 105%, transparent 0 90px, rgba(140, 210, 255, .12) 92px 94px); transform: skewY(-2deg) scale(1.1); }
.road-content { position: relative; z-index: 2; }
.section-num.light { color: var(--sky); }
.road .overline { margin-top: 92px; }
.road h2 { max-width: 100%; font: 900 clamp(80px, 12.4vw, 182px)/.74 var(--display); letter-spacing: -.045em; margin: 36px 0 74px; text-transform: uppercase; }
.road-bottom { display: grid; grid-template-columns: .72fr 1.28fr; gap: 7vw; align-items: end; }
.road-bottom > p { font-size: 18px; line-height: 1.7; color: rgba(255, 255, 255, .76); }
.road-facts { min-width: 0; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255, 255, 255, .3); border-bottom: 1px solid rgba(255, 255, 255, .3); }
.road-facts span { min-width: 0; display: flex; flex-direction: column; padding: 23px; border-right: 1px solid rgba(255, 255, 255, .3); font: 800 10px var(--body); letter-spacing: .1em; }
.road-facts span:last-child { border-right: 0; }
.road-facts b { font: 900 52px var(--display); color: var(--sky); letter-spacing: 0; }
.source-link { display: inline-block; margin-top: 42px; color: white; text-underline-offset: 5px; font-size: 13px; }

.season { background: #fff; }
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 3px solid var(--navy); }
.timeline > div { min-width: 0; padding: 28px 22px 42px; border-right: 1px solid var(--line); position: relative; }
.timeline > div::before { content: ""; position: absolute; top: -9px; left: 20px; width: 15px; height: 15px; border-radius: 50%; background: var(--gold); border: 3px solid var(--navy); }
.timeline span { display: block; margin: 14px 0 31px; color: var(--blue); font: 900 11px var(--body); letter-spacing: .14em; }
.timeline b { display: block; font: 900 25px var(--display); text-transform: uppercase; margin-bottom: 10px; }
.timeline small { font: 600 12px/1.55 var(--body); color: #626d82; }

.gallery { background: var(--foam); }
.gallery-grid { display: grid; grid-template-columns: 1.05fr .9fr .72fr; gap: 18px; align-items: stretch; min-height: 650px; }
.gallery-grid figure { min-width: 0; margin: 0; overflow: hidden; position: relative; border: 2px solid var(--navy); }
.gallery-grid figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 12px 16px; background: var(--navy); color: white; font: 900 10px var(--body); letter-spacing: .12em; z-index: 3; }
.gallery-logo { padding: 40px; display: grid; place-items: center; background: var(--paper); transform: rotate(-1deg); }
.gallery-logo img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 50%; border: 5px solid var(--sky); box-shadow: 8px 10px 0 var(--gold); }
.tape { position: absolute; z-index: 4; top: 15px; left: 50%; width: 94px; height: 28px; background: rgba(140, 210, 255, .78); transform: translateX(-50%) rotate(-3deg); }
.gallery-quote { background: var(--blue); color: white; display: flex; flex-direction: column; justify-content: space-between; padding: 42px 38px 70px; }
.gallery-quote::after { content: ""; position: absolute; width: 330px; height: 330px; border: 55px solid var(--sky); border-radius: 50%; right: -180px; bottom: -180px; }
.quote-kicker { font: 900 10px var(--body); letter-spacing: .17em; color: var(--navy); }
.gallery-quote blockquote { margin: 0; font: 900 clamp(47px, 5vw, 76px)/.84 var(--display); position: relative; z-index: 2; }
.gallery-flyer { padding: 20px 20px 58px; background: var(--paper); transform: rotate(1deg); }
.gallery-flyer img { width: 100%; height: 100%; object-fit: contain; object-position: top; }
.poster-pin { position: absolute; width: 14px; aspect-ratio: 1; border-radius: 50%; background: var(--gold); border: 2px solid var(--navy); top: 8px; left: 50%; z-index: 3; box-shadow: 1px 3px 0 rgba(0,0,0,.2); }

.join { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 8vw; background: var(--navy); color: white; }
.join h2 { max-width: 100%; font: 900 clamp(68px, 7.6vw, 112px)/.79 var(--display); margin: 42px 0; text-transform: uppercase; }
.join-copy > p { max-width: 500px; line-height: 1.7; color: rgba(255, 255, 255, .7); }
.interest-form { min-width: 0; background: #fff; color: var(--ink); padding: 42px; box-shadow: 14px 14px 0 var(--sky); }
.interest-form label { display: block; text-transform: uppercase; font: 900 10px var(--body); letter-spacing: .1em; margin-bottom: 21px; }
.interest-form input, .interest-form select, .interest-form textarea { width: 100%; min-width: 0; margin-top: 8px; padding: 14px 2px; border: 0; border-bottom: 2px solid #cbd2dd; border-radius: 0; background: white; color: var(--ink); font: 600 16px var(--body); outline: none; }
.interest-form textarea { resize: vertical; }
.interest-form input:focus, .interest-form select:focus, .interest-form textarea:focus { border-color: var(--blue); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.interest-form .check { display: flex; gap: 12px; align-items: flex-start; text-transform: none; letter-spacing: 0; font: 600 13px/1.5 var(--body); }
.check input { flex: 0 0 19px; width: 19px; height: 19px; margin: 2px 0; }
.form-note { text-align: center; color: #768197; font-size: 11px; margin: 18px 0 0; }

footer { background: #020b1d; color: white; padding: 48px 6vw 24px; display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; gap: 28px; }
footer a { color: white; }
.footer-mark { display: flex; align-items: center; gap: 13px; font: 900 18px/16px var(--display); letter-spacing: .05em; }
.footer-mark img { width: 64px; aspect-ratio: 1; object-fit: cover; border-radius: 50%; border: 2px solid var(--sky); }
footer > p { text-align: center; font: 800 9px var(--body); letter-spacing: .12em; color: #8fa2c8; }
.footer-contact { display: flex; flex-direction: column; text-align: right; gap: 6px; font: 800 12px var(--body); letter-spacing: .07em; }
.footer-contact span { color: var(--sky); }
footer > small { grid-column: 1 / -1; border-top: 1px solid rgba(255, 255, 255, .14); padding-top: 19px; font-size: 9px; color: #697796; }

.modal[hidden] { display: none; }
.modal { position: fixed; inset: 0; z-index: 100; overscroll-behavior: contain; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(2, 11, 29, .82); backdrop-filter: blur(8px); }
.modal-card { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: min(540px, calc(100% - 32px)); max-height: calc(100svh - 32px); overflow: auto; background: white; padding: 52px; color: var(--ink); box-shadow: 14px 14px 0 var(--sky); }
.modal-card > span { font: 900 10px var(--body); letter-spacing: .15em; color: var(--blue); }
.modal-card h2 { font: 900 70px/.82 var(--display); margin: 23px 0; }
.modal-card p { line-height: 1.6; color: #566279; }
.modal-card small { display: block; margin-top: 21px; color: #7b8496; font-size: 11px; line-height: 1.5; }
.modal-close { position: absolute; right: 16px; top: 10px; width: 44px; height: 44px; border: 0; background: none; font-size: 34px; cursor: pointer; }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1000px) {
  .site-header nav { position: fixed; inset: 76px 0 auto 0; max-height: calc(100svh - 76px); overflow: auto; background: var(--foam); padding: 30px max(24px, env(safe-area-inset-left)) calc(30px + env(safe-area-inset-bottom)); flex-direction: column; align-items: flex-start; transform: translateY(-140%); transition: transform .3s; z-index: -1; border-bottom: 2px solid var(--navy); }
  .site-header nav.open { transform: none; }
  .site-header nav a { font-size: 22px; }
  .nav-toggle { display: flex; width: 44px; height: 44px; border: 0; background: none; flex-direction: column; justify-content: center; align-items: center; gap: 7px; cursor: pointer; }
  .nav-toggle span { display: block; height: 2px; background: var(--navy); width: 26px; }
  .hero { grid-template-columns: minmax(0, 1fr); padding-top: 8vh; }
  .hero-copy { z-index: 5; }
  .hero-mark { position: absolute; width: 64vw; right: -12%; bottom: 6%; opacity: .3; }
  .hero-logo-card { width: 100%; }
  .stamp, .hero-doodle { display: none; }
  .manifesto-grid, .road-bottom, .join { grid-template-columns: minmax(0, 1fr); }
  .values-strip { grid-template-columns: repeat(2, 1fr); }
  .values-strip article:nth-child(2n) { border-right: 0; }
  .program-grid, .coach-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; min-height: auto; }
  .gallery-grid figure { min-height: 520px; }
  .gallery-flyer { grid-column: 1 / -1; min-height: 760px !important; }
  .timeline { grid-template-columns: 1fr 1fr; }
  .section-heading, .coach-intro, .gallery-head { align-items: flex-start; flex-direction: column; }
  .road-facts { margin-top: 28px; }
  .join { gap: 52px; }
  footer { grid-template-columns: 1fr 1fr; }
  .footer-contact { grid-column: 2; }
  footer > p { display: none; }
}

@media (max-width: 600px) {
  html { scroll-padding-top: 94px; }
  .announce { min-height: 32px; padding-inline: 10px; font-size: 9px; gap: 5px; letter-spacing: .05em; }
  .announce > span { display: none; }
  .announce a { margin-left: 2px; }
  .site-header { height: 64px; padding-inline: 16px; }
  .site-header nav { inset: 64px 0 auto; }
  .mini-brand img { width: 41px; height: 41px; }
  .mini-brand span { font-size: 13px; }
  .hero { min-height: 700px; padding: 72px 20px 84px; align-items: start; }
  .hero::after { width: 130vw; right: -66%; top: 30%; border-width: 52px; }
  .eyebrow { max-width: 230px; font-size: 10px; line-height: 1.5; }
  .hero h1 { max-width: 100%; font-size: clamp(41px, 13.1vw, 68px); line-height: .92; letter-spacing: -.035em; margin: 20px 0 24px; }
  .hero h1 br { display: none; }
  .hero h1 em { display: block; margin-top: 4px; }
  .hero-lede { max-width: 300px; font-size: 15px; line-height: 1.5; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 22px; width: min(100%, 280px); margin-top: 30px; }
  .hero-actions .button { width: 100%; }
  .hero-actions .text-link { padding-left: 2px; }
  .hero-mark { width: min(58vw, 235px); right: -12px; bottom: 48px; opacity: .82; }
  .hero-logo-card { border-width: 5px; box-shadow: 0 10px 0 rgba(0, 0, 0, .18), 0 0 0 6px var(--navy), 0 0 0 8px rgba(255, 255, 255, .22); }
  .hero-ticker { bottom: 20px; font-size: 11px; gap: 22px; }
  .section-pad { padding: 72px 20px; }
  .section-num { font-size: 9px; }
  .manifesto-grid { margin: 38px 0 50px; gap: 28px; }
  .kicker { margin: 0; font-size: 15px; }
  .manifesto h2, .program h2, .coach-intro h2, .season h2, .gallery h2 { max-width: 100%; font-size: clamp(44px, 14.6vw, 62px); line-height: .88; overflow-wrap: normal; }
  .manifesto-copy > p { font-size: 15px; line-height: 1.65; }
  .values-strip { grid-template-columns: 1fr 1fr; box-shadow: 6px 6px 0 var(--sky); }
  .values-strip article { min-height: 170px; padding: 22px 17px 18px; border-bottom: 1px solid var(--line); }
  .values-strip article:last-child { grid-column: 1 / -1; min-height: auto; }
  .values-strip h3 { font-size: 22px; margin-top: 14px; }
  .values-strip p { margin-bottom: 0; }
  .section-heading, .coach-intro, .gallery-head { gap: 20px; margin-bottom: 45px; }
  .section-heading > p, .coach-intro p, .gallery-head p { margin: 0; font-size: 14px; }
  .program-grid { gap: 12px; }
  .program-card { min-height: 235px; padding: 24px; }
  .program-card strong { max-width: 92%; font-size: clamp(40px, 13vw, 54px); line-height: .9; }
  .program-card small { font-size: 11px; max-width: 230px; }
  .program-card.dark::after { opacity: .65; }
  .age-rail { grid-template-columns: auto minmax(14px, 1fr) auto minmax(14px, 1fr) auto minmax(14px, 1fr) auto; gap: 8px; padding: 15px 12px; }
  .age-rail > span { display: none; }
  .age-rail b { font-size: 22px; }
  .age-rail .active { padding: 7px 9px; }
  .age-rail .destination { flex-direction: column; align-items: flex-start; gap: 0; }
  .age-rail small { font-size: 6px; letter-spacing: .04em; }
  .coach-card { grid-template-columns: 42% 58%; box-shadow: 5px 5px 0 var(--sky); }
  .coach-photo { min-height: 290px; }
  .coach-photo span { padding: 9px 4px; font-size: 10px; letter-spacing: .07em; }
  .coach-card > div:last-child { padding: 22px 17px; }
  .coach-card h3 { font-size: 34px; margin-bottom: 12px; }
  .coach-card p { font-size: 12px; line-height: 1.5; }
  .coach-card a { font-size: 11px; margin-top: 12px; }
  .road .overline { margin-top: 60px; font-size: 9px; letter-spacing: .12em; }
  .road h2 { font-size: clamp(52px, 17.2vw, 83px); line-height: .78; letter-spacing: -.035em; margin: 28px 0 42px; }
  .road-bottom > p { font-size: 15px; }
  .road-facts { grid-template-columns: repeat(3, 1fr); }
  .road-facts span { padding: 16px 8px; font-size: 7px; letter-spacing: .03em; border-right: 1px solid rgba(255, 255, 255, .3); border-bottom: 0; }
  .road-facts b { font-size: 38px; }
  .source-link { font-size: 12px; }
  .timeline { grid-template-columns: 1fr; }
  .timeline > div { padding: 24px 18px 28px; border-right: 0; border-bottom: 1px solid var(--line); }
  .timeline span { margin: 10px 0 18px; }
  .timeline b { font-size: 24px; }
  .gallery-grid { grid-template-columns: 1fr; gap: 20px; }
  .gallery-grid figure { min-height: 370px; }
  .gallery-logo { padding: 38px; }
  .gallery-quote { min-height: 430px !important; padding: 28px 25px 62px; }
  .gallery-quote blockquote { font-size: clamp(48px, 16vw, 68px); }
  .gallery-flyer { grid-column: auto; min-height: 585px !important; padding: 18px 18px 52px; }
  .gallery-grid figcaption { font-size: 8px; }
  .join { gap: 42px; }
  .join h2 { font-size: clamp(55px, 17vw, 76px); line-height: .82; margin: 35px 0; }
  .join-copy > p { font-size: 14px; }
  .interest-form { width: 100%; padding: 27px 20px; box-shadow: 8px 8px 0 var(--sky); }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .interest-form .button { min-width: 0; }
  footer { grid-template-columns: 1fr; text-align: center; padding-bottom: calc(24px + env(safe-area-inset-bottom)); }
  .footer-mark { justify-content: center; }
  .footer-contact { grid-column: auto; text-align: center; }
  .modal-card { padding: 42px 24px 32px; box-shadow: 8px 8px 0 var(--sky); }
  .modal-card h2 { font-size: 55px; }
  .modal-card .button { width: 100%; }
}

@media (max-width: 360px) {
  .hero { padding-inline: 16px; }
  .section-pad { padding-inline: 16px; }
  .hero h1 { font-size: 40px; }
  .hero-mark { width: 190px; right: -18px; }
  .manifesto h2, .program h2, .coach-intro h2, .season h2, .gallery h2 { font-size: 43px; }
  .program-card strong { font-size: 39px; }
  .coach-card { grid-template-columns: 40% 60%; }
  .coach-card > div:last-child { padding-inline: 14px; }
  .road h2 { font-size: 51px; }
  .join h2 { font-size: 54px; }
  .gallery-flyer { min-height: 530px !important; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
