@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500&family=Source+Sans+3:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #05213A;
    --navy-light: #0a3358;
    --blue: #0177BF;
    --blue-soft: #1a8ad4;
    --gold: #DFA126;
    --gold-light: #F0DDC0;
    --burgundy: #7b0b2f;
    --burgundy-light: #9a1040;
    --white: #FFFFFF;
    --off-white: #f9f6f2;
    --light-bg: #f2ece4;
    --text: #1a1a1a;
    --text-body: #3d3d3d;
    --text-muted: #6b6b6b;
    --card-shadow: 0 8px 24px rgba(5, 33, 58, 0.1), 0 2px 8px rgba(5, 33, 58, 0.06);
    --card-shadow-hover: 0 12px 32px rgba(5, 33, 58, 0.16), 0 6px 16px rgba(5, 33, 58, 0.12);
    --radius: 12px;
    --radius-lg: 16px;
    --max-width: 1200px;
}

body {
    font-family: 'Source Sans 3', 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--text-body);
    background: radial-gradient(circle at 10% 0%, rgba(223, 161, 38, 0.2), transparent 45%),
        radial-gradient(circle at 90% 10%, rgba(1, 119, 191, 0.06), transparent 45%),
        radial-gradient(circle at 50% 100%, rgba(123, 11, 47, 0.06), transparent 50%),
        var(--off-white);
    min-height: 100vh;
    font-size: 16px;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    color: var(--text);
    line-height: 1.2;
}

a {
    color: var(--navy);
}

img {
    max-width: 100%;
}

/* ── Navbar ────────────────────────────────────────────────────────── */

.navbar {
    background: rgba(255, 255, 255, 0.92);
    padding: 0 2rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(5, 33, 58, 0.08);
    box-shadow: 0 8px 24px rgba(5, 33, 58, 0.08);
    backdrop-filter: blur(14px);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
}

.nav-brand {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.nav-logo {
    height: 48px;
    width: auto;
    display: block;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 1px;
    transition: transform 0.3s;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-item {
    position: relative;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown summary {
    list-style: none;
    cursor: pointer;
}

.nav-dropdown summary::-webkit-details-marker {
    display: none;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--white);
    border: 1px solid rgba(5, 33, 58, 0.08);
    box-shadow: 0 14px 28px rgba(5, 33, 58, 0.12);
    border-radius: 12px;
    padding: 0.5rem 0;
    margin-top: 0.25rem;
    list-style: none;
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1), transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 120;
    border-top: 3px solid var(--gold);
}

.nav-item.dropdown:hover .dropdown-menu,
.nav-item.dropdown:focus-within .dropdown-menu,
.nav-dropdown[open] .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-link {
    display: block;
    padding: 0.75rem 1.1rem;
    text-decoration: none;
    color: var(--text-body);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.dropdown-link:hover,
.dropdown-link.active {
    color: var(--navy);
    background: rgba(5, 33, 58, 0.06);
}

.nav-link {
    display: block;
    color: var(--text-body);
    text-decoration: none;
    padding: 1.5rem 1.1rem;
    font-size: 0.88rem;
    font-weight: 500;
    transition: color 0.2s;
    white-space: nowrap;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.nav-link:hover,
.nav-link.active {
    color: var(--navy);
}

.nav-link.active {
    font-weight: 700;
    position: relative;
}

.nav-link.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 1.1rem;
    right: 1.1rem;
    height: 3px;
    background: var(--gold);
    border-radius: 3px 3px 0 0;
}

.nav-socials {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 0.75rem;
}

.nav-socials-top {
    display: none;
    align-items: center;
    gap: 0.5rem;
}

.nav-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    transition: background 0.2s, transform 0.1s;
    box-shadow: 0 8px 16px rgba(27, 44, 65, 0.2);
}

.nav-social-link svg {
    width: 16px;
    height: 16px;
}

.nav-social-link:hover {
    background: var(--burgundy);
    transform: translateY(-1px);
}

.nav-cta {
    display: inline-block;
    background: var(--navy);
    color: var(--white) !important;
    padding: 0.6rem 1.4rem !important;
    border-radius: 50px;
    font-size: 0.82rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: background 0.2s, transform 0.1s;
    margin-left: 0.5rem;
    box-shadow: 0 8px 16px rgba(27, 44, 65, 0.2);
}

.nav-cta:hover {
    background: var(--burgundy);
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .navbar {
        padding: 0 1.25rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        padding: 0.5rem 0 1rem;
        background: var(--white);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-container {
        flex-wrap: wrap;
    }

    .nav-brand {
        order: 1;
    }

    .nav-socials-top {
        order: 2;
    }

    .nav-toggle {
        order: 3;
    }

    .nav-link {
        padding: 0.75rem 0.9rem;
        width: 100%;
    }

    .nav-link.active::after {
        display: none;
    }

    .nav-links > li {
        width: 100%;
    }

    .nav-links > li > .nav-link:not(.nav-cta),
    .nav-links > li > .nav-dropdown > summary.nav-link {
        background: var(--off-white);
        border: 1px solid rgba(5, 33, 58, 0.08);
        border-radius: 12px;
    }

    .nav-item.dropdown {
        width: 100%;
        margin-top: 0.5rem;
    }

    .nav-links > li {
        margin-top: 0.5rem;
    }

    .nav-links > li:first-child {
        margin-top: 0;
    }

    .nav-dropdown summary {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .nav-dropdown summary::after {
        content: "+";
        font-weight: 700;
        color: var(--text-muted);
        transition: transform 0.2s ease, color 0.2s ease;
    }

    .nav-dropdown[open] summary::after {
        content: "–";
        color: var(--navy);
    }

    .nav-socials-top {
        display: flex;
        margin-left: auto;
        margin-right: 0.75rem;
    }

    .nav-socials {
        display: none;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        transform: none;
        pointer-events: auto;
        box-shadow: none;
        border: 1px solid rgba(5, 33, 58, 0.08);
        background: var(--off-white);
        border-radius: 12px;
        padding: 0.5rem 0.75rem;
        margin: 0.5rem 0 0.25rem;
    }

    .dropdown-link {
        padding: 0.5rem 0.25rem;
        text-transform: none;
        font-weight: 600;
        border-radius: 8px;
    }

    .dropdown-link + .dropdown-link {
        margin-top: 0.25rem;
    }

    .nav-cta {
        margin: 0.5rem 0 0;
        text-align: center;
        display: block;
    }
}

/* ── Hero ──────────────────────────────────────────────────────────── */

.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    overflow: hidden;
    margin-top: 72px;
    background-size: cover;
    background-position: center;
}

.hero-carousel .hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-carousel .hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.hero-carousel .hero-slide.active {
    opacity: 1;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(5, 33, 58, 0.88) 0%,
        rgba(5, 33, 58, 0.42) 40%,
        rgba(5, 33, 58, 0.16) 70%,
        transparent 100%
    );
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(223, 161, 38, 0.18), transparent 55%);
    mix-blend-mode: screen;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: var(--max-width);
    width: 100%;
    margin: 0 auto;
    padding: 6rem 3rem 4rem;
    color: var(--white);
}

.hero-content::before {
    content: "";
    position: absolute;
    inset: 3rem 2rem;
    background: rgba(5, 33, 58, 0.55);
    border-radius: 20px;
    z-index: -1;
    filter: blur(0.5px);
}


.hero h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 4rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: -0.02em;
    line-height: 1.05;
    margin-bottom: 0.75rem;
    max-width: 600px;
    text-shadow: 0 14px 34px rgba(0, 0, 0, 0.45), 0 2px 6px rgba(0, 0, 0, 0.35);
}

.hero .subtitle {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 1.05rem;
    font-weight: 400;
    opacity: 0.9;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    text-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
}

.hero .btn {
    display: inline-block;
    padding: 1rem 2.25rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: all 0.2s;
    box-shadow: 0 12px 24px rgba(5, 33, 58, 0.25);
}

.btn-gold {
    background: linear-gradient(180deg, #e8b044, var(--gold));
    color: var(--navy);
}

.btn-gold:hover {
    background: var(--white);
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(223, 161, 38, 0.3);
}

@media (max-width: 768px) {
    .hero {
        min-height: 60vh;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-content {
        padding: 4rem 1.5rem 3rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
    }
}

/* ── Page Header (subpages) ───────────────────────────────────────── */

.page-header {
    position: relative;
    min-height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    margin-top: 72px;
    background-size: cover;
    background-position: center;
}

.page-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(123, 11, 47, 0.3) 0%,
        rgba(5, 33, 58, 0.85) 30%,
        rgba(5, 33, 58, 0.7) 70%,
        rgba(1, 119, 191, 0.25) 100%
    );
}

.page-header::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 85%, rgba(223, 161, 38, 0.2), transparent 50%),
        radial-gradient(circle at 85% 15%, rgba(1, 119, 191, 0.15), transparent 50%);
    pointer-events: none;
}

.page-header {
    border-bottom: 3px solid var(--gold);
}

.page-header h1,
.page-header .subtitle {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3.5rem;
    color: var(--white);
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.page-header .subtitle {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .page-header {
        min-height: 35vh;
    }

    .page-header h1 {
        font-size: 2.4rem;
        padding: 0 1rem;
    }

    .hero-content::before {
        inset: 2rem 1rem;
    }
}

/* ── Main ──────────────────────────────────────────────────────────── */

main {
    width: 100%;
    flex: 1;
}

.section {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 5rem 3rem;
}

.section-full {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}

@media (max-width: 768px) {
    .section {
        padding: 3rem 1.5rem;
    }
}

.page-academics .section {
    padding: 3.5rem 3rem;
}

@media (max-width: 768px) {
    .page-academics .section {
        padding: 2.75rem 1.5rem;
    }
}

/* ── Academics Switcher ───────────────────────────────────────────── */

.academics-switch {
    max-width: var(--max-width);
    margin: 2.5rem auto 1.5rem;
    padding: 0 3rem;
}

.academics-switch-inner {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2.5rem 2rem;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(5, 33, 58, 0.08);
}

.academics-switch-subtitle {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.academics-switch-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.switch-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.6rem;
    border-radius: 999px;
    background: var(--navy);
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 10px 20px rgba(5, 33, 58, 0.15);
}

.switch-btn:hover {
    background: var(--burgundy);
    transform: translateY(-1px);
}

.switch-btn.active {
    background: var(--gold);
    color: var(--navy);
}

.academics-track {
    scroll-margin-top: 110px;
}

.academics-track.is-hidden {
    display: none;
}

.academics-sticky {
    position: sticky;
    top: 72px;
    z-index: 60;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(5, 33, 58, 0.08);
    border-bottom: 1px solid rgba(5, 33, 58, 0.08);
}

.academics-sticky-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0.75rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.academics-sticky-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
}

.academics-sticky-actions {
    display: flex;
    gap: 0.5rem;
}

.switch-btn.compact {
    padding: 0.45rem 1.1rem;
    font-size: 0.78rem;
    box-shadow: none;
}

@media (max-width: 900px) {
    .academics-sticky-inner {
        padding: 0.65rem 1.5rem;
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .academics-switch {
        margin: 1.5rem auto 1rem;
        padding: 0 1.5rem;
    }

    .academics-switch-inner {
        padding: 2rem 1.75rem 1.5rem;
    }

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

    .switch-btn {
        width: 100%;
    }

    .academics-sticky {
        top: 64px;
    }

    .academics-sticky-actions {
        flex-wrap: wrap;
        width: 100%;
    }

    .switch-btn.compact {
        width: auto;
    }
}


/* ── Section Headings ─────────────────────────────────────────────── */

.section-label {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold);
    margin-bottom: 0.75rem;
    display: inline-block;
    background: rgba(223, 161, 38, 0.1);
    padding: 0.3rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(223, 161, 38, 0.2);
}

.section-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--navy);
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.section-heading-center {
    text-align: center;
}

.section-divider {
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--burgundy), var(--blue-soft));
    border: none;
    margin-bottom: 2rem;
}

.section-divider-center {
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .section-heading {
        font-size: 2rem;
    }
}

/* ── Video Embed ──────────────────────────────────────────────────── */

.video-embed {
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    background: var(--navy);
}

.video-embed video {
    display: block;
    width: 100%;
    height: auto;
}

/* ── Fundraising ──────────────────────────────────────────────────── */

.fundraising-hero {
    position: relative;
    background-position: center 45%;
}

.fundraising-hero::before {
    background: linear-gradient(120deg, rgba(5, 33, 58, 0.85), rgba(5, 33, 58, 0.45));
}

.fundraising-hero-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 5rem 3rem;
    position: relative;
    z-index: 2;
    text-align: left;
    color: var(--white);
}

.fundraising-kicker {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 600;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.fundraising-story-card {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    gap: 2rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--card-shadow);
}

.fundraising-story-panel {
    display: grid;
    gap: 1rem;
    align-content: start;
    position: relative;
}

.fundraising-hero-bubble {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: 0 18px 36px rgba(5, 33, 58, 0.28);
    margin: -1rem auto 0.5rem;
}

.fundraising-story-stat {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem 1rem;
    text-align: center;
    box-shadow: var(--card-shadow);
    border-top: 3px solid var(--gold);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.fundraising-story-stat:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow-hover);
}

.metric-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.1;
    display: block;
}

.metric-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 500;
    display: block;
}

.fundraising-story-split {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 1.75rem;
    align-items: stretch;
}

.fundraising-photo-portrait {
    height: 100%;
}

.fundraising-photo-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    border-radius: var(--radius-lg);
    box-shadow: var(--card-shadow);
}

.fundraising-testimonial {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem 2rem;
    box-shadow: var(--card-shadow);
    min-height: 360px;
}

.fundraising-testimonial .quote-text {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--navy);
}

.fundraising-testimonial .quote-source {
    margin-top: 0.75rem;
    color: var(--text-muted);
}

.fundraising-hero-actions {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.fundraising-tiers {
    display: grid;
    gap: 1rem;
}

.fundraising-tier {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
    box-shadow: var(--card-shadow);
}

.fundraising-tier h3 {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--navy);
    margin-bottom: 0.4rem;
}

.fundraising-tier-icon {
    display: inline-flex;
    width: 2rem;
    height: 2rem;
    align-items: center;
    justify-content: center;
    background: rgba(223, 161, 38, 0.18);
    border-radius: 999px;
    font-size: 1.1rem;
}

.fundraising-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.fundraising-form-block {
    background: var(--off-white);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    border: 1px solid rgba(5, 33, 58, 0.08);
}

.fundraising-form-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--card-shadow);
}

.fundraising-give-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
    gap: 2rem;
    align-items: start;
}

.fundraising-give-right .fundraising-form-card {
    height: 100%;
}

.fundraising-form-right {
    background: var(--off-white);
    border-radius: var(--radius);
    padding: 1.5rem;
    border: 1px solid rgba(5, 33, 58, 0.08);
}

@media (max-width: 768px) {
    .fundraising-hero-inner {
        padding: 3.5rem 1.5rem;
    }

    .fundraising-story-card,
    .fundraising-form-card {
        grid-template-columns: 1fr;
        padding: 1.75rem;
    }

    .fundraising-give-row {
        grid-template-columns: 1fr;
    }

    .fundraising-story-split {
        grid-template-columns: 1fr;
    }

    .fundraising-photo-portrait img {
        height: 320px;
    }

    .fundraising-testimonial {
        min-height: 0;
    }

    .fundraising-form-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Classrooms ──────────────────────────────────────────────── */

.teacher-card {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.teacher-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid rgba(5, 33, 58, 0.12);
    padding-bottom: 0.6rem;
}

.teacher-card-header h3 {
    margin: 0;
}

.teacher-tag {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--navy);
    background: var(--gold-light);
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
}

.teacher-photo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(5, 33, 58, 0.12);
    flex-shrink: 0;
}

.teacher-photo.placeholder {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(5, 33, 58, 0.06);
    color: var(--text-muted);
    font-size: 1.4rem;
    text-align: center;
}

.teacher-modal-trigger {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.teacher-modal-trigger:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

.teacher-modal-trigger .staff-photo-img,
.teacher-modal-trigger .teacher-photo {
    display: block;
}

.teacher-modal {
    position: fixed;
    inset: 0;
    background: rgba(5, 33, 58, 0.55);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    z-index: 200;
}

.teacher-modal.open {
    display: flex;
}

.teacher-modal-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    max-width: 520px;
    width: 100%;
    padding: 2rem 2.25rem;
    box-shadow: var(--card-shadow-hover);
    position: relative;
}

.teacher-modal-header h3 {
    margin-bottom: 0.35rem;
}

.teacher-modal-role {
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.78rem;
    margin-bottom: 1.25rem;
}

.teacher-modal-photo {
    display: flex;
    justify-content: center;
    margin: 0.5rem 0 1.25rem;
}

.teacher-modal-photo img {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(5, 33, 58, 0.12);
}

.teacher-modal-bio {
    margin-bottom: 1.25rem;
}

.teacher-modal-quote {
    margin: 0 0 0.5rem;
    padding-left: 1rem;
    border-left: 3px solid var(--gold);
    color: var(--navy);
    font-style: italic;
}

.teacher-modal-quote-source {
    margin: 0 0 1.25rem;
    color: var(--text-muted);
    font-size: 0.88rem;
}

.teacher-modal-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.65rem;
}

.teacher-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    border: none;
    background: rgba(5, 33, 58, 0.08);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
}

.modal-open {
    overflow: hidden;
}

@media (max-width: 768px) {
    .teacher-card-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .teacher-modal-card {
        padding: 1.75rem 1.5rem;
    }
}

/* ── Quick Links Strip ────────────────────────────────────────────── */

.quick-links {
    display: flex;
    justify-content: center;
    gap: 0;
    background: linear-gradient(120deg, var(--navy), var(--navy-light));
    border-bottom: 3px solid var(--gold);
    box-shadow: 0 14px 30px rgba(23, 18, 16, 0.16);
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2rem;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color 0.2s, background 0.2s;
}

.quick-link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
}

.quick-link img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.7;
}

@media (max-width: 768px) {
    .quick-links {
        flex-wrap: wrap;
    }

    .quick-link {
        flex: 1 1 50%;
        justify-content: center;
        padding: 0.75rem 1rem;
        font-size: 0.75rem;
    }
}

/* ── Values Marquee ──────────────────────────────────────────────── */

.values-marquee {
    overflow: hidden;
    background: linear-gradient(120deg, var(--navy), var(--navy-light));
    padding: 0.9rem 0;
    border-bottom: 2px solid var(--gold);
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    width: max-content;
    animation: marqueeScroll 30s linear infinite;
}

.marquee-track span {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0 0.25rem;
}

.marquee-sep {
    color: var(--gold) !important;
    font-size: 0.7rem !important;
    padding: 0 0.75rem !important;
    opacity: 0.7;
}

@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .marquee-track {
        animation: none;
    }
}

/* ── Two-Column Mission Layout ────────────────────────────────────── */

.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 420px;
    background: var(--white);
    box-shadow: var(--card-shadow);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.split-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(250, 249, 247, 0.98));
}

.split-image {
    background-size: cover;
    background-position: center;
    min-height: 320px;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.split-section:hover .split-image img {
    transform: scale(1.04);
}

.split-image {
    overflow: hidden;
}

@media (max-width: 768px) {
    .split-section {
        grid-template-columns: 1fr;
    }

    .split-text {
        padding: 3rem 1.5rem;
    }

    .split-image {
        min-height: 300px;
    }
}

/* ── Image Cards (Three-Column Feature) ───────────────────────────── */

.feature-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 3rem;
}

@media (max-width: 768px) {
    .feature-cards {
        grid-template-columns: 1fr;
        padding: 0 1.5rem;
    }
}

.feature-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-decoration: none;
    color: var(--white);
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: var(--card-shadow);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--card-shadow-hover);
}

.feature-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s;
}

.feature-card:hover .feature-card-img {
    transform: scale(1.05);
}

.feature-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(5, 33, 58, 0.92) 0%,
        rgba(5, 33, 58, 0.35) 55%,
        transparent 100%
    );
}

.feature-card-content {
    position: relative;
    z-index: 1;
    padding: 2rem;
}

.feature-card-content h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.feature-card-content p {
    font-size: 0.88rem;
    line-height: 1.6;
    opacity: 0.85;
    margin-bottom: 1rem;
}

.feature-card-link {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
}

.feature-card-link:hover {
    color: var(--white);
    border-color: var(--white);
}

/* ── Info Cards (3-column) ────────────────────────────────────────── */

.info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 540px) {
    .info-cards {
        grid-template-columns: 1fr;
    }
}

.info-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(180deg, #fffdf8, var(--white));
    border-radius: var(--radius-lg);
    box-shadow: var(--card-shadow);
    border-top: 3px solid var(--gold);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow-hover);
}

.info-card-icon {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    display: block;
}

.info-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.info-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* ── Content Card ─────────────────────────────────────────────────── */

.content-card {
    background: linear-gradient(180deg, #fffdf8, var(--white));
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: var(--card-shadow);
    margin-bottom: 2rem;
    border: 1px solid rgba(5, 33, 58, 0.06);
    border-top: 3px solid var(--gold);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.content-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow-hover);
}

.content-card h2 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--navy);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.content-card h3 {
    font-family: 'Source Sans 3', sans-serif;
    color: var(--navy);
    font-size: 1rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.content-card p {
    color: var(--text-body);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.8;
}

.content-card ul, .content-card ol {
    padding-left: 1.5rem;
    color: var(--text-body);
    margin-bottom: 0.75rem;
}

.content-card li {
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
    line-height: 1.7;
}

.content-card a {
    color: var(--navy);
    font-weight: 500;
}

.content-card .btn-primary {
    color: var(--white);
}

@media (max-width: 768px) {
    .content-card {
        padding: 1.75rem;
    }
}

.content-card.compact {
    padding: 1.75rem;
    margin-bottom: 1.25rem;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.mission-grid .content-card {
    margin-bottom: 0;
    min-height: 340px;
}

.content-image-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    align-self: start;
}

.content-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 80% 5%;
    display: block;
    transition: transform 0.5s ease;
}

.content-image-card:hover img {
    transform: scale(1.04);
}

@media (max-width: 900px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Photo Grid ───────────────────────────────────────────────────── */

.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

@media (max-width: 540px) {
    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.photo-grid img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    box-shadow: var(--card-shadow);
    border: 2px solid rgba(223, 161, 38, 0.15);
}

.photo-focus-lower {
    object-position: center 30%;
}

@media (max-width: 768px) {
    .photo-grid img {
        height: 160px;
    }
}

.photo-grid img:hover {
    transform: scale(1.03);
    border-color: var(--gold);
    box-shadow: 0 8px 24px rgba(223, 161, 38, 0.2);
}

/* ── Staff Cards ──────────────────────────────────────────────────── */

.staff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .staff-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 540px) {
    .staff-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
    }
}

.staff-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--card-shadow);
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    overflow: hidden;
}

.staff-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--burgundy));
}

.staff-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow-hover);
}

.staff-photo-img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 20%;
    margin: 0 auto 1.25rem;
    display: block;
    border: 3px solid var(--gold-light);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.staff-card:hover .staff-photo-img {
    transform: scale(1.06);
}

.staff-photo {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-light), var(--light-bg));
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 2.5rem;
    border: 3px solid var(--gold-light);
}

.staff-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 0.2rem;
}

.staff-role {
    font-size: 0.82rem;
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.5rem;
}

.staff-email {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.staff-email a {
    color: var(--text-muted);
    text-decoration: none;
}

.staff-email a:hover {
    color: var(--navy);
}

/* ── Grade Level Cards ────────────────────────────────────────────── */

.grade-levels {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 1.5rem 0;
}

@media (max-width: 540px) {
    .grade-levels {
        grid-template-columns: 1fr;
    }
}

.grade-level-card {
    background: var(--off-white);
    border-radius: var(--radius);
    padding: 1.75rem;
    border-left: 4px solid var(--gold);
    box-shadow: var(--card-shadow);
    transition: transform 0.2s;
}

.grade-levels.compact {
    gap: 1rem;
    margin: 1rem 0 0;
}

.grade-level-card.compact {
    padding: 1.35rem;
}

.compact-list li {
    margin-bottom: 0.2rem;
}

.icon-list {
    list-style: none;
    padding-left: 0;
}

.grade-level-card:hover {
    transform: translateX(4px);
    box-shadow: 0 8px 24px rgba(223, 161, 38, 0.18), 0 2px 8px rgba(5, 33, 58, 0.08);
}

.grade-level-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 0.4rem;
}

.grade-level-card p {
    font-size: 0.9rem;
    color: var(--text-body);
    margin: 0;
    line-height: 1.6;
}

/* ── Steps List ───────────────────────────────────────────────────── */

.steps-list {
    display: grid;
    gap: 0;
    margin-bottom: 2rem;
}

.step-card {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}


.step-card:first-child {
    padding-top: 0;
}

.step-card:last-child {
    border-bottom: none;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
    font-family: 'Playfair Display', Georgia, serif;
}

.step-body h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.4rem;
}

.step-body p {
    font-size: 0.9rem;
    color: var(--text-body);
    margin: 0;
    line-height: 1.7;
}

.step-body a {
    color: var(--navy);
    font-weight: 500;
}

/* ── Contact Info Cards ───────────────────────────────────────────── */

.contact-info-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (max-width: 640px) {
    .contact-info-row {
        grid-template-columns: 1fr;
    }
}

.contact-info-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--card-shadow);
    border-top: 3px solid var(--gold);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow-hover);
}

.contact-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-info-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--navy);
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
}

.contact-info-card p {
    font-size: 0.9rem;
    color: var(--text-body);
    margin: 0;
    line-height: 1.7;
}

.contact-info-card a {
    color: var(--navy);
    text-decoration: none;
    font-weight: 500;
}

.contact-info-card a:hover {
    text-decoration: underline;
}

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    margin-bottom: 2rem;
    border: 1px solid rgba(31, 27, 25, 0.06);
}

.contact-map iframe {
    display: block;
    border-radius: var(--radius-lg);
}

/* ── About Stats ──────────────────────────────────────────────────── */

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 400px) {
    .about-stats {
        grid-template-columns: 1fr;
    }
}

.stat-card {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--card-shadow);
    border-top: 3px solid var(--gold);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow-hover);
}

.stat-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.1;
}

.stat-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 500;
}

/* ── Buttons ──────────────────────────────────────────────────────── */

.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: all 0.25s ease;
    box-shadow: 0 10px 20px rgba(5, 33, 58, 0.12);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.15), transparent);
    pointer-events: none;
    border-radius: 50px 50px 0 0;
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background: linear-gradient(180deg, var(--navy-light), var(--navy));
    color: var(--white);
}

.btn-primary:hover {
    background: linear-gradient(180deg, var(--burgundy-light), var(--burgundy));
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(123, 11, 47, 0.25);
}

/* ── Accent Section (tinted background) ───────────────────────────── */

.bg-light {
    background: linear-gradient(180deg, rgba(250, 249, 247, 0.95), rgba(245, 243, 239, 0.9));
}

.bg-light .content-card,
.bg-light .info-card,
.bg-light .stat-card,
.bg-light .contact-info-card {
    background: linear-gradient(180deg, rgba(255, 253, 248, 0.9), rgba(255, 255, 255, 0.85));
    box-shadow: 0 6px 18px rgba(5, 33, 58, 0.08);
    border: 1px solid rgba(5, 33, 58, 0.05);
    border-top: 3px solid var(--gold);
}

/* ── Footer ───────────────────────────────────────────────────────── */

.site-footer {
    background: linear-gradient(120deg, var(--navy), var(--navy-light), #0c3a62);
    color: rgba(255, 255, 255, 0.65);
    margin-top: auto;
    font-size: 0.88rem;
    position: relative;
}

.site-footer::before {
    content: "";
    position: absolute;
    top: -60px;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(5, 33, 58, 0.08));
    pointer-events: none;
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 4rem 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 768px) {
    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 3rem 1.5rem;
        gap: 2rem;
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (max-width: 768px) {
    .footer-brand {
        align-items: center;
    }
}

.footer-logo {
    height: 64px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

.footer-brand p {
    line-height: 1.6;
}

.footer-links h4 {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--gold);
    display: inline-block;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact a {
    color: var(--gold-light);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact a:hover {
    color: var(--white);
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

@media (max-width: 768px) {
    .footer-social {
        justify-content: center;
    }
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    transition: background 0.2s, transform 0.15s;
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(223, 161, 38, 0.35);
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem 3rem;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--white);
}

/* ── Utility ──────────────────────────────────────────────────────── */

.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 2rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.decorative-star {
    color: var(--gold);
    font-size: 1.2rem;
    margin-right: 0.5rem;
}


@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    animation: fadeUp 0.7s ease both;
}

.hero-content > *:nth-child(1) { animation-delay: 0.05s; }
.hero-content > *:nth-child(2) { animation-delay: 0.12s; }
.hero-content > *:nth-child(3) { animation-delay: 0.19s; }
.hero-content > *:nth-child(4) { animation-delay: 0.26s; }

/* ── Focus Accessibility ──────────────────────────────────────────── */

*:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

/* ── Micro-Interactions ──────────────────────────────────────────── */

.contact-info-card:hover .contact-icon {
    transform: scale(1.1);
    background: var(--burgundy);
    transition: transform 0.25s ease, background 0.25s ease;
}

.contact-icon {
    transition: transform 0.25s ease, background 0.25s ease;
}

.step-card:hover .step-number {
    background: var(--burgundy);
    transform: scale(1.08);
    transition: transform 0.25s ease, background 0.25s ease;
}

.step-number {
    transition: transform 0.25s ease, background 0.25s ease;
}


@keyframes gentleFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.info-card:hover .info-card-icon {
    animation: gentleFloat 2s ease-in-out infinite;
}

/* ── Reduced Motion ──────────────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
    .hero-content > * {
        animation: none;
    }
    .feature-card,
    .photo-grid img,
    .grade-level-card,
    .btn,
    .nav-cta,
    .content-card,
    .info-card,
    .stat-card,
    .contact-info-card,
    .staff-card,
    .staff-photo-img,
    .split-image img,
    .content-image-card img,
    .contact-icon,
    .step-number,
    .event-date {
        transition: none;
    }
    .info-card:hover .info-card-icon {
        animation: none;
    }
}
