:root {
  --navy: #102956;
  --navy-dark: #091d41;
  --green: #6db43f;
  --green-dark: #4f942c;
  --green-soft: #eef5dc;
  --orange: #f78300;
  --orange-soft: #fff0df;
  --cream: #fbf7f0;
  --beige: #f4ede2;
  --white: #fff;
  --text: #12254a;
  --muted: #5b6577;
  --line: #dde2dc;
  --error: #ad2f39;
  --shadow: 0 18px 50px rgba(16, 41, 86, .12);
  --shadow-small: 0 8px 24px rgba(16, 41, 86, .09);
  --radius-sm: 12px;
  --radius-md: 24px;
  --radius-lg: 44px;
  --container: 1180px;
  --section-space: clamp(4.5rem, 8vw, 7.5rem);
  --font: 'Avenir Next', Avenir, 'Segoe UI', Arial, sans-serif;
  --hand: 'Bradley Hand', 'Segoe Print', cursive;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body { margin: 0; min-width: 320px; overflow-x: hidden; color: var(--text); background: var(--white); font-family: var(--font); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
svg { display: block; }
:focus-visible { outline: 3px solid #9ed66a; outline-offset: 4px; }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.container { width: min(calc(100% - 2rem), var(--container)); margin-inline: auto; }
.section { padding-block: var(--section-space); }
.skip-link { position: fixed; z-index: 9999; top: 8px; left: 8px; padding: .75rem 1rem; color: var(--white); background: var(--navy); border-radius: 8px; transform: translateY(-160%); }
.skip-link:focus { transform: translateY(0); }

.site-header { position: fixed; z-index: 100; width: 100%; top: 0; background: rgba(255, 255, 255, .94); border-bottom: 1px solid transparent; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); transition: background .25s, border-color .25s, box-shadow .25s; }
.header-inner { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; transition: min-height .25s; }
.logo-surface { display: inline-flex; align-items: center; justify-content: center; padding: .35rem .55rem; background: var(--white); border-radius: 10px; transition: padding .25s; }
.brand img { width: 180px; height: auto; transition: width .25s; }
.site-header.is-scrolled { background: rgba(255, 255, 255, .98); border-bottom-color: rgba(16, 41, 86, .08); box-shadow: 0 7px 24px rgba(16, 41, 86, .1); }
.site-header.is-scrolled .header-inner { min-height: 70px; }
.site-header.is-scrolled .brand { padding: .18rem .4rem; }
.site-header.is-scrolled .brand img { width: 145px; }
.page-nav { display: flex; align-items: center; gap: clamp(.9rem, 2vw, 1.8rem); }
.page-nav a { position: relative; color: var(--navy); font-size: .82rem; font-weight: 750; text-decoration: none; white-space: nowrap; }
.page-nav a:not(.page-nav-cta)::after { content: ''; position: absolute; right: 0; bottom: -.45rem; left: 0; height: 2px; background: var(--orange); border-radius: 999px; transform: scaleX(0); transform-origin: right; transition: transform .2s ease; }
.page-nav a:not(.page-nav-cta):hover::after, .page-nav a:not(.page-nav-cta):focus-visible::after { transform: scaleX(1); transform-origin: left; }
.page-nav-cta { min-height: 42px; display: inline-flex; align-items: center; padding: .65rem 1rem; color: #111 !important; background: var(--orange); border-radius: 9px; text-transform: uppercase; letter-spacing: .035em; transition: background .2s, transform .2s; }
.page-nav-cta:hover { background: #d96f00; transform: translateY(-1px); }
.nav-toggle { width: 46px; height: 42px; display: none; place-items: center; padding: 9px; color: var(--navy); background: var(--white); border: 1px solid rgba(16, 41, 86, .14); border-radius: 10px; cursor: pointer; }
.nav-toggle span { width: 23px; height: 2px; display: block; background: currentColor; border-radius: 999px; transition: transform .2s, opacity .2s; }

.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: .8rem; padding: .82rem 1.35rem; border: 0; border-radius: 9px; color: var(--white); font-size: .85rem; font-weight: 800; line-height: 1.25; text-align: center; text-decoration: none; text-transform: uppercase; cursor: pointer; transition: transform .2s, box-shadow .2s, background .2s; }
.button:hover { transform: translateY(-2px); box-shadow: var(--shadow-small); }
.button span { font-size: 1.4em; }
.button-primary { background: var(--navy); }
.button-primary:hover { background: var(--navy-dark); }
.button-green { background: var(--green); }
.button-green:hover { background: var(--green-dark); }

.hero { position: relative; min-height: 720px; padding: 120px 0 64px; background: radial-gradient(circle at 10% 25%, #fff 0 20%, transparent 45%), linear-gradient(120deg, var(--cream), #fff 58%); overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 82px 49% 0 -15%; background: rgba(255,255,255,.72); border-radius: 0 42% 44% 0; transform: rotate(-5deg); }
.hero-grid { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; min-height: 560px; gap: clamp(2rem, 4vw, 4rem); }
.hero-copy { position: relative; z-index: 2; padding-top: 2rem; }
.eyebrow { margin: 0 0 .75rem; color: var(--green-dark); font-size: .8rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
h1, h2, h3, p { text-wrap: pretty; }
h1 { margin: 0 0 1.1rem; color: var(--navy); font-size: clamp(2.45rem, 4.4vw, 4.25rem); font-weight: 800; letter-spacing: -.045em; line-height: 1.06; }
h1 span { color: var(--orange); }
.hero-lead { max-width: 550px; margin: 0 0 1.65rem; font-size: clamp(1rem, 1.35vw, 1.16rem); line-height: 1.55; }
.hero-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; max-width: 520px; margin: 2.2rem 0 0; padding: 0; list-style: none; }
.hero-points li { text-align: center; font-size: .88rem; font-weight: 800; line-height: 1.35; }
.hero-points svg { width: 52px; height: 52px; margin: 0 auto .65rem; fill: none; stroke: var(--navy); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.hero-points .accent { stroke: var(--green); stroke-width: 3; }
.hero-visual { position: relative; align-self: stretch; min-height: 560px; }
.hero-photo-wrap { position: absolute; width: min(730px, 60vw); height: 570px; top: 30px; left: -30px; overflow: hidden; border-radius: 50% 8% 38% 45% / 44% 8% 45% 45%; background: var(--green-soft); box-shadow: var(--shadow); }
.hero-photo-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: 50% center; }
.hero-locations { position: absolute; z-index: 2; inset: 0; pointer-events: none; }
.hero-locations ul { position: absolute; inset: 0; margin: 0; padding: 0; list-style: none; }
.hero-locations li { position: absolute; display: inline-flex; align-items: center; padding: .62rem .9rem .62rem 1.55rem; color: var(--navy); background: rgba(255, 223, 199, .94); border: 1px solid rgba(16, 41, 86, .08); border-radius: 999px; box-shadow: 0 8px 20px rgba(16, 41, 86, .13); font-size: 1rem; font-weight: 800; line-height: 1.2; white-space: nowrap; backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.hero-locations li::before { content: ''; position: absolute; width: 8px; height: 8px; left: .8rem; top: 50%; background: var(--orange); border-radius: 50%; transform: translateY(-50%); }
.hero-locations li:nth-child(3n + 2) { background: rgba(210, 235, 250, .95); }
.hero-locations li:nth-child(3n + 2)::before { background: #438fc7; }
.hero-locations li:nth-child(3n) { background: rgba(224, 241, 202, .95); }
.hero-locations li:nth-child(3n)::before { background: #68a83d; }
.hero-locations li:nth-child(1) { top: 6%; right: 3%; transform: rotate(2deg); }
.hero-locations li:nth-child(2) { top: 16%; right: 24%; transform: rotate(-3deg); }
.hero-locations li:nth-child(3) { top: 26%; right: 6%; transform: rotate(2deg); }
.hero-locations li:nth-child(4) { top: 36%; right: 25%; transform: rotate(-2deg); }
.hero-locations li:nth-child(5) { top: 46%; right: 3%; transform: rotate(3deg); }
.hero-locations li:nth-child(6) { top: 56%; right: 22%; transform: rotate(-2deg); }
.hero-locations li:nth-child(7) { top: 65%; right: 4%; transform: rotate(2deg); }
.hero-locations li:nth-child(8) { top: 73%; right: 28%; transform: rotate(-4deg); }
.hand-note { position: absolute; z-index: 2; right: -22px; bottom: -28px; min-width: 210px; padding: 2.2rem 1.4rem; color: white; background: var(--navy); border-radius: 54% 46% 7% 8% / 48% 52% 7% 8%; font-family: var(--hand); font-size: 1.8rem; line-height: 1.22; text-align: center; transform: rotate(-2deg); }
.hand-note span { color: #a5d946; }
.doodle { position: absolute; z-index: 3; color: var(--green); font-family: var(--hand); font-size: 3rem; font-weight: 700; }
.doodle-wave { top: 12px; left: -62px; transform: rotate(6deg); }

.parent-message { padding-top: clamp(3.5rem, 6vw, 5.5rem); background: var(--white); }
.parent-message-card { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: clamp(2rem, 6vw, 5.5rem); padding: clamp(2rem, 5vw, 4.5rem); overflow: hidden; background: linear-gradient(120deg, #fff8ef, var(--green-soft)); border: 1px solid rgba(16, 41, 86, .07); border-radius: var(--radius-lg); box-shadow: var(--shadow-small); }
.parent-message-card::before { content: ''; position: absolute; width: 190px; height: 190px; top: -118px; right: -70px; background: rgba(247, 131, 0, .12); border-radius: 50%; }
.parent-message-card::after { content: ''; position: absolute; width: 110px; height: 4px; left: clamp(2rem, 5vw, 4.5rem); bottom: 0; background: var(--orange); border-radius: 999px 999px 0 0; }
.parent-message-heading { position: relative; z-index: 1; }
.parent-message-heading h2 { margin: 0; color: var(--navy); font-size: clamp(1.9rem, 3vw, 3rem); line-height: 1.14; letter-spacing: -.04em; }
.parent-message-copy { position: relative; z-index: 1; padding-left: clamp(1.5rem, 3vw, 3rem); border-left: 1px solid rgba(16, 41, 86, .16); }
.parent-message-copy p { margin: 0; color: var(--text); font-size: clamp(1rem, 1.3vw, 1.12rem); line-height: 1.75; }
.parent-message-copy p + p { margin-top: 1rem; }
.parent-message-copy strong { color: var(--navy); }
.parent-message-doodle { position: absolute; right: 2rem; bottom: .7rem; color: var(--orange); font-family: var(--hand); font-size: 2.2rem; transform: rotate(-10deg); }

.perspective-benefits { padding-bottom: 0; background: var(--white); }
.perspective-header { max-width: 820px; margin: 0 auto; text-align: center; }
.perspective-header .eyebrow { color: var(--orange); }
.perspective-header .section-title { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.perspective-board { display: grid; grid-template-columns: 1fr 74px 1fr; align-items: stretch; }
.perspective-card { position: relative; padding: clamp(1.5rem, 3.5vw, 2.75rem); overflow: hidden; border: 1px solid rgba(16, 41, 86, .1); box-shadow: var(--shadow-small); }
.perspective-card-child { background: linear-gradient(135deg, #f1f6fa, #fff); border-radius: 32px 10px 32px 32px; }
.perspective-card-parent { background: linear-gradient(135deg, #fff8ee, #fff); border-radius: 10px 32px 32px 32px; }
.perspective-card::after { content: ''; position: absolute; width: 90px; height: 90px; right: -38px; bottom: -45px; border: 18px solid rgba(247, 131, 0, .09); border-radius: 50%; }
.perspective-card-head { position: relative; z-index: 1; display: flex; align-items: center; gap: 1.15rem; margin-bottom: 1.65rem; }
.perspective-icon { flex: 0 0 66px; width: 66px; height: 66px; display: grid; place-items: center; background: var(--white); border: 1px solid rgba(16, 41, 86, .09); border-radius: 22px; box-shadow: 0 7px 20px rgba(16, 41, 86, .08); transform: rotate(-3deg); }
.perspective-card-parent .perspective-icon { background: var(--orange-soft); transform: rotate(3deg); }
.perspective-icon svg { width: 43px; height: 43px; fill: none; stroke: var(--navy); stroke-width: 2.1; stroke-linecap: round; stroke-linejoin: round; }
.perspective-icon .accent { stroke: var(--orange); stroke-width: 3; }
.perspective-card-head p { margin: 0 0 .2rem; color: var(--orange); font-size: .73rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.perspective-card h3 { margin: 0; color: var(--navy); font-size: clamp(1.2rem, 2vw, 1.65rem); line-height: 1.25; }
.perspective-card ul { position: relative; z-index: 1; display: grid; gap: 1rem; margin: 0; padding: 0; list-style: none; }
.perspective-card li { position: relative; padding-left: 1.65rem; color: var(--text); line-height: 1.65; }
.perspective-card li::before { content: '✓'; position: absolute; left: 0; top: 0; color: var(--orange); font-weight: 900; }
.perspective-connector { position: relative; display: grid; place-items: center; }
.perspective-connector::before { content: ''; position: absolute; width: 100%; height: 2px; background: repeating-linear-gradient(90deg, var(--orange) 0 6px, transparent 6px 12px); }
.perspective-connector span { position: relative; z-index: 1; display: grid; width: 48px; height: 48px; place-items: center; color: var(--orange); background: var(--white); border: 2px solid var(--orange); border-radius: 50%; font-family: var(--hand); font-size: 1.65rem; box-shadow: 0 5px 16px rgba(16, 41, 86, .09); }

.section-title { position: relative; margin: 0 auto clamp(3rem, 5vw, 4.5rem); color: var(--navy); font-size: clamp(2rem, 3.2vw, 3rem); line-height: 1.18; letter-spacing: -.035em; text-align: center; }
.section-title span { display: inline-block; position: relative; }
.section-title span::after, .process .section-title::after, .cta-copy h2::after { content: ''; position: absolute; width: 70px; height: 3px; background: var(--green); border-radius: 50%; left: 50%; bottom: -14px; transform: translateX(-50%) rotate(-2deg); }
.process-icon svg { width: 72px; height: 72px; fill: none; stroke: var(--navy); stroke-width: 2.1; stroke-linecap: round; stroke-linejoin: round; transform: rotate(3deg); }
.process-icon .accent { stroke: var(--green); stroke-width: 3; }
.process-step h3 { margin: 0 0 .55rem; color: var(--navy); font-size: 1.05rem; line-height: 1.3; }
.process-step p { margin: 0; color: var(--text); font-size: .91rem; line-height: 1.6; }

.process { background: linear-gradient(110deg, #fffaf4, #fff 46%, #fbf8f2); }
.process .section-title { width: max-content; margin-bottom: 3.6rem; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3rem; margin: 0; padding: 0; list-style: none; counter-reset: step; }
.process-step { position: relative; text-align: center; }
.process-step:not(:last-child)::after { content: '⟶'; position: absolute; top: 30px; right: -2.2rem; color: var(--navy); font-size: 2.4rem; font-weight: 400; }
.step-number { position: absolute; z-index: 2; top: -8px; left: calc(50% - 64px); display: grid; width: 26px; height: 26px; place-items: center; color: white; background: var(--orange); border-radius: 50%; font-size: .8rem; font-weight: 800; }
.process-icon { width: 88px; height: 82px; display: grid; place-items: center; margin: 0 auto 1rem; }

.schools { background: linear-gradient(180deg, #fff 0%, #fff9f2 100%); }
.schools-map-panel { display: grid; grid-template-columns: .78fr 1.22fr; padding: 0; overflow: hidden; background: var(--white); border: 1px solid rgba(16, 41, 86, .08); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.schools-map-intro { position: relative; min-height: 520px; display: flex; flex-direction: column; justify-content: space-between; padding: clamp(2rem, 4vw, 3.5rem); overflow: hidden; color: var(--white); background: var(--navy); }
.schools-map-intro .eyebrow { color: #ffac4a; }
.schools-map-intro h2 { margin: 0 0 1.25rem; color: var(--white); font-size: clamp(2.1rem, 3.5vw, 3.35rem); line-height: 1.08; letter-spacing: -.045em; }
.schools-map-intro p:not(.eyebrow) { margin: 0; color: #dce5f1; font-size: 1rem; line-height: 1.7; }
.school-suggestion { position: relative; z-index: 2; margin-top: 2rem; padding: 1.2rem 1.3rem; background: rgba(255, 255, 255, .09); border: 1px solid rgba(255, 255, 255, .15); border-radius: 17px; }
.school-suggestion strong { display: block; margin-bottom: .35rem; color: var(--white); font-size: 1rem; }
.school-suggestion p { margin-bottom: .8rem !important; color: #dce5f1; font-size: .86rem !important; line-height: 1.55 !important; }
.school-suggestion a { display: inline-flex; align-items: center; gap: .5rem; color: #ffb45f; font-size: .78rem; font-weight: 800; letter-spacing: .04em; text-decoration: none; text-transform: uppercase; }
.school-suggestion a:hover { color: var(--white); }
.school-suggestion a span { font-size: 1.25em; }
.map-decoration { position: relative; height: 175px; margin-top: 2rem; }
.map-route { position: absolute; width: 230px; height: 105px; left: 12px; bottom: 15px; border: 2px dashed rgba(255,255,255,.32); border-top-color: transparent; border-left-color: transparent; border-radius: 50%; transform: rotate(-9deg); }
.map-main-pin { position: absolute; z-index: 2; right: 18%; top: 4px; width: 88px; height: 88px; display: grid; place-items: center; background: var(--orange); border-radius: 50% 50% 50% 14%; box-shadow: 0 14px 30px rgba(0,0,0,.2); transform: rotate(-8deg); }
.map-main-pin svg { width: 54px; height: 54px; fill: none; stroke: var(--white); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; transform: rotate(8deg); }
.map-main-pin .accent { stroke: var(--navy); stroke-width: 3; }
.map-dot { position: absolute; width: 12px; height: 12px; background: var(--orange); border: 3px solid var(--navy); border-radius: 50%; box-shadow: 0 0 0 2px rgba(255,255,255,.45); }
.map-dot-one { left: 15px; bottom: 34px; }.map-dot-two { left: 112px; bottom: 76px; }.map-dot-three { right: 28px; bottom: 20px; }
.schools-directory { padding: clamp(2rem, 4vw, 3.5rem); background: #fffaf4; }
.school-group + .school-group { margin-top: 2.6rem; padding-top: 2.3rem; border-top: 1px solid rgba(16, 41, 86, .12); }
.school-group-heading { display: flex; align-items: center; gap: .9rem; margin-bottom: 1.25rem; }
.group-icon { flex: 0 0 52px; width: 52px; height: 52px; display: grid; place-items: center; background: var(--orange-soft); border-radius: 17px; }
.group-icon svg { width: 32px; height: 32px; fill: none; stroke: var(--navy); stroke-width: 2.1; stroke-linecap: round; stroke-linejoin: round; }
.group-icon .accent { stroke: var(--orange); stroke-width: 3; }
.school-group-heading strong, .school-group-heading small { display: block; }
.school-group-heading strong { color: var(--navy); font-size: 1.2rem; }
.school-group-heading small { color: var(--muted); font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; }
.location-pills { display: flex; flex-wrap: wrap; gap: .7rem; margin: 0; padding: 0; list-style: none; }
.location-pills li { position: relative; min-height: 43px; display: inline-flex; align-items: center; gap: .45rem; padding: .65rem .9rem .65rem 2rem; color: var(--navy); background: var(--white); border: 1px solid rgba(16, 41, 86, .11); border-radius: 999px; box-shadow: 0 4px 12px rgba(16, 41, 86, .045); font-size: .87rem; font-weight: 800; line-height: 1.2; }
.location-pills li::before { content: ''; position: absolute; width: 9px; height: 9px; left: .85rem; top: 50%; background: var(--orange); border-radius: 50% 50% 50% 0; transform: translateY(-60%) rotate(-45deg); }
.location-pills li small { color: var(--muted); font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }

.availability { background: var(--navy); color: white; overflow: hidden; position: relative; }
.availability::before { content: ''; position: absolute; width: 480px; height: 480px; border: 1px solid rgba(255,255,255,.07); border-radius: 50%; left: -220px; top: -230px; box-shadow: 0 0 0 70px rgba(255,255,255,.025), 0 0 0 140px rgba(255,255,255,.018); }
.availability-grid { position: relative; display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: clamp(3rem, 7vw, 6rem); }
.form-intro h2 { margin: 0 0 1rem; color: white; font-size: clamp(2rem, 3.2vw, 3.15rem); line-height: 1.12; letter-spacing: -.04em; }
.form-intro > p:not(.eyebrow) { color: #d8e1f0; }
.availability .eyebrow { color: #9ed66a; }
.check-list { margin: 1.75rem 0 0; padding: 0; list-style: none; }
.check-list li { margin: .65rem 0; padding-left: 1.75rem; position: relative; }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: #9ed66a; font-weight: 800; }
.check-list-highlight { color: var(--orange); }
.availability-form { padding: clamp(1.5rem, 3.5vw, 2.75rem); color: var(--text); background: white; border-radius: var(--radius-md); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem 1.25rem; }
.field { min-width: 0; }
.field-wide { grid-column: 1 / -1; }
.field label { display: block; margin-bottom: .35rem; color: var(--navy); font-size: .82rem; font-weight: 800; }
.field input, .field select, .field textarea { width: 100%; min-height: 50px; padding: .75rem .9rem; color: var(--text); background: #fbfcfa; border: 1px solid #cbd2d8; border-radius: 9px; }
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(109,180,63,.14); outline: none; }
.field input[aria-invalid="true"], .field select[aria-invalid="true"] { border-color: var(--error); }
.field-error { display: block; min-height: 1.2rem; margin-top: .15rem; color: var(--error); font-size: .75rem; }
.consent { display: flex; align-items: flex-start; gap: .65rem; margin-top: 1rem; font-size: .78rem; line-height: 1.45; cursor: pointer; }
.consent input { flex: 0 0 auto; width: 18px; height: 18px; margin-top: 2px; accent-color: var(--green); }
.consent a { color: var(--navy); font-weight: 800; }
.consent-error { margin-left: 1.65rem; }
.form-submit { width: 100%; margin-top: .5rem; color: var(--navy-dark); background: var(--orange); }
.form-submit:hover { background: #d96f00; }
.form-success { margin-top: 1rem; padding: 1rem; color: #244f19; background: #eef8e8; border: 1px solid #bcdca9; border-radius: 9px; text-align: center; }
.form-error { margin-top: 1rem; padding: 1rem; color: #7a271a; background: #fff1ee; border: 1px solid #efb8ad; border-radius: 9px; text-align: center; }

.courses { position: relative; overflow: hidden; background: linear-gradient(180deg, #fff 0%, #fff9f2 100%); }
.courses::before { content: ''; position: absolute; width: 420px; height: 420px; right: -250px; top: -250px; border: 60px solid rgba(247, 131, 0, .06); border-radius: 50%; }
.courses-header { position: relative; max-width: 820px; margin: 0 auto clamp(2.7rem, 5vw, 4.25rem); text-align: center; }
.courses-header .eyebrow { color: var(--orange); }
.courses-header .section-title { margin-bottom: 1.2rem; }
.courses-header > p:last-child { margin: 0; color: var(--muted); font-size: 1.05rem; }
.courses-grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.course-card { --course-card-radius: 24px; position: relative; min-height: 285px; display: flex; flex-direction: column; padding: clamp(1.4rem, 2.5vw, 2rem); overflow: hidden; background: var(--white); border: 1px solid rgba(16, 41, 86, .09); border-radius: var(--course-card-radius); box-shadow: 0 10px 28px rgba(16, 41, 86, .07); transition: transform .2s, box-shadow .2s; }
.course-card::before { content: ''; position: absolute; z-index: 0; width: 150px; height: 150px; top: -75px; right: -75px; background: rgba(255, 173, 114, .17); border-radius: 50%; pointer-events: none; }
.course-card > * { position: relative; z-index: 1; }
.course-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.course-card-school { background: linear-gradient(145deg, #f4f8fb, #fff); }
.course-card-extended { color: var(--white); background: var(--navy); }
.course-age { position: relative; z-index: 1; align-self: flex-start; min-height: 38px; display: inline-flex; align-items: center; padding: .55rem .95rem; color: #854300; background: var(--orange-soft); border-radius: 999px; font-size: .9rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }
.course-card-extended .course-age { color: var(--white); background: var(--orange); }
.course-type { margin: 1.45rem 0 .4rem; color: var(--orange); font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .085em; }
.course-card h3 { margin: 0; color: var(--navy); font-size: clamp(1.35rem, 2vw, 1.75rem); line-height: 1.25; }
.course-age + h3 { margin-top: 1.45rem; }
.course-card h3 strong { display: block; }
.course-card h3 span { color: var(--orange); }
.course-card-extended h3 { color: var(--white); }
.course-time { display: flex; align-items: center; gap: .75rem; margin-top: auto; padding-top: 1.5rem; }
.course-time svg { width: 38px; height: 38px; fill: none; stroke: var(--navy); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.course-card-extended .course-time svg { stroke: var(--white); }
.course-time b, .course-time small { display: block; }
.course-time b { color: var(--navy); font-size: .98rem; }
.course-time small { color: var(--muted); font-size: .7rem; text-transform: uppercase; letter-spacing: .06em; }
.course-card-extended .course-time b { color: var(--white); }
.course-card-extended .course-time small { color: #c9d6e7; }
.courses-note { max-width: 700px; margin: 2rem auto 0; color: var(--muted); font-size: .8rem; text-align: center; }

.values { padding-top: 0; background: #fff9f2; }
.values-panel { position: relative; padding: clamp(2rem, 5vw, 4.5rem); overflow: hidden; color: var(--white); background: var(--navy); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.values-panel::before { content: ''; position: absolute; width: 340px; height: 340px; top: -235px; right: -125px; border: 52px solid rgba(247, 131, 0, .13); border-radius: 50%; }
.values-header { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; align-items: end; gap: clamp(2rem, 7vw, 6rem); margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.values-header .eyebrow { color: #ffac4a; }
.values-header h2 { margin: 0; color: var(--white); font-size: clamp(2rem, 3.5vw, 3.35rem); line-height: 1.1; letter-spacing: -.045em; }
.values-header > p { margin: 0; color: #d7e1ef; font-size: 1.02rem; line-height: 1.7; }
.values-grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.value-card { position: relative; display: flex; flex-direction: column; padding: clamp(1.4rem, 2.5vw, 2rem); overflow: hidden; color: var(--text); background: var(--white); border-radius: 22px; }
.value-card::after { content: ''; position: absolute; width: 95px; height: 95px; right: -52px; bottom: -52px; background: var(--orange-soft); border-radius: 50%; }
.value-number { position: absolute; right: 1.25rem; top: .8rem; color: #ffad72; font-size: 3.7rem; font-weight: 800; line-height: 1; }
.value-card:nth-child(2) .value-number { color: #79bce8; }
.value-card:nth-child(3) .value-number { color: #9acd6c; }
.value-icon { position: relative; z-index: 1; width: 58px; height: 58px; display: grid; place-items: center; margin-bottom: 1.35rem; background: var(--orange-soft); border-radius: 18px; transform: rotate(-3deg); }
.value-card:nth-child(even) .value-icon { transform: rotate(3deg); }
.value-icon svg { width: 37px; height: 37px; fill: none; stroke: var(--navy); stroke-width: 2.1; stroke-linecap: round; stroke-linejoin: round; }
.value-icon .accent { stroke: var(--orange); stroke-width: 3; }
.value-card h3 { position: relative; z-index: 1; margin: 0 0 .75rem; color: var(--navy); font-size: 1.3rem; line-height: 1.3; }
.value-card > p { position: relative; z-index: 1; margin: 0 0 1.35rem; font-size: .9rem; line-height: 1.65; }
.value-how { position: relative; z-index: 1; margin-top: auto; padding-top: 1.2rem; border-top: 1px solid var(--line); }
.value-how strong { display: block; margin-bottom: .4rem; color: var(--orange); font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; }
.value-how p { margin: 0; color: var(--muted); font-size: .82rem; line-height: 1.6; }

.interest-cta { padding: clamp(2.5rem, 5vw, 4rem) 0; background: var(--white); }
.interest-cta-panel { position: relative; display: grid; justify-items: center; gap: 1.6rem; padding: clamp(2.25rem, 5vw, 4rem) clamp(1.5rem, 6vw, 5rem); overflow: hidden; text-align: center; background: linear-gradient(135deg, #fff8ef, #f6f7e8); border: 1px solid rgba(247, 131, 0, .2); border-radius: 34px; box-shadow: var(--shadow-small); }
.interest-cta-panel::before, .interest-cta-panel::after { content: ''; position: absolute; border-radius: 50%; pointer-events: none; }
.interest-cta-panel::before { width: 150px; height: 150px; left: -76px; bottom: -82px; background: rgba(247, 131, 0, .12); }
.interest-cta-panel::after { width: 120px; height: 120px; right: -48px; top: -58px; border: 24px solid rgba(109, 180, 63, .14); }
.interest-cta-copy { position: relative; z-index: 1; max-width: 720px; }
.interest-cta-label { display: inline-flex; margin-bottom: .8rem; padding: .4rem .8rem; color: #8a4600; background: var(--orange-soft); border-radius: 999px; font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.interest-cta-copy h2 { margin: 0 0 .8rem; color: var(--navy); font-size: clamp(1.9rem, 3.4vw, 3rem); line-height: 1.12; letter-spacing: -.04em; }
.interest-cta-copy p { max-width: 620px; margin: 0 auto; color: var(--navy); font-size: 1rem; font-weight: 600; line-height: 1.65; }
.interest-cta-button { position: relative; z-index: 1; min-height: 58px; padding-inline: clamp(1.25rem, 2.5vw, 2rem); color: var(--navy-dark); background: var(--orange); border-radius: 11px; }
.interest-cta-button:hover { background: #d96f00; }

.client-insights { position: relative; overflow: hidden; background: linear-gradient(180deg, #fff9f2 0%, var(--white) 100%); }
.client-insights::before { content: ''; position: absolute; width: 300px; height: 300px; left: -190px; top: 80px; border: 48px solid rgba(247, 131, 0, .07); border-radius: 50%; }
.client-insights-header { position: relative; max-width: 820px; margin: 0 auto clamp(2.7rem, 5vw, 4.25rem); text-align: center; }
.client-insights-header .eyebrow { color: var(--orange); }
.client-insights-header h2 { margin: 0 0 1rem; color: var(--navy); font-size: clamp(2rem, 3.6vw, 3.35rem); line-height: 1.1; letter-spacing: -.045em; }
.client-insights-header > p:last-child { max-width: 680px; margin: 0 auto; color: var(--muted); font-size: 1.03rem; line-height: 1.7; }
.client-insights-list { position: relative; display: grid; gap: 1rem; }
.client-insight { display: grid; grid-template-columns: minmax(230px, .36fr) 1fr; overflow: hidden; background: var(--white); border: 1px solid rgba(16, 41, 86, .1); border-radius: 26px; box-shadow: 0 10px 30px rgba(16, 41, 86, .07); }
.client-audience { position: relative; min-height: 220px; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: clamp(1.5rem, 3vw, 2.4rem); overflow: hidden; color: var(--navy); background: #ffad72; }
.client-audience::after { content: ''; position: absolute; width: 130px; height: 130px; right: -75px; bottom: -75px; border: 24px solid rgba(255, 255, 255, .28); border-radius: 50%; }
.client-insight:nth-child(2) .client-audience { background: #79bce8; }
.client-insight:nth-child(3) .client-audience { background: #9acd6c; }
.client-audience > span:not(.client-audience-icon) { margin: .85rem 0 .2rem; color: rgba(16, 41, 86, .68); font-size: .7rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.client-audience h3 { position: relative; z-index: 1; margin: 0; color: var(--navy); font-size: clamp(1.55rem, 2.5vw, 2.2rem); line-height: 1.1; letter-spacing: -.035em; }
.client-audience-icon { position: relative; z-index: 1; width: 58px; height: 58px; display: grid; place-items: center; color: var(--navy); background: var(--white); border-radius: 18px; transform: rotate(-3deg); }
.client-audience-icon svg { width: 36px; height: 36px; fill: none; stroke: currentColor; stroke-width: 2.1; stroke-linecap: round; stroke-linejoin: round; }
.client-audience-icon .accent { stroke: var(--orange); stroke-width: 3; }
.client-answers { display: grid; align-items: stretch; padding: clamp(1.5rem, 3vw, 2.4rem); }
.client-insight-parents .client-answers { grid-template-columns: repeat(2, 1fr); gap: clamp(1.5rem, 4vw, 3.5rem); }
.client-answer { position: relative; padding-left: 3.1rem; }
.client-answer + .client-answer { border-left: 1px solid var(--line); padding-left: clamp(1.5rem, 4vw, 3.5rem); }
.client-quote { position: absolute; left: 0; top: -.1rem; color: var(--orange); font-family: Georgia, serif; font-size: 4rem; line-height: .85; }
.client-answer + .client-answer .client-quote { left: 1rem; transform: none; }
.client-answer h4 { margin: 0 0 .75rem; color: var(--navy); font-size: clamp(1.25rem, 2vw, 1.65rem); line-height: 1.25; letter-spacing: -.025em; }
.client-answer p { margin: 0; color: var(--text); font-size: .92rem; line-height: 1.7; }

.final-cta { padding-bottom: clamp(2rem, 5vw, 4rem); }
.cta-panel { min-height: 280px; display: grid; grid-template-columns: 260px 1fr 260px; align-items: center; gap: 2rem; padding: 0 3rem 0 0; overflow: hidden; background: linear-gradient(110deg, #f0f5da, #f7f8e9); border-radius: var(--radius-lg); box-shadow: var(--shadow-small); }
.cta-photo { height: 100%; min-height: 280px; overflow: hidden; }
.cta-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 47% 22%; }
.cta-copy { --cta-button-space: 2.4rem; padding-block: var(--cta-button-space); }
.cta-copy h2 { position: relative; width: max-content; max-width: 100%; margin: 0 0 1.5rem; color: var(--navy); font-size: clamp(2rem, 3.1vw, 3rem); line-height: 1.1; letter-spacing: -.04em; }
.cta-copy h2::after { left: 55%; width: 90px; }
.cta-copy p { margin: 0 0 var(--cta-button-space); }
.cta-button-large { width: min(100%, 420px); min-height: 64px; padding: 1rem 2rem; font-size: 1rem; border-radius: 12px; }
.cta-note { color: var(--green-dark); font-family: var(--hand); font-size: 1.75rem; line-height: 1.25; transform: rotate(-3deg); }

.trust-strip { padding: 1.5rem 0 2.2rem; }
.trust-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.25rem; }
.trust-grid > div { display: flex; align-items: center; gap: .8rem; color: var(--navy); font-size: .78rem; font-weight: 700; line-height: 1.4; }
.trust-grid svg { flex: 0 0 40px; width: 40px; height: 40px; fill: none; stroke: var(--navy); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.trust-grid .accent { stroke: var(--green); stroke-width: 3; }

.site-footer { padding: 3.5rem 0 1.5rem; color: #dae2ef; background: var(--navy-dark); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; }
.footer-credit { margin-top: 2.5rem; color: #eef2f8; font-size: .88rem; font-weight: 400; text-align: center; }
.footer-logo-image { margin-bottom: 1rem; }
.footer-grid img { width: 190px; height: auto; }
.footer-grid h2 { margin: 0 0 .75rem; color: white; font-size: 1rem; }
.footer-grid p { margin: 0; font-size: .88rem; }
.footer-grid a { color: white; text-decoration-color: rgba(255,255,255,.4); text-underline-offset: 3px; }
.footer-cookie-settings { margin: 0; padding: 0; color: var(--white); background: none; border: 0; font: inherit; text-decoration: underline; text-decoration-color: rgba(255,255,255,.4); text-underline-offset: 3px; cursor: pointer; }
.footer-cookie-settings:hover { text-decoration-color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; margin-top: 2.5rem; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,.14); font-size: .75rem; }
.mobile-sticky-cta { display: none; }

.cookie-banner[hidden] { display: none; }
.cookie-banner { position: fixed; z-index: 300; right: 1rem; bottom: 1rem; left: 1rem; width: min(calc(100% - 2rem), 920px); min-height: 280px; display: grid; grid-template-columns: 1fr; align-content: space-between; gap: 2.25rem; margin-inline: auto; padding: 2.25rem 2.5rem; color: var(--text); background: rgba(238, 240, 242, .98); border: 1px solid #d5d9dd; border-radius: 18px; box-shadow: 0 18px 50px rgba(20, 22, 25, .24); }
.cookie-banner-copy { max-width: 760px; }
.cookie-banner-copy strong { display: block; margin-bottom: .65rem; color: var(--navy); font-size: 1.35rem; line-height: 1.25; }
.cookie-banner-copy p { margin: 0; color: #414955; font-size: 1rem; line-height: 1.7; }
.cookie-banner-copy p + p { margin-top: 1rem; }
.cookie-banner-actions { display: flex; align-items: center; justify-content: flex-end; gap: 1rem; margin-top: auto; }
.cookie-banner-actions button { min-width: 180px; min-height: 56px; padding: .9rem 1.6rem; border-radius: 11px; font-size: .9rem; font-weight: 900; letter-spacing: .035em; text-transform: uppercase; cursor: pointer; }
.cookie-change { color: #24292f; background: #c9ced3; border: 1px solid #bbc1c7; }
.cookie-accept { color: var(--white); background: var(--green-dark); border: 1px solid var(--green-dark); }
.cookie-change:hover { background: #b9bfc5; }
.cookie-accept:hover { background: #3f7f24; }
.cookie-preferences[hidden] { display: none; }
.cookie-preferences { position: fixed; z-index: 320; inset: 0; display: grid; place-items: center; padding: 1rem; background: rgba(9, 18, 32, .6); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.cookie-preferences-panel { position: relative; width: min(100%, 590px); padding: clamp(1.5rem, 4vw, 2.5rem); color: var(--text); background: var(--white); border-radius: 22px; box-shadow: 0 24px 70px rgba(9, 18, 32, .3); }
.cookie-preferences-panel .eyebrow { color: var(--orange); }
.cookie-preferences-panel h2 { margin: 0 2.5rem .75rem 0; color: var(--navy); font-size: clamp(1.55rem, 3vw, 2.1rem); line-height: 1.2; letter-spacing: -.03em; }
.cookie-preferences-intro { margin: 0 0 1.5rem; color: var(--muted); font-size: .9rem; line-height: 1.6; }
.cookie-preferences-close { position: absolute; width: 42px; height: 42px; top: 1rem; right: 1rem; display: grid; place-items: center; padding: 0; color: var(--navy); background: var(--orange-soft); border: 0; border-radius: 50%; font-size: 1.65rem; line-height: 1; cursor: pointer; }
.cookie-option { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1.2rem; background: #f5f6f7; border: 1px solid #d9dde2; border-radius: 14px; cursor: pointer; }
.cookie-option strong, .cookie-option small { display: block; }
.cookie-option strong { margin-bottom: .25rem; color: var(--navy); font-size: 1rem; }
.cookie-option small { color: var(--muted); font-size: .78rem; line-height: 1.45; }
.cookie-option input { flex: 0 0 auto; width: 24px; height: 24px; accent-color: var(--orange); cursor: pointer; }
.cookie-save { width: 100%; min-height: 50px; margin-top: 1.25rem; color: #111; background: var(--orange); border: 0; border-radius: 10px; font-size: .82rem; font-weight: 900; letter-spacing: .05em; text-transform: uppercase; cursor: pointer; }
.cookie-save:hover { background: #ff9a28; }
.cookie-modal-open { overflow: hidden; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1024px) {
  .hero { min-height: 660px; }
  .hero-grid { grid-template-columns: 1fr 1fr; }
  .hero-photo-wrap { width: 620px; left: -15px; }
  .hand-note { right: -25px; min-width: 180px; font-size: 1.55rem; }
  .process-grid { gap: 1.5rem; }
  .process-step:not(:last-child)::after { right: -1.25rem; font-size: 1.8rem; }
  .schools-map-panel { grid-template-columns: .72fr 1.28fr; }
  .courses-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-panel { grid-template-columns: 220px 1fr 190px; padding-right: 2rem; }
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 800px) {
  .header-inner { min-height: 74px; }
  .brand img { width: 165px; }
  .site-header.is-scrolled .header-inner { min-height: 64px; }
  .nav-toggle { display: grid; margin-left: auto; }
  .page-nav { position: absolute; top: calc(100% - 1px); right: 0; left: 0; display: none; align-items: stretch; gap: .15rem; padding: .75rem; background: rgba(255, 255, 255, .99); border: 1px solid rgba(16, 41, 86, .09); border-radius: 0 0 18px 18px; box-shadow: 0 16px 30px rgba(16, 41, 86, .14); }
  .site-header.menu-open .page-nav { display: flex; flex-direction: column; }
  .page-nav a { padding: .72rem .8rem; border-radius: 8px; font-size: .9rem; }
  .page-nav a:not(.page-nav-cta)::after { display: none; }
  .page-nav a:not(.page-nav-cta):hover { background: var(--orange-soft); }
  .page-nav-cta { justify-content: center; margin-top: .25rem; }
  .site-header.menu-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .site-header.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .site-header.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .hero { padding-top: 104px; }
  .hero::before { display: none; }
  .hero-grid { grid-template-columns: 1fr; min-height: auto; gap: 2.5rem; }
  .hero-copy { max-width: 650px; padding-top: 0; text-align: center; margin-inline: auto; }
  .hero-lead { margin-inline: auto; }
  .hero-points { margin-inline: auto; }
  .hero-visual { min-height: 530px; }
  .hero-photo-wrap { width: 100%; height: 500px; inset: 0; border-radius: 42% 10% 35% 12% / 32% 10% 28% 10%; }
  .hand-note { right: 2%; bottom: -8px; }
  .doodle-wave { display: none; }
  .parent-message-card { grid-template-columns: 1fr; gap: 1.5rem; }
  .parent-message-copy { padding: 1.5rem 0 0; border-top: 1px solid rgba(16, 41, 86, .16); border-left: 0; }
  .perspective-board { grid-template-columns: 1fr; }
  .perspective-connector { min-height: 68px; }
  .perspective-connector::before { width: 2px; height: 100%; background: repeating-linear-gradient(180deg, var(--orange) 0 6px, transparent 6px 12px); }
  .perspective-card-child, .perspective-card-parent { border-radius: 28px; }
  .schools-map-panel { grid-template-columns: 1fr; }
  .schools-map-intro { min-height: 0; }
  .map-decoration { max-width: 360px; width: 100%; }
  .values-header { grid-template-columns: 1fr; align-items: start; gap: 1.25rem; }
  .values-grid { grid-template-columns: 1fr; }
  .client-insight { grid-template-columns: 200px 1fr; }
  .client-insight-parents .client-answers { grid-template-columns: 1fr; }
  .client-answer + .client-answer { padding: 1.5rem 0 0 3.1rem; border-top: 1px solid var(--line); border-left: 0; }
  .client-answer + .client-answer .client-quote { left: 0; top: 1.5rem; transform: none; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 3.5rem 2rem; }
  .process-step:nth-child(2)::after { display: none; }
  .process-step:not(:last-child)::after { right: -1.5rem; }
  .availability-grid { grid-template-columns: 1fr; }
  .form-intro { text-align: center; }
  .check-list { display: inline-block; text-align: left; }
  .cta-panel { grid-template-columns: 190px 1fr; padding-right: 2rem; }
  .cta-note { display: none; }
}

@media (max-width: 600px) {
  :root { --section-space: 4.5rem; }
  body { padding-bottom: 70px; }
  .container { width: min(calc(100% - 1.25rem), var(--container)); }
  .hero { min-height: auto; padding: 96px 0 42px; }
  .eyebrow { font-size: .72rem; }
  h1 { font-size: clamp(2.35rem, 11vw, 3.1rem); }
  .hero-lead { font-size: .99rem; }
  .button { width: 100%; }
  .hero-points { gap: .4rem; margin-top: 2rem; }
  .hero-points svg { width: 42px; height: 42px; }
  .hero-points li { font-size: .76rem; }
  .hero-visual { min-height: 370px; }
  .hero-photo-wrap { height: 350px; border-radius: 35px 35px 85px 35px; }
  .hero-photo-wrap img { object-position: 47% center; }
  .hero-locations li { padding: .45rem .65rem .45rem 1.2rem; font-size: .76rem; }
  .hero-locations li::before { width: 6px; height: 6px; left: .62rem; }
  .hero-locations li:nth-child(1) { top: 4%; right: 2%; }
  .hero-locations li:nth-child(2) { top: 13%; right: 27%; }
  .hero-locations li:nth-child(3) { top: 22%; right: 5%; }
  .hero-locations li:nth-child(4) { top: 31%; right: 25%; }
  .hero-locations li:nth-child(5) { top: 40%; right: 2%; }
  .hero-locations li:nth-child(6) { top: 49%; right: 23%; }
  .hero-locations li:nth-child(7) { top: 58%; right: 4%; }
  .hero-locations li:nth-child(8) { top: 67%; right: 29%; }
  .hand-note { min-width: 145px; padding: 1.35rem .8rem; right: -2px; bottom: -10px; border-radius: 48% 52% 8% 8%; font-size: 1.25rem; }
  .parent-message { padding-top: 3rem; }
  .parent-message-card { padding: 1.75rem 1.25rem 2.25rem; border-radius: 28px; }
  .parent-message-heading h2 { font-size: 1.85rem; }
  .parent-message-copy p { font-size: .98rem; line-height: 1.68; }
  .parent-message-doodle { right: 1rem; bottom: .35rem; }
  .perspective-card { padding: 1.5rem 1.25rem; }
  .perspective-card-head { align-items: flex-start; }
  .perspective-icon { flex-basis: 54px; width: 54px; height: 54px; border-radius: 17px; }
  .perspective-icon svg { width: 35px; height: 35px; }
  .perspective-card h3 { font-size: 1.2rem; }
  .perspective-card li { font-size: .93rem; }
  .schools-map-panel { border-radius: 28px; }
  .schools-map-intro, .schools-directory { padding: 1.75rem 1.25rem; }
  .schools-map-intro h2 { font-size: 2rem; }
  .map-decoration { height: 145px; }
  .map-main-pin { width: 72px; height: 72px; }
  .map-main-pin svg { width: 44px; height: 44px; }
  .location-pills { display: grid; grid-template-columns: 1fr; }
  .location-pills li { width: 100%; border-radius: 13px; }
  .section-title { margin-bottom: 3rem; font-size: 2rem; }
  .section-title br { display: none; }
  .process-grid { grid-template-columns: 1fr; gap: 3rem; }
  .process-step { display: grid; grid-template-columns: 82px 1fr; align-items: center; text-align: left; column-gap: 1rem; }
  .process-step:not(:last-child)::after { content: '↓'; top: auto; right: auto; bottom: -2.55rem; left: 34px; font-size: 1.5rem; }
  .process-icon { grid-row: 1 / span 2; margin: 0; }
  .process-step h3 { margin-bottom: .2rem; }
  .step-number { top: -7px; left: -2px; }
  .availability-grid { gap: 2.5rem; }
  .availability-form { padding: 1.25rem; }
  .form-grid { grid-template-columns: 1fr; gap: .65rem; }
  .field-wide { grid-column: auto; }
  .courses-grid { grid-template-columns: 1fr; }
  .course-card { min-height: 250px; }
  .values-panel { padding: 1.75rem 1.25rem; border-radius: 28px; }
  .values-header h2 { font-size: 2rem; }
  .client-insights-header h2 { font-size: 2rem; }
  .client-insights-header h2 br { display: none; }
  .client-insight { grid-template-columns: 1fr; border-radius: 22px; }
  .client-audience { min-height: 0; display: grid; grid-template-columns: 48px 1fr; align-items: center; column-gap: 1rem; padding: 1.25rem; }
  .client-audience-icon { grid-row: 1 / span 2; width: 48px; height: 48px; border-radius: 15px; }
  .client-audience-icon svg { width: 30px; height: 30px; }
  .client-audience > span:not(.client-audience-icon) { margin: 0; }
  .client-audience h3 { font-size: 1.55rem; }
  .client-answers { padding: 1.5rem 1.25rem; }
  .client-answer { padding-left: 2.65rem; }
  .client-answer + .client-answer { padding-left: 2.65rem; }
  .cta-panel { min-height: auto; grid-template-columns: 1fr; padding: 0; border-radius: 30px; }
  .cta-photo { height: 220px; min-height: 0; }
  .cta-photo img { object-position: 50% 22%; }
  .cta-copy { --cta-button-space: 1.5rem; padding: 0 1.25rem var(--cta-button-space); text-align: center; }
  .cta-copy h2 { margin-inline: auto; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 1.3rem .8rem; }
  .trust-grid > div { align-items: flex-start; font-size: .72rem; }
  .trust-grid > div:last-child { grid-column: 1 / -1; max-width: 240px; margin-inline: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .footer-logo-image { margin-inline: auto; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .mobile-sticky-cta { position: fixed; z-index: 90; right: .65rem; bottom: .65rem; left: .65rem; min-height: 54px; display: flex; align-items: center; justify-content: center; gap: .75rem; color: white; background: var(--green); border-radius: 10px; box-shadow: 0 10px 30px rgba(16,41,86,.28); font-size: .82rem; font-weight: 800; text-decoration: none; text-transform: uppercase; transition: transform .2s, opacity .2s; }
  .mobile-sticky-cta.is-hidden { opacity: 0; pointer-events: none; transform: translateY(80px); }
  .cookie-banner { bottom: .65rem; min-height: 310px; gap: 1.75rem; padding: 1.5rem; border-radius: 15px; }
  .cookie-banner-copy strong { font-size: 1.2rem; }
  .cookie-banner-copy p { font-size: .92rem; }
  .cookie-banner-actions { display: grid; grid-template-columns: 1fr 1fr; width: 100%; }
  .cookie-banner-actions button { min-width: 0; min-height: 54px; padding-inline: .75rem; }
}

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