:root {
  --navy: #062c3d;
  --navy-2: #0a3d50;
  --aqua: #00a9c2;
  --aqua-light: #dff7f7;
  --sky: #9adfe7;
  --coral: #ff6b5d;
  --coral-dark: #e65247;
  --sun: #ffca59;
  --cream: #fffaf2;
  --white: #ffffff;
  --ink: #143340;
  --muted: #5e737b;
  --line: rgba(6, 44, 61, 0.12);
  --shadow: 0 24px 60px rgba(0, 58, 77, 0.14);
  --radius: 28px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Avenir Next", Avenir, "Trebuchet MS", sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 1000; transform: translateY(-150%); padding: 10px 14px; border-radius: 10px; background: var(--white); color: var(--navy); }
.skip-link:focus { transform: translateY(0); }

.announcement { background: var(--navy); color: var(--white); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.announcement__inner { min-height: 34px; display: flex; align-items: center; justify-content: center; gap: 13px; }
.announcement a { color: var(--sky); font-weight: 700; }
.announcement__dot { width: 4px; height: 4px; border-radius: 50%; background: var(--coral); }

.site-header { position: absolute; top: 34px; left: 0; right: 0; z-index: 50; height: 88px; transition: .25s ease; }
.site-header.is-sticky { position: fixed; top: 0; height: 76px; background: rgba(255,250,242,.94); backdrop-filter: blur(16px); box-shadow: 0 10px 35px rgba(6,44,61,.08); }
.nav-wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--navy); }
.brand__mark { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; color: var(--white); background: var(--aqua); box-shadow: 0 8px 20px rgba(0,169,194,.22); }
.brand__mark svg { width: 38px; height: 38px; fill: none; stroke: currentColor; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.brand__mark .brand__m { stroke: var(--sun); stroke-width: 3.5; }
.brand__type { display: flex; flex-direction: column; line-height: 1; }
.brand__type strong { font-size: 11px; text-transform: uppercase; letter-spacing: .18em; }
.brand__type span { margin-top: 3px; font: italic 800 25px/1 Georgia, serif; color: var(--coral); }
.main-nav { display: flex; align-items: center; gap: 29px; font-size: 14px; font-weight: 700; color: var(--navy); }
.main-nav > a:not(.button) { position: relative; padding: 12px 0; }
.main-nav > a:not(.button)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 7px; height: 2px; background: var(--coral); transition: .25s ease; }
.main-nav > a:not(.button):hover::after { right: 0; }
.menu-toggle { display: none; width: 46px; height: 46px; border: 0; border-radius: 50%; background: var(--navy); padding: 12px; }
.menu-toggle span:not(.sr-only) { display: block; height: 2px; margin: 4px 0; border-radius: 2px; background: var(--white); transition: .25s ease; }

.button { display: inline-flex; min-height: 54px; align-items: center; justify-content: center; gap: 12px; padding: 0 24px; border-radius: 999px; border: 2px solid transparent; font-size: 14px; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 2; }
.button--small { min-height: 44px; padding-inline: 20px; }
.button--coral { color: var(--white); background: var(--coral); box-shadow: 0 12px 28px rgba(255,107,93,.25); }
.button--coral:hover { background: var(--coral-dark); box-shadow: 0 16px 34px rgba(255,107,93,.32); }
.button--navy { color: var(--white); background: var(--navy); }
.button--white { color: var(--navy); background: var(--white); box-shadow: 0 16px 36px rgba(0,41,55,.2); }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: var(--navy); font-size: 14px; font-weight: 800; border-bottom: 1px solid rgba(6,44,61,.35); padding-bottom: 4px; }
.text-link--dark { margin-top: 20px; }

.hero { position: relative; min-height: 790px; overflow: hidden; background: #dff5f3; }
.hero__image { position: absolute; inset: 0; background: url("assets/schwimmkurs-hero.jpg") 50% 57% / cover no-repeat; }
.hero__wash { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255,250,242,.98) 0%, rgba(255,250,242,.93) 28%, rgba(255,250,242,.48) 47%, rgba(255,250,242,0) 70%); }
.hero__content { position: relative; z-index: 3; min-height: 790px; display: flex; align-items: center; padding-top: 105px; }
.hero__copy { width: min(610px, 55%); }
.eyebrow { margin: 0 0 21px; display: flex; align-items: center; gap: 11px; color: var(--coral); font-size: 11px; font-weight: 900; letter-spacing: .17em; text-transform: uppercase; }
.eyebrow span { width: 30px; height: 2px; background: currentColor; }
.eyebrow--aqua { color: var(--aqua); }
.hero h1, .section-heading h2, .philosophy h2, .locations h2, .faq h2, .cta h2, .parent-voice h2 {
  margin: 0; color: var(--navy); font-size: clamp(52px, 6.1vw, 86px); line-height: .99; letter-spacing: -.055em; font-weight: 800;
}
h1 em, h2 em { color: var(--coral); font-family: Georgia, "Times New Roman", serif; font-weight: 700; }
.hero__lead { max-width: 555px; margin: 26px 0 30px; color: #36545e; font-size: 18px; line-height: 1.7; }
.hero__actions { display: flex; align-items: center; gap: 28px; }
.hero__trust { margin-top: 32px; display: flex; align-items: center; gap: 13px; }
.hero__trust p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.5; }
.hero__trust strong { color: var(--navy); font-size: 13px; }
.avatar-stack { display: flex; padding-left: 16px; }
.avatar-stack span { width: 34px; height: 34px; margin-left: -12px; display: grid; place-items: center; border: 3px solid var(--cream); border-radius: 50%; color: var(--white); background: var(--aqua); font-size: 12px; font-weight: 900; }
.avatar-stack span:nth-child(2) { background: var(--sun); color: var(--navy); }
.avatar-stack span:nth-child(3) { background: var(--coral); }
.hero__badge { position: absolute; z-index: 5; right: 5vw; bottom: 42px; width: 130px; height: 130px; border-radius: 50%; background: rgba(255,250,242,.94); box-shadow: var(--shadow); }
.hero__badge svg { width: 100%; height: 100%; animation: slow-spin 22s linear infinite; }
.hero__badge text { font: 700 7px/1 sans-serif; letter-spacing: 1.5px; fill: var(--navy); }
.hero__badge-wave { fill: none; stroke: var(--aqua); stroke-width: 4; stroke-linecap: round; }
.hero__bubbles span { position: absolute; z-index: 2; border: 1px solid rgba(255,255,255,.7); border-radius: 50%; box-shadow: inset 0 0 0 5px rgba(255,255,255,.08); }
.hero__bubbles span:nth-child(1) { right: 12%; top: 18%; width: 28px; height: 28px; }
.hero__bubbles span:nth-child(2) { right: 7%; top: 25%; width: 12px; height: 12px; }
.hero__bubbles span:nth-child(3) { right: 20%; top: 27%; width: 16px; height: 16px; }
@keyframes slow-spin { to { transform: rotate(360deg); } }

.trust-strip { position: relative; z-index: 6; margin-top: -1px; color: var(--white); background: var(--navy); }
.trust-strip__grid { min-height: 128px; display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-strip article { display: flex; align-items: center; justify-content: center; gap: 14px; border-right: 1px solid rgba(255,255,255,.12); }
.trust-strip article:last-child { border-right: 0; }
.trust-strip p { margin: 0; color: rgba(255,255,255,.65); font-size: 12px; line-height: 1.5; }
.trust-strip strong { color: var(--white); font-size: 13px; }
.trust-strip__number, .trust-strip__icon { color: var(--sky); font: 800 39px/1 Georgia, serif; }

.section { padding: 120px 0; }
.section-heading--center { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.section-heading--center .eyebrow { justify-content: center; }
.section-heading h2, .philosophy h2, .locations h2, .faq h2, .parent-voice h2 { font-size: clamp(42px, 5vw, 68px); }
.section-heading > p:last-child { max-width: 640px; margin: 24px auto 0; color: var(--muted); font-size: 16px; line-height: 1.8; }
.courses { background: var(--cream); }
.course-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.course-card { position: relative; min-height: 540px; padding: 30px; overflow: hidden; border-radius: var(--radius); transition: transform .3s ease, box-shadow .3s ease; }
.course-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.course-card--sun { background: #fff0bd; }
.course-card--aqua { background: #c9f1f1; }
.course-card--coral { background: #ffe0d8; }
.course-card__top { display: flex; align-items: center; justify-content: space-between; }
.course-card__number { font-size: 12px; font-weight: 900; letter-spacing: .1em; }
.course-card__wave { color: rgba(6,44,61,.35); font: 800 34px/1 Georgia, serif; }
.course-card__icon { width: 120px; height: 120px; margin: 22px auto 24px; }
.course-card__icon svg { width: 100%; height: 100%; fill: none; stroke: var(--navy); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.course-card__tag { margin: 0 0 8px; color: var(--coral-dark); font-size: 11px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.course-card h3 { margin: 0; color: var(--navy); font-size: 27px; letter-spacing: -.03em; }
.course-card > p:not(.course-card__tag) { min-height: 76px; margin: 13px 0 20px; color: #496069; font-size: 14px; line-height: 1.75; }
.course-card__meta { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.course-card__meta span { padding: 7px 10px; border-radius: 99px; background: rgba(255,255,255,.62); font-size: 10px; font-weight: 800; }
.course-card > a { display: flex; align-items: center; justify-content: space-between; padding-top: 17px; border-top: 1px solid rgba(6,44,61,.14); font-size: 13px; font-weight: 900; }
.course-card > a span { font-size: 20px; }
.course-card__flag { position: absolute; top: 22px; right: -42px; width: 160px; padding: 7px 0; transform: rotate(40deg); color: var(--white); background: var(--coral); text-align: center; font-size: 9px; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; }
.placeholder-note { display: flex; align-items: center; justify-content: center; gap: 9px; margin: 28px 0 0; color: var(--muted); font-size: 12px; }
.placeholder-note span { display: grid; place-items: center; width: 20px; height: 20px; border: 1px solid var(--line); border-radius: 50%; color: var(--aqua); font-weight: 900; }

.philosophy { overflow: hidden; background: var(--white); }
.philosophy__grid { display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: 90px; }
.philosophy__visual { position: relative; padding: 30px 0 30px 25px; }
.philosophy__visual::before { content: ""; position: absolute; left: 0; bottom: 0; width: 72%; height: 72%; border-radius: 45% 45% 18% 45%; background: var(--sun); }
.philosophy__photo { position: relative; z-index: 2; overflow: hidden; border-radius: 46% 46% 14px 14px; box-shadow: var(--shadow); }
.philosophy__photo img { aspect-ratio: .89; object-fit: cover; object-position: 52% center; }
.philosophy__float { position: absolute; z-index: 4; padding: 17px 20px; border-radius: 18px; background: var(--white); box-shadow: var(--shadow); font-size: 12px; line-height: 1.45; }
.philosophy__float--top { top: 0; right: -22px; color: var(--muted); }
.philosophy__float--top strong { color: var(--navy); font-size: 17px; }
.philosophy__float--bottom { left: -12px; bottom: 65px; display: flex; align-items: center; gap: 11px; }
.philosophy__float--bottom > span { display: grid; place-items: center; width: 37px; height: 37px; border-radius: 50%; color: var(--white); background: var(--coral); }
.philosophy__float p { margin: 0; color: var(--muted); }
.philosophy__float strong { color: var(--navy); }
.philosophy__lead { margin: 22px 0 29px; color: var(--muted); font-size: 17px; line-height: 1.8; }
.principle-list { margin-bottom: 30px; }
.principle-list article { display: grid; grid-template-columns: 46px 1fr; gap: 16px; padding: 19px 0; border-top: 1px solid var(--line); }
.principle-list article > span { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; color: var(--aqua); background: var(--aqua-light); font-size: 11px; font-weight: 900; }
.principle-list h3 { margin: 0 0 5px; color: var(--navy); font-size: 16px; }
.principle-list p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6; }

.locations { position: relative; overflow: hidden; color: var(--white); background: var(--navy); }
.locations__shape { position: absolute; left: -10%; right: -10%; bottom: -190px; height: 330px; border-radius: 50% 50% 0 0; background: var(--aqua); opacity: .12; }
.section-heading--light { display: flex; align-items: end; justify-content: space-between; gap: 60px; margin-bottom: 50px; }
.section-heading--light h2 { color: var(--white); }
.section-heading--light > p { max-width: 390px; margin: 0 0 8px; color: rgba(255,255,255,.65); line-height: 1.8; }
.location-grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.location-card { overflow: hidden; border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius); background: rgba(255,255,255,.07); transition: transform .3s ease, background .3s ease; }
.location-card:hover { transform: translateY(-7px); background: rgba(255,255,255,.11); }
.location-card__art { position: relative; height: 210px; overflow: hidden; display: grid; place-items: center; }
.location-card__art::after { content: ""; position: absolute; left: -10%; right: -10%; bottom: -55px; height: 100px; border-radius: 50%; background: rgba(255,255,255,.15); }
.location-card__art span { position: relative; z-index: 2; font: italic 800 92px/1 Georgia, serif; color: rgba(255,255,255,.88); }
.location-card__art i, .location-card__art b { position: absolute; border: 2px solid rgba(255,255,255,.35); border-radius: 50%; }
.location-card__art i { width: 45px; height: 45px; right: 15%; top: 18%; }
.location-card__art b { width: 18px; height: 18px; left: 18%; top: 25%; }
.location-card__art--one { background: linear-gradient(135deg, #ffb05a, #ff6b5d); }
.location-card__art--two { background: linear-gradient(135deg, #58d0d4, #008eab); }
.location-card__art--three { background: linear-gradient(135deg, #ffd267, #e89e36); }
.location-card__body { padding: 25px 26px 27px; }
.location-card__body > p { margin: 0 0 6px; color: var(--sky); font-size: 10px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.location-card h3 { margin: 0; font-size: 26px; }
.location-card__status { display: inline-block; margin: 16px 0 24px; padding: 7px 10px; border-radius: 99px; color: rgba(255,255,255,.7); background: rgba(255,255,255,.08); font-size: 10px; }
.location-card a { display: flex; justify-content: space-between; padding-top: 17px; border-top: 1px solid rgba(255,255,255,.12); color: var(--white); font-size: 12px; font-weight: 900; }

.journey { position: relative; background: #edfafa; }
.journey .section-heading { margin-bottom: 64px; }
.journey__steps { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 70px; }
.journey__line { position: absolute; left: calc(16.66% + 15px); right: calc(16.66% + 15px); height: 1px; margin-top: 207px; border-top: 2px dashed rgba(0,169,194,.25); }
.journey__steps article { position: relative; text-align: center; }
.journey__steps article > span { position: absolute; top: 0; left: calc(50% + 38px); display: grid; place-items: center; width: 27px; height: 27px; border-radius: 50%; color: var(--white); background: var(--coral); border: 4px solid #edfafa; font-size: 10px; font-weight: 900; }
.journey__icon { position: relative; z-index: 2; display: grid; place-items: center; width: 100px; height: 100px; margin: 0 auto 23px; border: 8px solid #d5f3f2; border-radius: 50%; color: var(--aqua); background: var(--white); box-shadow: 0 15px 35px rgba(0,93,110,.1); font: 800 36px/1 Georgia, serif; }
.journey__steps h3 { margin: 0 0 8px; color: var(--navy); font-size: 19px; }
.journey__steps p { max-width: 240px; margin: 0 auto; color: var(--muted); font-size: 13px; line-height: 1.7; }

.parent-voice { color: var(--white); background: var(--coral); }
.parent-voice__grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 90px; }
.parent-voice .eyebrow { color: var(--white); }
.parent-voice h2 { color: var(--white); }
.parent-voice h2 em { color: var(--sun); }
.parent-voice blockquote { position: relative; margin: 0; padding: 46px 50px; border-radius: var(--radius); color: var(--navy); background: var(--white); box-shadow: 0 25px 50px rgba(122,38,29,.18); }
.parent-voice blockquote > p { margin: 0 0 28px; font: 700 22px/1.55 Georgia, serif; }
.quote-mark { position: absolute; right: 30px; top: 7px; color: var(--sun); font: 100px/1 Georgia, serif; opacity: .65; }
.parent-voice blockquote footer { display: flex; align-items: center; gap: 12px; font-size: 12px; line-height: 1.55; }
.parent-voice blockquote footer span { color: var(--muted); }
.parent-voice__avatar { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; color: var(--white) !important; background: var(--aqua); }

.faq { background: var(--white); }
.faq__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; }
.faq__intro > p:not(.eyebrow) { max-width: 410px; margin: 24px 0 0; color: var(--muted); line-height: 1.8; }
.accordion { border-top: 1px solid var(--line); }
.accordion__item { border-bottom: 1px solid var(--line); }
.accordion__item button { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 25px; padding: 24px 0; border: 0; color: var(--navy); background: transparent; text-align: left; font-size: 16px; font-weight: 800; cursor: pointer; }
.accordion__item button i { position: relative; flex: 0 0 28px; width: 28px; height: 28px; border-radius: 50%; background: var(--aqua-light); }
.accordion__item button i::before, .accordion__item button i::after { content: ""; position: absolute; left: 8px; right: 8px; top: 13px; height: 2px; background: var(--aqua); transition: transform .25s ease; }
.accordion__item button i::after { transform: rotate(90deg); }
.accordion__item.is-open button i::after { transform: rotate(0); }
.accordion__content { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.accordion__content p { min-height: 0; overflow: hidden; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.75; }
.accordion__item.is-open .accordion__content { grid-template-rows: 1fr; }
.accordion__item.is-open .accordion__content p { padding-bottom: 24px; }

.cta { position: relative; overflow: hidden; padding: 105px 0; color: var(--white); background: var(--aqua); text-align: center; }
.cta::before, .cta::after { content: ""; position: absolute; width: 330px; height: 330px; border: 70px solid rgba(255,255,255,.08); border-radius: 50%; }
.cta::before { left: -190px; top: -145px; }
.cta::after { right: -160px; bottom: -190px; }
.cta__inner { position: relative; z-index: 2; max-width: 820px; }
.cta .eyebrow { justify-content: center; color: var(--white); }
.cta h2 { color: var(--white); font-size: clamp(42px, 5.2vw, 67px); }
.cta h2 em { color: var(--sun); }
.cta__inner > p:not(.eyebrow) { max-width: 630px; margin: 24px auto 30px; color: rgba(255,255,255,.82); line-height: 1.75; }
.cta__actions { display: flex; align-items: center; justify-content: center; gap: 26px; }
.cta__mail { padding-bottom: 4px; border-bottom: 1px solid rgba(255,255,255,.5); font-size: 13px; font-weight: 800; }
.cta__bubbles span { position: absolute; border: 2px solid rgba(255,255,255,.28); border-radius: 50%; }
.cta__bubbles span:nth-child(1) { left: 13%; top: 30%; width: 28px; height: 28px; }
.cta__bubbles span:nth-child(2) { right: 17%; top: 22%; width: 14px; height: 14px; }
.cta__bubbles span:nth-child(3) { right: 11%; top: 42%; width: 45px; height: 45px; }

.site-footer { color: rgba(255,255,255,.65); background: #041f2b; }
.footer__top { min-height: 190px; display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; gap: 50px; border-bottom: 1px solid rgba(255,255,255,.09); }
.brand--footer { color: var(--white); }
.footer__top > p { font-size: 13px; line-height: 1.7; }
.footer__top nav { display: flex; justify-content: flex-end; gap: 25px; color: var(--white); font-size: 12px; font-weight: 700; }
.footer__bottom { min-height: 72px; display: flex; align-items: center; justify-content: space-between; font-size: 10px; }
.footer__bottom div { display: flex; gap: 22px; }
.footer__draft { color: var(--sky); text-transform: uppercase; letter-spacing: .12em; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.course-grid .reveal:nth-child(2), .location-grid .reveal:nth-child(2), .journey__steps .reveal:nth-child(2) { transition-delay: .08s; }
.course-grid .reveal:nth-child(3), .location-grid .reveal:nth-child(3), .journey__steps .reveal:nth-child(3) { transition-delay: .16s; }

@media (max-width: 980px) {
  .main-nav { gap: 18px; }
  .main-nav > a:not(.button) { display: none; }
  .hero__copy { width: 61%; }
  .hero__wash { background: linear-gradient(90deg, rgba(255,250,242,.97), rgba(255,250,242,.85) 38%, rgba(255,250,242,.1) 75%); }
  .trust-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .trust-strip article { min-height: 100px; }
  .course-card { padding: 24px; }
  .course-card h3 { font-size: 23px; }
  .philosophy__grid, .faq__grid { gap: 50px; }
  .parent-voice__grid { gap: 50px; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 34px), var(--container)); }
  .announcement__inner span:first-child, .announcement__dot { display: none; }
  .site-header { height: 74px; }
  .site-header .brand__mark { width: 44px; height: 44px; }
  .site-header .brand__mark svg { width: 33px; }
  .site-header .brand__type strong { font-size: 9px; }
  .site-header .brand__type span { font-size: 21px; }
  .menu-toggle { display: block; position: relative; z-index: 2; }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(3) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(4) { transform: translateY(-6px) rotate(-45deg); }
  .main-nav { position: fixed; inset: 0; display: flex; flex-direction: column; justify-content: center; gap: 10px; padding: 90px 30px 30px; color: var(--white); background: var(--navy); opacity: 0; visibility: hidden; transform: translateY(-15px); transition: .25s ease; }
  .main-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .main-nav > a:not(.button) { display: block; padding: 10px; font-size: 25px; }
  .main-nav .button { margin-top: 15px; }
  .hero { min-height: 850px; }
  .hero__image { inset: auto 0 0; height: 54%; background-position: 63% center; }
  .hero__wash { background: linear-gradient(180deg, var(--cream) 0%, var(--cream) 46%, rgba(255,250,242,.9) 58%, rgba(255,250,242,0) 78%); }
  .hero__content { min-height: 850px; align-items: flex-start; padding-top: 125px; }
  .hero__copy { width: 100%; }
  .hero h1 { font-size: clamp(47px, 14vw, 63px); }
  .hero__lead { max-width: 95%; margin-block: 20px 24px; font-size: 15px; line-height: 1.65; }
  .hero__actions { align-items: flex-start; flex-direction: column; gap: 17px; }
  .hero__trust { display: none; }
  .hero__badge { width: 92px; height: 92px; right: 18px; bottom: 25px; }
  .trust-strip__grid { grid-template-columns: 1fr 1fr; padding-block: 10px; }
  .trust-strip article { min-height: 90px; justify-content: flex-start; padding: 10px; border-bottom: 1px solid rgba(255,255,255,.1); }
  .trust-strip article:nth-child(2) { border-right: 0; }
  .trust-strip__number, .trust-strip__icon { font-size: 28px; }
  .trust-strip p { font-size: 10px; }
  .section { padding: 84px 0; }
  .section-heading--center { margin-bottom: 38px; }
  .section-heading h2, .philosophy h2, .locations h2, .faq h2, .parent-voice h2 { font-size: 44px; }
  .course-grid, .location-grid { grid-template-columns: 1fr; }
  .course-card { min-height: auto; }
  .course-card > p:not(.course-card__tag) { min-height: 0; }
  .placeholder-note { align-items: flex-start; text-align: left; }
  .philosophy__grid { grid-template-columns: 1fr; gap: 58px; }
  .philosophy__visual { padding-left: 8px; }
  .philosophy__float--top { right: -6px; }
  .philosophy__float--bottom { left: -5px; }
  .section-heading--light { align-items: flex-start; flex-direction: column; gap: 25px; }
  .section-heading--light > p { margin: 0; }
  .journey__steps { grid-template-columns: 1fr; gap: 44px; }
  .journey__line { display: none; }
  .parent-voice__grid, .faq__grid { grid-template-columns: 1fr; gap: 45px; }
  .parent-voice blockquote { padding: 38px 28px; }
  .parent-voice blockquote > p { font-size: 19px; }
  .cta { padding: 84px 0; }
  .cta h2 { font-size: 43px; }
  .cta__actions { flex-direction: column; }
  .footer__top { grid-template-columns: 1fr; gap: 25px; padding-block: 45px; }
  .footer__top nav { justify-content: flex-start; flex-wrap: wrap; }
  .footer__bottom { align-items: flex-start; flex-direction: column; gap: 16px; padding-block: 25px; }
}

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