@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Libre+Franklin:wght@600;700;800&family=Source+Serif+4:opsz,wght@8..60,500;8..60,600&display=swap');

:root {
  --green-950: #032f24;
  --green-900: #064b36;
  --green-800: #0b684a;
  --green-100: #dcebe5;
  --gold: #f5c344;
  --gold-soft: #fff1ad;
  --cream: #fbfaf5;
  --ink: #17322a;
  --muted: #5f706a;
  --line: #d7ddd9;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(3, 47, 36, .12);
  --sans: "DM Sans", system-ui, sans-serif;
  --display: "Libre Franklin", system-ui, sans-serif;
  --serif: "Source Serif 4", Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--cream); font-family: var(--sans); font-size: 1rem; line-height: 1.65; }
img { max-width: 100%; display: block; }
a { color: inherit; text-underline-offset: .2em; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.narrow { width: min(780px, calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 1000; background: var(--white); padding: .8rem 1rem; border-radius: .3rem; }
.skip-link:focus { top: 1rem; }

.announcement { background: var(--gold); color: var(--green-950); font-size: .88rem; font-weight: 700; letter-spacing: .02em; }
.announcement__inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.announcement a { white-space: nowrap; }
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(251,250,245,.96); border-bottom: 1px solid rgba(3,47,36,.12); backdrop-filter: blur(14px); }
.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; color: var(--green-950); }
.brand img { width: 62px; height: 62px; object-fit: cover; border-radius: 50%; border: 2px solid var(--gold); }
.brand span { display: grid; line-height: 1.05; }
.brand strong { font-family: var(--serif); font-size: clamp(1.15rem, 2vw, 1.45rem); font-weight: 600; }
.brand small { margin-top: .35rem; font-size: .73rem; letter-spacing: .13em; text-transform: uppercase; font-weight: 700; }
.primary-nav { display: flex; align-items: center; gap: clamp(.8rem, 1.5vw, 1.5rem); }
.primary-nav > a:not(.button) { position: relative; text-decoration: none; font-size: .92rem; font-weight: 700; }
.primary-nav > a:not(.button)::after { content: ""; position: absolute; left: 0; bottom: -.55rem; width: 100%; height: 2px; background: var(--green-800); transform: scaleX(0); transform-origin: left; transition: transform .2s; }
.primary-nav > a:hover::after, .primary-nav > a[aria-current="page"]::after { transform: scaleX(1); }
.menu-toggle { display: none; border: 0; background: transparent; color: var(--green-950); font-weight: 700; }
.menu-toggle__lines, .menu-toggle__lines::before, .menu-toggle__lines::after { display: block; width: 22px; height: 2px; background: currentColor; position: relative; }
.menu-toggle__lines::before, .menu-toggle__lines::after { content: ""; position: absolute; left: 0; }
.menu-toggle__lines::before { top: -7px; }
.menu-toggle__lines::after { top: 7px; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: .65rem; min-height: 52px; padding: .8rem 1.3rem; border: 2px solid var(--green-900); background: var(--green-900); color: var(--white); text-decoration: none; font-weight: 800; letter-spacing: .01em; border-radius: 2px; transition: transform .18s, background .18s, color .18s; cursor: pointer; }
.button::after { content: "→"; font-size: 1.15em; }
.button:hover { transform: translateY(-2px); background: var(--green-800); }
.button--small { min-height: 42px; padding: .55rem 1rem; }
.button--gold { background: var(--gold); border-color: var(--gold); color: var(--green-950); }
.button--ghost { background: transparent; color: var(--green-900); }
.button--light { background: var(--white); border-color: var(--white); color: var(--green-950); }
.text-link { display: inline-flex; gap: .45rem; align-items: center; color: var(--green-800); font-weight: 800; text-decoration-thickness: 2px; }
.text-link::after { content: "→"; }

.hero { min-height: 680px; background: var(--green-950); color: var(--white); display: grid; grid-template-columns: minmax(0,1fr) minmax(430px,.82fr); }
.hero__content { padding: clamp(5rem, 9vw, 9rem) max(2.5rem, calc((100vw - 1180px)/2)) clamp(5rem, 8vw, 8rem); align-self: center; }
.eyebrow { margin: 0 0 1rem; color: var(--green-800); font-size: .78rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.hero .eyebrow, .dark-section .eyebrow, .page-hero--dark .eyebrow { color: var(--gold); }
h1, h2, h3 { margin: 0; line-height: 1.08; }
h1 { max-width: 800px; font-family: var(--serif); font-size: clamp(3.4rem, 7vw, 6.9rem); font-weight: 500; letter-spacing: -.045em; }
h2 { font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 4rem); font-weight: 500; letter-spacing: -.035em; }
h3 { font-family: var(--display); font-size: 1.15rem; }
.hero__lead { max-width: 620px; margin: 1.6rem 0 2rem; font-size: clamp(1.08rem, 2vw, 1.3rem); color: #e2eee8; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .85rem; }
.hero__media { position: relative; min-height: 680px; overflow: hidden; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 32%; }
.hero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,47,36,.18), transparent 35%), linear-gradient(0deg, rgba(3,47,36,.2), transparent 40%); }
.hero__seal { position: absolute; z-index: 2; left: -54px; bottom: 54px; width: 130px; aspect-ratio: 1; border-radius: 50%; display: grid; place-items: center; text-align: center; padding: 1rem; background: var(--gold); color: var(--green-950); font-family: var(--display); font-size: .75rem; line-height: 1.25; letter-spacing: .08em; text-transform: uppercase; transform: rotate(-8deg); }

.action-band { background: var(--white); border-bottom: 1px solid var(--line); }
.action-band__grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.action-card { padding: 2.1rem 2rem; border-right: 1px solid var(--line); text-decoration: none; transition: background .2s; }
.action-card:first-child { border-left: 1px solid var(--line); }
.action-card span { display: block; margin-bottom: .55rem; color: var(--muted); font-size: .76rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.action-card strong { display: flex; align-items: center; justify-content: space-between; font-family: var(--serif); font-size: 1.5rem; font-weight: 600; }
.action-card strong::after { content: "↗"; color: var(--green-800); }
.action-card:hover { background: var(--gold-soft); }

.section { padding: clamp(5rem, 9vw, 8.5rem) 0; }
.section--white { background: var(--white); }
.section--soft { background: #f0f5f2; }
.section-heading { display: grid; grid-template-columns: .8fr 1.4fr; gap: 3rem; align-items: end; margin-bottom: 3.5rem; }
.section-heading p { margin: 0; color: var(--muted); font-size: 1.12rem; max-width: 640px; }
.intro-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(3rem, 7vw, 7rem); align-items: center; }
.intro-copy > p:not(.eyebrow) { font-family: var(--serif); font-size: clamp(1.4rem, 2.7vw, 2.15rem); line-height: 1.35; margin: 1.5rem 0 2rem; color: #264d40; }
.image-frame { position: relative; }
.image-frame::before { content: ""; position: absolute; inset: -18px 18px 18px -18px; border: 2px solid var(--gold); z-index: 0; }
.image-frame img { position: relative; z-index: 1; aspect-ratio: 4/3; width: 100%; object-fit: cover; }

.pillars { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.pillar { padding: 2.5rem 1.7rem 2.8rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); }
.pillar__number { display: inline-flex; width: 40px; height: 40px; align-items: center; justify-content: center; border-radius: 50%; background: var(--gold); color: var(--green-950); font-weight: 800; }
.pillar h3 { margin: 1.6rem 0 .8rem; font-size: 1.28rem; }
.pillar p { margin: 0; color: var(--muted); }

.program-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.program-card { min-height: 360px; display: flex; flex-direction: column; justify-content: flex-end; padding: 2rem; background: var(--green-900); color: var(--white); position: relative; overflow: hidden; text-decoration: none; box-shadow: var(--shadow); }
.program-card:nth-child(2) { background: var(--gold); color: var(--green-950); }
.program-card:nth-child(3) { background: #ecede5; color: var(--green-950); }
.program-card::before { content: attr(data-index); position: absolute; top: -2rem; right: 1rem; font-family: var(--serif); font-size: 10rem; line-height: 1; opacity: .12; }
.program-card span { margin-bottom: auto; font-size: .78rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.program-card h3 { max-width: 270px; margin-bottom: 1rem; font-family: var(--serif); font-size: 2.2rem; font-weight: 500; }
.program-card p { margin: 0 0 1.5rem; max-width: 300px; }
.program-card b { font-size: .9rem; }

.story-band { display: grid; grid-template-columns: .9fr 1.1fr; min-height: 620px; }
.story-band__image img { width: 100%; height: 100%; object-fit: cover; }
.story-band__copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(3rem, 7vw, 7rem); background: var(--green-950); color: var(--white); }
.story-band__copy p:not(.eyebrow) { max-width: 650px; font-size: 1.08rem; color: #d9e7e1; }

.dark-section { background: var(--green-950); color: var(--white); }
.video-copy > p:not(.eyebrow) { max-width: 560px; color: #d9e7e1; font-size: 1.08rem; }
.video-copy .button { margin-top: 1rem; }
.video-frame { width: min(100%, 520px); justify-self: center; padding: .7rem; background: var(--white); box-shadow: var(--shadow); }
.video-frame video { display: block; width: 100%; max-height: 680px; aspect-ratio: 586 / 960; object-fit: cover; background: #000; }

.proof-strip { background: var(--gold); }
.proof-strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof { padding: 2rem 1.5rem; text-align: center; border-right: 1px solid rgba(3,47,36,.23); }
.proof:first-child { border-left: 1px solid rgba(3,47,36,.23); }
.proof strong { display: block; font-family: var(--serif); font-size: 1.45rem; }
.proof span { display: block; margin-top: .25rem; font-size: .82rem; font-weight: 700; }

.cta { padding: clamp(4rem, 8vw, 7rem) 0; background: var(--green-800); color: var(--white); }
.cta__inner { display: grid; grid-template-columns: 1.4fr auto; gap: 3rem; align-items: center; }
.cta p { max-width: 650px; margin: 1rem 0 0; color: #d9e7e1; font-size: 1.12rem; }

.page-hero { padding: clamp(5rem, 9vw, 9rem) 0 4.5rem; background: var(--gold-soft); }
.page-hero--dark { background: var(--green-950); color: var(--white); }
.page-hero h1 { max-width: 920px; font-size: clamp(3.1rem, 7vw, 6.2rem); }
.page-hero__lead { max-width: 720px; margin: 1.5rem 0 0; font-size: 1.2rem; color: var(--muted); }
.page-hero--dark .page-hero__lead { color: #d9e7e1; }
.bread { margin-bottom: 2.3rem; font-size: .85rem; font-weight: 700; }
.bread a { color: inherit; }

.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(3rem, 7vw, 7rem); align-items: start; }
.split--center { align-items: center; }
.prose p { color: var(--muted); font-size: 1.06rem; }
.prose .lead { color: var(--ink); font-family: var(--serif); font-size: 1.7rem; line-height: 1.4; }
.quote { padding: 2.4rem; border-left: 6px solid var(--gold); background: var(--white); box-shadow: var(--shadow); }
.quote p { margin: 0; font-family: var(--serif); font-size: 1.65rem; line-height: 1.35; }
.quote cite { display: block; margin-top: 1rem; font-style: normal; color: var(--muted); font-size: .9rem; font-weight: 700; }
.values { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.value { padding: 2rem; background: var(--white); border-top: 4px solid var(--gold); }
.value h3 { margin-bottom: .8rem; }
.value p { margin: 0; color: var(--muted); }

.program-row { display: grid; grid-template-columns: .6fr 1.4fr; gap: 3rem; padding: 3rem 0; border-top: 1px solid var(--line); }
.program-row:last-child { border-bottom: 1px solid var(--line); }
.program-row__age { color: var(--green-800); font-size: .8rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.program-row h2 { font-size: clamp(2rem, 4vw, 3.3rem); }
.program-row p { max-width: 700px; color: var(--muted); }
.detail-list { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: 1.3rem; }
.detail-list span { padding: .45rem .75rem; border: 1px solid #b8c8c1; background: var(--white); font-size: .85rem; font-weight: 700; }

.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); }
.step { counter-increment: step; padding: 2rem; border: 1px solid var(--line); border-right: 0; background: var(--white); }
.step:last-child { border-right: 1px solid var(--line); }
.step::before { content: "0" counter(step); display: block; margin-bottom: 2rem; color: var(--green-800); font-family: var(--display); font-size: .85rem; font-weight: 800; }
.step h3 { margin-bottom: .8rem; }
.step p { margin: 0; color: var(--muted); }

.faq-list { border-top: 1px solid var(--line); }
details.faq { border-bottom: 1px solid var(--line); }
details.faq summary { list-style: none; display: flex; justify-content: space-between; gap: 2rem; padding: 1.5rem 0; cursor: pointer; font-family: var(--display); font-size: 1.05rem; font-weight: 700; }
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after { content: "+"; color: var(--green-800); font-size: 1.5rem; line-height: 1; }
details.faq[open] summary::after { content: "−"; }
details.faq p { max-width: 760px; margin: -.2rem 0 1.7rem; color: var(--muted); }

.resource-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.resource-card { padding: 2rem; background: var(--white); border: 1px solid var(--line); }
.resource-card h3 { margin: .8rem 0; }
.resource-card p { color: var(--muted); }
.calendar-preview { display: block; padding: 1rem; background: var(--white); box-shadow: var(--shadow); }
.calendar-preview img { width: 100%; }

.form-shell { display: grid; grid-template-columns: .62fr 1.38fr; gap: clamp(2rem, 7vw, 6rem); align-items: start; }
.contact-card { position: sticky; top: 130px; padding: 2rem; background: var(--green-950); color: var(--white); }
.contact-card h2 { font-size: 2.2rem; }
.contact-card p { color: #d9e7e1; }
.contact-card a { display: block; margin-top: .6rem; }
.form-card { padding: clamp(1.5rem, 4vw, 3rem); background: var(--white); box-shadow: var(--shadow); }
.form-card h2 { font-size: clamp(2rem, 4vw, 3rem); }
.form-card > p { color: var(--muted); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; margin-top: 2rem; }
.field { display: grid; gap: .45rem; }
.field--full { grid-column: 1 / -1; }
.field label, .field legend { color: var(--ink); font-size: .88rem; font-weight: 800; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid #9cafaa; border-radius: 0; background: #fff; min-height: 50px; padding: .75rem .85rem; color: var(--ink); }
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 3px solid rgba(245,195,68,.45); border-color: var(--green-800); }
.field--check { grid-template-columns: auto 1fr; align-items: start; }
.field--check input { width: 20px; min-height: 20px; margin-top: .2rem; }
.form-note { color: var(--muted); font-size: .84rem; }
.honeypot { position: absolute !important; left: -9999px !important; }

.job-card { background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow); }
.job-card__summary { list-style: none; display: grid; grid-template-columns: 1fr auto; gap: 1.5rem; align-items: center; padding: clamp(1.5rem, 4vw, 2.5rem); cursor: pointer; }
.job-card__summary::-webkit-details-marker { display: none; }
.job-card__summary::after { content: "+"; display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--gold); color: var(--green-950); font-size: 1.5rem; font-weight: 700; }
.job-card[open] .job-card__summary::after { content: "−"; }
.job-card__summary h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
.job-card__summary p { margin: .55rem 0 0; color: var(--muted); }
.job-card__body { padding: 0 clamp(1.5rem, 4vw, 2.5rem) clamp(1.5rem, 4vw, 2.5rem); border-top: 1px solid var(--line); }
.job-card__body h3 { margin: 2rem 0 .7rem; }
.job-card__body ul { padding-left: 1.2rem; color: var(--muted); }
.job-card__body li + li { margin-top: .45rem; }
.application-anchor { scroll-margin-top: 125px; }

.gallery { display: grid; grid-template-columns: 1.15fr .85fr .85fr; grid-template-rows: 270px 270px; gap: 1rem; }
.gallery figure { margin: 0; overflow: hidden; position: relative; background: var(--green-100); }
.gallery figure:first-child { grid-row: 1 / 3; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.gallery figure:hover img { transform: scale(1.03); }
.gallery figcaption { position: absolute; inset: auto 1rem 1rem; padding: .55rem .75rem; background: rgba(3,47,36,.88); color: white; font-size: .78rem; font-weight: 700; }

.site-footer { background: var(--green-950); color: var(--white); padding: 4.5rem 0 1.4rem; }
.footer__grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 3rem; }
.brand--footer { color: var(--white); }
.footer__promise { max-width: 280px; color: #bcd1c8; }
.footer__grid h2 { margin-bottom: 1rem; font-family: var(--display); font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; }
.footer__grid address { margin-bottom: .7rem; color: #d9e7e1; font-style: normal; }
.footer__grid > div:not(:first-child) a { display: block; margin: .55rem 0; color: #d9e7e1; }
.footer__bottom { display: flex; justify-content: space-between; gap: 2rem; margin-top: 4rem; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,.18); color: #9eb9ae; font-size: .78rem; }
.footer__bottom p { margin: 0; }

.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; }
.school-assistant { position: fixed; right: 24px; bottom: 24px; z-index: 100; font-family: var(--sans); }
.assistant-launcher { display: inline-flex; align-items: center; gap: .7rem; min-height: 52px; padding: .65rem 1.05rem .65rem .65rem; border: 0; border-radius: 999px; background: var(--gold); color: var(--green-950); box-shadow: 0 14px 42px rgba(3,47,36,.28); cursor: pointer; font-weight: 800; }
.assistant-launcher__icon { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; background: var(--green-950); color: var(--white); font-family: var(--serif); font-size: 1.25rem; }
.assistant-launcher:hover { transform: translateY(-2px); }
.assistant-launcher:focus-visible, .assistant-close:focus-visible, .assistant-suggestions button:focus-visible, .assistant-form input:focus-visible, .assistant-form button:focus-visible { outline: 3px solid var(--gold-soft); outline-offset: 3px; }
.assistant-panel { position: absolute; right: 0; bottom: 66px; width: min(390px, calc(100vw - 32px)); overflow: hidden; border: 1px solid rgba(3,47,36,.16); background: var(--white); box-shadow: 0 24px 80px rgba(3,47,36,.3); }
.assistant-panel__header { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 1.1rem; background: var(--green-950); color: var(--white); }
.assistant-panel__header > div { display: grid; }
.assistant-panel__eyebrow { color: var(--gold); font-size: .69rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.assistant-panel__header strong { font-family: var(--serif); font-size: 1.2rem; font-weight: 600; }
.assistant-close { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; background: transparent; color: var(--white); cursor: pointer; font-size: 1.55rem; line-height: 1; }
.assistant-messages { display: flex; flex-direction: column; gap: .7rem; max-height: 280px; min-height: 140px; overflow-y: auto; padding: 1rem; background: #f2f6f4; }
.assistant-message { max-width: 88%; padding: .75rem .9rem; border-radius: 14px; font-size: .9rem; line-height: 1.45; }
.assistant-message--bot { align-self: flex-start; border-bottom-left-radius: 3px; background: var(--white); color: var(--ink); box-shadow: 0 3px 12px rgba(3,47,36,.08); }
.assistant-message--bot a { color: var(--green-800); font-weight: 800; }
.assistant-message--user { align-self: flex-end; border-bottom-right-radius: 3px; background: var(--green-800); color: var(--white); }
.assistant-suggestions { display: flex; gap: .45rem; overflow-x: auto; padding: .85rem 1rem .45rem; background: var(--white); scrollbar-width: thin; }
.assistant-suggestions button { flex: 0 0 auto; min-height: 36px; padding: .42rem .7rem; border: 1px solid #b8c8c1; border-radius: 999px; background: var(--white); color: var(--green-900); cursor: pointer; font-size: .78rem; font-weight: 800; }
.assistant-suggestions button:hover { background: var(--gold-soft); border-color: var(--gold); }
.assistant-form { display: grid; grid-template-columns: 1fr auto; gap: .5rem; padding: .65rem 1rem .75rem; background: var(--white); }
.assistant-form input { min-width: 0; min-height: 44px; padding: .65rem .75rem; border: 1px solid #9cafaa; color: var(--ink); }
.assistant-form button { min-height: 44px; padding: .55rem .8rem; border: 0; background: var(--green-900); color: var(--white); cursor: pointer; font-weight: 800; }
.assistant-note { margin: 0; padding: 0 1rem .85rem; color: var(--muted); font-size: .74rem; }
.assistant-note a { color: var(--green-800); font-weight: 800; }

@media (max-width: 980px) {
  .menu-toggle { display: inline-flex; align-items: center; gap: .8rem; }
  .primary-nav { display: none; position: absolute; left: 0; right: 0; top: 100%; padding: 1.2rem 20px 1.6rem; background: var(--cream); border-bottom: 1px solid var(--line); flex-direction: column; align-items: stretch; }
  .primary-nav.is-open { display: flex; }
  .primary-nav > a { padding: .6rem; }
  .hero { grid-template-columns: 1fr; }
  .hero__media { min-height: 520px; }
  .hero__seal { left: auto; right: 22px; bottom: 22px; }
  .section-heading, .intro-grid, .story-band, .split, .form-shell { grid-template-columns: 1fr; }
  .pillars, .steps { grid-template-columns: repeat(2, 1fr); }
  .program-grid, .resource-grid { grid-template-columns: 1fr; }
  .proof-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .cta__inner { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
  .contact-card { position: static; }
}

@media (max-width: 680px) {
  .shell, .narrow { width: min(100% - 28px, 1180px); }
  .announcement__inner span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .header__inner { min-height: 76px; }
  .brand img { width: 52px; height: 52px; }
  .brand strong { font-size: 1.05rem; }
  .brand small { font-size: .62rem; }
  .menu-toggle span:last-child { display: none; }
  .hero { min-height: auto; }
  .hero__content { padding: 4.5rem 20px; }
  h1 { font-size: clamp(3rem, 15vw, 4.6rem); }
  .hero__media { min-height: 430px; }
  .action-band__grid { grid-template-columns: 1fr; }
  .action-card, .action-card:first-child { border-left: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .section-heading { gap: 1.4rem; }
  .pillars, .steps, .values, .proof-strip__grid { grid-template-columns: 1fr; }
  .program-row { grid-template-columns: 1fr; gap: 1rem; }
  .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 340px 220px 220px; }
  .gallery figure:first-child { grid-column: 1 / 3; grid-row: auto; }
  .form-grid { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; }
  .school-assistant { right: 14px; bottom: 14px; }
  .assistant-panel { position: fixed; right: 14px; bottom: 78px; width: calc(100vw - 28px); max-height: calc(100vh - 105px); }
  .assistant-messages { max-height: min(300px, calc(100vh - 390px)); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}

.school-life-photos { columns: 3; column-gap: 1rem; margin-bottom: 1.5rem; }
.school-life-photos figure { margin: 0 0 1rem; break-inside: avoid; background: var(--green-950); color: white; }
.school-life-photos img { display: block; width: 100%; height: auto; }
.school-life-photos figcaption { padding: .8rem 1rem; font-size: .95rem; font-weight: 600; }
@media (max-width: 980px) { .school-life-photos { columns: 2; } }
@media (max-width: 680px) { .school-life-photos { columns: 1; } }
