:root {
    --navy: #071f33;
    --navy-2: #0c3553;
    --blue: #136f9f;
    --gold: #f1b541;
    --gold-2: #ffd56e;
    --cream: #f5efe3;
    --paper: #fffdf8;
    --ink: #17242f;
    --muted: #687784;
    --white: #ffffff;
    --line: rgba(7, 31, 51, .12);
    --shadow: 0 28px 70px rgba(4, 24, 39, .16);
    --shell: 1240px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
}

img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

a { color: inherit; }

.shell {
    width: min(calc(100% - 40px), var(--shell));
    margin-inline: auto;
}

.section { padding: 110px 0; }

.section-kicker,
.eyebrow {
    margin: 0 0 12px;
    color: var(--gold);
    font-size: .78rem;
    font-weight: 950;
    letter-spacing: .17em;
    text-transform: uppercase;
}

.section-heading {
    max-width: 800px;
    margin-bottom: 48px;
}

.section-heading.centered {
    margin-inline: auto;
    text-align: center;
}

.section-heading h2,
.intro h2,
.experience-copy h2,
.parents-copy h2,
.why-section h2,
.gallery-section h2,
.mission-grid h2,
.visit-section h2 {
    margin: 0 0 18px;
    color: var(--navy);
    font-size: clamp(2.45rem, 5vw, 5rem);
    line-height: .98;
    letter-spacing: -.06em;
}

.section-heading p:last-child,
.large-copy,
.experience-copy > p,
.parents-copy > p,
.mission-grid p {
    color: var(--muted);
    font-size: 1.15rem;
}

.site-header {
    position: fixed;
    z-index: 1000;
    inset: 0 0 auto;
    color: var(--white);
    background: rgba(2, 18, 30, .25);
    border-bottom: 1px solid rgba(255,255,255,.1);
    backdrop-filter: blur(14px);
    transition: background .2s ease, box-shadow .2s ease;
}

.site-header.is-scrolled {
    background: rgba(2, 18, 30, .95);
    box-shadow: 0 12px 36px rgba(0,0,0,.2);
}

.header-inner {
    display: flex;
    min-height: 78px;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    text-decoration: none;
}

.brand-mark {
    display: grid;
    width: 50px;
    height: 50px;
    place-items: center;
    color: var(--navy);
    background: var(--gold);
    border: 3px solid rgba(255,255,255,.85);
    border-radius: 50%;
    font-weight: 950;
    box-shadow: 0 8px 22px rgba(0,0,0,.22);
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.brand-copy small {
    margin-top: 5px;
    color: rgba(255,255,255,.65);
    font-size: .72rem;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

.site-nav a {
    color: rgba(255,255,255,.88);
    font-size: .9rem;
    font-weight: 850;
    text-decoration: none;
}

.site-nav a:hover { color: var(--gold-2); }

.site-nav .nav-button {
    padding: 11px 18px;
    color: var(--navy);
    background: var(--gold);
    border-radius: 999px;
}

.menu-toggle {
    display: none;
    padding: 8px 13px;
    color: var(--white);
    background: transparent;
    border: 1px solid rgba(255,255,255,.42);
    border-radius: 10px;
}

.hero {
    position: relative;
    display: grid;
    min-height: 940px;
    align-items: center;
    overflow: hidden;
    color: var(--white);
    background: var(--navy);
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 1s ease, transform 7s ease;
}

.hero-slide.is-active {
    opacity: 1;
    transform: scale(1.0);
}

.hero-noise {
    position: absolute;
    inset: 0;
    opacity: .12;
    background-image: radial-gradient(rgba(255,255,255,.8) .6px, transparent .6px);
    background-size: 6px 6px;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 2;
    padding-top: 92px;
}

.hero-content {
    max-width: 860px;
}

.hero h1 {
    margin: 0 0 28px;
    font-size: clamp(4.2rem, 9vw, 9rem);
    line-height: .86;
    letter-spacing: -.075em;
    text-wrap: balance;
}

.hero-lead {
    max-width: 780px;
    margin: 0 0 34px;
    color: rgba(255,255,255,.82);
    font-size: clamp(1.08rem, 2vw, 1.5rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.button {
    display: inline-flex;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border: 2px solid transparent;
    border-radius: 999px;
    font-weight: 950;
    text-decoration: none;
    transition: transform .18s ease, background .18s ease;
}

.button:hover { transform: translateY(-2px); }

.button-gold {
    color: var(--navy);
    background: var(--gold);
}

.button-gold:hover { background: var(--gold-2); }

.button-glass {
    color: var(--white);
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.42);
    backdrop-filter: blur(10px);
}

.hero-promise {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 30px;
    margin-top: 42px;
    color: rgba(255,255,255,.72);
    font-size: .88rem;
    font-weight: 800;
}

.hero-promise span::before {
    margin-right: 8px;
    color: var(--gold);
    content: "✓";
}

.hero-counter {
    position: absolute;
    z-index: 3;
    right: 36px;
    bottom: 78px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.7);
    font-weight: 900;
}

.counter-line {
    width: 52px;
    height: 1px;
    background: rgba(255,255,255,.35);
}

.hero-dots {
    position: absolute;
    z-index: 3;
    right: 36px;
    bottom: 40px;
    display: flex;
    gap: 9px;
}

.hero-dots button {
    width: 9px;
    height: 9px;
    padding: 0;
    background: rgba(255,255,255,.35);
    border: 0;
    border-radius: 50%;
    cursor: pointer;
}

.hero-dots button.is-active {
    width: 28px;
    background: var(--gold);
    border-radius: 999px;
}

.impact-bar {
    padding: 34px 0;
    background: var(--gold);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.impact-grid div {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.impact-grid strong {
    color: var(--navy);
    font-size: 1.7rem;
}

.impact-grid span {
    color: rgba(7,31,51,.78);
    font-weight: 750;
}

.intro { background: var(--paper); }

.intro-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    align-items: end;
    gap: 90px;
}

.experience-section {
    overflow: hidden;
    background: var(--cream);
}

.experience-row {
    display: grid;
    min-height: 760px;
    grid-template-columns: 1.14fr .86fr;
}

.experience-row.reverse {
    grid-template-columns: .86fr 1.14fr;
}

.experience-row.reverse .experience-media { order: 2; }
.experience-row.reverse .experience-copy { order: 1; }

.experience-media {
    position: relative;
    min-height: 760px;
    overflow: hidden;
    background: var(--navy);
}

.photo {
    position: absolute;
    margin: 0;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.photo-large {
    inset: 0;
}

.photo-large::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(2,18,30,.45), transparent 55%);
    content: "";
}

.photo-small {
    width: 34%;
    height: 31%;
    border: 7px solid var(--paper);
}

.photo-top {
    top: 7%;
    right: 6%;
}

.photo-bottom {
    right: 6%;
    bottom: 7%;
}

.experience-row.reverse .photo-top,
.experience-row.reverse .photo-bottom {
    right: auto;
    left: 6%;
}

.experience-copy {
    display: flex;
    padding: 84px min(7vw, 90px);
    flex-direction: column;
    justify-content: center;
    background: var(--paper);
}

.experience-copy h2 {
    max-width: 680px;
    font-size: clamp(2.5rem, 4.7vw, 4.9rem);
}

.experience-copy > p {
    max-width: 620px;
}

.mini-photo {
    width: 220px;
    height: 150px;
    margin-top: 34px;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 14px 34px rgba(4,24,39,.16);
}

.parents-section {
    background: var(--paper);
}

.parents-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: 80px;
}

.parents-photo {
    min-height: 650px;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.parents-copy {
    max-width: 690px;
}

.parent-points {
    display: grid;
    gap: 14px;
    margin-top: 34px;
}

.parent-points article {
    display: grid;
    grid-template-columns: 170px 1fr;
    gap: 20px;
    padding: 22px 0;
    border-top: 1px solid var(--line);
}

.parent-points strong {
    color: var(--navy);
    font-size: 1.08rem;
}

.parent-points span { color: var(--muted); }

.why-section {
    color: var(--white);
    background:
        radial-gradient(circle at 85% 10%, rgba(19,111,159,.35), transparent 28%),
        var(--navy);
}

.section-heading.light h2 { color: var(--white); }
.section-heading.light p:last-child { color: rgba(255,255,255,.7); }

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.why-grid article {
    padding: 32px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 22px;
}

.why-grid span {
    color: var(--gold);
    font-weight: 950;
}

.why-grid h3 {
    margin: 34px 0 12px;
    font-size: 1.45rem;
}

.why-grid p {
    margin: 0;
    color: rgba(255,255,255,.68);
}

.gallery-section { background: var(--paper); }

.mosaic {
    display: grid;
    grid-auto-rows: 250px;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.mosaic figure {
    margin: 0;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 14px 34px rgba(4,24,39,.1);
}

.mosaic .wide { grid-column: span 2; }
.mosaic .tall { grid-row: span 2; }

.mosaic img {
    transition: transform .5s ease;
}

.mosaic figure:hover img { transform: scale(1.04); }

.mission-section { background: var(--cream); }

.mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.mission-grid article {
    padding: 44px;
    background: var(--paper);
    border-top: 7px solid var(--gold);
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.mission-grid h2 {
    font-size: clamp(2rem, 3.7vw, 3.6rem);
}

.visit-section {
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.visit-bg {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
}

.visit-inner {
    position: relative;
    z-index: 2;
    display: grid;
    min-height: 760px;
    grid-template-columns: 1.15fr .65fr;
    align-items: center;
    gap: 80px;
    padding-block: 100px;
}

.visit-section h2 { color: var(--white); }

.visit-section p {
    max-width: 700px;
    color: rgba(255,255,255,.76);
    font-size: 1.14rem;
}

.event-details {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 30px 0;
}

.event-details span {
    min-width: 155px;
    padding: 15px 18px;
    background: rgba(255,255,255,.09);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 14px;
    backdrop-filter: blur(10px);
    font-weight: 850;
}

.event-details small {
    display: block;
    margin-bottom: 4px;
    color: var(--gold-2);
    font-size: .68rem;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.visit-card {
    padding: 38px;
    color: var(--navy);
    background: rgba(255,255,255,.94);
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.visit-card h3 {
    margin: 0 0 22px;
    font-size: 1.8rem;
    line-height: 1.2;
}

.visit-card ul {
    padding-left: 20px;
    color: var(--muted);
}

.visit-card li { margin: 9px 0; }

.visit-card a {
    color: var(--blue);
    font-weight: 900;
}

.site-footer {
    padding: 48px 0;
    color: rgba(255,255,255,.66);
    background: #031520;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.2fr .8fr auto;
    align-items: center;
    gap: 40px;
}

.footer-inner > div {
    display: flex;
    flex-direction: column;
}

.footer-inner strong { color: var(--white); }
.footer-inner a { color: var(--gold-2); }
.footer-inner p { margin: 0; }

@media (max-width: 1050px) {
    .menu-toggle { display: block; }

    .site-nav {
        position: absolute;
        top: 78px;
        right: 20px;
        left: 20px;
        display: none;
        padding: 22px;
        flex-direction: column;
        align-items: stretch;
        background: var(--navy);
        border-radius: 16px;
        box-shadow: var(--shadow);
    }

    .site-nav.is-open { display: flex; }

    .intro-grid,
    .parents-grid,
    .visit-inner {
        grid-template-columns: 1fr;
    }

    .experience-row,
    .experience-row.reverse {
        grid-template-columns: 1fr;
    }

    .experience-row.reverse .experience-media,
    .experience-row.reverse .experience-copy {
        order: initial;
    }

    .experience-media { min-height: 650px; }

    .why-grid { grid-template-columns: repeat(2, 1fr); }

    .mosaic { grid-template-columns: repeat(2, 1fr); }

    .mission-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
    .shell { width: min(calc(100% - 28px), var(--shell)); }
    .section { padding: 78px 0; }

    .hero { min-height: 850px; }
    .hero h1 { font-size: clamp(4rem, 18vw, 6.8rem); }
    .hero-counter,
    .hero-dots { right: 18px; }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .button { width: 100%; }

    .impact-grid,
    .why-grid,
    .mission-grid,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .impact-grid div {
        align-items: flex-start;
        flex-direction: column;
        gap: 0;
    }

    .experience-media { min-height: 540px; }
    .photo-small { width: 42%; height: 28%; }
    .experience-copy { padding: 64px 24px; }

    .parents-photo { min-height: 460px; }

    .parent-points article {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .mosaic {
        grid-auto-rows: 220px;
        grid-template-columns: 1fr;
    }

    .mosaic .wide,
    .mosaic .tall {
        grid-column: span 1;
        grid-row: span 1;
    }

    .visit-inner {
        min-height: auto;
        padding-block: 82px;
    }

    .visit-card { padding: 28px; }

    .weekly-meetings {
        margin-top: 60px;
    }

    .meeting-box {
        max-width: 1000px;
        margin: 0 auto;
        padding: 40px;
        background: rgba(255,255,255,.95);
        border-radius: 24px;
        box-shadow: 0 18px 50px rgba(0,0,0,.15);
        text-align: center;
    }

        .meeting-box h3 {
            margin-bottom: 12px;
            font-size: 2rem;
        }

    .meeting-grid {
        display: grid;
        grid-template-columns: repeat(3,1fr);
        gap: 30px;
        margin: 35px 0;
    }

        .meeting-grid .label {
            display: block;
            color: #888;
            font-size: .75rem;
            text-transform: uppercase;
            letter-spacing: .12em;
            margin-bottom: 6px;
        }

    .meeting-note {
        max-width: 700px;
        margin: 0 auto;
    }
}
