:root {
  --navy: #112b62;
  --navy-dark: #0a1d44;
  --blue: #184489;
  --gold: #f7bd22;
  --gold-soft: #fff2c3;
  --sky: #62c8d5;
  --coral: #ef8360;
  --leaf: #6fae63;
  --ink: #1c2640;
  --muted: #667085;
  --cream: #f8f6ef;
  --white: #fff;
  --line: #e5e7eb;
  --serif: "Fraunces", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --shadow: 0 24px 60px rgba(10, 29, 68, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); font-family: var(--sans); background: var(--white); line-height: 1.65; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 999; padding: 10px 16px; background: var(--gold); color: var(--navy-dark); font-weight: 700; }
.skip-link:focus { top: 16px; }

.announcement { background: var(--navy-dark); color: #fff; font-size: .78rem; letter-spacing: .03em; }
.announcement__inner { min-height: 38px; display: flex; justify-content: space-between; align-items: center; }
.announcement p { margin: 0; }
.announcement a { color: var(--gold); font-weight: 700; }
.pulse { position: relative; display: inline-block; width: 7px; height: 7px; margin-right: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 5px rgba(247, 189, 34, .12); }
.pulse::after { content: ""; position: absolute; inset: -5px; border-radius: 50%; background: rgba(247, 189, 34, .35); animation: pulse-ring 2.2s ease-out infinite; }
@keyframes pulse-ring { 0% { transform: scale(.4); opacity: 1; } 100% { transform: scale(1.8); opacity: 0; } }

.site-header { height: 86px; position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.97); border-bottom: 1px solid rgba(17,43,98,.08); backdrop-filter: blur(12px); }
.nav-wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--navy); }
.brand img { width: 62px; height: 62px; object-fit: cover; object-position: center; border-radius: 50%; }
.brand span { display: flex; flex-direction: column; line-height: 1.12; }
.brand strong { font-family: var(--serif); font-size: 1.18rem; }
.brand small { margin-top: 4px; font-size: .67rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 700; }
.main-nav { display: flex; align-items: center; gap: 30px; font-size: .9rem; font-weight: 600; }
.main-nav > a:not(.button) { position: relative; }
.main-nav > a:not(.button)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: var(--gold); transition: right .25s ease; }
.main-nav > a:not(.button):hover::after { right: 0; }
.nav-toggle, .nav-toggle-label { display: none; }

.nav-dropdown { position: relative; }
.nav-dropdown__trigger { display: inline-flex; align-items: center; gap: 5px; position: relative; padding: 0; margin: 0; background: none; border: none; color: inherit; font: inherit; font-weight: 600; cursor: pointer; }
.nav-dropdown__trigger::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: var(--gold); transition: right .25s ease; }
.nav-dropdown__trigger:hover::after, .nav-dropdown.is-open .nav-dropdown__trigger::after { right: 0; }
.nav-dropdown__trigger svg { width: 12px; height: 12px; transition: transform .2s ease; }
.nav-dropdown.is-open .nav-dropdown__trigger svg { transform: rotate(180deg); }
.nav-dropdown__menu { position: absolute; top: calc(100% + 20px); left: 50%; transform: translateX(-50%) translateY(-6px); z-index: 50; min-width: 195px; padding: 10px; display: flex; flex-direction: column; background: white; border-radius: 14px; box-shadow: 0 20px 45px rgba(10,29,68,.18); opacity: 0; visibility: hidden; transition: opacity .2s ease, transform .2s ease, visibility .2s; }
.nav-dropdown:hover .nav-dropdown__menu, .nav-dropdown:focus-within .nav-dropdown__menu, .nav-dropdown.is-open .nav-dropdown__menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-dropdown__menu a { padding: 10px 14px; border-radius: 8px; color: var(--navy); font-weight: 600; font-size: .85rem; white-space: nowrap; }
.nav-dropdown__menu a:hover { background: var(--cream); }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 18px; min-height: 54px; padding: 0 25px; background: var(--gold); color: var(--navy-dark); border: 1px solid var(--gold); font-weight: 700; font-size: .91rem; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(247,189,34,.25); background: #ffca33; }
.button--small { min-height: 43px; padding: 0 20px; font-size: .84rem; }
.button--gold { background: var(--gold); }
.text-link { display: inline-flex; align-items: center; gap: 12px; color: #fff; font-weight: 700; font-size: .9rem; }
.play { display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; font-size: .68rem; }

.hero { min-height: 690px; position: relative; display: flex; align-items: center; overflow: hidden; background: var(--navy-dark); }
.hero__media { position: absolute; inset: 0; background: url("assets/images/image2.jpeg") center 36% / cover no-repeat; animation: hero-zoom 22s ease-in-out infinite alternate; }
@keyframes hero-zoom { from { transform: scale(1.015); } to { transform: scale(1.09); } }
.hero__shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,20,49,.94) 0%, rgba(9,28,66,.74) 42%, rgba(9,28,66,.25) 72%, rgba(9,28,66,.12) 100%), linear-gradient(0deg, rgba(5,18,44,.52), transparent 45%); }
.hero__content { position: relative; z-index: 2; color: #fff; padding-top: 25px; }
.hero__content > * { opacity: 0; animation: hero-in .8s ease forwards; }
.hero__content .eyebrow { animation-delay: .05s; }
.hero__content h1 { animation-delay: .18s; }
.hero__content .hero__lead { animation-delay: .32s; }
.hero__content .hero__actions { animation-delay: .46s; }
@keyframes hero-in { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.eyebrow { display: flex; align-items: center; gap: 11px; margin: 0 0 18px; color: var(--blue); text-transform: uppercase; letter-spacing: .16em; font-size: .73rem; font-weight: 700; }
.eyebrow span { width: 30px; height: 2px; background: var(--gold); }
.eyebrow--light { color: var(--gold); }
.hero h1, h2 { font-family: var(--serif); letter-spacing: -.035em; line-height: 1.08; }
.hero h1 { max-width: 760px; margin: 0; font-size: clamp(3.4rem, 6.2vw, 6.2rem); font-weight: 600; }
h1 em, h2 em { color: var(--gold); font-weight: inherit; }
.hero__lead { max-width: 610px; margin: 25px 0 32px; color: rgba(255,255,255,.83); font-size: 1.12rem; line-height: 1.75; }
.hero__actions { display: flex; align-items: center; gap: 28px; }
.hero__motto { position: absolute; right: 0; bottom: 0; z-index: 3; width: min(34vw, 380px); min-height: 108px; padding: 26px 44px; display: flex; flex-direction: column; justify-content: center; background: var(--gold); color: var(--navy-dark); opacity: 0; animation: hero-in .8s ease .6s forwards; }
.hero__motto::before { content: "★"; position: absolute; left: -58px; top: 0; width: 58px; height: 58px; display: grid; place-items: center; background: var(--sky); color: white; }
.hero__motto span { text-transform: uppercase; letter-spacing: .16em; font-size: .66rem; font-weight: 700; }
.hero__motto strong { font-family: var(--serif); font-size: 1.5rem; }
.hero__motto small { margin-top: 4px; font-size: .68rem; line-height: 1.35; font-style: italic; }

.stats { position: relative; z-index: 4; margin-top: -1px; background: var(--navy); color: #fff; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { position: relative; min-height: 155px; display: flex; flex-direction: column; align-items: center; justify-content: center; border-right: 1px solid rgba(255,255,255,.14); transition: background .25s ease; }
.stat:first-child { border-left: 1px solid rgba(255,255,255,.14); }
.stat:hover { background: rgba(255,255,255,.04); }
.stat::before { content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 46px; height: 3px; border-radius: 2px; background: var(--gold); }
.stat:nth-child(2)::before { background: var(--sky); }
.stat:nth-child(3)::before { background: var(--coral); }
.stat:nth-child(4)::before { background: var(--leaf); }
.stat strong { color: var(--gold); font-family: var(--serif); font-size: 2.65rem; line-height: 1; }
.stat:nth-child(2) strong { color: var(--sky); }
.stat:nth-child(3) strong { color: var(--coral); }
.stat:nth-child(4) strong { color: var(--leaf); }
.stat span { margin-top: 8px; color: rgba(255,255,255,.73); font-size: .76rem; text-transform: uppercase; letter-spacing: .1em; }

.section { padding: 115px 0; }
.welcome { position: relative; overflow: hidden; }
.welcome::before { content: ""; position: absolute; z-index: 0; width: 320px; height: 320px; left: -140px; top: -120px; border-radius: 50%; background: radial-gradient(circle, rgba(247,189,34,.16), rgba(247,189,34,0) 70%); animation: drift 17s ease-in-out infinite; pointer-events: none; }
.split { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 9%; align-items: center; }
.photo-stack { position: relative; min-height: 610px; }
.photo-stack__main { position: absolute; width: 82%; height: 500px; right: 0; top: 0; border-radius: 22px; box-shadow: var(--shadow); overflow: hidden; transition: transform .4s ease; }
.photo-stack__main:hover { transform: translateY(-6px); }
.photo-stack img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.photo-stack__main img { object-position: center; }
.photo-stack__main:hover img { transform: scale(1.05); }
.photo-stack__small { position: absolute; left: 0; bottom: 0; width: 48%; height: 245px; padding: 9px; background: white; border-radius: 18px; box-shadow: var(--shadow); overflow: hidden; transition: transform .4s ease; }
.photo-stack__small:hover { transform: translateY(-6px); }
.photo-stack__small img { border-radius: 12px; object-position: 54% center; transition: transform .5s ease; }
.photo-stack__small:hover img { transform: scale(1.05); }
.photo-stack__badge { position: absolute; right: -16px; bottom: 45px; width: 164px; height: 148px; display: flex; flex-direction: column; justify-content: center; padding: 25px; border-radius: 18px; background: var(--gold); color: var(--navy-dark); box-shadow: 0 14px 35px rgba(17,43,98,.18); }
.photo-stack__badge strong { font-family: var(--serif); font-size: 1.6rem; }
.photo-stack__badge span { font-size: .77rem; font-weight: 600; line-height: 1.4; }
.welcome__copy h2, .section-heading h2, .vision h2, .impact h2, .support h2, .contact h2 { margin: 0 0 25px; font-size: clamp(2.45rem, 4vw, 4rem); color: var(--navy-dark); }
.welcome__copy .lead { font-size: 1.1rem; color: var(--ink); font-weight: 600; line-height: 1.7; }
.welcome__copy > p:not(.eyebrow):not(.lead) { color: var(--muted); }
.signature-line { display: flex; align-items: center; gap: 16px; margin: 28px 0; padding: 19px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.signature-line p { margin: 0; display: flex; flex-direction: column; font-size: .88rem; color: var(--muted); }
.signature-line strong { color: var(--navy); }
.sun-icon { display: grid; place-items: center; flex: 0 0 48px; height: 48px; border-radius: 50%; background: var(--gold-soft); color: #d49300; font-size: 1.3rem; }
.arrow-link { display: inline-flex; align-items: center; gap: 45px; color: var(--navy); border-bottom: 2px solid var(--gold); padding-bottom: 4px; font-weight: 700; }

.programs { background: var(--navy-dark); color: #fff; position: relative; overflow: hidden; }
.programs::after { content: "★"; position: absolute; right: -65px; top: -170px; color: rgba(255,255,255,.025); font-size: 390px; line-height: 1; }
.section-heading { display: grid; grid-template-columns: 1.5fr .75fr; gap: 11%; align-items: end; margin-bottom: 55px; }
.section-heading h2 { color: white; margin-bottom: 0; }
.section-heading > p { margin: 0 0 5px; color: rgba(255,255,255,.67); }
.section-heading--dark h2 { color: var(--navy-dark); }
.section-heading--dark > p { color: var(--muted); }
.program-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; position: relative; z-index: 1; }
.program-card { position: relative; min-height: 390px; padding: 48px 40px 38px; border-radius: 22px; color: var(--navy-dark); overflow: hidden; box-shadow: 0 20px 45px rgba(0,0,0,.18); transition: transform .3s ease, box-shadow .3s ease; }
.program-card:hover { transform: translateY(-10px); box-shadow: 0 30px 60px rgba(0,0,0,.28); }
.program-card--nursery { background: var(--gold); }
.program-card--primary { background: var(--sky); }
.program-card--beyond { background: #fff; }
.program-card__number { position: absolute; right: 24px; top: 18px; color: rgba(17,43,98,.18); font-family: var(--serif); font-size: 4.5rem; line-height: 1; }
.program-card__icon { width: 58px; height: 58px; margin-bottom: 38px; display: grid; place-items: center; border: 1px solid rgba(17,43,98,.24); border-radius: 50%; font-size: 1.4rem; transition: transform .3s ease; }
.program-card:hover .program-card__icon { transform: scale(1.12) rotate(-6deg); background: rgba(17,43,98,.08); }
.program-card h3 { margin: 0 0 14px; font-family: var(--serif); font-size: 1.75rem; }
.program-card p { font-size: .9rem; color: rgba(10,29,68,.72); }
.program-card__meta { position: absolute; left: 40px; bottom: 30px; font-size: .71rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 700; }

.vision { position: relative; overflow: hidden; background: var(--cream); }
.vision::after { content: ""; position: absolute; z-index: 0; width: 300px; height: 300px; right: -130px; bottom: -140px; border-radius: 50%; background: radial-gradient(circle, rgba(98,200,213,.2), rgba(98,200,213,0) 70%); animation: drift-alt 18s ease-in-out infinite; pointer-events: none; }
.vision__grid { position: relative; z-index: 1; display: grid; grid-template-columns: .8fr 1.2fr; gap: 10%; align-items: start; }
.vision__intro { position: sticky; top: 130px; }
.vision__intro > p:last-child { color: var(--muted); max-width: 460px; }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.value { position: relative; min-height: 220px; padding: 32px; border-radius: 18px; background: white; border-top: 4px solid var(--gold); box-shadow: 0 14px 32px rgba(10,29,68,.06); transition: transform .3s ease, box-shadow .3s ease; }
.value:hover { transform: translateY(-6px); box-shadow: 0 22px 44px rgba(10,29,68,.13); }
.value:nth-child(2) { border-top-color: var(--sky); }
.value:nth-child(3) { border-top-color: var(--coral); }
.value:nth-child(4) { border-top-color: var(--leaf); }
.value span { color: #c28e00; font-size: .72rem; letter-spacing: .14em; font-weight: 700; }
.value:nth-child(2) span { color: #1c8fa0; }
.value:nth-child(3) span { color: var(--coral); }
.value:nth-child(4) span { color: var(--leaf); }
.value h3 { margin: 38px 0 6px; color: var(--navy); font-family: var(--serif); font-size: 1.3rem; }
.value p { margin: 0; color: var(--muted); font-size: .86rem; }
.value:last-child { background: var(--navy); border-top-color: var(--gold); color: #fff; }
.value:last-child span { color: var(--gold); }
.value:last-child h3, .value:last-child p { color: #fff; }

.impact__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 8%; align-items: center; }
.impact__copy > p:not(.eyebrow) { color: var(--muted); }
.check-list { list-style: none; padding: 0; margin: 32px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 20px 20px; }
.check-list li { display: flex; gap: 12px; padding: 14px; border-radius: 14px; transition: background .25s ease, transform .25s ease; }
.check-list li:hover { background: white; transform: translateY(-3px); box-shadow: 0 14px 28px rgba(10,29,68,.08); }
.check-list li > span { flex: 0 0 29px; height: 29px; display: grid; place-items: center; border-radius: 50%; background: var(--gold-soft); color: #ad7b00; font-weight: 700; }
.check-list li:nth-child(2) > span { background: rgba(98,200,213,.22); color: #1c8fa0; }
.check-list li:nth-child(3) > span { background: rgba(239,131,96,.2); color: #c85f3a; }
.check-list li:nth-child(4) > span { background: rgba(111,174,99,.2); color: #4c8a41; }
.check-list strong { display: block; color: var(--navy); font-size: .91rem; }
.check-list p { margin: 3px 0 0; color: var(--muted); font-size: .8rem; line-height: 1.45; }
.impact__photos { position: relative; min-height: 610px; }
.impact__photo { position: absolute; object-fit: cover; border-radius: 20px; box-shadow: var(--shadow); transition: transform .4s ease; }
.impact__photo:hover { transform: translateY(-6px); }
.impact__photo--one { left: 0; top: 0; width: 82%; height: 470px; }
.impact__photo--two { right: 0; bottom: 0; width: 55%; height: 260px; border: 9px solid white; }
.impact__note { position: absolute; left: -28px; bottom: 15px; z-index: 2; width: 185px; height: 125px; padding: 24px; border-radius: 16px; display: flex; flex-direction: column; justify-content: center; background: var(--sky); color: var(--navy-dark); box-shadow: 0 14px 30px rgba(10,29,68,.16); }
.impact__note span { text-transform: uppercase; letter-spacing: .13em; font-size: .68rem; font-weight: 700; }
.impact__note strong { font-family: var(--serif); font-size: 1.45rem; }

.gallery { background: #f7f8fa; }
.gallery-grid { display: grid; grid-template-columns: 1.35fr 1fr 1fr; grid-template-rows: 275px 275px; gap: 14px; }
.gallery-card { position: relative; margin: 0; overflow: hidden; border-radius: 18px; background: var(--navy); box-shadow: 0 14px 30px rgba(10,29,68,.1); transition: transform .3s ease, box-shadow .3s ease; }
.gallery-card:hover { transform: translateY(-5px); box-shadow: 0 22px 42px rgba(10,29,68,.2); }
.gallery-card--wide { grid-row: span 2; }
.gallery-card:last-child { grid-column: 3; grid-row: 1 / span 2; }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease, opacity .35s ease; }
.gallery-card:nth-child(2) img { object-position: 50% 23%; }
.gallery-card:nth-child(3) img { object-position: center 34%; }
.gallery-card:hover img { transform: scale(1.045); opacity: .72; }
.gallery-card figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 55px 24px 22px; display: flex; flex-direction: column; color: white; background: linear-gradient(transparent, rgba(5,19,45,.84)); }
.gallery-card figcaption span { color: var(--gold); text-transform: uppercase; letter-spacing: .13em; font-size: .64rem; font-weight: 700; }
.gallery-card figcaption strong { font-family: var(--serif); font-size: 1.25rem; }
.gallery__footer { margin-top: 38px; text-align: center; }

.support { padding-bottom: 0; }
.support__card { min-height: 445px; position: relative; display: grid; grid-template-columns: 1.25fr .75fr; border-radius: 26px; background: var(--navy); color: white; overflow: hidden; box-shadow: 0 30px 65px rgba(10,29,68,.22); }
.support__content { position: relative; z-index: 2; padding: 70px 76px; }
.support h2 { max-width: 650px; color: white; }
.support__content > p:not(.eyebrow) { max-width: 670px; color: rgba(255,255,255,.69); }
.support__actions { display: flex; gap: 28px; align-items: center; margin-top: 30px; }
.support__actions .button:hover { transform: translateY(-3px); box-shadow: 0 16px 32px rgba(247,189,34,.3); }
.support__art { position: relative; overflow: hidden; background: var(--blue); }
.big-star { position: absolute; right: -30px; bottom: -95px; color: var(--gold); font-size: 300px; line-height: 1; animation: spin-slow 40s linear infinite; }
@keyframes spin-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.ray { position: absolute; left: 25%; bottom: 43%; width: 100px; height: 7px; border-radius: 10px; background: var(--sky); transform-origin: 230px center; animation: ray-glow 3.4s ease-in-out infinite; }
.ray--1 { transform: rotate(-74deg); animation-delay: 0s; }.ray--2 { transform: rotate(-48deg); animation-delay: .3s; }.ray--3 { transform: rotate(-22deg); animation-delay: .6s; }.ray--4 { transform: rotate(4deg); animation-delay: .9s; }.ray--5 { transform: rotate(30deg); animation-delay: 1.2s; }
@keyframes ray-glow { 0%, 100% { opacity: .55; } 50% { opacity: 1; } }

.contact { position: relative; overflow: hidden; padding: 90px 0; background: var(--gold); }
.contact::after { content: "✦"; position: absolute; right: -40px; top: -110px; color: rgba(10,29,68,.05); font-size: 300px; line-height: 1; pointer-events: none; }
.contact__grid { position: relative; z-index: 1; display: grid; grid-template-columns: .7fr 1.3fr; gap: 8%; align-items: end; }
.contact .eyebrow { color: var(--navy); }
.contact .eyebrow span { background: var(--navy); }
.contact h2 { margin-bottom: 15px; }
.contact__grid > div:first-child > p:last-child { max-width: 430px; margin-bottom: 0; color: rgba(10,29,68,.72); }
.contact__items { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.contact__items a { min-height: 155px; padding: 24px; border-radius: 18px; background: rgba(255,255,255,.25); transition: transform .25s ease, background .25s ease, box-shadow .25s ease; }
.contact__items a:hover { transform: translateY(-5px); background: white; box-shadow: 0 18px 36px rgba(10,29,68,.18); }
.contact__items a > span { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: rgba(10,29,68,.1); color: var(--navy); }
.contact__items a > span svg { width: 19px; height: 19px; }
.contact__items p { margin: 18px 0 0; display: flex; flex-direction: column; }
.contact__items small { margin-bottom: 4px; color: rgba(10,29,68,.62); text-transform: uppercase; letter-spacing: .12em; font-weight: 700; }
.contact__items strong { color: var(--navy-dark); font-size: .87rem; overflow-wrap: anywhere; }

.footer { position: relative; overflow: hidden; background: var(--navy-dark); color: white; border-top: 4px solid var(--gold); }
.footer::before { content: "✦"; position: absolute; z-index: 0; left: -70px; bottom: -170px; color: rgba(255,255,255,.035); font-size: 380px; line-height: 1; pointer-events: none; }
.brand--footer { color: white; }
.brand--footer img { background: white; border-radius: 50%; }
.footer__grid { position: relative; z-index: 1; padding: 70px 0 46px; display: grid; grid-template-columns: 1.3fr .8fr .9fr 1.1fr; gap: 5%; align-items: start; }
.footer__brand p { margin: 20px 0 0; max-width: 320px; color: rgba(255,255,255,.6); font-size: .88rem; }
.footer__social { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.footer__social a { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.16); color: white; transition: background .2s ease, border-color .2s ease, transform .2s ease; }
.footer__social a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-dark); transform: translateY(-3px); }
.footer__social svg { width: 18px; height: 18px; }
.footer__col h4 { margin: 0 0 20px; color: var(--gold); text-transform: uppercase; letter-spacing: .13em; font-size: .7rem; font-weight: 700; }
.footer__col { display: flex; flex-direction: column; }
.footer__col a { padding: 7px 0; color: rgba(255,255,255,.68); font-size: .87rem; transition: color .2s ease, transform .2s ease; }
.footer__col a:hover { color: var(--gold); transform: translateX(4px); }
.footer__contact a, .footer__contact p { display: flex; align-items: flex-start; gap: 11px; padding: 7px 0; margin: 0; color: rgba(255,255,255,.68); font-size: .85rem; line-height: 1.5; }
.footer__contact a:hover { color: var(--gold); }
.footer__contact svg { flex: 0 0 auto; width: 17px; height: 17px; margin-top: 2px; color: var(--gold); }
.footer__bottom { position: relative; z-index: 1; min-height: 65px; padding: 18px 0; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.42); font-size: .72rem; }
.footer__bottom a { display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,.55); transition: color .2s ease, transform .2s ease; }
.footer__bottom a:hover { color: var(--gold); transform: translateY(-2px); }

@media (max-width: 1280px) {
  .main-nav { gap: 18px; font-size: .86rem; }
}
@media (max-width: 1180px) {
  .main-nav { gap: 10px; font-size: .8rem; }
  .brand small { display: none; }
}
@media (max-width: 980px) {
  .main-nav { gap: 17px; }
  .main-nav > a:not(.button) { display: none; }
  .split, .impact__grid { gap: 5%; }
  .photo-stack__badge { right: 0; }
  .vision__grid { gap: 5%; }
  .support__content { padding: 60px 45px; }
  .contact__grid { grid-template-columns: 1fr; }
  .contact__items { margin-top: 35px; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 30px, 600px); }
  .announcement__inner { justify-content: center; }
  .announcement a { display: none; }
  .site-header { height: 76px; }
  .brand img { width: 51px; height: 51px; }
  .brand strong { font-size: 1rem; }
  .brand small { font-size: .58rem; }
  .nav-toggle-label { display: flex; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 40px; cursor: pointer; }
  .nav-toggle-label span { display: block; height: 2px; width: 25px; margin-left: auto; background: var(--navy); transition: .2s; }
  .main-nav { display: none; position: absolute; top: 76px; left: 0; right: 0; padding: 22px 25px 28px; flex-direction: column; align-items: stretch; background: white; box-shadow: 0 18px 30px rgba(10,29,68,.15); }
  .main-nav > a:not(.button) { display: block; padding: 7px 0; }
  .nav-toggle:checked ~ .main-nav { display: flex; }
  .nav-dropdown__trigger { display: flex; width: 100%; justify-content: space-between; padding: 7px 0; }
  .nav-dropdown__menu, .nav-dropdown:hover .nav-dropdown__menu, .nav-dropdown:focus-within .nav-dropdown__menu, .nav-dropdown.is-open .nav-dropdown__menu { position: static; transform: none; display: none; margin: 0 0 4px; padding: 0 0 0 16px; box-shadow: none; opacity: 1; visibility: visible; background: none; }
  .nav-dropdown.is-open .nav-dropdown__menu { display: flex; }
  .nav-dropdown__menu a { padding: 8px 0; }
  .nav-toggle:checked + .nav-toggle-label span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle:checked + .nav-toggle-label span:nth-child(2) { opacity: 0; }
  .nav-toggle:checked + .nav-toggle-label span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { min-height: 680px; align-items: flex-end; }
  .hero__media { background-position: 58% center; }
  .hero__shade { background: linear-gradient(0deg, rgba(5,18,44,.97) 5%, rgba(5,18,44,.78) 60%, rgba(5,18,44,.2) 100%); }
  .hero__content { padding: 0 0 135px; }
  .hero h1 { font-size: clamp(3rem, 14vw, 4.4rem); }
  .hero__lead { font-size: 1rem; margin: 20px 0 26px; }
  .hero__actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .hero__motto { width: 68%; min-height: 90px; padding: 19px 25px; }
  .hero__motto strong { font-size: 1.22rem; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .stat { min-height: 115px; border-bottom: 1px solid rgba(255,255,255,.14); }
  .stat strong { font-size: 2rem; }
  .stat span { font-size: .62rem; }
  .section { padding: 80px 0; }
  .split, .vision__grid, .impact__grid, .section-heading { grid-template-columns: 1fr; }
  .photo-stack { min-height: 500px; margin-bottom: 55px; }
  .photo-stack__main { width: 88%; height: 410px; }
  .photo-stack__small { width: 52%; height: 210px; }
  .photo-stack__badge { width: 145px; height: 120px; bottom: 30px; }
  .welcome__copy h2, .section-heading h2, .vision h2, .impact h2, .support h2, .contact h2 { font-size: clamp(2.3rem, 10vw, 3.3rem); }
  .section-heading { gap: 15px; }
  .program-grid { grid-template-columns: 1fr; }
  .program-card { min-height: 330px; }
  .vision__intro { position: static; margin-bottom: 35px; }
  .value { min-height: 190px; padding: 25px; }
  .value h3 { margin-top: 28px; }
  .check-list { grid-template-columns: 1fr; }
  .impact__photos { min-height: 500px; margin-top: 45px; }
  .impact__photo--one { width: 90%; height: 385px; }
  .impact__photo--two { height: 205px; }
  .impact__note { left: 0; bottom: 0; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 310px 230px 310px; }
  .gallery-card--wide { grid-row: auto; grid-column: span 2; }
  .gallery-card:last-child { grid-column: span 2; grid-row: auto; }
  .support { padding-top: 80px; }
  .support__card { width: 100%; grid-template-columns: 1fr; }
  .support__content { padding: 55px 25px 65px; }
  .support__actions { align-items: flex-start; flex-direction: column; }
  .support__art { display: none; }
  .contact { padding: 70px 0; }
  .contact__items { grid-template-columns: 1fr; }
  .contact__items a { min-height: auto; padding: 16px 18px; display: grid; grid-template-columns: 42px 1fr; align-items: center; gap: 14px; }
  .contact__items p { margin: 0; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px 8%; padding: 55px 0 36px; }
  .footer__brand { grid-column: span 2; }
}

@media (max-width: 470px) {
  .hero { min-height: 650px; }
  .hero h1 { font-size: 2.8rem; }
  .values-grid { grid-template-columns: 1fr; }
  .photo-stack { min-height: 435px; }
  .photo-stack__main { height: 350px; }
  .photo-stack__small { height: 170px; }
  .photo-stack__badge { width: 132px; height: 110px; padding: 18px; }
  .gallery-grid { display: flex; flex-direction: column; }
  .gallery-card { height: 280px; }
  .gallery-card--wide { height: 360px; }
  .footer__bottom { padding: 20px 0; flex-direction: column; align-items: flex-start; gap: 6px; }
  .footer__grid { grid-template-columns: 1fr; gap: 34px; }
  .footer__brand { grid-column: span 1; }
}

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