:root {
  --navy: #073b4c;
  --navy-deep: #032b38;
  --teal: #10a7a2;
  --teal-soft: #dff7f4;
  --yellow: #f9c74f;
  --coral: #ef6f61;
  --ink: #14323d;
  --muted: #58717a;
  --paper: #f7fbfa;
  --white: #ffffff;
  --line: #dce9e7;
  --shadow: 0 24px 70px rgba(3, 43, 56, 0.13);
  --radius-lg: 2rem;
  --radius-md: 1.25rem;
  --shell: min(1160px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3, .brand strong { font-family: "Manrope", system-ui, sans-serif; }
h1, h2, h3 { color: var(--navy-deep); line-height: 1.08; letter-spacing: -0.035em; }
h1 { font-size: clamp(2.7rem, 6vw, 5.35rem); }
h2 { font-size: clamp(2.1rem, 4vw, 3.7rem); }
h3 { font-size: 1.35rem; }
.shell { width: var(--shell); margin-inline: auto; }
.section { padding: clamp(5rem, 9vw, 8.5rem) 0; }
.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; z-index: 99; left: 1rem; top: 1rem; padding: .7rem 1rem; background: var(--navy); color: white; transform: translateY(-160%); border-radius: .5rem; }
.skip-link:focus { transform: translateY(0); }

.site-header { position: sticky; z-index: 20; top: 0; background: rgba(247, 251, 250, .9); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(220, 233, 231, .8); }
.header-inner { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: inline-flex; align-items: center; gap: .8rem; text-decoration: none; }
.brand-mark { display: grid; place-items: center; width: 46px; height: 46px; flex: 0 0 auto; color: var(--navy); background: var(--yellow); border-radius: 14px 14px 14px 4px; font: 800 1.35rem/1 "Manrope", sans-serif; transform: rotate(-3deg); }
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong { color: var(--navy); font-size: 1.2rem; letter-spacing: -.03em; }
.brand-copy small { margin-top: .24rem; color: var(--muted); font-size: .71rem; letter-spacing: .045em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 1.7rem; }
.main-nav a { color: var(--navy); font-weight: 600; text-decoration: none; }
.main-nav a:hover { color: var(--teal); }
.main-nav .nav-cta { padding: .68rem 1.15rem; color: white; background: var(--navy); border-radius: .75rem; }
.main-nav .nav-cta:hover { color: white; background: var(--teal); }
.menu-toggle { display: none; width: 44px; height: 44px; place-content: center; gap: 5px; border: 0; background: transparent; }
.menu-toggle span:not(.sr-only) { display: block; width: 24px; height: 2px; background: var(--navy); }

.hero { position: relative; overflow: hidden; min-height: 720px; display: grid; align-items: center; padding: clamp(4.5rem, 8vw, 7rem) 0; background: linear-gradient(135deg, #f7fbfa 0%, #eefaf8 65%, #dff7f4 100%); }
.hero-glow { position: absolute; width: 650px; height: 650px; right: -300px; top: -260px; border-radius: 50%; background: var(--yellow); opacity: .24; }
.hero-grid { position: relative; display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: clamp(2.5rem, 6vw, 6.5rem); }
.hero-copy { position: relative; z-index: 2; }
.eyebrow { display: flex; align-items: center; gap: .6rem; color: var(--teal); font-size: .82rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow span { width: 24px; height: 3px; background: var(--coral); border-radius: 99px; }
.hero h1 { max-width: 730px; margin-bottom: 1.4rem; }
.hero-intro { max-width: 610px; margin-bottom: 2rem; color: var(--muted); font-size: clamp(1.08rem, 1.5vw, 1.3rem); }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: .8rem; min-height: 52px; padding: .8rem 1.25rem; border: 0; border-radius: .85rem; font: 700 1rem/1.3 "DM Sans", sans-serif; text-decoration: none; cursor: pointer; transition: transform .2s ease, background .2s ease, color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--navy); box-shadow: 0 12px 30px rgba(7, 59, 76, .18); }
.button-primary:hover { background: var(--teal); }
.button-quiet { color: var(--navy); }
.button-quiet:hover { color: var(--teal); }
.hero-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 3.2rem 0 0; padding-top: 1.6rem; border-top: 1px solid var(--line); }
.hero-facts div { min-width: 0; }
.hero-facts dt { color: var(--muted); font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.hero-facts dd { margin: .25rem 0 0; color: var(--navy); font-weight: 700; line-height: 1.3; }
.hero-visual { position: relative; }
.hero-frame { position: relative; overflow: hidden; border: 10px solid white; border-radius: 44% 12% 38% 15% / 22% 33% 19% 36%; box-shadow: var(--shadow); transform: rotate(1.7deg); }
.hero-frame::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(7, 59, 76, .08); pointer-events: none; }
.hero-frame img { width: 100%; min-height: 500px; object-fit: cover; object-position: center; }
.hero-note { position: absolute; z-index: 3; padding: .65rem 1rem; color: var(--navy); background: white; border-radius: .85rem; box-shadow: 0 15px 35px rgba(3, 43, 56, .16); font: 700 .9rem/1 "Manrope", sans-serif; }
.note-one { left: -1.5rem; top: 16%; transform: rotate(-5deg); }
.note-two { right: -.8rem; bottom: 13%; color: white; background: var(--coral); transform: rotate(4deg); }

.statement { color: white; background: var(--navy); }
.statement-inner { min-height: 155px; display: grid; grid-template-columns: .4fr 1.6fr; align-items: center; gap: 2rem; }
.statement-label { color: var(--yellow); font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.statement p { margin: 0; font: 700 clamp(1.3rem, 2.5vw, 2rem)/1.35 "Manrope", sans-serif; }

.section-heading { margin-bottom: 3.5rem; }
.split-heading { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: clamp(2rem, 8vw, 7rem); }
.split-heading h2 { max-width: 760px; margin-bottom: 0; }
.split-heading > p { margin-bottom: .5rem; color: var(--muted); font-size: 1.1rem; }
.principles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.15rem; }
.principle { position: relative; min-height: 330px; padding: 2rem; background: white; border: 1px solid var(--line); border-radius: var(--radius-md); transition: transform .25s ease, box-shadow .25s ease; }
.principle:hover { transform: translateY(-6px); box-shadow: 0 20px 55px rgba(3, 43, 56, .1); }
.principle-featured { background: var(--teal-soft); border-color: transparent; }
.principle-number { position: absolute; right: 1.5rem; top: 1.4rem; color: #86aaa8; font-weight: 700; }
.principle-icon { display: grid; place-items: center; width: 58px; height: 58px; margin-bottom: 4.1rem; color: var(--navy); background: var(--yellow); border-radius: 18px 18px 18px 6px; font-size: 1.45rem; }
.principle:nth-child(2) .principle-icon { color: white; background: var(--teal); }
.principle:nth-child(3) .principle-icon { color: white; background: var(--coral); }
.principle h3 { margin-bottom: .8rem; }
.principle p { margin-bottom: 0; color: var(--muted); }

.levels { color: white; background: var(--navy-deep); }
.levels-grid { display: grid; grid-template-columns: .75fr 1.25fr; align-items: center; gap: clamp(3rem, 8vw, 7rem); }
.levels h2, .levels h3 { color: white; }
.eyebrow-light { color: #7be0da; }
.levels-intro > p:last-child { max-width: 450px; color: #bed0d5; font-size: 1.08rem; }
.level-cards { display: grid; gap: 1rem; }
.level-card { position: relative; overflow: hidden; padding: 2.2rem; border-radius: var(--radius-md); }
.level-card::after { content: ""; position: absolute; width: 190px; height: 190px; right: -70px; bottom: -105px; border: 22px solid rgba(255,255,255,.18); border-radius: 50%; }
.level-initial { color: var(--navy); background: var(--yellow); }
.level-primary { color: white; background: var(--teal); }
.level-secondary { color: white; background: var(--coral); }
.level-initial h3 { color: var(--navy-deep); }
.level-topline { display: flex; justify-content: space-between; margin-bottom: 1.6rem; font-size: .78rem; letter-spacing: .09em; text-transform: uppercase; }
.level-topline b { font: 800 1rem/1 "Manrope", sans-serif; letter-spacing: 0; }
.level-card p { max-width: 570px; margin-bottom: 1.4rem; opacity: .88; }
.level-card a { position: relative; z-index: 2; display: inline-flex; gap: .65rem; font-weight: 700; text-underline-offset: 4px; }

.families { background: white; }
.families-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; gap: clamp(2rem, 6vw, 5.5rem); }
.family-card { position: relative; overflow: hidden; min-height: 480px; display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(2rem, 5vw, 3.4rem); color: white; background: var(--coral); border-radius: var(--radius-lg); }
.family-card h2 { position: relative; z-index: 1; color: white; }
.family-card p { position: relative; z-index: 1; max-width: 520px; margin-bottom: 0; font-size: 1.08rem; }
.family-kicker { position: relative; z-index: 1; margin-bottom: auto; font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.family-card-pattern { position: absolute; width: 330px; height: 330px; right: -110px; top: -120px; border: 48px solid rgba(255,255,255,.16); border-radius: 46% 54% 58% 42%; transform: rotate(20deg); }
.steps { margin: 0; padding: 0; list-style: none; display: grid; align-content: center; }
.steps li { display: grid; grid-template-columns: 54px 1fr; gap: 1.2rem; padding: 1.8rem 0; border-bottom: 1px solid var(--line); }
.steps li:last-child { border-bottom: 0; }
.steps li > span { display: grid; place-items: center; width: 50px; height: 50px; color: var(--navy); background: var(--teal-soft); border-radius: 50%; font-weight: 800; }
.steps h3 { margin: .2rem 0 .45rem; }
.steps p { margin-bottom: 0; color: var(--muted); }

.admissions { background: #fffaf0; }
.admissions-heading { margin-bottom: 2.4rem; }
.admission-price-grid { display: grid; grid-template-columns: .8fr .8fr 1.4fr; gap: 1rem; margin-bottom: 1.5rem; }
.price-card, .availability-card { min-height: 210px; padding: 1.7rem; border-radius: var(--radius-md); }
.price-card { display: flex; flex-direction: column; color: white; background: var(--navy); }
.price-card.price-featured { color: var(--navy); background: var(--yellow); }
.price-card > span { font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.price-card strong { margin: auto 0 .35rem; font: 800 clamp(2.4rem, 4vw, 3.7rem)/1 "Manrope", sans-serif; letter-spacing: -.055em; }
.price-card strong small { margin-right: .25rem; font-size: .95rem; letter-spacing: 0; }
.price-card p { margin: 0; opacity: .8; }
.availability-card { display: flex; align-items: center; gap: 1.2rem; color: white; background: var(--teal); }
.availability-card b { display: block; margin-bottom: .45rem; font: 700 1.35rem/1.2 "Manrope", sans-serif; }
.availability-card p { margin: 0; color: #e1fbf8; }
.availability-dot { width: 60px; height: 60px; flex: 0 0 auto; background: white; border: 17px solid rgba(255,255,255,.32); border-radius: 50%; background-clip: padding-box; }
.admission-details-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 1.5rem; }
.info-panel { padding: clamp(1.7rem, 4vw, 2.6rem); background: white; border: 1px solid #efe4cb; border-radius: var(--radius-md); }
.info-panel h3, .school-life-grid h3 { margin: .3rem 0 1rem; font-size: clamp(1.5rem, 2.5vw, 2rem); }
.info-panel > p:not(.card-kicker), .school-life-grid article > p:not(.card-kicker) { color: var(--muted); }
.check-list, .document-list { margin: 1.4rem 0 0; padding: 0; list-style: none; }
.check-list { display: grid; gap: .85rem; }
.check-list li { position: relative; padding-left: 1.7rem; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--teal); font-weight: 800; }
.document-list { columns: 2; column-gap: 1.5rem; }
.document-list li { break-inside: avoid; margin-bottom: .65rem; padding: 0 0 .65rem 1.2rem; border-bottom: 1px solid var(--line); }
.document-list li::before { content: "•"; margin-left: -1.2rem; margin-right: .65rem; color: var(--coral); }
.school-life-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.5rem; }
.school-life-grid article { min-height: 360px; padding: 2rem; border-radius: var(--radius-md); }
.schedule-card { color: white; background: var(--navy); }
.schedule-card h3 { color: white; }
.schedule-card .card-kicker { color: #79ddd7; }
.schedule-card > p:not(.card-kicker) { color: #c9dade !important; }
.schedule-card dl { margin: 1.5rem 0; }
.schedule-card dl div { display: flex; justify-content: space-between; gap: 1rem; padding: .85rem 0; border-top: 1px solid rgba(255,255,255,.18); }
.schedule-card dt { color: #a8c6cc; }
.schedule-card dd { margin: 0; font-weight: 700; }
.support-card { background: var(--teal-soft); }
.books-card { background: white; border: 1px solid #efe4cb; }
.book-prices { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; margin: 1.4rem 0; }
.book-prices span { display: grid; gap: .2rem; padding: .8rem; color: var(--muted); background: var(--paper); border-radius: .75rem; font-size: .8rem; text-transform: uppercase; }
.book-prices b { color: var(--navy); font-size: 1.15rem; }
.small-copy { font-size: .9rem; }
.care-policy { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 1.4rem; margin-top: 1.5rem; padding: clamp(1.5rem, 4vw, 2.3rem); color: white; background: var(--coral); border-radius: var(--radius-md); }
.care-policy > span { display: grid; place-items: center; width: 68px; height: 68px; color: var(--coral); background: white; border-radius: 50%; font-size: 2rem; }
.care-policy .card-kicker { color: #ffe6e2; }
.care-policy h3 { margin: .2rem 0 .45rem; color: white; font-size: clamp(1.45rem, 2.4vw, 2rem); }
.care-policy p:last-child { margin: 0; color: #fff4f2; }

.forms-section { background: #eef8f7; }
.forms-heading { margin-bottom: 2.5rem; }
.family-access-card { display: grid; grid-template-columns: 1.25fr .75fr auto; align-items: center; gap: clamp(2rem, 5vw, 4.5rem); padding: clamp(2rem, 5vw, 3.5rem); color: white; background: var(--navy); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.family-access-card h3 { max-width: 560px; margin: .4rem 0 .8rem; color: white; font-size: clamp(1.7rem, 3vw, 2.5rem); }
.family-access-card p:not(.card-kicker) { max-width: 620px; margin-bottom: 0; color: #c9dade; }
.access-number { display: inline-grid; place-items: center; width: 42px; height: 42px; margin-bottom: 1rem; color: var(--navy); background: var(--yellow); border-radius: 13px 13px 13px 4px; font-weight: 800; }
.card-kicker { margin-bottom: .2rem; color: var(--teal); font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.family-access-card .card-kicker { color: #79ddd7; }
.family-access-card ol { margin: 0; padding: 0; list-style: none; display: grid; gap: .8rem; }
.family-access-card li { display: flex; align-items: center; gap: .7rem; color: #e6f0f1; font-size: .9rem; }
.family-access-card li span { display: grid; place-items: center; width: 28px; height: 28px; flex: 0 0 auto; color: var(--navy); background: #c4efeb; border-radius: 50%; font-weight: 800; }
.button-light { color: var(--navy); background: white; white-space: nowrap; }
.button-light:hover { color: white; background: var(--teal); }
.email-benefit { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: clamp(1.5rem, 4vw, 3rem); margin: 1.5rem 0; padding: 1.8rem clamp(1.5rem, 4vw, 2.6rem); background: var(--yellow); border-radius: var(--radius-md); }
.email-benefit > span { padding: .65rem .9rem; color: white; background: var(--coral); border-radius: .8rem; font: 800 clamp(1rem, 2vw, 1.35rem)/1 "Manrope", sans-serif; transform: rotate(-2deg); }
.email-benefit h3 { margin: .2rem 0 .45rem; }
.email-benefit p:last-child { margin-bottom: 0; color: #4c5150; }
.application-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: start; gap: 1.5rem; }
.form-card { padding: clamp(1.5rem, 4vw, 2.5rem); background: white; border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: 0 20px 60px rgba(3, 43, 56, .08); }
.form-card > header { padding-bottom: 1.6rem; }
.form-card h3 { margin: .3rem 0 .75rem; font-size: clamp(1.55rem, 2.4vw, 2.1rem); }
.form-card header > p:last-child { margin-bottom: 0; color: var(--muted); }
.teacher-card .access-number { color: white; background: var(--coral); }
.request-card { min-height: 330px; display: flex; flex-direction: column; }
.request-card > p:not(.card-kicker) { color: var(--muted); }
.form-open-button { width: 100%; min-height: 52px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: auto; padding: .85rem 1rem; color: white; background: var(--navy); border: 0; border-radius: .8rem; font: 700 1rem/1.3 "DM Sans", sans-serif; cursor: pointer; }
.form-open-button:hover { background: var(--teal); }
.teacher-card .form-open-button { background: var(--coral); }
.teacher-card .form-open-button:hover { background: #d85b4e; }

.form-dialog { width: min(820px, calc(100% - 28px)); max-width: none; max-height: calc(100dvh - 28px); padding: 0; overflow: visible; background: transparent; border: 0; }
.form-dialog::backdrop { background: rgba(3, 43, 56, .72); backdrop-filter: blur(7px); }
.dialog-shell { position: relative; max-height: calc(100dvh - 28px); overflow-y: auto; padding: clamp(1.5rem, 5vw, 3rem); background: white; border-radius: var(--radius-md); box-shadow: 0 35px 100px rgba(0, 0, 0, .28); }
.dialog-close { position: sticky; z-index: 3; top: 0; float: right; width: 42px; height: 42px; display: grid; place-items: center; margin: 0 0 1rem 1rem; color: var(--navy); background: var(--teal-soft); border: 0; border-radius: 50%; font: 500 1.7rem/1 sans-serif; cursor: pointer; }
.dialog-close:hover { color: white; background: var(--coral); }
.dialog-header { padding-right: 2rem; }
.dialog-header h2 { margin: .35rem 0 .8rem; font-size: clamp(1.9rem, 5vw, 3rem); }
.dialog-header > p:last-child { max-width: 650px; margin-bottom: 0; color: var(--muted); }
.dialog-form fieldset { min-width: 0; margin: 0 0 1.5rem; padding: 0; border: 0; }
.dialog-form fieldset + fieldset { padding-top: 1.5rem; border-top: 1px solid var(--line); }
.dialog-form legend { width: 100%; margin-bottom: 1rem; color: var(--navy-deep); font: 700 1.15rem/1.3 "Manrope", sans-serif; }
.dependents-list { display: grid; gap: .8rem; }
.dependent-row { position: relative; display: grid; grid-template-columns: 1fr 1fr auto; align-items: end; gap: .8rem; padding: 1rem; background: var(--paper); border: 1px solid var(--line); border-radius: .9rem; }
.add-dependent, .remove-dependent { padding: .62rem .8rem; border-radius: .65rem; font: 700 .85rem/1.2 "DM Sans", sans-serif; cursor: pointer; }
.add-dependent { margin-top: .8rem; color: var(--navy); background: var(--teal-soft); border: 0; }
.add-dependent:hover { color: white; background: var(--teal); }
.remove-dependent { min-height: 45px; color: #9a3428; background: #fff1ef; border: 1px solid #f5c9c3; }
.remove-dependent:hover { color: white; background: var(--coral); }
.field-note { margin: .8rem 0 0; color: var(--muted); font-size: .85rem; }
.request-form { padding-top: 1.7rem; border-top: 1px solid var(--line); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.request-form label { display: grid; gap: .42rem; color: var(--navy); font-size: .86rem; font-weight: 700; }
.request-form input, .request-form select, .request-form textarea { width: 100%; min-width: 0; padding: .78rem .85rem; color: var(--ink); background: white; border: 1px solid #b9cecc; border-radius: .75rem; font: inherit; font-size: max(16px, 1rem); line-height: 1.45; outline: none; }
.request-form textarea { resize: vertical; }
.request-form input:focus, .request-form select:focus, .request-form textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(16, 167, 162, .14); }
.request-form .wide { grid-column: 1 / -1; }
.consent { grid-template-columns: auto 1fr !important; align-items: start; gap: .7rem !important; margin: 1.3rem 0; color: var(--muted) !important; font-weight: 500 !important; line-height: 1.45; }
.consent input { width: 18px; height: 18px; margin-top: .14rem; accent-color: var(--teal); }
.form-submit { width: 100%; min-height: 51px; display: flex; align-items: center; justify-content: center; gap: .7rem; padding: .8rem 1rem; color: white; background: var(--navy); border: 0; border-radius: .8rem; font: 700 1rem/1.3 "DM Sans", sans-serif; cursor: pointer; }
.form-submit:hover { background: var(--teal); }
.form-submit:disabled { cursor: wait; opacity: .65; }
.form-status { min-height: 1.5rem; margin: .9rem 0 0; color: var(--muted); font-size: .9rem; }
.form-status.success { color: #126044; }
.form-status.error { color: #a43425; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px; height: 1px; overflow: hidden; }

.contact { padding: clamp(5rem, 9vw, 8rem) 0; color: white; background: var(--teal); }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: clamp(3rem, 8vw, 7rem); }
.contact h2 { color: white; }
.contact-heading > p:last-child { max-width: 430px; color: #d9fbf7; font-size: 1.08rem; }
.contact-panel { overflow: hidden; background: white; border-radius: var(--radius-md); box-shadow: var(--shadow); }
.contact-panel > * { display: grid; grid-template-columns: 52px 1fr auto; align-items: center; gap: 1.15rem; min-height: 96px; padding: 1.1rem 1.4rem; color: var(--navy); text-decoration: none; border-bottom: 1px solid var(--line); }
.contact-panel > *:last-child { border-bottom: 0; }
.contact-panel a:hover { background: var(--teal-soft); }
.contact-icon { display: grid; place-items: center; width: 46px; height: 46px; color: white; background: var(--navy); border-radius: 14px; font-weight: 800; }
.contact-panel span:nth-child(2) { display: grid; }
.contact-panel small { color: var(--muted); font-size: .76rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.contact-panel strong { font-size: 1rem; line-height: 1.4; }
.contact-panel b { color: var(--coral); font-size: 1.25rem; }

.site-footer { padding: 2.4rem 0; background: var(--paper); }
.footer-inner { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 2rem; color: var(--muted); font-size: .88rem; }
.footer-inner p { margin: 0; }
.brand-footer .brand-mark { width: 40px; height: 40px; }

@media (max-width: 940px) {
  .hero-grid, .levels-grid, .families-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 3.6rem; }
  .hero-copy { max-width: 720px; }
  .hero-visual { max-width: 720px; }
  .hero-frame img { min-height: 430px; }
  .split-heading { grid-template-columns: 1fr; gap: 1.5rem; }
  .principles-grid { grid-template-columns: 1fr 1fr; }
  .principle-featured { grid-column: 1 / -1; }
  .levels-intro { max-width: 720px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-inner > :last-child { grid-column: 1 / -1; }
  .family-access-card { grid-template-columns: 1fr 1fr; }
  .family-access-card > div:first-child { grid-column: 1 / -1; }
  .admission-price-grid { grid-template-columns: 1fr 1fr; }
  .availability-card { grid-column: 1 / -1; }
  .admission-details-grid { grid-template-columns: 1fr; }
  .school-life-grid { grid-template-columns: 1fr 1fr; }
  .books-card { grid-column: 1 / -1; min-height: auto !important; }
}

@media (max-width: 760px) {
  :root { --shell: min(100% - 28px, 680px); }
  .site-header { position: relative; }
  .header-inner { min-height: 74px; }
  .menu-toggle { display: grid; }
  .main-nav { position: absolute; inset: 74px 14px auto; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: .7rem; background: white; border: 1px solid var(--line); border-radius: 1rem; box-shadow: var(--shadow); }
  .main-nav.open { display: flex; }
  .main-nav a { padding: .8rem; }
  .main-nav .nav-cta { margin-top: .3rem; text-align: center; }
  .hero { min-height: auto; }
  .hero h1 { font-size: clamp(2.65rem, 13vw, 4rem); }
  .hero-facts { grid-template-columns: 1fr 1fr; }
  .hero-facts > div:last-child { grid-column: 1 / -1; }
  .hero-frame { border-width: 7px; }
  .hero-frame img { min-height: 340px; }
  .note-one { left: -.3rem; }
  .note-two { right: -.1rem; }
  .statement-inner { grid-template-columns: 1fr; gap: .6rem; padding-block: 2rem; }
  .principles-grid { grid-template-columns: 1fr; }
  .principle-featured { grid-column: auto; }
  .principle { min-height: auto; }
  .principle-icon { margin-bottom: 2.6rem; }
  .family-card { min-height: 420px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-inner > :last-child { grid-column: auto; }
  .family-access-card, .application-grid { grid-template-columns: 1fr; }
  .family-access-card > div:first-child { grid-column: auto; }
  .family-access-card .button { justify-self: start; }
  .email-benefit { grid-template-columns: 1fr; }
  .admission-price-grid, .school-life-grid { grid-template-columns: 1fr; }
  .availability-card, .books-card { grid-column: auto; }
  .document-list { columns: 1; }
  .school-life-grid article { min-height: auto; }
  .care-policy { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .request-form .wide { grid-column: auto; }
  .dialog-shell { padding: 1.25rem; border-radius: 1rem; }
  .dialog-header { padding-right: 0; }
  .dependent-row { grid-template-columns: 1fr; }
  .remove-dependent { width: 100%; }
}

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