:root {
  --blue: #1029c7;
  --deep: #07156e;
  --cyan: #19d6e7;
  --yellow: #ffc83d;
  --ink: #10142c;
  --muted: #62677a;
  --paper: #f5f7ff;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--white); color: var(--ink); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif; -webkit-font-smoothing: antialiased; }
::selection { background: var(--cyan); color: var(--deep); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--cyan); outline-offset: 3px; }
.skip-link { position: fixed; z-index: 999; left: 16px; top: -80px; padding: 12px 16px; background: white; color: var(--deep); font-weight: 800; box-shadow: 0 10px 30px rgba(0,0,0,.2); }
.skip-link:focus { top: 16px; }
.error-page { min-height: 68vh; display: grid; place-items: center; padding: clamp(7rem, 14vw, 11rem) 0 5rem; background: radial-gradient(circle at 82% 18%, rgba(25,214,231,.18), transparent 26rem), linear-gradient(180deg, var(--paper), #fff); }
.error-page__content { max-width: 760px; text-align: center; }
.error-page .eyebrow { justify-content: center; }
.error-page h1 { margin: .7rem 0 1rem; font-size: clamp(2.4rem, 7vw, 5.6rem); letter-spacing: -.055em; }
.error-page p { max-width: 620px; margin: 0 auto 1.8rem; color: var(--muted); font-size: 1.08rem; line-height: 1.7; }
.error-page .button-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.error-page .button-outline { background: transparent; border-color: var(--blue); color: var(--blue); }
.error-page .button-outline:hover { background: var(--deep); color: white; }
.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }

.topbar { background: var(--deep); color: #dfe6ff; font-size: 12px; letter-spacing: .06em; }
.topbar-inner { min-height: 36px; display: flex; align-items: center; justify-content: space-between; }
.topbar a { color: white; font-weight: 700; }
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.94); border-bottom: 1px solid #e8eaf4; backdrop-filter: blur(14px); }
.nav-wrap { min-height: 82px; display: flex; align-items: center; gap: 38px; }
.brand { width: 216px; height: 58px; display: flex; align-items: center; overflow: hidden; padding: 8px 12px; background: var(--blue); border-radius: 4px; box-shadow: 0 10px 24px rgba(16,41,199,.13); }
.brand img { width: 100%; height: 100%; object-fit: contain; }
.desktop-nav { display: flex; gap: 32px; margin-left: auto; font-size: 14px; font-weight: 700; }
.desktop-nav a { transition: color .2s; }
.desktop-nav a:hover { color: var(--blue); }
.mobile-menu { display: none; position: relative; }
.mobile-menu summary { list-style: none; cursor: pointer; user-select: none; }
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu-panel { position: absolute; top: calc(100% + 18px); right: 0; width: min(310px, calc(100vw - 30px)); padding: 16px; background: white; border: 1px solid #e4e8f4; box-shadow: 0 22px 50px rgba(7,21,110,.18); }
.mobile-menu-panel a { display: flex; align-items: center; justify-content: space-between; min-height: 48px; padding: 0 8px; border-bottom: 1px solid #edf0f7; color: var(--ink); font-size: 14px; font-weight: 800; }
.mobile-menu-panel a:last-child { border-bottom: 0; }
.mobile-menu-panel .mobile-admission-link { margin-top: 8px; padding-inline: 16px; background: var(--blue); color: white; }
.menu-toggle { display: none; min-width: 82px; min-height: 44px; align-items: center; justify-content: center; gap: 10px; border: 1px solid #d8deef; background: white; color: var(--deep); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; cursor: pointer; }
.menu-toggle i, .menu-toggle i::before, .menu-toggle i::after { width: 16px; height: 2px; display: block; background: var(--blue); transition: transform .2s, opacity .2s; }
.menu-toggle i { position: relative; }
.menu-toggle i::before, .menu-toggle i::after { content: ""; position: absolute; left: 0; }
.menu-toggle i::before { top: -5px; }
.menu-toggle i::after { top: 5px; }
.menu-toggle[aria-expanded="true"] i { background: transparent; }
.menu-toggle[aria-expanded="true"] i::before { top: 0; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] i::after { top: 0; transform: rotate(-45deg); }
.mobile-nav { position: absolute; inset: 100% 0 auto; background: white; border-top: 1px solid #e8eaf4; box-shadow: 0 22px 50px rgba(7,21,110,.18); }
.mobile-nav[hidden] { display: none; }
.mobile-nav .container { display: grid; padding-block: 12px 20px; }
.mobile-nav a { min-height: 50px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #edf0f7; font-size: 14px; font-weight: 800; }
.mobile-nav .mobile-admission { margin-top: 10px; padding-inline: 16px; background: var(--blue); color: white; border-bottom: 0; }
.desktop-nav a.active { color: var(--blue); }

.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 22px; padding: 0 24px; background: var(--blue); color: white; font-size: 14px; font-weight: 800; border: 1px solid transparent; transition: transform .2s, background .2s; }
.button:hover { transform: translateY(-2px); background: var(--deep); }
.button-small { min-height: 44px; padding-inline: 18px; }
.button-accent { background: var(--yellow); color: #11152f; }
.button-accent:hover { background: #ffd96d; }
.button-ghost { background: transparent; border-color: rgba(255,255,255,.65); margin-left: 10px; }

.hero { min-height: 760px; position: relative; display: flex; align-items: center; color: white; overflow: hidden; }
.hero-image, .hero-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { object-fit: cover; object-position: center 45%; }
.hero-overlay { background: linear-gradient(90deg, rgba(5,16,91,.96) 0%, rgba(8,25,125,.8) 43%, rgba(8,25,125,.12) 77%); }
.hero-content { position: relative; z-index: 2; padding-top: 28px; padding-bottom: 118px; }
.eyebrow { display: flex; align-items: center; gap: 12px; color: var(--blue); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .16em; }
.eyebrow::before { content: ""; width: 30px; height: 2px; background: currentColor; }
.eyebrow.light { color: #d9e5ff; }
.hero h1 { max-width: 860px; margin: 24px 0 20px; font-size: clamp(50px, 6vw, 86px); line-height: .98; letter-spacing: -.055em; }
.hero h1 em { color: var(--cyan); font-family: Georgia, serif; font-weight: 400; }
.hero-content > p { max-width: 630px; color: #e4e9ff; font-size: 19px; line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 30px; margin-top: 36px; }
.text-link { display: inline-flex; align-items: center; gap: 14px; font-weight: 800; font-size: 14px; }
.light-link { color: white; }
.hero-stats { position: absolute; z-index: 3; left: 50%; bottom: 0; transform: translateX(-50%); display: grid; grid-template-columns: repeat(3, 1fr); background: white; color: var(--ink); }
.hero-stats div { min-height: 105px; padding: 24px 34px; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid #e1e5f2; }
.hero-stats div:last-child { border: 0; }
.hero-stats strong { color: var(--blue); font-size: 28px; letter-spacing: -.04em; }
.hero-stats span { margin-top: 4px; color: var(--muted); font-size: 13px; }
.trust-strip { border-bottom: 1px solid #e6e9f4; }
.trust-grid { min-height: 78px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; }
.trust-grid span { padding-left: 28px; border-left: 1px solid #e5e8f1; color: #4f566c; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .09em; }
.trust-grid span:first-child { border: 0; padding-left: 0; }

.section { padding: 110px 0; }
.section h2 { margin: 18px 0 24px; font-size: clamp(38px, 5vw, 62px); line-height: 1.04; letter-spacing: -.05em; }
.intro-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 94px; align-items: center; }
.image-stack { position: relative; min-height: 600px; }
.main-photo { width: 85%; height: 500px; object-fit: cover; }
.floating-photo { position: absolute; right: 0; bottom: 0; width: 48%; height: 310px; object-fit: cover; border: 12px solid white; }
.photo-note { position: absolute; left: 34px; bottom: 40px; width: 240px; padding: 22px; background: var(--blue); color: white; }
.photo-note span { display: block; margin-bottom: 8px; color: #bbcbff; font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }
.photo-note strong { font-size: 16px; line-height: 1.35; }
.lead { color: #3e455a; font-size: 18px; line-height: 1.75; }
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 34px; padding-top: 30px; border-top: 1px solid #dde1ed; }
.mission-grid span { color: var(--blue); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }
.mission-grid p { color: var(--muted); font-size: 14px; line-height: 1.65; }
.founders { margin-top: 30px; font-size: 13px; color: #5a6072; }

.pillars { background: var(--blue); color: white; }
.section-head { display: grid; grid-template-columns: 1.2fr .8fr; gap: 80px; align-items: end; }
.section-head h2 { margin-bottom: 0; }
.section-head > p { margin-bottom: 7px; color: #cbd6ff; line-height: 1.8; }
.pillar-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 62px; border-top: 1px solid rgba(255,255,255,.2); border-left: 1px solid rgba(255,255,255,.2); }
.pillar-grid article { min-height: 290px; padding: 34px 28px; border-right: 1px solid rgba(255,255,255,.2); border-bottom: 1px solid rgba(255,255,255,.2); }
.pillar-icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 50%; background: var(--cyan); color: var(--deep); font-weight: 900; }
.pillar-grid h3 { margin: 48px 0 12px; font-size: 20px; }
.pillar-grid p { color: #cbd6ff; font-size: 14px; line-height: 1.7; }

.impact-section { background: #f2f5ff; }
.impact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; align-items: center; }
.impact-copy h2 span { color: var(--blue); }
.impact-copy p { max-width: 500px; color: var(--muted); line-height: 1.8; }
.value-list { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid #cdd4e8; }
.value-list div { min-height: 88px; display: flex; align-items: center; gap: 20px; border-bottom: 1px solid #cdd4e8; }
.value-list div:nth-child(odd) { border-right: 1px solid #cdd4e8; }
.value-list strong { font: 700 38px Georgia, serif; color: var(--blue); }
.value-list span { font-size: 14px; font-weight: 800; }

.program-grid { display: grid; grid-template-columns: 1fr 430px; gap: 90px; align-items: center; }
.program-main p { max-width: 660px; color: var(--muted); line-height: 1.8; }
.program-main ul { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 24px; list-style: none; padding: 0; margin: 34px 0 0; }
.program-main li { display: flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 800; }
.program-main li span { width: 26px; height: 26px; display: grid; place-items: center; border-radius: 50%; background: #e3e8ff; color: var(--blue); }
.saturday-card { padding: 44px; background: var(--yellow); box-shadow: 26px 26px 0 #e7ebf8; }
.card-number { color: rgba(16,20,44,.4); font-size: 12px; font-weight: 900; letter-spacing: .2em; }
.saturday-card h3 { margin: 14px 0; font-size: 34px; letter-spacing: -.04em; }
.saturday-card p { line-height: 1.7; }
.tag-list { display: flex; flex-wrap: wrap; gap: 7px; margin: 24px 0 30px; }
.tag-list span { padding: 8px 10px; background: rgba(255,255,255,.55); font-size: 11px; font-weight: 800; }
.saturday-card a { font-size: 13px; font-weight: 900; }

.photo-story { padding-top: 42px; background: #f7f5ef; }
.photo-story-grid { display: grid; grid-template-columns: 1.18fr .82fr; gap: 24px; }
.photo-story figure { position: relative; margin: 0; overflow: hidden; background: var(--deep); }
.photo-story img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.photo-story figure:hover img { transform: scale(1.025); }
.story-main { min-height: 760px; }
.story-main img { object-position: 54% center; }
.story-side { display: grid; grid-template-rows: 440px 1fr; gap: 24px; }
.story-side figure img { object-position: center 26%; }
.photo-story figcaption { position: absolute; inset: auto 0 0; display: flex; align-items: flex-start; gap: 18px; padding: 50px 28px 26px; background: linear-gradient(transparent, rgba(5,15,90,.9)); color: white; }
.photo-story figcaption span { color: var(--cyan); font-size: 11px; font-weight: 900; letter-spacing: .15em; }
.photo-story figcaption strong { max-width: 390px; font-size: 18px; line-height: 1.35; }
.story-note { padding: 48px 44px; background: white; border: 1px solid #e4e0d7; }
.story-note h2 { margin-bottom: 18px; font-size: clamp(34px, 4vw, 52px); }
.story-note p { margin: 0; color: var(--muted); line-height: 1.8; }

.follow-section { padding: 0; background: var(--deep); color: white; }
.follow-grid { width: 100%; max-width: none; display: grid; grid-template-columns: 1fr 1fr; }
.follow-grid > img { width: 100%; height: 690px; object-fit: cover; }
.follow-copy { padding: 100px max(7vw, 60px); }
.follow-copy p { max-width: 580px; color: #cbd6ff; line-height: 1.8; }
.check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-top: 40px; border-top: 1px solid rgba(255,255,255,.2); }
.check-grid span { padding: 20px 12px 20px 0; border-bottom: 1px solid rgba(255,255,255,.2); font-size: 13px; font-weight: 800; }

.gallery-head { display: grid; grid-template-columns: 1.2fr .8fr; gap: 90px; align-items: end; margin-bottom: 50px; }
.gallery-head p { color: var(--muted); line-height: 1.8; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 340px; gap: 18px; }
.gallery-grid figure { position: relative; margin: 0; overflow: hidden; background: #111; }
.gallery-grid figure.wide { grid-column: span 2; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gallery-grid figure:hover img { transform: scale(1.03); }
.gallery-grid figcaption { position: absolute; inset: auto 0 0 0; display: flex; justify-content: space-between; padding: 22px; background: linear-gradient(transparent, rgba(3,7,35,.85)); color: white; font-size: 13px; font-weight: 800; }

.advantage-section { background: var(--blue); color: white; }
.advantage-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 90px; }
.advantage-title { position: sticky; top: 140px; align-self: start; }
.advantage-cards article { display: grid; grid-template-columns: 60px 240px 1fr; gap: 24px; padding: 30px 0; border-top: 1px solid rgba(255,255,255,.23); }
.advantage-cards strong { color: var(--cyan); }
.advantage-cards h3 { margin: 0; font-size: 20px; }
.advantage-cards p { margin: 0; color: #cbd6ff; font-size: 14px; line-height: 1.75; }

.admissions { position: relative; min-height: 650px; display: flex; align-items: center; color: white; }
.admissions > img, .admissions-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.admissions > img { object-fit: cover; }
.admissions-overlay { background: linear-gradient(90deg, rgba(5,15,90,.93), rgba(5,15,90,.56), rgba(5,15,90,.18)); }
.admissions-content { position: relative; z-index: 2; }
.admissions-content h2 { max-width: 760px; margin: 20px 0; font-size: clamp(48px, 6vw, 76px); line-height: 1; letter-spacing: -.05em; }
.admissions-content p { max-width: 590px; color: #e2e7fb; font-size: 18px; line-height: 1.7; margin-bottom: 32px; }

footer { padding: 76px 0 24px; background: #060b33; color: white; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1.4fr .8fr; gap: 50px; }
.footer-brand img { width: 255px; height: auto; }
footer h3 { margin: 0 0 18px; color: #8fa0e8; font-size: 11px; text-transform: uppercase; letter-spacing: .14em; }
footer p, footer a { display: block; margin: 0 0 8px; color: #dce1f6; font-size: 13px; line-height: 1.7; overflow-wrap: anywhere; }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 56px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.14); color: #8994be; font-size: 11px; }
.footer-bottom > div { display: flex; gap: 24px; }
.footer-bottom a { color: #aeb8df; font-size: 11px; }

.flash { position: fixed; z-index: 90; top: 132px; right: 24px; width: min(440px, calc(100% - 48px)); display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; padding: 18px 20px; border: 1px solid #a8e4cc; background: #effdf6; color: #12613e; box-shadow: 0 18px 45px rgba(10,32,45,.18); font-size: 14px; font-weight: 700; }
.flash button { border: 0; background: transparent; color: inherit; font-size: 22px; cursor: pointer; line-height: 1; }
.empty-state { padding: 36px; border: 1px dashed #cfd5e7; background: #f8f9fd; color: var(--muted); text-align: center; }

@media (max-width: 1180px) {
  .desktop-nav { gap: 20px; }
  .nav-wrap { gap: 24px; }
  .intro-grid, .impact-grid, .program-grid, .advantage-grid { gap: 60px; }
  .follow-copy { padding-inline: 6vw; }
}

@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .mobile-menu { display: block; margin-left: auto; }
  .menu-toggle { display: inline-flex; margin-left: auto; }
  .mobile-menu summary { min-width: 82px; min-height: 44px; display: flex; align-items: center; justify-content: center; gap: 10px; border: 1px solid #d8deef; color: var(--deep); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
  .mobile-menu summary span { color: var(--blue); font-size: 20px; font-weight: 400; line-height: 1; }
  .mobile-menu[open] summary span { transform: rotate(45deg); }
  .nav-wrap { justify-content: space-between; }
  .hero { min-height: 720px; }
  .hero-content { padding-bottom: 150px; }
  .hero h1 { max-width: 720px; font-size: clamp(54px, 8vw, 76px); }
  .intro-grid, .impact-grid, .program-grid, .advantage-grid { grid-template-columns: 1fr; gap: 60px; }
  .image-stack { min-height: 540px; }
  .section-head, .gallery-head { grid-template-columns: 1fr; gap: 20px; }
  .pillar-grid { grid-template-columns: 1fr 1fr; }
  .photo-story-grid { grid-template-columns: 1fr 1fr; }
  .story-main { min-height: 620px; }
  .story-side { grid-template-rows: 300px 1fr; }
  .story-note { padding: 34px 28px; }
  .story-note h2 { font-size: 38px; }
  .follow-grid { grid-template-columns: 1fr; }
  .follow-grid > img { height: 480px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid figure.wide { grid-column: span 1; }
  .advantage-title { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 30px, 1180px); }
  .topbar-inner span { display: none; }
  .topbar-inner { justify-content: center; }
  .nav-wrap { min-height: 68px; gap: 10px; }
  .brand { width: 174px; height: 46px; padding: 6px 9px; }
  .header-cta { display: none; }
  .mobile-menu summary { min-width: 76px; min-height: 40px; }
  .menu-toggle { min-width: 76px; min-height: 40px; }
  .hero { min-height: 770px; align-items: flex-start; }
  .hero-image { object-position: 58% center; }
  .hero-overlay { background: linear-gradient(90deg, rgba(5,16,91,.95), rgba(8,25,125,.72)); }
  .hero-content { padding-top: 84px; padding-bottom: 210px; }
  .hero h1 { font-size: clamp(43px, 13vw, 54px); }
  .hero-content > p { font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); width: calc(100% - 30px); }
  .hero-stats div { min-height: 112px; padding: 14px 10px; }
  .hero-stats strong { font-size: 21px; }
  .hero-stats span { max-width: 110px; font-size: 9px; line-height: 1.35; }
  .trust-grid { grid-template-columns: 1fr 1fr; padding: 18px 0; gap: 14px; }
  .trust-grid span { border: 0; padding: 0; font-size: 9px; }
  .section { padding: 76px 0; }
  .section h2 { font-size: 40px; }
  .intro-grid { gap: 42px; }
  .image-stack { min-height: 455px; }
  .main-photo { width: 100%; height: 350px; }
  .floating-photo { width: 54%; height: 230px; border-width: 8px; }
  .photo-note { left: 14px; bottom: 22px; width: 180px; padding: 16px; }
  .mission-grid { grid-template-columns: 1fr; }
  .pillar-grid { grid-template-columns: 1fr; }
  .pillar-grid article { min-height: auto; }
  .value-list, .program-main ul, .check-grid { grid-template-columns: 1fr; }
  .value-list div:nth-child(odd) { border-right: 0; }
  .saturday-card { padding: 32px 26px; box-shadow: 14px 14px 0 #e7ebf8; }
  .photo-story { padding-top: 18px; }
  .photo-story-grid { grid-template-columns: 1fr; gap: 14px; }
  .story-main { min-height: 460px; }
  .story-side { grid-template-rows: 390px auto; gap: 14px; }
  .story-note { padding: 36px 24px; }
  .photo-story figcaption { padding: 46px 20px 22px; }
  .follow-grid > img { height: 340px; }
  .follow-copy { padding: 70px 24px; }
  .gallery-section { overflow: hidden; }
  .gallery-grid { width: calc(100vw - 15px); display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 0 15px 12px 0; scrollbar-width: none; }
  .gallery-grid::-webkit-scrollbar { display: none; }
  .gallery-grid figure, .gallery-grid figure.wide { flex: 0 0 84vw; height: 420px; scroll-snap-align: start; }
  .advantage-cards article { grid-template-columns: 44px 1fr; }
  .advantage-cards p { grid-column: 2; }
  .admissions { min-height: 720px; }
  .admissions > img { object-position: 62% center; }
  .admissions-content h2 { font-size: 48px; }
  .button-ghost { margin: 10px 0 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { gap: 20px; }
  .flash { top: 114px; right: 15px; width: calc(100% - 30px); }
}

@media (max-width: 420px) {
  .container { width: calc(100% - 24px); }
  .brand { width: 158px; }
  .hero { min-height: 790px; }
  .hero-content { padding-top: 74px; }
  .hero h1 { font-size: 42px; }
  .hero-stats { width: calc(100% - 24px); }
  .hero-stats div { padding-inline: 7px; }
  .section h2 { font-size: 36px; }
  .image-stack { min-height: 430px; }
  .photo-note { width: 165px; }
  .gallery-grid figure, .gallery-grid figure.wide { flex-basis: 88vw; height: 390px; }
  .admissions-content h2 { font-size: 42px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-bottom > div { flex-direction: column; gap: 4px; }
}

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