@charset "UTF-8";

:root {
    --primary: #082b4c;
    --secondary: #a20f1d;
    --accent: #f4b223;
    --ink: #152331;
    --muted: #617082;
    --line: #dce3e9;
    --soft: #f3f6f8;
    --cream: #fbf8ef;
    --white: #fff;
    --shadow: 0 22px 60px rgba(8, 43, 76, .14);
    --serif: Georgia, "Times New Roman", serif;
    --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: var(--sans); font-size: 16px; line-height: 1.65; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
h1, h2, h3, p, blockquote, figure { margin-top: 0; }
.site-width { width: min(1220px, calc(100% - 48px)); margin-inline: auto; }
.section-space { padding: 105px 0; }
.skip-link { position: fixed; top: -80px; left: 20px; z-index: 9999; padding: 10px 16px; color: #fff; background: var(--secondary); border-radius: 0 0 8px 8px; }
.skip-link:focus { top: 0; }

.utility-bar { background: var(--secondary); color: #fff; min-height: 37px; }
.utility-inner { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; min-height: 37px; gap: 24px; }
.ticker { min-width: 0; overflow: hidden; white-space: nowrap; font-size: 12px; letter-spacing: .035em; }
.ticker span { display: inline-block; padding-left: 100%; animation: ticker 28s linear infinite; }
@keyframes ticker { to { transform: translateX(-100%); } }
.utility-links { display: flex; align-items: center; align-self: stretch; }
.utility-links a { display: flex; align-items: center; gap: 7px; padding: 0 16px; font-size: 12px; border-left: 1px solid rgba(255, 255, 255, .2); }

.masthead { position: relative; background: #fff; z-index: 50; }
.masthead-inner { min-height: 127px; display: flex; align-items: center; justify-content: space-between; gap: 35px; }
.identity { display: flex; align-items: center; gap: 17px; min-width: 0; }
.school-logo { width: 82px; height: 82px; object-fit: contain; }
.school-seal { position: relative; display: grid; place-items: center; width: 78px; height: 78px; flex: 0 0 78px; color: var(--primary); border: 2px solid var(--primary); border-radius: 50%; background: #fff; box-shadow: inset 0 0 0 5px #fff, inset 0 0 0 6px var(--accent); }
.school-seal b { position: absolute; bottom: 7px; padding: 0 6px; font-size: 10px; letter-spacing: .1em; background: #fff; }
.identity-copy { display: grid; min-width: 0; }
.identity-copy small { color: var(--secondary); font-weight: 750; font-size: 13px; }
.identity-copy strong { color: var(--primary); font-family: var(--serif); font-size: clamp(20px, 2.1vw, 30px); line-height: 1.15; }
.identity-copy em { margin-top: 5px; color: #7a8490; font-style: normal; font-size: 10px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.masthead-info { display: flex; align-items: center; gap: 28px; }
.masthead-info > div { display: flex; align-items: center; gap: 10px; color: var(--primary); }
.masthead-info span { display: grid; }
.masthead-info small { color: #8793a0; font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.masthead-info b { font-size: 12px; white-space: nowrap; }
.header-cta { padding: 13px 18px; color: #fff; background: var(--secondary); border-radius: 3px; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; transition: .25s ease; }
.header-cta:hover { background: var(--primary); transform: translateY(-2px); }
.menu-toggle { display: none; align-items: center; justify-content: center; width: 45px; height: 45px; color: var(--primary); background: #f1f4f7; border: 0; border-radius: 8px; }

.nav-band { position: relative; z-index: 45; background: var(--primary); color: #fff; box-shadow: 0 10px 25px rgba(8, 43, 76, .12); }
.nav-inner { min-height: 58px; display: flex; align-items: stretch; justify-content: space-between; gap: 24px; }
.main-nav { display: flex; align-items: stretch; }
.main-nav a { position: relative; display: flex; align-items: center; padding: 0 19px; font-size: 13px; font-weight: 700; }
.main-nav a:after { content: ""; position: absolute; right: 18px; bottom: 0; left: 18px; height: 3px; background: var(--accent); transform: scaleX(0); transition: transform .25s ease; }
.main-nav a:hover:after, .main-nav a.active:after { transform: scaleX(1); }
.session-pill { align-self: center; flex: 0 0 auto; padding: 7px 12px; color: var(--primary); background: var(--accent); border-radius: 99px; font-size: 10px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }

.hero-slider { position: relative; min-height: 660px; overflow: hidden; background: var(--primary); color: #fff; }
.hero-slide { position: absolute; inset: 0; display: flex; align-items: center; visibility: hidden; opacity: 0; transition: opacity .9s ease, visibility .9s; }
.hero-slide.active { visibility: visible; opacity: 1; z-index: 1; }
.hero-slide > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); transition: transform 7s ease; }
.hero-slide.active > img { transform: scale(1); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4, 26, 48, .96) 0%, rgba(5, 33, 59, .82) 42%, rgba(5, 33, 59, .22) 75%, rgba(5, 33, 59, .12)); }
.hero-fallback { position: relative; visibility: visible; opacity: 1; background: linear-gradient(135deg, var(--primary), #0a4a75); }
.hero-content { position: relative; z-index: 2; padding-right: 37%; }
.hero-kicker { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 20px; color: var(--accent); font-size: 11px; font-weight: 850; letter-spacing: .18em; text-transform: uppercase; }
.hero-kicker:before { content: ""; width: 34px; height: 2px; background: currentColor; }
.hero-content h1 { max-width: 790px; margin-bottom: 22px; font-family: var(--serif); font-size: clamp(50px, 5.8vw, 82px); line-height: .99; letter-spacing: -.035em; }
.hero-content p { max-width: 660px; margin-bottom: 32px; color: #e1e9f0; font-size: 18px; line-height: 1.7; }
.hero-button, .gold-button, .solid-button { display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 50px; padding: 13px 22px; border: 0; border-radius: 3px; font-size: 12px; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; transition: .25s ease; }
.hero-button, .gold-button { color: var(--primary); background: var(--accent); }
.hero-button:hover, .gold-button:hover { background: #fff; transform: translateY(-2px); }
.solid-button { color: #fff; background: var(--secondary); }
.solid-button:hover { background: var(--primary); transform: translateY(-2px); }
.hero-number { position: absolute; right: 4.5%; bottom: 55px; z-index: 3; display: flex; align-items: baseline; gap: 8px; }
.hero-number strong { font-family: var(--serif); font-size: 58px; line-height: 1; }
.hero-number span { color: #c9d6e1; font-size: 13px; }
.slider-controls { position: absolute; left: max(24px, calc((100vw - 1220px)/2)); bottom: 43px; z-index: 8; display: flex; align-items: center; gap: 14px; }
.slider-controls > button { width: 43px; height: 43px; color: #fff; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; background: transparent; transition: .2s ease; }
.slider-controls > button:hover { color: var(--primary); background: var(--accent); border-color: var(--accent); }
.slider-dots { display: flex; gap: 7px; }
.slider-dots button { width: 24px; height: 3px; padding: 0; border: 0; background: rgba(255,255,255,.35); transition: .25s ease; }
.slider-dots button.active { width: 42px; background: var(--accent); }
.hero-admission-card { position: absolute; right: max(24px, calc((100vw - 1220px)/2)); top: 55px; z-index: 9; width: 236px; padding: 25px; color: var(--primary); background: rgba(255,255,255,.94); border-top: 4px solid var(--accent); box-shadow: var(--shadow); backdrop-filter: blur(8px); }
.hero-admission-card small { display: block; color: var(--secondary); font-size: 10px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.hero-admission-card strong { display: block; margin: 4px 0 7px; font-family: var(--serif); font-size: 28px; }
.hero-admission-card p { color: var(--muted); font-size: 13px; }
.hero-admission-card a { display: flex; align-items: center; gap: 8px; color: var(--secondary); font-size: 12px; font-weight: 850; text-transform: uppercase; }

.trust-bar { position: relative; z-index: 12; margin-top: -1px; color: #fff; background: var(--secondary); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid > a { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px; min-height: 102px; padding: 20px 24px; border-right: 1px solid rgba(255,255,255,.18); transition: background .25s; }
.trust-grid > a:first-child { border-left: 1px solid rgba(255,255,255,.18); }
.trust-grid > a:hover { background: rgba(0,0,0,.12); }
.trust-grid span { display: grid; }
.trust-grid small { color: #f4c9ce; font-size: 10px; text-transform: uppercase; letter-spacing: .09em; }
.trust-grid b { font-size: 13px; }

.section-kicker { display: inline-flex; align-items: center; gap: 11px; margin-bottom: 15px; color: var(--secondary); font-size: 11px; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.section-kicker:before { content: ""; width: 28px; height: 2px; background: currentColor; }
.section-kicker.light { color: var(--accent); }
.center-heading { max-width: 740px; margin: 0 auto 52px; text-align: center; }
.center-heading .section-kicker:before { display: none; }
.center-heading h2, .split-heading h2, .welcome-copy h2, .updates-intro h2 { margin-bottom: 0; color: var(--primary); font-family: var(--serif); font-size: clamp(38px, 4vw, 56px); line-height: 1.08; letter-spacing: -.025em; }
.welcome-layout { display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: 85px; }
.welcome-visual { position: relative; padding: 0 38px 45px 0; }
.image-frame { position: relative; min-height: 520px; overflow: hidden; }
.image-frame:before { content: ""; position: absolute; inset: 20px; z-index: 1; border: 1px solid rgba(255,255,255,.55); pointer-events: none; }
.image-frame img { width: 100%; height: 520px; object-fit: cover; }
.image-frame span { position: absolute; bottom: 0; left: 0; z-index: 2; padding: 11px 17px; color: var(--primary); background: var(--accent); font-size: 10px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.welcome-visual blockquote { position: absolute; right: 0; bottom: 0; z-index: 3; width: 80%; margin: 0; padding: 28px 32px; color: #fff; background: var(--primary); font-family: var(--serif); font-size: 20px; line-height: 1.5; box-shadow: var(--shadow); }
.welcome-copy > p { margin: 24px 0; color: var(--muted); font-size: 17px; }
.welcome-copy ul { display: grid; gap: 11px; padding: 0; margin: 0 0 29px; list-style: none; }
.welcome-copy li { display: flex; align-items: center; gap: 10px; font-weight: 700; }
.welcome-copy li svg { color: var(--secondary); }
.underline-link { display: inline-flex; align-items: center; gap: 9px; padding-bottom: 5px; color: var(--primary); border-bottom: 1px solid var(--primary); font-size: 12px; font-weight: 850; letter-spacing: .05em; text-transform: uppercase; }

.why-section { background: var(--cream); }
.highlight-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid #dfd9cb; border-left: 1px solid #dfd9cb; }
.highlight-grid article { position: relative; min-height: 310px; padding: 34px 28px; background: rgba(255,255,255,.42); border-right: 1px solid #dfd9cb; border-bottom: 1px solid #dfd9cb; transition: .3s ease; }
.highlight-grid article:hover { z-index: 2; background: #fff; transform: translateY(-7px); box-shadow: var(--shadow); }
.card-number { position: absolute; right: 21px; top: 17px; color: #b8aa94; font-family: var(--serif); font-size: 14px; }
.feature-icon { display: grid; place-items: center; width: 58px; height: 58px; margin: 30px 0 24px; color: #fff; background: var(--secondary); border-radius: 50%; }
.highlight-grid h3 { margin-bottom: 11px; color: var(--primary); font-family: var(--serif); font-size: 24px; }
.highlight-grid p { margin: 0; color: var(--muted); font-size: 14px; }

.facility-showcase { color: #fff; background: var(--primary); }
.split-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 50px; margin-bottom: 50px; }
.split-heading h2 { max-width: 760px; }
.split-heading.light h2 { color: #fff; }
.split-heading > p { max-width: 440px; margin: 0; color: var(--muted); }
.outline-link { display: inline-flex; align-items: center; gap: 8px; flex: 0 0 auto; padding: 12px 17px; color: var(--primary); border: 1px solid var(--primary); font-size: 11px; font-weight: 850; text-transform: uppercase; letter-spacing: .06em; }
.outline-link.light { color: #fff; border-color: rgba(255,255,255,.5); }
.facility-mosaic { display: grid; grid-template-columns: 1.35fr .8fr .8fr; grid-template-rows: 300px 300px; gap: 13px; }
.mosaic-item { position: relative; overflow: hidden; background: #061f37; }
.mosaic-1 { grid-row: 1 / 3; }
.mosaic-4 { grid-column: 2 / 4; }
.mosaic-item img { width: 100%; height: 100%; object-fit: cover; opacity: .76; transition: transform .6s ease, opacity .4s; }
.mosaic-item:after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(3,20,36,.95), transparent 65%); }
.mosaic-item > div { position: absolute; right: 0; bottom: 0; left: 0; z-index: 2; padding: 25px; }
.mosaic-item small { color: var(--accent); font-family: var(--serif); }
.mosaic-item h3 { margin: 4px 0 3px; font-family: var(--serif); font-size: 25px; }
.mosaic-item p { max-height: 0; margin: 0; overflow: hidden; color: #d8e1e8; font-size: 13px; opacity: 0; transition: .35s ease; }
.mosaic-item:hover img { opacity: .55; transform: scale(1.05); }
.mosaic-item:hover p { max-height: 90px; opacity: 1; }

.identity-stats { padding: 46px 0; color: var(--primary); background: var(--accent); }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-grid > div { display: grid; padding: 0 32px; border-right: 1px solid rgba(8,43,76,.2); }
.stat-grid > div:last-child { border-right: 0; }
.stat-grid strong { font-family: var(--serif); font-size: clamp(30px, 3vw, 44px); line-height: 1.15; }
.stat-grid span { font-size: 10px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }

.leadership-section { background: #fff; }
.leadership-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.leadership-card { display: grid; grid-template-columns: 43% 57%; min-height: 410px; background: var(--soft); overflow: hidden; }
.leader-photo { position: relative; display: grid; place-items: center; min-height: 410px; color: #fff; background: linear-gradient(145deg, var(--primary), #145779); overflow: hidden; }
.leader-photo:before { content: ""; position: absolute; width: 250px; height: 250px; border: 40px solid rgba(255,255,255,.06); border-radius: 50%; }
.leader-photo img { position: relative; width: 100%; height: 100%; object-fit: cover; }
.leader-photo > span { position: relative; font-family: var(--serif); font-size: 64px; }
.leader-photo small { position: absolute; right: 0; bottom: 0; z-index: 2; padding: 8px 13px; color: var(--primary); background: var(--accent); font-weight: 900; }
.leader-content { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 38px; }
.leader-content > span { color: var(--secondary); font-size: 10px; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
.leader-content h3 { margin: 6px 0 2px; color: var(--primary); font-family: var(--serif); font-size: 29px; line-height: 1.15; }
.leader-content b { color: var(--muted); font-size: 12px; }
.leader-content blockquote { margin: 23px 0; color: var(--muted); font-family: var(--serif); font-size: 17px; line-height: 1.55; }

.updates-section { background: var(--soft); }
.updates-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 75px; }
.updates-intro { position: sticky; top: 30px; align-self: start; }
.updates-intro p { margin: 22px 0 29px; color: var(--muted); }
.notice-cards { display: grid; border-top: 1px solid var(--line); }
.notice-cards article, .notice-list article { display: grid; grid-template-columns: 92px 1fr; gap: 24px; padding: 27px 0; border-bottom: 1px solid var(--line); }
.notice-cards time, .notice-list time { display: grid; align-content: center; text-align: center; color: #fff; background: var(--primary); min-height: 86px; }
.notice-cards time strong, .notice-list time strong { font-family: var(--serif); font-size: 32px; line-height: 1; }
.notice-cards time span, .notice-list time span { font-size: 9px; font-weight: 800; text-transform: uppercase; }
.notice-cards article > div > small, .notice-list article > div > small { color: var(--secondary); font-size: 10px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.notice-cards h3, .notice-list h2 { margin: 5px 0 6px; color: var(--primary); font-family: var(--serif); font-size: 22px; }
.notice-cards p, .notice-list p { margin: 0; color: var(--muted); font-size: 14px; }

.gallery-strip { display: grid; grid-template-columns: 1.4fr .8fr .8fr; grid-template-rows: 250px 250px; gap: 12px; }
.gallery-tile { position: relative; margin: 0; overflow: hidden; }
.tile-1 { grid-row: 1 / 3; }
.tile-4 { grid-column: 2 / 4; }
.gallery-tile img, .full-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.gallery-tile:after, .full-gallery figure:after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(4,27,49,.9), transparent 55%); }
.gallery-tile figcaption, .full-gallery figcaption { position: absolute; right: 0; bottom: 0; left: 0; z-index: 2; display: grid; padding: 21px; color: #fff; }
.gallery-tile small, .full-gallery small { color: var(--accent); font-size: 9px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.gallery-tile strong, .full-gallery strong { font-family: var(--serif); font-size: 20px; }
.gallery-tile:hover img, .full-gallery figure:hover img { transform: scale(1.05); }

.admission-cta { position: relative; overflow: hidden; padding: 75px 0; color: #fff; background: var(--secondary); }
.admission-pattern { position: absolute; inset: 0; opacity: .1; background-image: radial-gradient(circle at 2px 2px, #fff 1.5px, transparent 0); background-size: 28px 28px; }
.admission-inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.admission-inner h2 { max-width: 760px; margin-bottom: 13px; font-family: var(--serif); font-size: clamp(39px, 4vw, 58px); line-height: 1.05; }
.admission-inner p { max-width: 780px; margin: 0; color: #f4d6d9; }

.site-footer { padding-top: 78px; color: #c7d4df; background: #041d33; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .7fr .7fr 1.1fr; gap: 60px; padding-bottom: 62px; }
.footer-mark { display: inline-flex; padding: 7px 10px; color: var(--primary); background: var(--accent); font-size: 11px; font-weight: 900; letter-spacing: .12em; }
.footer-brand h2 { margin: 15px 0 12px; color: #fff; font-family: var(--serif); font-size: 25px; }
.footer-brand p { max-width: 360px; color: #95a8b9; font-size: 14px; }
.site-footer h3 { margin-bottom: 18px; color: #fff; font-family: var(--serif); font-size: 18px; }
.site-footer ul { display: grid; gap: 9px; padding: 0; margin: 0; list-style: none; }
.site-footer a { transition: color .2s; }
.site-footer a:hover { color: var(--accent); }
.social-links { display: flex; flex-wrap: wrap; gap: 12px; color: var(--accent); font-size: 12px; font-weight: 800; }
.footer-contact { display: grid; align-content: start; gap: 12px; }
.footer-contact h3 { margin-bottom: 6px; }
.footer-contact p { display: flex; align-items: flex-start; gap: 11px; margin: 0; font-size: 13px; }
.footer-contact svg { flex: 0 0 auto; color: var(--accent); }
.footer-bottom { display: flex; justify-content: space-between; gap: 25px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.11); color: #7d93a6; font-size: 11px; }
.whatsapp-float { position: fixed; right: 24px; bottom: 24px; z-index: 80; display: grid; place-items: center; width: 54px; height: 54px; color: #fff; background: #20b65a; border: 4px solid #fff; border-radius: 50%; box-shadow: 0 10px 30px rgba(0,0,0,.22); font-size: 12px; font-weight: 900; }
.cookie-banner { position: fixed; right: 22px; bottom: 22px; left: 22px; z-index: 100; align-items: center; justify-content: space-between; gap: 20px; max-width: 740px; margin: auto; padding: 15px 18px; color: #fff; background: #102f4a; border: 1px solid rgba(255,255,255,.15); border-radius: 8px; box-shadow: var(--shadow); }
.cookie-banner:not([hidden]) { display: flex; }
.cookie-banner p { margin: 0; font-size: 12px; }
.cookie-banner a { color: var(--accent); text-decoration: underline; }
.cookie-banner button { padding: 8px 15px; color: var(--primary); background: var(--accent); border: 0; border-radius: 3px; font-weight: 850; }

.page-hero { position: relative; min-height: 465px; display: flex; align-items: center; color: #fff; background: var(--primary); overflow: hidden; }
.page-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,25,45,.96), rgba(5,34,61,.72) 58%, rgba(5,34,61,.32)); }
.page-hero.no-image:after { content: ""; position: absolute; right: -120px; width: 500px; height: 500px; border: 90px solid rgba(255,255,255,.04); border-radius: 50%; }
.page-hero-content { position: relative; z-index: 2; padding: 72px 35% 72px 0; }
.page-hero-content > span { color: var(--accent); font-size: 11px; font-weight: 850; letter-spacing: .17em; text-transform: uppercase; }
.page-hero-content h1 { margin: 13px 0 20px; font-family: var(--serif); font-size: clamp(46px, 5.5vw, 74px); line-height: 1.02; letter-spacing: -.03em; }
.page-hero-content p { max-width: 720px; color: #d8e3ec; font-size: 17px; }
.page-hero-content nav { display: flex; align-items: center; gap: 11px; margin-top: 26px; color: #b8c8d5; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.page-hero-content nav a { color: var(--accent); }
.page-sections > .site-width { display: grid; gap: 80px; }
.content-section { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 75px; }
.content-section.reverse .content-image { order: 2; }
.content-section.text-only { grid-template-columns: 1fr; max-width: 920px; }
.content-image { position: relative; }
.content-image:after { content: ""; position: absolute; top: 22px; right: -22px; bottom: -22px; left: 22px; z-index: -1; background: var(--accent); }
.content-image img { width: 100%; height: 420px; object-fit: cover; }
.content-copy > span { display: inline-block; color: var(--secondary); font-family: var(--serif); font-size: 14px; }
.content-copy h2 { margin: 10px 0 18px; color: var(--primary); font-family: var(--serif); font-size: clamp(32px, 3.3vw, 46px); line-height: 1.12; }
.content-copy p { margin: 0; color: var(--muted); font-size: 17px; }
.soft-section, .listing-section { background: var(--soft); }
.facility-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.facility-card { background: #fff; box-shadow: 0 14px 40px rgba(8,43,76,.09); }
.facility-card-image { position: relative; height: 250px; overflow: hidden; }
.facility-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.facility-card-image span { position: absolute; left: 20px; bottom: 0; display: grid; place-items: center; width: 54px; height: 54px; color: #fff; background: var(--secondary); }
.facility-card > div:last-child { padding: 27px; }
.facility-card h2 { margin-bottom: 9px; color: var(--primary); font-family: var(--serif); font-size: 26px; }
.facility-card p { margin: 0; color: var(--muted); font-size: 14px; }
.facility-card:hover img { transform: scale(1.05); }
.full-gallery { columns: 3 310px; column-gap: 16px; }
.full-gallery figure { position: relative; height: 320px; margin: 0 0 16px; overflow: hidden; break-inside: avoid; }
.full-gallery figure:nth-child(3n+1) { height: 450px; }
.notice-list { max-width: 980px; }
.notice-list article { grid-template-columns: 110px 1fr; padding: 32px; margin-bottom: 18px; background: #fff; border: 0; box-shadow: 0 12px 35px rgba(8,43,76,.07); }
.notice-list time { min-height: 100px; }
.notice-list h2 { font-size: 27px; }
.enquiry-section { background: var(--cream); }
.enquiry-grid { display: grid; grid-template-columns: .85fr 1.15fr; box-shadow: var(--shadow); }
.contact-panel { padding: 55px; color: #fff; background: var(--primary); }
.contact-panel .section-kicker { color: var(--accent); }
.contact-panel h2 { margin-bottom: 17px; font-family: var(--serif); font-size: 43px; line-height: 1.08; }
.contact-panel > p { color: #c9d6e0; }
.contact-panel ul { display: grid; gap: 19px; padding: 0; margin: 35px 0 0; list-style: none; }
.contact-panel li { display: flex; align-items: flex-start; gap: 13px; }
.contact-panel li svg { flex: 0 0 auto; color: var(--accent); }
.contact-panel li span { display: grid; }
.contact-panel li small { color: #8fa7ba; font-size: 9px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.enquiry-form-card { padding: 55px; background: #fff; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 19px; }
.form-grid label { display: grid; gap: 7px; }
.form-grid label.full { grid-column: 1 / -1; }
.form-grid label > span { color: var(--primary); font-size: 12px; font-weight: 800; }
.form-grid input, .form-grid textarea { width: 100%; padding: 13px 14px; color: var(--ink); background: #f8fafb; border: 1px solid var(--line); border-radius: 3px; outline: 0; transition: .2s; }
.form-grid input:focus, .form-grid textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(8,43,76,.08); }
.enquiry-form-card .solid-button { margin-top: 22px; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-alert { margin-bottom: 20px; padding: 13px 15px; border-radius: 4px; font-size: 13px; }
.form-alert.success { color: #176b3a; background: #e8f7ee; }
.form-alert.error { color: #8b1720; background: #ffeded; }
.form-alert.warning { color: #79540a; background: #fff5d6; }
.map-frame { margin-top: 35px; height: 420px; padding: 0; overflow: hidden; background: #ddd; box-shadow: var(--shadow); }
.map-frame iframe { width: 100%; height: 100%; border: 0; }
.not-found { min-height: 70vh; display: grid; place-items: center; padding: 80px 24px; text-align: center; background: var(--soft); }
.not-found span { color: var(--accent); font-family: var(--serif); font-size: 110px; font-weight: 700; line-height: 1; text-shadow: 4px 4px 0 var(--primary); }
.not-found h1 { margin: 20px 0 8px; color: var(--primary); font-family: var(--serif); font-size: 48px; }
.not-found p { color: var(--muted); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1100px) {
    .masthead-info > div { display: none; }
    .main-nav a { padding-inline: 13px; }
    .hero-content { padding-right: 28%; }
    .hero-admission-card { width: 210px; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .highlight-grid { grid-template-columns: repeat(2, 1fr); }
    .welcome-layout { gap: 50px; }
    .leadership-card { grid-template-columns: 40% 60%; }
    .footer-grid { grid-template-columns: 1.4fr .8fr .8fr; }
    .footer-contact { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
    .site-width { width: min(100% - 32px, 720px); }
    .section-space { padding: 78px 0; }
    .utility-inner { grid-template-columns: 1fr; }
    .utility-links { display: none; }
    .masthead-inner { min-height: 103px; }
    .school-logo { width: 64px; height: 64px; }
    .school-seal { width: 64px; height: 64px; flex-basis: 64px; }
    .identity-copy small { font-size: 11px; }
    .identity-copy strong { font-size: 20px; }
    .identity-copy em { font-size: 8px; }
    .masthead-info { display: none; }
    .menu-toggle { display: flex; flex: 0 0 auto; }
    .nav-band { position: relative; }
    .nav-inner { min-height: 0; }
    .main-nav { position: absolute; top: 0; right: 0; left: 0; display: none; flex-direction: column; padding: 18px 16px 24px; color: var(--primary); background: #fff; box-shadow: var(--shadow); }
    .main-nav.open { display: flex; }
    .main-nav a { min-height: 48px; padding: 0 14px; border-bottom: 1px solid var(--line); }
    .main-nav a:after { display: none; }
    .main-nav a.active { color: var(--secondary); }
    .session-pill { display: none; }
    .hero-slider { min-height: 610px; }
    .hero-content { padding: 90px 0 150px; }
    .hero-content h1 { font-size: clamp(45px, 9vw, 67px); }
    .hero-content p { font-size: 16px; }
    .hero-admission-card { display: none; }
    .hero-number { right: 20px; bottom: 42px; }
    .slider-controls { left: 16px; bottom: 36px; }
    .trust-grid { width: 100%; grid-template-columns: repeat(2, 1fr); }
    .welcome-layout, .updates-grid, .enquiry-grid { grid-template-columns: 1fr; }
    .welcome-visual { padding-right: 0; }
    .welcome-copy { padding-top: 15px; }
    .facility-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 300px); }
    .mosaic-1 { grid-row: 1 / 3; }
    .mosaic-4 { grid-column: 1 / 3; }
    .mosaic-5 { grid-column: 1 / 3; }
    .stat-grid { grid-template-columns: repeat(2, 1fr); gap: 30px 0; }
    .stat-grid > div:nth-child(2) { border-right: 0; }
    .leadership-grid { grid-template-columns: 1fr; }
    .updates-intro { position: static; }
    .gallery-strip { grid-template-columns: 1fr 1fr; grid-template-rows: 300px 240px 240px; }
    .tile-1 { grid-row: 1 / 3; }
    .tile-4 { grid-column: 1 / 3; }
    .tile-5 { grid-column: 1 / 3; }
    .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 35px; }
    .footer-brand { grid-column: 1 / -1; }
    .page-hero-content { padding-right: 10%; }
    .content-section { grid-template-columns: 1fr; gap: 45px; }
    .content-section.reverse .content-image { order: 0; }
    .facility-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .site-width { width: min(100% - 24px, 540px); }
    .section-space { padding: 62px 0; }
    .masthead-inner { min-height: 90px; gap: 10px; }
    .identity { gap: 10px; }
    .school-logo { width: 54px; height: 54px; }
    .school-seal { width: 54px; height: 54px; flex-basis: 54px; }
    .school-seal svg { width: 21px; }
    .school-seal b { font-size: 8px; }
    .identity-copy small { font-size: 9px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .identity-copy strong { font-size: 15px; line-height: 1.2; }
    .identity-copy em { display: none; }
    .hero-slider { min-height: 570px; }
    .hero-overlay { background: linear-gradient(90deg, rgba(4,26,48,.94), rgba(4,26,48,.55)); }
    .hero-content { padding: 70px 0 145px; }
    .hero-content h1 { font-size: 43px; }
    .hero-content p { font-size: 14px; }
    .hero-number strong { font-size: 40px; }
    .trust-grid { grid-template-columns: 1fr; }
    .trust-grid > a { min-height: 85px; border-bottom: 1px solid rgba(255,255,255,.18); border-left: 0; border-right: 0; }
    .welcome-visual { padding-bottom: 35px; }
    .image-frame, .image-frame img { min-height: 390px; height: 390px; }
    .welcome-visual blockquote { width: 90%; padding: 20px; font-size: 17px; }
    .center-heading h2, .split-heading h2, .welcome-copy h2, .updates-intro h2 { font-size: 36px; }
    .highlight-grid { grid-template-columns: 1fr; }
    .highlight-grid article { min-height: 260px; }
    .split-heading { align-items: flex-start; flex-direction: column; gap: 25px; }
    .facility-mosaic { display: grid; grid-template-columns: 1fr; grid-template-rows: none; }
    .mosaic-item, .mosaic-1, .mosaic-4, .mosaic-5 { grid-column: auto; grid-row: auto; min-height: 280px; }
    .stat-grid { grid-template-columns: 1fr 1fr; }
    .stat-grid > div { padding: 0 15px; }
    .stat-grid strong { font-size: 27px; }
    .leadership-card { grid-template-columns: 1fr; }
    .leader-photo { min-height: 330px; }
    .leader-content { padding: 30px 25px; }
    .notice-cards article, .notice-list article { grid-template-columns: 72px 1fr; gap: 17px; }
    .notice-cards time, .notice-list time { min-height: 78px; }
    .notice-cards time strong, .notice-list time strong { font-size: 26px; }
    .gallery-strip { display: grid; grid-template-columns: 1fr; grid-template-rows: none; }
    .gallery-tile, .tile-1, .tile-4, .tile-5 { grid-column: auto; grid-row: auto; height: 270px; }
    .admission-inner { align-items: flex-start; flex-direction: column; }
    .admission-inner h2 { font-size: 39px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-contact, .footer-brand { grid-column: 1 / -1; }
    .footer-bottom { flex-direction: column; }
    .page-hero { min-height: 420px; }
    .page-hero-content { padding: 60px 0; }
    .page-hero-content h1 { font-size: 43px; }
    .page-hero-content p { font-size: 14px; }
    .page-sections > .site-width { gap: 60px; }
    .content-image img { height: 330px; }
    .content-image:after { right: -10px; bottom: -10px; left: 10px; }
    .facility-grid { grid-template-columns: 1fr; }
    .full-gallery { columns: 1; }
    .full-gallery figure, .full-gallery figure:nth-child(3n+1) { height: 330px; }
    .notice-list article { padding: 18px; }
    .notice-list h2 { font-size: 21px; }
    .contact-panel, .enquiry-form-card { padding: 35px 23px; }
    .contact-panel h2 { font-size: 35px; }
    .form-grid { grid-template-columns: 1fr; }
    .form-grid label.full { grid-column: auto; }
    .map-frame { width: 100%; height: 340px; }
    .cookie-banner { align-items: flex-start; flex-direction: column; bottom: 12px; right: 12px; left: 12px; }
    .whatsapp-float { right: 16px; bottom: 16px; }
}

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

