/* ==================================================
   ROOT VARIABLES
================================================== */

:root {
    --blue: #174f9f;
    --blue-dark: #103d7b;
    --blue-deep: #0a2f61;

    --yellow: #f6d447;
    --yellow-dark: #e7c22f;

    --white: #ffffff;
    --off-white: #f7f9fc;
    --light-gray: #e7ebf1;

    --gray: #6f7885;
    --text: #1c2430;
    --dark: #111827;

    --container: 1200px;
    --radius: 22px;
    --shadow: 0 18px 50px rgba(17, 24, 39, 0.12);
}


/* ==================================================
   UNIVERSAL FONT
================================================== */

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat-VariableFont_wght.ttf") format("truetype");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}


/* ==================================================
   RESET
================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    font-family: "Montserrat", Arial, Helvetica, sans-serif;

    color: var(--text);
    background: var(--white);

    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-top: 0;
}

.container {
    width: min(92%, var(--container));
    margin-inline: auto;
}

.section {
    padding: 95px 0;
}

/* =========================================================
   GLOBAL HEADER CONTAINER
========================================================= */

.site-header .container {
    width: min(1320px, calc(100% - 80px));
    margin: 0 auto;
}


/* =========================================================
   TOP BAR
========================================================= */

.top-bar {
    width: 100%;
    background: #073b73;
    color: #ffffff;
}

.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    min-height: 40px;
}


/* LEFT SIDE */

.top-bar-message {
    margin: 0;

    color: #ffffff;

    font-size: 14px;
    font-weight: 400;
    line-height: 1;
}

.top-bar-message strong {
    font-weight: 800;
}


/* RIGHT SIDE */

.top-bar-member {
    margin: 0;

    color: #ffffff;

    font-size: 14px;
    font-weight: 500;

    text-decoration: none;

    white-space: nowrap;

    transition: opacity .2s ease;
}

.top-bar-member:hover {
    opacity: .75;
}


/* =========================================================
   MAIN HEADER
========================================================= */

.main-header {
    width: 100%;

    background: #ffffff;
}


/* SAME CONTAINER WIDTH AS TOP BAR */

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;

    min-height: 92px;
}


/* =========================================================
   LOGO
========================================================= */

.site-logo {
    display: flex;
    align-items: center;

    flex-shrink: 0;

    text-decoration: none;
}

.main-logo {
    display: block;

    width: auto;
    height: 72px;
}


/* =========================================================
   MAIN NAVIGATION
========================================================= */

.main-nav {
    margin-left: auto;
}

.main-nav > ul {
    display: flex;
    align-items: center;

    gap: 34px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.main-nav > ul > li {
    position: relative;
}

.main-nav > ul > li > a {
    display: block;

    padding: 34px 0;

    color: #17202c;

    font-size: 15px;
    font-weight: 800;

    text-decoration: none;

    white-space: nowrap;
}


/* =========================================================
   DROPDOWNS
========================================================= */

.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;

    top: 100%;
    left: 0;

    z-index: 9999;

    min-width: 220px;

    margin: 0;
    padding: 10px 0;

    list-style: none;

    background: #ffffff;

    border-radius: 14px;

    box-shadow:
        0 15px 40px rgba(10, 35, 65, .14);

    opacity: 0;
    visibility: hidden;

    transform: translateY(8px);

    transition:
        opacity .2s ease,
        transform .2s ease,
        visibility .2s ease;
}

.has-dropdown:hover > .dropdown {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

.dropdown li a {
    display: block;

    padding: 12px 18px;

    color: #073b73;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;
}

.dropdown li a:hover {
    background: #f4f7fb;

    color: #1756a9;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 900px) {

    .site-header .container {
        width: calc(100% - 40px);
    }

    .top-bar-inner {
        min-height: 42px;

        gap: 15px;
    }

    .top-bar-message,
    .top-bar-member {
        font-size: 11px;
    }

    .main-logo {
        height: 60px;
    }

}
/* ==================================================
   BUTTONS
================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 52px;

    padding: 0 26px;

    border-radius: 999px;

    font-size: 0.95rem;
    font-weight: 700;

    transition: 0.25s ease;
}

.btn-primary {
    background: var(--yellow);
    color: var(--blue-deep);
}

.btn-primary:hover {
    background: var(--yellow-dark);
    transform: translateY(-2px);
}

.btn-dark {
    background: var(--dark);
    color: var(--white);
}

.btn-dark:hover {
    background: #000;
    transform: translateY(-2px);
}

.btn-light {
    background: var(--white);
    color: var(--blue-deep);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.75);
    color: var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--blue-deep);
}

.btn-donate {
    min-height: 46px;

    padding: 0 23px;

    background: var(--yellow);
    color: var(--blue-deep);
}

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

.btn-donate-large {
    min-width: 180px;

    background: var(--blue-deep);
    color: var(--white);
}

.text-link {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    margin-top: 15px;

    color: var(--blue);

    font-weight: 800;
}

.text-link span {
    transition: transform 0.2s ease;
}

.text-link:hover span {
    transform: translateX(5px);
}


/* ==================================================
   HEADER
================================================== */

.site-header {
    position: relative;
    z-index: 1000;

    background: var(--white);
}


/* TOP BAR */

.top-bar {
    background: var(--blue-deep);
    color: var(--white);

    font-size: 0.82rem;
}

.top-bar-inner {
    min-height: 38px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.top-bar p {
    margin: 0;
}

.top-links {
    display: flex;
    gap: 22px;
}

.top-links a {
    opacity: 0.85;
}

.top-links a:hover {
    opacity: 1;
}


/* MAIN HEADER */

.main-header {
    border-bottom: 1px solid var(--light-gray);
    background: rgba(255, 255, 255, 0.98);
}

/* Match header alignment to hero */
.main-header .container {
    width: 86%;
    max-width: 1700px;
}

.nav-wrapper {
    min-height: 88px;

    display: flex;
    align-items: center;

    gap: 32px;
}


/* LOGO */

.site-logo {
    display: flex;
    align-items: center;

    flex-shrink: 0;
}

.main-logo {
    display: block;

    width: auto;
    height: 68px;

    object-fit: contain;
}


/* NAVIGATION */

.main-nav {
    margin-left: auto;
}

.main-nav > ul {
    display: flex;
    align-items: center;

    gap: 6px;
}

.main-nav > ul > li {
    position: relative;
}

.main-nav > ul > li > a {
    display: block;

    padding: 30px 13px;

    font-size: 0.92rem;
    font-weight: 700;

    color: #273142;
}

.main-nav > ul > li > a:hover {
    color: var(--blue);
}


/* DROPDOWNS */

.dropdown {
    position: absolute;

    left: 0;
    top: calc(100% - 12px);

    min-width: 220px;

    padding: 10px;

    background: var(--white);

    box-shadow: var(--shadow);

    border-radius: 14px;

    opacity: 0;
    visibility: hidden;

    transform: translateY(10px);

    transition: 0.2s ease;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

.dropdown a {
    display: block;

    padding: 11px 13px;

    border-radius: 8px;

    font-size: 0.9rem;
    font-weight: 600;
}

.dropdown a:hover {
    background: var(--off-white);
    color: var(--blue);
}
#our-story,
#our-team,
#financial-reports,
#annual-reports {
    scroll-margin-top: 140px;
}

/* ==================================================
   APP DOWNLOAD DROPDOWN
================================================== */

.app-download {
    position: relative;
    display: inline-block;
}

.app-download-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    cursor: pointer;
    border: 0;
}

.app-arrow {
    font-size: 0.65rem;

    transition: transform 0.25s ease;
}


/* DROPDOWN */

.app-download-menu {
    position: absolute;

    left: 0;
    top: calc(100% + 10px);

    width: 230px;

    padding: 8px;

    background: #ffffff;

    border-radius: 14px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.20);

    opacity: 0;
    visibility: hidden;

    transform: translateY(-8px);

    transition:
        opacity 0.2s ease,
        transform 0.2s ease,
        visibility 0.2s ease;

    z-index: 100;
}


/* DROPDOWN LINKS */

.app-download-menu a {
    display: block;

    padding: 13px 16px;

    border-radius: 9px;

    color: var(--blue-deep);

    font-size: 0.9rem;
    font-weight: 700;

    transition: 0.2s ease;
}

.app-download-menu a:hover {
    background: var(--off-white);
    color: var(--blue);
}


/* OPEN STATE */

.app-download.open .app-download-menu {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

.app-download.open .app-arrow {
    transform: rotate(180deg);
}

/* ==================================================
   HERO
================================================== */

.hero {
    position: relative;

    width: 100%;
    min-height: 610px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            #073b73 0%,
            #0a427c 27%,
            #356b9e 47%,
            #7fa0c2 65%,
            #c6d5e4 82%,
            #edf3f8 92%,
            #ffffff 100%
        );
}


/* HERO CONTAINER */

.hero .container {
    width: 86%;
    max-width: 1700px;
}

.hero-content {
    position: relative;
    z-index: 3;

    display: flex;
    align-items: center;
}


/* HERO COPY */

.hero-copy {
    position: relative;
    z-index: 4;

    width: 52%;
    max-width: 980px;

    color: #ffffff;
}


/* EYEBROW */

.hero-eyebrow {
    margin: 0 0 15px;

    font-size: clamp(0.88rem, 1.08vw, 1.2rem);
    font-weight: 700;

    line-height: 1.2;

    letter-spacing: 3px;

    text-transform: uppercase;

    color: #ffca28;
}


/* HERO TITLE */

.hero-title {
    margin: 0;

    font-family: "Montserrat", sans-serif;

    font-weight: 900;

    line-height: 0.9;

    letter-spacing: -3px;

    text-transform: uppercase;
}

.hero-title-white {
    display: block;

    width: max-content;

    white-space: nowrap;

    font-size: clamp(3.4rem, 4.5vw, 5.5rem);
    font-weight: 900;

    color: #ffffff !important;
}

.hero-title-yellow {
    display: block;

    width: max-content;

    margin-top: 5px;

    white-space: nowrap;

    font-size: clamp(3.95rem, 4.9vw, 6rem);
    font-weight: 900;

    color: #ffc928 !important;
}


/* HERO DESCRIPTION */

.hero-description {
    width: 92%;
    max-width: 820px;

    margin: 25px 0 0;

    font-size: clamp(0.88rem, 1vw, 1.08rem);
    font-weight: 400;

    line-height: 1.45;

    letter-spacing: 1.8px;

    color: #ffffff;
}


/* HERO BUTTONS */

.hero-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 16px;

    margin-top: 28px;

    position: relative;
    z-index: 4;
}

.hero .btn {
    min-height: 58px;

    padding: 0 30px;

    font-size: 1rem;
    font-weight: 800;
}

.hero .btn-primary {
    background: #ffc928;
    color: #06376f;

    border: 2px solid #ffc928;
}

.hero .btn-primary:hover {
    background: #ffd84f;

    border-color: #ffd84f;
}

.hero .btn-outline-light {
    background: transparent;

    color: #ffffff;

    border: 3px solid #ffffff;
}

.hero .btn-outline-light:hover {
    background: #ffffff;

    color: #06376f;
}


/* HERO FEET */

.hero::after {
    content: "";

    position: absolute;

    z-index: 2;

    top: -2%;
    right: -5%;

    width: 58%;
    height: 105%;

    background-image: url("../images/logo/feet.png");

    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;

    opacity: 1;

    pointer-events: none;
}


/* ==================================================
   MISSION
================================================== */

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

.mission-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: start;
}

.mission-intro h2,
.section-heading h2,
.advocacy-content h2,
.media-copy h2,
.donate-inner h2 {
    margin-bottom: 0;

    font-size: clamp(2.3rem, 4vw, 4rem);

    line-height: 1.04;

    letter-spacing: -2px;
}

.mission-copy .lead {
    color: var(--blue-deep);

    font-size: 1.35rem;
    font-weight: 700;
}

.mission-copy p {
    color: #536071;
}


/* ==================================================
   IMPACT STRIP
================================================== */

.impact-strip {
    padding: 42px 0;

    background: var(--yellow);
}

.impact-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);
}

.impact-item {
    padding: 10px 30px;

    text-align: center;

    border-right: 1px solid rgba(10, 47, 97, 0.18);
}

.impact-item:last-child {
    border-right: 0;
}

.impact-item strong {
    display: block;

    font-size: 2.4rem;

    line-height: 1;

    color: var(--blue-deep);
}

.impact-item span {
    display: block;

    margin-top: 8px;

    font-size: 0.85rem;
    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1px;
}


/* ==================================================
   SECTION HEADINGS
================================================== */

.section-heading {
    margin-bottom: 50px;
}

.centered {
    max-width: 760px;

    margin-left: auto;
    margin-right: auto;

    text-align: center;
}

.centered p:last-child {
    color: var(--gray);
}

.split-heading {
    display: flex;

    align-items: end;
    justify-content: space-between;

    gap: 30px;
}


/* ==================================================
   PROGRAMS
================================================== */

.programs-preview {
    background: var(--off-white);
}

.program-card-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 26px;
}

.program-card {
    overflow: hidden;

    border-radius: var(--radius);

    background: var(--white);

    box-shadow: 0 10px 30px rgba(17, 24, 39, 0.08);

    transition: 0.25s ease;
}

.program-card:hover {
    transform: translateY(-8px);

    box-shadow: var(--shadow);
}

.program-card-image {
    min-height: 260px;

    background-position: center;
    background-size: cover;
}

.program-art {
    background:
        linear-gradient(
            rgba(23, 79, 159, 0.1),
            rgba(23, 79, 159, 0.1)
        ),
        url("../images/events/ArtClass.png") center 30% / cover no-repeat;
}

.program-life {
    background:
        linear-gradient(
            rgba(23, 79, 159, 0.1),
            rgba(23, 79, 159, 0.1)
        ),
        url("../images/events/LifeSkillsClass.jpg") center 35% / cover no-repeat;
}

.program-dance {
    background:
        linear-gradient(
            rgba(23, 79, 159, 0.1),
            rgba(23, 79, 159, 0.1)
        ),
        url("../images/events/DanceClasses.jpg") center 80% / cover no-repeat;
}

.program-card-content {
    position: relative;

    padding: 28px;
}

.card-number {
    position: absolute;

    right: 25px;
    top: 18px;

    font-size: 2.5rem;
    font-weight: 900;

    color: rgba(23, 79, 159, 0.08);
}

.program-card-content h3 {
    margin-bottom: 10px;

    font-size: 1.45rem;

    color: var(--blue-deep);
}

.program-card-content p {
    min-height: 76px;

    color: var(--gray);
}

.program-card-content a {
    font-weight: 800;

    color: var(--blue);
}

.section-button {
    margin-top: 45px;

    text-align: center;
}


/* ==================================================
   ADVOCACY
================================================== */

.advocacy-section {
    width: 100%;
    background: #ffffff;
    overflow: hidden;
}

.advocacy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 655px;
}

.advocacy-image {
    width: 100%;
    min-height: 655px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;
	margin-left: 60px;
}

.advocacy-photo {
    display: block;

    width: 100%;
    height: auto;

    max-height: 655px;

    object-fit: contain;

    border-radius: 0;
}

.advocacy-content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 70px 7vw;
}

.advocacy-content .section-label {
    margin-bottom: 20px;

    font-size: 1rem;
    font-weight: 500;

    letter-spacing: 0;

    color: #7d8797;
}

.advocacy-content h2 {
    margin: 0 0 18px;

    max-width: 760px;

    font-size: clamp(3rem, 4.2vw, 5.2rem);
    font-weight: 800;

    line-height: .9;

    letter-spacing: -3px;

    color: #1c2430;
}

.advocacy-content p {
    max-width: 840px;

    margin-bottom: 36px;

    font-size: 1.2rem;
    font-weight: 400;

    line-height: 1.55;

    color: #7a8494;
}

.advocacy-content .btn {
    align-self: flex-start;

    min-height: 62px;

    padding: 0 36px;

    font-size: 1rem;
    font-weight: 800;

    border-radius: 999px;

    background: #ffd84d;
    color: #0a3f80;
}

.advocacy-content .btn:hover {
    background: #ffcc28;
}

/* ==================================================
   EVENTS
================================================== */

.events-preview {
    background: #eef3fa;
}

.event-feature {
    min-height: 370px;

    padding: 55px;

    display: grid;

    grid-template-columns: 180px 1fr;

    gap: 40px;

    align-items: center;

    border-radius: 30px;

    background:
        radial-gradient(
            circle at right center,
            rgba(246, 212, 71, 0.25),
            transparent 35%
        ),
        var(--blue);

    color: var(--white);
}

.event-date {
    width: 150px;
    height: 150px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    border: 5px solid var(--yellow);

    text-align: center;
}

.event-date span {
    font-size: 0.78rem;
    font-weight: 900;

    letter-spacing: 1.5px;
}

.event-type {
    margin-bottom: 8px;

    color: var(--yellow);

    font-size: 0.76rem;
    font-weight: 900;

    letter-spacing: 2px;
}

.event-info h3 {
    margin-bottom: 14px;

    font-size: 2.5rem;
}

.event-info p {
    max-width: 670px;

    color: rgba(255, 255, 255, 0.82);
}

.event-info .btn {
    margin-top: 12px;
}



/* ==================================================
   ABOUT PAGE
================================================== */

.about-page {
    background: #ffffff;
}


/* ==================================================
   ABOUT INTRO
================================================== */

.about-intro {
    padding: 70px 0 28px;

    background: #f7f9fc;

    border-bottom: 2px solid #4e7cff;
}

.about-intro-copy {
    text-align: center;
}

.about-eyebrow {
    margin: 0 0 20px;

    font-size: 1rem;
    font-weight: 500;

    letter-spacing: 0;

    text-transform: uppercase;

    color: #1c2430;
}

.about-intro h1 {
    margin: 0 auto;

    font-size: clamp(3.5rem, 5.2vw, 5.5rem);
    font-weight: 800;

    line-height: 0.95;

    letter-spacing: -3px;

    color: #1c2430;
}


/* ==================================================
   OUR STORY
================================================== */

.our-story {
    padding: 90px 0 110px;
    background: #ffffff;
}

.story-section-heading {
    max-width: none;
    width: 100%;
    margin-bottom: 50px;
}
.story-section-heading .section-label {
    color: var(--blue);
}

.story-section-heading h2 {
    margin: 0;

    font-size: clamp(3rem, 4.2vw, 4.8rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -3px;

    color: #1c2430;
}

/* DARK SENTENCE — ONE LINE */
.story-section-heading h2 .story-line-dark {
    display: block;
    white-space: nowrap;
}

/* BLUE SENTENCE — ONE LINE */
.story-section-heading h2 .story-line-blue {
    display: block;
    white-space: nowrap;
    color: var(--blue);
}

/* GRID */

.story-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;

    gap: 28px;

    align-items: stretch;
}


/* LEFT FEATURE CARD */

.story-feature {
    position: relative;

    min-height: 560px;

    overflow: hidden;

    border-radius: 30px;

    background:
        linear-gradient(
            145deg,
            #0a2f61 0%,
            #123f86 55%,
            #174f9f 100%
        );

    color: #ffffff;
}

.story-feature::after {
    content: "";

    position: absolute;

    width: 360px;
    height: 360px;

    right: -90px;
    bottom: -90px;

    background:
        url("../images/logo/feet.png")
        center / contain no-repeat;

    opacity: 0.10;
}

.story-feature-content {
    position: relative;
    z-index: 2;

    height: 100%;

    padding: 55px;

    display: flex;
    flex-direction: column;
}

.story-kicker {
    margin: 0 0 18px;

    font-size: 0.8rem;
    font-weight: 800;

    letter-spacing: 2px;

    color: var(--yellow);
}

.story-feature h3 {
    margin: 0 0 24px;

    font-size: clamp(2.6rem, 4vw, 4.3rem);
    font-weight: 800;

    line-height: 0.95;
    letter-spacing: -3px;

    color: #ffffff;
}

.story-feature-content > p:not(.story-kicker) {
    max-width: 520px;

    color: rgba(255, 255, 255, 0.78);

    line-height: 1.65;
}


/* YEAR BLOCK */

.story-stat {
    margin-top: auto;

    padding-top: 45px;
}

.story-stat strong {
    display: block;

    font-size: 4rem;
    font-weight: 900;

    line-height: 1;

    color: var(--yellow);
}

.story-stat span {
    display: block;

    margin-top: 8px;

    font-size: 0.9rem;
    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

    color: #ffffff;
}


/* RIGHT COPY CARD */

.story-copy-card {
    padding: 50px 55px;

    border-radius: 30px;

    background: #f7f9fc;

    box-shadow:
        0 15px 40px rgba(12, 36, 70, 0.06);
}

.story-copy-card p {
    margin: 0 0 20px;

    font-size: 1rem;
    line-height: 1.7;

    color: #5f6878;
}

.story-copy-card p:last-child {
    margin-bottom: 0;
}

.story-copy-card .story-closing {
    padding-top: 8px;

    font-weight: 600;

    color: #263447;
}

.story-copy-card .story-closing strong {
    color: var(--blue);
    font-weight: 800;
}

/* ==================================================
   OUR TEAM
================================================== */

.team-section {
    padding: 110px 0;

    background: #f7f9fc;
}

.team-heading {
    max-width: 850px;

    margin-bottom: 55px;
}

.team-heading .section-label {
    color: #174f9f;
}

.team-heading h2 {
    margin: 0 0 20px;

    font-size: clamp(3.5rem, 5vw, 5.5rem);
    font-weight: 800;

    line-height: 0.95;
    letter-spacing: -4px;

    color: #1c2430;
}

.team-heading h2 span {
    color: #174f9f;
}

.team-heading > p:last-child {
    max-width: 700px;

    color: #727b8c;

    font-size: 1.05rem;
    line-height: 1.6;
}


/* TEAM GRID */

.team-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 22px;
}


/* TEAM CARD */

.team-card {
    position: relative;

    overflow: hidden;

    border-radius: 25px;

    background: #ffffff;

    box-shadow:
        0 15px 40px rgba(12, 36, 70, 0.08);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 25px 55px rgba(12, 36, 70, 0.15);
}


/* PHOTO */

.team-photo {
    position: relative;

    width: 100%;
    aspect-ratio: 4 / 5;

    overflow: hidden;

    background: #e9eef5;
}

.team-photo img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center top;

    transition: transform 0.45s ease;
}

.team-card:hover .team-photo img {
    transform: scale(1.04);
}


/* CARD INFORMATION */

.team-info {
    padding: 24px 24px 27px;
}

.team-info h3 {
    margin: 0 0 6px;

    font-size: 1.35rem;
    font-weight: 800;

    color: #073b73;
}

.team-info > p {
    min-height: 42px;

    margin: 0 0 18px;

    font-size: 0.9rem;
    font-weight: 600;

    color: #727b8c;
}

.team-bio-btn {
    padding: 0;

    border: 0;

    background: transparent;

    font-family: inherit;

    font-size: 0.78rem;
    font-weight: 800;

    letter-spacing: 0.08em;

    color: #174f9f;

    cursor: pointer;

    transition: color 0.2s ease;
}

.team-bio-btn:hover {
    color: #ffca28;
}


/* ==================================================
   TEAM BIO MODAL
================================================== */

.team-modal {
    position: fixed;

    inset: 0;

    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 30px;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}

.team-modal.open {
    opacity: 1;
    visibility: visible;
}


/* DARK BACKDROP */

.team-modal-overlay {
    position: absolute;

    inset: 0;

    background: rgba(4, 20, 44, 0.82);

    backdrop-filter: blur(8px);
}


/* MODAL BOX */

.team-modal-box {
    position: relative;
    z-index: 2;

    width: min(1100px, 94vw);
    max-height: 88vh;

    overflow-y: auto;

    border-radius: 32px;

    background: #ffffff;

    box-shadow:
        0 35px 100px rgba(0, 0, 0, 0.35);
}

.team-modal-grid {
    display: grid;

    grid-template-columns: 0.75fr 1.25fr;

    min-height: 600px;
}


/* MODAL PHOTO */

.team-modal-photo {
    min-height: 600px;

    overflow: hidden;

    background: #e9eef5;
}

.team-modal-photo img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center top;
}


/* MODAL COPY */

.team-modal-copy {
    padding: 65px 60px;
}

.team-modal-label {
    margin: 0 0 14px;

    color: #ffca28;

    font-size: 0.8rem;
    font-weight: 800;

    letter-spacing: 0.14em;
}

.team-modal-copy h2 {
    margin: 0 0 7px;

    color: #073b73;

    font-size: clamp(2.5rem, 4vw, 4.2rem);
    font-weight: 800;

    line-height: 0.95;

    letter-spacing: -3px;
}

.team-modal-title {
    margin: 0 0 32px;

    color: #174f9f;

    font-size: 1.05rem;
    font-weight: 700;
}

.team-modal-bio p {
    margin: 0 0 18px;

    color: #5f6878;

    font-size: 1rem;

    line-height: 1.7;
}


/* CLOSE BUTTON */

.team-modal-close {
    position: absolute;

    right: 22px;
    top: 18px;

    z-index: 5;

    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;
    border-radius: 50%;

    background: #073b73;

    color: #ffffff;

    font-size: 1.8rem;
    line-height: 1;

    cursor: pointer;

    transition: 0.2s ease;
}

.team-modal-close:hover {
    background: #ffca28;
    color: #073b73;
}


/* STOP PAGE SCROLL WHEN MODAL OPEN */

body.team-modal-open {
    overflow: hidden;
}


/* ==================================================
   MEET OUR THERAPISTS
================================================== */

.therapists-section {
    padding-top: 100px;
}

.therapists-heading {
    max-width: 850px;
    margin-bottom: 45px;
}

.therapists-heading .section-label {
    color: var(--blue);
}

.therapists-heading h2 {
    margin: 0 0 18px;

    font-size: clamp(3.2rem, 5vw, 5rem);
    font-weight: 800;

    line-height: 0.96;
    letter-spacing: -4px;

    color: #1c2430;
}

.therapists-heading h2 span {
    color: var(--blue);
}

.therapists-heading > p:last-child {
    max-width: 700px;

    margin: 0;

    color: var(--gray);

    font-size: 1rem;
    line-height: 1.65;
}


/* ==================================================
   THERAPIST GRID
================================================== */

.therapists-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 28px;
}


/* ==================================================
   THERAPIST CARD
================================================== */

.therapist-card {
    overflow: hidden;

    border-radius: 28px;

    background: #ffffff;

    box-shadow:
        0 15px 40px rgba(12, 36, 70, 0.08);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.therapist-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 25px 55px rgba(12, 36, 70, 0.14);
}


/* ==================================================
   TWO-PHOTO LAYOUT
================================================== */

.therapist-images {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;

    height: 370px;

    gap: 4px;

    background: #ffffff;
}

.therapist-main-image,
.therapist-secondary-image {
    overflow: hidden;

    background: #e9eef5;
}

.therapist-images img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center top;

    transition: transform 0.4s ease;
}

.therapist-card:hover .therapist-images img {
    transform: scale(1.03);
}


/* ==================================================
   THERAPIST INFORMATION
================================================== */

.therapist-content {
    padding: 32px 34px 36px;
}

.therapist-label {
    margin: 0 0 10px;

    color: var(--blue);

    font-size: 0.72rem;
    font-weight: 800;

    letter-spacing: 1.7px;
}

.therapist-content h3 {
    margin: 0 0 6px;

    color: var(--blue-deep);

    font-size: clamp(1.8rem, 2.5vw, 2.5rem);
    font-weight: 800;

    line-height: 1;

    letter-spacing: -1.5px;
}

.therapist-title {
    margin: 0 0 20px;

    color: var(--blue);

    font-size: 0.92rem;
    font-weight: 700;
}

.therapist-description {
    margin: 0;

    color: var(--gray);

    font-size: 0.95rem;
    line-height: 1.65;
}


/* ==================================================
   REPORT BUTTONS
================================================== */

.about-reports {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 28px;

    width: 100%;

    margin-top: 38px;
}


/* BUTTONS */

.report-button {
    width: 100%;
    min-height: 68px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0 30px;

    border: none;
    border-radius: 18px;

    font-family: inherit;
    font-size: 1rem;
    font-weight: 800;

    cursor: pointer;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


/* FINANCIAL REPORTS */

.report-button-financial {
    background: var(--blue);
    color: #ffffff;
}


/* ANNUAL REPORTS */

.report-button-annual {
    background: var(--yellow);
    color: var(--blue-deep);
}


/* HOVER */

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

.report-button-financial:hover {
    box-shadow:
        0 12px 30px rgba(23, 79, 159, 0.22);
}

.report-button-annual:hover {
    box-shadow:
        0 12px 30px rgba(255, 201, 40, 0.28);
}




/* ==================================================
   MOBILE
================================================== */

@media (max-width: 900px) {

    .about-reports {
        grid-template-columns: 1fr;
    }

}


/* ==================================================
   THERAPISTS RESPONSIVE
================================================== */

@media (max-width: 900px) {

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

}

@media (max-width: 600px) {

    .therapists-section {
        padding-top: 70px;
    }

    .therapists-heading h2 {
        font-size: 3rem;
        letter-spacing: -2px;
    }

    .therapist-images {
        height: 300px;
    }

    .therapist-content {
        padding: 28px 25px 30px;
    }

}



/* ==================================================
   TEAM RESPONSIVE
================================================== */

@media (max-width: 1100px) {

    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}


@media (max-width: 850px) {

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

    .team-modal-grid {
        grid-template-columns: 1fr;
    }

    .team-modal-photo {
        min-height: 400px;
        max-height: 450px;
    }

}


@media (max-width: 560px) {

    .team-section {
        padding: 70px 0;
    }

    .team-heading h2 {
        font-size: 3.2rem;

        letter-spacing: -2px;
    }

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

    .team-modal {
        padding: 15px;
    }

    .team-modal-box {
        border-radius: 24px;
    }

    .team-modal-copy {
        padding: 40px 25px;
    }

}

/* ==================================================
   REPORT MODAL VIEWER
================================================== */

.report-modal-large {
    width: min(1150px, 95vw);
    height: min(900px, 92vh);

    display: flex;
    flex-direction: column;
}


/* YEAR TABS */

.report-tabs {
    display: flex;
    flex-wrap: wrap;

    gap: 10px;

    margin-bottom: 20px;
}

.report-tab {
    min-width: 82px;
    min-height: 42px;

    padding: 0 18px;

    border: 2px solid var(--blue);
    border-radius: 999px;

    background: #ffffff;
    color: var(--blue);

    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 800;

    cursor: pointer;

    transition: 0.2s ease;
}

.report-tab:hover,
.report-tab.active {
    background: var(--blue);
    color: #ffffff;
}


/* VIEWER */

.report-viewer {
    position: relative;

    width: 100%;
    flex: 1;

    min-height: 500px;

    overflow: auto;

    border: 1px solid #dfe5ed;
    border-radius: 18px;

    background: #eef2f7;
}


/* PDFs AND IMAGES HIDDEN BY DEFAULT */

.report-pdf,
.report-image {
    display: none;
}


/* ACTIVE REPORT */

.report-pdf.active,
.report-image.active {
    display: block;
}


/* PDF */

.report-pdf {
    width: 100%;
    height: 100%;

    min-height: 550px;

    border: 0;

    background: #ffffff;
}


/* JPG REPORT */

.report-image {
    width: 100%;
    height: auto;

    margin: 0 auto;

    background: #ffffff;
}


/* OPEN IN NEW WINDOW */

.report-open-file {
    display: inline-flex;

    margin-top: 16px;

    color: var(--blue);

    font-size: 0.82rem;
    font-weight: 800;
}

.report-open-file:hover {
    color: var(--blue-deep);
}


/* ==================================================
   MEDIA
================================================== */

.media-section {
    position: relative;

    overflow: visible;

    background: var(--blue-deep);

    color: var(--white);
}

.media-section::before {
    content: "21";

    position: absolute;
	overflow: visible;

    right: -40px;
    top: -150px;

    font-size: 34rem;
    font-weight: 900;

    line-height: 1;

    color: rgba(255, 255, 255, 0.025);
}

.media-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 1fr 0.85fr;

    gap: 70px;

    align-items: center;
}

.section-label.light {
    color: var(--yellow);
}

.media-copy p {
    color: rgba(255, 255, 255, 0.78);
}

.media-buttons {
    display: flex;
    flex-wrap: wrap;

    gap: 14px;

    margin-top: 28px;
}

.media-feature {
    width: 100%;

    padding: 50px;

    border-radius: 30px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.13),
            rgba(255, 255, 255, 0.04)
        );

    border: 1px solid rgba(255, 255, 255, 0.18);

    backdrop-filter: blur(8px);
}

.media-badge {
    width: 76px;
    height: 76px;

    margin-bottom: 26px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background: var(--yellow);

    color: var(--blue-deep);

    font-weight: 900;
}

.media-feature h3 {
    margin-bottom: 8px;

    font-size: 2rem;
}

.media-feature p {
    margin-bottom: 0;

    color: rgba(255, 255, 255, 0.65);
}


/* ABOUT PAGE MOBILE */

.about-intro {
    padding: 50px 0 25px;
}

.about-intro h1 {
    font-size: 3.2rem;
    letter-spacing: -2px;
}

.our-story {
    padding: 40px 0 70px;
}

.story-card {
    padding: 32px 25px;

    border-radius: 30px;
}

.story-card h2 {
    font-size: 2rem;
}

.story-card p {
    font-size: 0.95rem;
    line-height: 1.55;
}
/* ==================================================
   DONATE
================================================== */

.donate-section {
    padding: 70px 0;

    background: var(--yellow);
}

.donate-inner {
    display: grid;

    grid-template-columns: 1fr auto;

    gap: 50px;

    align-items: center;
}

.donate-inner h2 {
    color: var(--blue-deep);
}

.donate-inner p {
    max-width: 760px;

    margin-bottom: 0;

    color: rgba(10, 47, 97, 0.78);
}


/* ==================================================
   FOOTER
================================================== */

.site-footer {
    background: #071f40;

    color: var(--white);
}

.footer-grid {
    padding: 75px 0;

    display: grid;

    grid-template-columns: 1.4fr repeat(3, 1fr);

    gap: 55px;
}

.footer-logo {
    margin-bottom: 20px;

    font-size: 2rem;
    font-weight: 900;

    line-height: 0.95;

    color: var(--white);
}

.footer-logo span {
    display: block;

    margin-top: 7px;

    color: var(--yellow);

    font-size: 0.75rem;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.footer-brand p {
    max-width: 320px;

    color: rgba(255, 255, 255, 0.62);
}

.footer-column h3 {
    margin-bottom: 18px;

    font-size: 0.82rem;

    color: var(--yellow);

    letter-spacing: 1.6px;

    text-transform: uppercase;
}

.footer-column a,
.footer-column p {
    display: block;

    margin-bottom: 10px;

    color: rgba(255, 255, 255, 0.68);

    font-size: 0.9rem;
}

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

.footer-bottom {
    padding: 20px 0;

    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;

    color: rgba(255, 255, 255, 0.45);

    font-size: 0.8rem;
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 1050px) {

    .main-nav,
    .nav-wrapper > .btn-donate {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;

        margin-left: auto;
    }


    /* HERO */

    .hero {
        min-height: 560px;
    }

    .hero .container {
        width: 90%;
    }

    .hero-copy {
        width: 62%;
    }

    .hero-title-white {
        font-size: clamp(2.8rem, 5.5vw, 4.4rem);
    }

    .hero-title-yellow {
        font-size: clamp(3.2rem, 6vw, 5rem);
    }

    .hero-description {
        margin-top: 52px;

        letter-spacing: 1px;
    }

    .hero::after {
        width: 56%;

        right: -10%;
    }


    /* CONTENT */

    .mission-grid,
    .advocacy-grid,
    .media-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

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

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

        gap: 20px 0;
    }

    .impact-item:nth-child(2) {
        border-right: 0;
    }

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



/* ==================================================
   ABOUT PAGE
================================================== */

.about-hero {
    position: relative;

    min-height: 420px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            #073b73 0%,
            #0b467f 50%,
            #7196ba 100%
        );
}

.about-hero::after {
    content: "";

    position: absolute;

    right: -3%;
    top: -28%;

    width: 520px;
    height: 520px;

    background:
        url("../images/logo/feet.png")
        center / contain no-repeat;

    opacity: 0.13;
}

.about-hero-inner {
    position: relative;
    z-index: 2;
}

.about-hero-copy {
    max-width: 900px;
}

.about-hero-copy .section-label {
    color: var(--yellow);
}

.about-hero h1 {
    margin: 0 0 22px;

    font-size: clamp(4rem, 7vw, 7rem);
    font-weight: 900;

    line-height: 0.9;

    letter-spacing: -5px;

    text-transform: uppercase;

    color: #ffffff;
}

.about-hero h1 span {
    display: block;

    color: var(--yellow);
}

.about-hero-copy > p:last-child {
    max-width: 700px;

    margin-bottom: 0;

    font-size: 1.1rem;

    color: rgba(255, 255, 255, 0.8);
}


/* ABOUT LINK GRID */

.about-links {
    background: #f7f9fc;
}

.about-link-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 26px;
}

.about-link-card {
    position: relative;

    min-height: 310px;

    padding: 42px;

    overflow: hidden;

    border-radius: 26px;

    background: #ffffff;

    box-shadow: 0 12px 35px rgba(17, 24, 39, 0.08);

    transition: 0.25s ease;
}

.about-link-card:hover {
    transform: translateY(-6px);

    box-shadow: 0 22px 50px rgba(17, 24, 39, 0.13);
}

.about-link-number {
    position: absolute;

    right: 28px;
    top: 18px;

    font-size: 4.5rem;
    font-weight: 900;

    color: rgba(23, 79, 159, 0.06);
}

.about-link-content {
    position: relative;
    z-index: 2;
}

.about-link-content h3 {
    margin-bottom: 14px;

    max-width: 520px;

    font-size: clamp(2rem, 3vw, 3.2rem);

    line-height: 1.05;

    letter-spacing: -2px;

    color: var(--blue-deep);
}

.about-link-content p {
    max-width: 560px;

    color: var(--gray);
}

.about-link-arrow {
    display: inline-block;

    margin-top: 20px;

    font-size: 1.5rem;
    font-weight: 800;

    color: var(--blue);

    transition: transform 0.2s ease;
}

.about-link-card:hover .about-link-arrow {
    transform: translateX(6px);
}


/* REMOVE BLUE LINE UNDER ABOUT HEADER */
.about-hero,
.about-header {
    border-bottom: none !important;
}

/* ==================================================
   REPORT BUTTONS
================================================== */

.report-actions {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 18px;

    margin-top: 55px;
}

.report-btn {
    min-width: 235px;
    min-height: 58px;

    padding: 0 30px;

    border: 0;
    border-radius: 999px;

    font-family: "Montserrat", sans-serif;

    font-size: 0.95rem;
    font-weight: 800;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}


/* FINANCIAL = BLUE */

.report-btn-financial {
    background: #174f9f;
    color: #ffffff;
}

.report-btn-financial:hover {
    background: #0a3f80;

    transform: translateY(-3px);

    box-shadow:
        0 12px 25px rgba(23, 79, 159, 0.22);
}


/* ANNUAL = YELLOW */

.report-btn-annual {
    background: #ffca28;
    color: #073b73;
}

.report-btn-annual:hover {
    background: #ffd84f;

    transform: translateY(-3px);

    box-shadow:
        0 12px 25px rgba(255, 202, 40, 0.25);
}


/* ==================================================
   REPORT MODALS
================================================== */

.report-modal {
    position: fixed;

    inset: 0;

    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 30px;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}

.report-modal.open {
    opacity: 1;
    visibility: visible;
}

.report-modal-overlay {
    position: absolute;

    inset: 0;

    background: rgba(4, 20, 44, 0.82);

    backdrop-filter: blur(8px);
}

.report-modal-box {
    position: relative;
    z-index: 2;

    width: min(850px, 94vw);
    max-height: 88vh;

    overflow-y: auto;

    padding: 55px;

    border-radius: 30px;

    background: #ffffff;

    box-shadow:
        0 35px 100px rgba(0, 0, 0, 0.35);
}

.report-modal-label {
    margin: 0 0 14px;

    color: #174f9f;

    font-size: 0.78rem;
    font-weight: 800;

    letter-spacing: 0.14em;
}

.report-modal-box h2 {
    margin: 0 0 15px;

    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 800;

    line-height: 0.95;

    letter-spacing: -3px;

    color: #073b73;
}

.report-modal-intro {
    max-width: 650px;

    margin-bottom: 32px;

    color: #6f7885;

    line-height: 1.7;
}


/* REPORT FILE LIST */

.report-list {
    display: grid;

    gap: 14px;
}

.report-file {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 20px 22px;

    border-radius: 16px;

    background: #f7f9fc;

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.report-file:hover {
    background: #eef3fa;

    transform: translateX(4px);
}

.report-file span {
    color: #1c2430;

    font-weight: 700;
}

.report-file strong {
    color: #174f9f;

    font-size: 0.78rem;

    white-space: nowrap;
}


/* CLOSE BUTTON */

.report-modal-close {
    position: absolute;

    right: 20px;
    top: 18px;

    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;
    border-radius: 50%;

    background: #073b73;

    color: #ffffff;

    font-size: 1.7rem;

    cursor: pointer;
}

.report-modal-close:hover {
    background: #ffca28;
    color: #073b73;
}


/* LOCK PAGE WHEN REPORT MODAL IS OPEN */

body.report-modal-open {
    overflow: hidden;
}

#our-story,
#our-team,
#financial-reports,
#annual-reports {
    scroll-margin-top: 140px;
}


/* ==================================================
   PROGRAMS PAGE
================================================== */

.programs-page {
    background: #ffffff;
}


/* ==================================================
   PROGRAMS INTRO
================================================== */

.programs-intro {
    padding: 80px 0 75px;

    background:
        linear-gradient(
            100deg,
            #073b73 0%,
            #174f9f 55%,
            #7ba0c5 100%
        );

    color: #ffffff;
}

.programs-intro-inner {
    max-width: 1000px;
}

.programs-intro .section-label {
    color: var(--yellow);
}

.programs-intro h1 {
    max-width: 1000px;

    margin: 0 0 25px;

    font-size: clamp(4rem, 6vw, 6.6rem);
    font-weight: 900;

    line-height: 0.92;

    letter-spacing: -5px;

    color: #ffffff;
}

.programs-intro p:last-child {
    max-width: 780px;

    margin-bottom: 0;

    font-size: 1.08rem;

    color: rgba(255,255,255,0.82);
}


/* ==================================================
   PROGRAMS
================================================== */

.programs-main {
    background: #f7f9fc;
}

.programs-section-heading {
    max-width: 900px;

    margin-bottom: 55px;
}

.programs-section-heading h2 {
    margin: 0;

    font-size: clamp(3.3rem, 5vw, 5.2rem);
    font-weight: 800;

    line-height: 0.96;

    letter-spacing: -4px;

    color: #1c2430;
}


/* ==================================================
   CLASSES GRID
================================================== */

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


/* CLASS CARD */

.class-card {
    position: relative;

    min-height: 430px;
    padding: 42px;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    border-radius: 28px;

    background: #ffffff;
    color: #1c2430;

    box-shadow:
        0 15px 40px rgba(12, 36, 70, 0.06);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.class-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 25px 55px rgba(12, 36, 70, 0.12);
}


/* BLUE CARD */

.class-card-blue {
    background: var(--blue-deep);
    color: #ffffff;
}


/* YELLOW CARD */

.class-card-yellow {
    background: var(--yellow);
    color: var(--blue-deep);
}


/* LARGE BACKGROUND NUMBER */

.class-number {
    position: absolute;

    right: 25px;
    top: 15px;

    font-size: 5rem;
    font-weight: 900;
    line-height: 1;

    color: rgba(23, 79, 159, 0.07);
}

.class-card-blue .class-number {
    color: rgba(255, 255, 255, 0.07);
}

.class-card-yellow .class-number {
    color: rgba(7, 59, 115, 0.08);
}


/* CATEGORY */

.class-label {
    position: relative;
    z-index: 2;

    margin: 0 0 18px;

    font-size: 0.72rem;
    font-weight: 800;

    letter-spacing: 1.7px;

    color: var(--blue);
}

.class-card-blue .class-label {
    color: var(--yellow);
}

.class-card-yellow .class-label {
    color: var(--blue-deep);
}


/* TITLE */

.class-card h3 {
    position: relative;
    z-index: 2;

    margin: 0 0 20px;

    font-size: clamp(1.8rem, 2.3vw, 2.6rem);
    font-weight: 800;

    line-height: 1;
    letter-spacing: -2px;

    color: var(--blue-deep);
}

.class-card-blue h3 {
    color: #ffffff;
}

.class-card-yellow h3 {
    color: var(--blue-deep);
}


/* DESCRIPTION */

.class-card > p:not(.class-label) {
    position: relative;
    z-index: 2;

    margin: 0;

    font-size: 0.95rem;
    line-height: 1.65;

    color: var(--gray);
}

.class-card-blue > p:not(.class-label) {
    color: rgba(255, 255, 255, 0.75);
}

.class-card-yellow > p:not(.class-label) {
    color: rgba(7, 59, 115, 0.78);
}


/* LINK */

.class-card a {
    position: relative;
    z-index: 2;

    display: inline-block;

    margin-top: auto;
    padding-top: 30px;

    font-size: 0.8rem;
    font-weight: 800;

    color: var(--blue);
}

.class-card-blue a {
    color: var(--yellow);
}

.class-card-yellow a {
    color: var(--blue-deep);
}

/* ==================================================
   SERVICES
================================================== */

.services-section {
    padding: 105px 0;

    background: #ffffff;
}

.services-heading {
    max-width: 850px;

    margin-bottom: 55px;
}

.services-heading h2 {
    margin: 0 0 18px;

    font-size: clamp(3.2rem, 5vw, 5rem);
    font-weight: 800;

    line-height: 0.98;

    letter-spacing: -4px;

    color: #1c2430;
}

.services-heading > p:last-child {
    max-width: 720px;

    color: var(--gray);
}


/* SERVICE GRID */

.services-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 24px;
}


/* SERVICE CARD */

.service-card {
    position: relative;

    min-height: 410px;

    padding: 42px;

    overflow: hidden;

    border-radius: 28px;

    background: #f7f9fc;

    color: #1c2430;
}

.service-card-blue {
    background: var(--blue-deep);

    color: #ffffff;
}

.service-card-yellow {
    background: var(--yellow);
}


/* NUMBER */

.service-number {
    position: absolute;

    right: 25px;
    top: 15px;

    font-size: 5rem;
    font-weight: 900;

    line-height: 1;

    color: rgba(23, 79, 159, 0.07);
}

.service-card-blue .service-number {
    color: rgba(255,255,255,0.06);
}


/* LABEL */

.service-label {
    margin: 0 0 18px;

    font-size: 0.75rem;
    font-weight: 800;

    letter-spacing: 1.7px;

    color: var(--blue);
}

.service-card-blue .service-label {
    color: var(--yellow);
}


/* TITLE */

.service-card h3 {
    margin: 0 0 20px;

    font-size: clamp(2rem, 2.6vw, 2.8rem);
    font-weight: 800;

    line-height: 1;

    letter-spacing: -2px;
}

.service-card-blue h3 {
    color: #ffffff;
}


/* COPY */

.service-card > p:not(.service-label) {
    color: var(--gray);

    line-height: 1.65;
}

.service-card-blue > p:not(.service-label) {
    color: rgba(255,255,255,0.73);
}

.service-card-yellow > p:not(.service-label) {
    color: rgba(7,59,115,0.78);
}


/* LINK */

.service-card a {
    display: inline-block;

    margin-top: 18px;

    font-size: 0.83rem;
    font-weight: 800;

    color: var(--blue);
}

.service-card-blue a {
    color: var(--yellow);
}

.service-card-yellow a {
    color: var(--blue-deep);
}


/* ==================================================
   IEP ADVOCACY BUTTON
================================================== */

.advocacy-modal-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-top: 0px;

    min-height: 58px;
    padding: 0 30px;

    border: none;
    border-radius: 999px;

    background: #ffc928;
    color: #06376f;

    font-family: inherit;
    font-size: 1rem;
    font-weight: 800;

    cursor: pointer;

    box-shadow: 0 8px 20px rgba(23, 79, 159, 0.18);

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.advocacy-modal-trigger:hover {
    background: #0d376f;
    color: #ffffff;

    transform: translateY(-2px);

    box-shadow: 0 12px 28px rgba(23, 79, 159, 0.28);
}

.advocacy-modal-trigger:focus-visible {
    outline: 3px solid #ffc928;
    outline-offset: 4px;
}

/* ==================================================
   IEP ADVOCACY MODAL
================================================== */

.advocacy-modal {
    position: fixed;

    inset: 0;

    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 30px;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}

.advocacy-modal.open {
    opacity: 1;
    visibility: visible;
}


/* OVERLAY */

.advocacy-modal-overlay {
    position: absolute;

    inset: 0;

    background: rgba(4, 20, 44, 0.84);

    backdrop-filter: blur(8px);
}


/* BOX */

.advocacy-modal-box {
    position: relative;
    z-index: 2;

    width: min(1180px, 95vw);
    max-height: 90vh;

    overflow-y: auto;

    border-radius: 32px;

    background: #ffffff;

    box-shadow:
        0 35px 100px rgba(0, 0, 0, 0.35);
}


/* GRID */

.advocacy-modal-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;

    min-height: 650px;
}


/* IMAGE */

.advocacy-modal-image {
    min-height: 650px;

    overflow: hidden;

    background: #eef2f7;
}

.advocacy-modal-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: 10% top;
}


/* COPY */

.advocacy-modal-content {
    padding: 60px;
}

.advocacy-modal-label {
    margin: 0 0 14px;

    color: var(--blue);

    font-size: 0.78rem;
    font-weight: 800;

    letter-spacing: 0.14em;
}

.advocacy-modal-content h2 {
    margin: 0 0 22px;

    font-size: clamp(2.8rem, 4vw, 4.6rem);
    font-weight: 800;

    line-height: 0.95;

    letter-spacing: -3px;

    color: var(--blue-deep);
}

.advocacy-modal-lead {
    margin-bottom: 28px;

    font-size: 1.08rem;
    font-weight: 600;

    line-height: 1.6;

    color: #4e5c70;
}


/* ASHLEY HIGHLIGHT */

.advocacy-highlight {
    margin: 28px 0;

    padding: 20px 22px;

    border-radius: 16px;

    background: #f7f9fc;
}

.advocacy-highlight strong {
    display: block;

    color: var(--blue-deep);

    font-size: 1.1rem;
}

.advocacy-highlight span {
    display: block;

    margin-top: 3px;

    color: var(--blue);

    font-size: 0.9rem;
    font-weight: 700;
}


/* ELIGIBILITY */

.advocacy-modal-content h3 {
    margin: 30px 0 14px;

    color: var(--blue-deep);

    font-size: 1.35rem;
}

.advocacy-requirements {
    display: grid;

    gap: 12px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.advocacy-requirements li {
    position: relative;

    padding-left: 28px;

    color: var(--gray);

    line-height: 1.55;
}

.advocacy-requirements li::before {
    content: "✓";

    position: absolute;

    left: 0;
    top: 0;

    color: var(--blue);

    font-weight: 900;
}


/* CONTACT */

.advocacy-contact {
    margin-top: 35px;

    padding-top: 28px;

    border-top: 1px solid #e3e8ef;
}

.advocacy-contact p {
    margin-bottom: 12px;

    color: var(--blue-deep);

    font-weight: 700;
}


/* CLOSE */

.advocacy-modal-close {
    position: absolute;

    right: 20px;
    top: 18px;

    z-index: 5;

    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;
    border-radius: 50%;

    background: var(--blue-deep);

    color: #ffffff;

    font-size: 1.8rem;

    cursor: pointer;
}

.advocacy-modal-close:hover {
    background: var(--yellow);
    color: var(--blue-deep);
}


/* LOCK PAGE */

body.advocacy-modal-open {
    overflow: hidden;
}


/* =========================================================
   PARENT PORTAL SECTION
   ========================================================= */

.parent-resources-section {
    padding: 110px 0 120px;
    background: #f4f7fb;
}

.parent-resources-section .container {
    width: min(1320px, calc(100% - 80px));
    margin: 0 auto;
}


/* -------------------------
   SECTION HEADING
------------------------- */

.parent-resources-heading {
    max-width: 950px;
    margin-bottom: 55px;
}

.parent-resources-heading .section-label {
    margin: 0 0 18px;

    color: #174f9f;

    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1.5px;
}

.parent-resources-heading h2 {
    margin: 0 0 24px;

    font-size: clamp(48px, 5vw, 76px);
    font-weight: 800;

    line-height: 0.98;
    letter-spacing: -3px;

    color: #19222e;
}

.parent-resources-heading h2 span {
    color: #174f9f;
}

.parent-resources-heading > p:last-child {
    max-width: 850px;

    margin: 0;

    color: #7b8798;

    font-size: 18px;
    line-height: 1.65;
}


/* =========================================================
   CARD GRID
========================================================= */

.parent-resources-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 28px;
}


/* =========================================================
   RESOURCE CARDS
========================================================= */

.parent-resource-card {
    position: relative;

    min-height: 390px;

    padding: 45px;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    border-radius: 30px;

    background: #ffffff;

    box-shadow:
        0 18px 50px rgba(15, 45, 80, 0.08);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.parent-resource-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 25px 60px rgba(15, 45, 80, 0.13);
}


/* BLUE CARD */

.parent-resource-card.parent-resource-blue {
    background: #073b73;
}


/* YELLOW CARD */

.parent-resource-card.parent-resource-yellow {
    background: #ffd43b;
}


/* =========================================================
   LARGE BACKGROUND NUMBERS
========================================================= */

.parent-resource-number {
    position: absolute;

    top: 24px;
    right: 30px;

    margin: 0;

    color: rgba(7, 59, 115, 0.07);

    font-size: 90px;
    font-weight: 900;

    line-height: 1;

    pointer-events: none;
}

.parent-resource-blue .parent-resource-number {
    color: rgba(255, 255, 255, 0.07);
}

.parent-resource-yellow .parent-resource-number {
    color: rgba(7, 59, 115, 0.09);
}


/* =========================================================
   CARD LABEL
========================================================= */

.parent-resource-label {
    position: relative;
    z-index: 2;

    margin: 0 0 20px;

    color: #174f9f;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.parent-resource-blue .parent-resource-label {
    color: #ffd43b;
}

.parent-resource-yellow .parent-resource-label {
    color: #073b73;
}


/* =========================================================
   CARD HEADINGS
========================================================= */

.parent-resource-card h3 {
    position: relative;
    z-index: 2;

    max-width: 520px;

    margin: 0 0 20px;

    color: #073b73;

    font-size: clamp(32px, 3vw, 46px);
    font-weight: 800;

    line-height: 1;
    letter-spacing: -1.8px;
}

.parent-resource-blue h3 {
    color: #ffffff;
}

.parent-resource-yellow h3 {
    color: #073b73;
}


/* =========================================================
   CARD BODY COPY
========================================================= */

.parent-resource-card > p:not(.parent-resource-label) {
    position: relative;
    z-index: 2;

    max-width: 560px;

    margin: 0 0 30px;

    color: #7b8798;

    font-size: 16px;
    line-height: 1.65;
}

.parent-resource-blue > p:not(.parent-resource-label) {
    color: rgba(255, 255, 255, 0.76);
}

.parent-resource-yellow > p:not(.parent-resource-label) {
    color: rgba(7, 59, 115, 0.78);
}


/* =========================================================
   CARD BUTTONS
========================================================= */

.parent-resource-button {
    position: relative;
    z-index: 3;

    width: fit-content;

    margin-top: auto;
    padding: 15px 23px;

    border: 0;
    border-radius: 999px;

    background: #174f9f;

    color: #ffffff;

    font-family: inherit;
    font-size: 14px;
    font-weight: 800;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.parent-resource-button:hover {
    transform: translateY(-2px);
    background: #073b73;
}


/* BUTTON ON BLUE CARD */

.parent-resource-blue .parent-resource-button {
    background: #ffd43b;
    color: #073b73;
}

.parent-resource-blue .parent-resource-button:hover {
    background: #ffffff;
}


/* BUTTON ON YELLOW CARD */

.parent-resource-yellow .parent-resource-button {
    background: #073b73;
    color: #ffffff;
}

.parent-resource-yellow .parent-resource-button:hover {
    background: #174f9f;
}


body.resource-modal-open {
    overflow: hidden;
}



/* =========================================================
   EVENTS HERO
========================================================= */

.events-hero {
    padding: 120px 0 100px;
    background: #f4f7fb;
}

.events-hero .container,
.upcoming-events-section .container,
.past-events-section .container {
    width: min(1320px, calc(100% - 80px));
    margin: 0 auto;
}

.events-hero .section-label,
.events-section-heading .section-label {
    margin: 0 0 18px;

    color: #1756a9;

    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.7px;
}

.events-hero h1 {
    max-width: 1000px;

    margin: 0;

    color: #17202c;

    font-size: clamp(58px, 7vw, 105px);
    font-weight: 800;

    line-height: .9;
    letter-spacing: -5px;
}

.events-hero h1 span {
    display: block;
    color: #1756a9;
}

.events-hero-copy {
    max-width: 780px;

    margin: 35px 0 0;

    color: #7c8797;

    font-size: 19px;
    line-height: 1.7;
}


/* =========================================================
   SECTION HEADINGS
========================================================= */

.events-section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 50px;

    margin-bottom: 55px;
}

.events-section-heading h2 {
    margin: 0;

    color: #17202c;

    font-size: clamp(52px, 6vw, 82px);
    font-weight: 800;

    line-height: .92;
    letter-spacing: -4px;
}

.events-section-heading h2 span {
    color: #1756a9;
}

.events-section-heading > p {
    max-width: 420px;

    margin: 0 0 5px;

    color: #7c8797;

    font-size: 17px;
    line-height: 1.6;
}


/* =========================================================
   UPCOMING EVENTS
========================================================= */

.upcoming-events-section {
    padding: 110px 0;

    background: #ffffff;
}

.featured-event {
    display: grid;

    grid-template-columns:
        190px
        minmax(0, 1fr)
        270px;

    overflow: hidden;

    border-radius: 32px;

    background: #073b73;

    box-shadow:
        0 30px 70px rgba(7, 59, 115, .18);
}


/* =========================================================
   FEATURED EVENT DATE
========================================================= */

.featured-event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    min-height: 500px;

    padding: 35px 20px;

    background: #ffd43b;

    color: #073b73;
}

.event-month {
    font-size: 18px;
    font-weight: 800;

    letter-spacing: 2px;
}

.featured-event-date strong {
    font-size: 100px;
    font-weight: 900;

    line-height: .9;
    letter-spacing: -6px;
}

.event-year {
    margin-top: 15px;

    font-size: 18px;
    font-weight: 800;
}


/* =========================================================
   FEATURED EVENT CONTENT
========================================================= */

.featured-event-content {
    padding: 65px;
}

.event-eyebrow {
    margin: 0 0 15px;

    color: #1756a9;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1.7px;
}

.featured-event .event-eyebrow {
    color: #ffd43b;
}

.featured-event-content h3 {
    max-width: 650px;

    margin: 0 0 25px;

    color: #ffffff;

    font-size: clamp(42px, 5vw, 68px);
    font-weight: 800;

    line-height: .95;
    letter-spacing: -3px;
}

.featured-event-description {
    max-width: 650px;

    color: rgba(255, 255, 255, .74);

    font-size: 17px;
    line-height: 1.65;
}


/* =========================================================
   EVENT DETAILS
========================================================= */

.event-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 15px;

    margin: 35px 0;
}

.event-detail {
    padding-top: 16px;

    border-top:
        1px solid rgba(255, 255, 255, .2);
}

.event-detail span {
    display: block;

    margin-bottom: 6px;

    color: #ffd43b;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.4px;
}

.event-detail strong {
    color: #ffffff;

    font-size: 14px;
}


/* =========================================================
   UPCOMING EVENT BUTTON
========================================================= */

.event-primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 16px 25px;

    border-radius: 100px;

    background: #ffd43b;

    color: #073b73;

    font-size: 14px;
    font-weight: 800;

    text-decoration: none;

    transition: .2s ease;
	border: 0;
    font-family: inherit;
    cursor: pointer;
}

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

    background: #ffffff;
}


/* =========================================================
   FEATURED EVENT SPONSOR
========================================================= */

.featured-event-accent {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    padding: 45px;

    background: #1756a9;

    color: #ffffff;
}

.featured-event-accent span {
    margin-bottom: 12px;

    color: #ffd43b;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.featured-event-accent strong {
    font-size: 30px;

    line-height: 1.05;
}


/* =========================================================
   PAST EVENTS
========================================================= */

.past-events-section {
    padding: 120px 0;

    background: #f4f7fb;
}

.past-events-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 28px;
}


/* =========================================================
   PAST EVENT CARD
========================================================= */

.past-event-card {
    overflow: hidden;

    border-radius: 28px;

    background: #ffffff;

    box-shadow:
        0 18px 50px rgba(15, 45, 80, .08);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.past-event-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 28px 65px rgba(15, 45, 80, .14);
}


/* =========================================================
   EVENT PHOTO MARQUEE
========================================================= */

.event-marquee {
    position: relative;

    width: 100%;
    height: 330px;

    overflow: hidden;

    background: #073b73;
}


/* MOVING PHOTO STRIP */

.event-marquee-track {
    display: flex;

    width: max-content;
    height: 100%;

    background: #073b73;

    animation: eventMarquee 28s linear infinite;
}


/* INDIVIDUAL PHOTOS */

.event-marquee-track img {
    flex: 0 0 auto;

    width: 250px;
    height: 100%;

    display: block;

    object-fit: contain;
    object-position: center;

    background: #073b73;
}


/* OPTIONAL SMALL SEPARATION BETWEEN PHOTOS */

.event-marquee-track img:not(:last-child) {
    border-right: 3px solid #073b73;
}


/* PAUSE MARQUEE ON HOVER */

.event-marquee:hover .event-marquee-track {
    animation-play-state: paused;
}


/* =========================================================
   MARQUEE ANIMATION
========================================================= */

@keyframes eventMarquee {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}


/* =========================================================
   SINGLE IMAGE EVENT
========================================================= */

.event-marquee-single {
    position: relative;

    width: 100%;
    height: 330px;

    overflow: hidden;

    background: #073b73;
}

.event-marquee-single img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: contain;
    object-position: center;

    background: #073b73;
}


/* =========================================================
   YEAR BADGE
========================================================= */

.event-marquee .past-event-year,
.event-marquee-single .past-event-year {
    position: absolute;

    top: 20px;
    right: 20px;

    z-index: 5;

    padding: 9px 15px;

    border-radius: 999px;

    background: #ffd43b;

    color: #073b73;

    font-size: 12px;
    font-weight: 900;

    box-shadow:
        0 6px 18px rgba(0, 0, 0, .12);
}


/* =========================================================
   PAST EVENT CONTENT
========================================================= */

.past-event-content {
    padding: 38px;
}

.past-event-content h3 {
    margin: 0 0 18px;

    color: #073b73;

    font-size: clamp(30px, 3vw, 43px);
    font-weight: 800;

    line-height: 1;
    letter-spacing: -1.8px;
}

.past-event-content > p:not(.event-eyebrow) {
    margin: 0;

    color: #7c8797;

    font-size: 16px;
    line-height: 1.65;
}


/* =========================================================
   GALA EVENT MODAL
========================================================= */

.gala-modal {
    position: fixed;
    inset: 0;

    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 30px;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity .25s ease,
        visibility .25s ease;
}

.gala-modal.open {
    opacity: 1;
    visibility: visible;
}


/* OVERLAY */

.gala-modal-overlay {
    position: absolute;
    inset: 0;

    background: rgba(3, 25, 52, .88);

    backdrop-filter: blur(8px);
}


/* MODAL BOX */

.gala-modal-box {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);

    width: min(900px, 95vw);
    max-height: 90vh;

    overflow-y: auto;

    border-radius: 30px;

    background: #ffffff;

    box-shadow:
        0 40px 100px rgba(0, 0, 0, .35);
}


/* DATE */

.gala-modal-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    min-height: 520px;

    padding: 30px 20px;

    background: #ffd43b;

    color: #073b73;
}

.gala-modal-date span {
    font-size: 17px;
    font-weight: 900;

    letter-spacing: 2px;
}

.gala-modal-date strong {
    margin: 5px 0;

    font-size: 92px;
    font-weight: 900;

    line-height: .9;

    letter-spacing: -5px;
}


/* CONTENT */

.gala-modal-content {
    padding: 60px;
}

.gala-modal-label {
    margin: 0 0 13px;

    color: #1756a9;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1.8px;
}

.gala-modal-content h2 {
    margin: 0 0 15px;

    color: #17202c;

    font-size: clamp(42px, 5vw, 64px);
    font-weight: 800;

    line-height: .92;
    letter-spacing: -3px;
}

.gala-modal-content h2 span {
    display: block;

    color: #1756a9;
}

.gala-modal-presented {
    margin: 0 0 35px;

    color: #073b73;

    font-size: 15px;
    font-weight: 700;
}


/* EVENT DETAILS */

.gala-modal-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 15px;

    margin-bottom: 30px;
}

.gala-modal-details > div {
    padding-top: 14px;

    border-top: 2px solid #e8edf3;
}

.gala-modal-details span {
    display: block;

    margin-bottom: 7px;

    color: #1756a9;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 1.3px;
}

.gala-modal-details strong {
    color: #073b73;

    font-size: 13px;
    line-height: 1.4;
}


/* DESCRIPTION */

.gala-modal-description {
    max-width: 620px;

    margin: 0 0 30px;

    color: #7c8797;

    font-size: 16px;
    line-height: 1.65;
}


/* TICKET BUTTON */

.gala-ticket-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 17px 26px;

    border-radius: 999px;

    background: #073b73;

    color: #ffffff;

    font-size: 14px;
    font-weight: 800;

    text-decoration: none;

    transition: .2s ease;
}

.gala-ticket-button:hover {
    background: #1756a9;

    transform: translateY(-2px);
}


/* CLOSE BUTTON */

.gala-modal-close {
    position: absolute;

    top: 18px;
    right: 18px;

    z-index: 10;

    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;
    border-radius: 50%;

    background: #073b73;
    color: #ffffff;

    font-size: 25px;

    cursor: pointer;
}


/* LOCK PAGE */

body.gala-modal-open {
    overflow: hidden;
}


/* =========================================================
   SPONSORS HERO
========================================================= */

.sponsors-hero {
    padding: 120px 0 105px;

    background: #f4f7fb;
}

.sponsors-hero .section-label,
.sponsors-heading .section-label,
.sponsor-cta .section-label {
    margin: 0 0 18px;

    color: #1756a9;

    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.7px;
}

.sponsors-hero h1 {
    max-width: 1100px;

    margin: 0;

    color: #17202c;

    font-size: clamp(58px, 7vw, 105px);
    font-weight: 800;

    line-height: .9;
    letter-spacing: -5px;
}

.sponsors-hero h1 span {
    display: block;

    color: #1756a9;
}

.sponsors-hero-copy {
    max-width: 800px;

    margin: 35px 0 0;

    color: #7c8797;

    font-size: 19px;
    line-height: 1.7;
}


/* =========================================================
   SPONSORS SECTION
========================================================= */

.sponsors-section {
    padding: 110px 0 125px;

    background: #ffffff;
}


/* =========================================================
   SPONSORS HEADING
========================================================= */

.sponsors-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 50px;

    margin-bottom: 65px;
}

.sponsors-heading h2 {
    margin: 0;

    color: #17202c;

    font-size: clamp(52px, 6vw, 82px);
    font-weight: 800;

    line-height: .92;
    letter-spacing: -4px;
}

.sponsors-heading h2 span {
    color: #1756a9;
}

.sponsors-heading > p {
    max-width: 430px;

    margin: 0 0 5px;

    color: #7c8797;

    font-size: 17px;
    line-height: 1.6;
}


/* =========================================================
   SPONSOR GRID
========================================================= */

.sponsors-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 24px;
}


/* =========================================================
   SPONSOR CARD
========================================================= */

.sponsor-card {
    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 260px;

    padding: 45px;

    overflow: hidden;

    border:
        1px solid #e4eaf1;

    border-radius: 24px;

    background: #ffffff;

    box-shadow:
        0 15px 45px rgba(15, 45, 80, .06);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}


/* LOGOS */

.sponsor-card img {
    display: block;

    width: 100%;
    max-width: 260px;

    height: 150px;

    object-fit: contain;
    object-position: center;

    transition:
        transform .3s ease;
}


/* HOVER */

.sponsor-card:hover {
    transform: translateY(-6px);

    border-color: #1756a9;

    box-shadow:
        0 25px 60px rgba(15, 45, 80, .13);
}

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


/* =========================================================
   BECOME A SPONSOR CTA
========================================================= */

.sponsor-cta {
    padding: 0 0 120px;

    background: #ffffff;
}

.sponsor-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 70px;

    padding: 70px;

    border-radius: 32px;

    background: #073b73;

    box-shadow:
        0 30px 70px rgba(7, 59, 115, .18);
}

.sponsor-cta .section-label {
    color: #ffd43b;
}

.sponsor-cta-copy {
    max-width: 750px;
}

.sponsor-cta-copy h2 {
    margin: 0 0 25px;

    color: #ffffff;

    font-size: clamp(48px, 5vw, 72px);
    font-weight: 800;

    line-height: .92;
    letter-spacing: -3px;
}

.sponsor-cta-copy h2 span {
    color: #ffd43b;
}

.sponsor-cta-copy > p:last-child {
    max-width: 680px;

    margin: 0;

    color: rgba(255,255,255,.72);

    font-size: 17px;
    line-height: 1.7;
}


/* CTA BUTTON */

.sponsor-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    white-space: nowrap;

    padding: 18px 30px;

    border-radius: 100px;

    background: #ffd43b;

    color: #073b73;

    font-size: 14px;
    font-weight: 800;

    text-decoration: none;

    transition:
        transform .2s ease,
        background .2s ease;
}

.sponsor-cta-button:hover {
    transform: translateY(-3px);

    background: #ffffff;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

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

    .sponsors-heading {
        align-items: flex-start;
        flex-direction: column;

        gap: 25px;
    }

    .sponsor-cta-box {
        align-items: flex-start;
        flex-direction: column;

        gap: 35px;

        padding: 55px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .sponsors-hero {
        padding: 80px 0 70px;
    }

    .sponsors-hero h1 {
        font-size: 54px;

        letter-spacing: -3px;
    }

    .sponsors-section {
        padding: 75px 0;
    }

    .sponsors-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .sponsor-card {
        min-height: 220px;

        padding: 35px;
    }

    .sponsor-card img {
        max-width: 240px;

        height: 135px;
    }

    .sponsor-cta {
        padding-bottom: 80px;
    }

    .sponsor-cta-box {
        padding: 40px 30px;

        border-radius: 24px;
    }

}


/* MOBILE */

@media (max-width: 700px) {

    .gala-modal {
        padding: 15px;
    }

    .gala-modal-box {
        display: block;
    }

    .gala-modal-date {
        min-height: auto;

        flex-direction: row;

        gap: 12px;

        padding: 22px;
    }

    .gala-modal-date strong {
        font-size: 45px;

        letter-spacing: -2px;
    }

    .gala-modal-content {
        padding: 40px 25px 30px;
    }

    .gala-modal-details {
        grid-template-columns: 1fr;
    }

}

/* =========================================================
   MULTIPLE UPCOMING EVENTS
========================================================= */

.upcoming-event-card {
    margin-bottom: 38px;
}

.upcoming-event-card:last-child {
    margin-bottom: 0;
}



/* =========================================================
   EVENT FLYER MODAL
========================================================= */

.flyer-modal {
    position: fixed;
    inset: 0;

    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 30px;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity .25s ease,
        visibility .25s ease;
}

.flyer-modal.open {
    opacity: 1;
    visibility: visible;
}


/* DARK BACKGROUND */

.flyer-modal-overlay {
    position: absolute;
    inset: 0;

    background: rgba(3, 25, 52, .92);

    backdrop-filter: blur(9px);
}


/* FLYER CONTAINER */

.flyer-modal-box {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;

    width: auto;
    max-width: min(700px, 92vw);

    max-height: 92vh;

    overflow: hidden;

    border-radius: 24px;

    background: #073b73;

    box-shadow:
        0 35px 100px rgba(0, 0, 0, .45);
}


/* FLYER */

.flyer-modal-box img {
    display: block;

    width: auto;
    max-width: 100%;

    height: auto;
    max-height: 90vh;

    object-fit: contain;
}


/* CLOSE BUTTON */

.flyer-modal-close {
    position: absolute;

    top: 15px;
    right: 15px;

    z-index: 5;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 46px;
    height: 46px;

    padding: 0;

    border: 0;
    border-radius: 50%;

    background: #ffd43b;

    color: #073b73;

    font-family: inherit;
    font-size: 28px;
    font-weight: 800;

    line-height: 1;

    cursor: pointer;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, .25);

    transition:
        transform .2s ease,
        background .2s ease;
}

.flyer-modal-close:hover {
    transform: scale(1.07);

    background: #ffffff;
}


/* PREVENT PAGE SCROLL */

body.flyer-modal-open {
    overflow: hidden;
}


/* MOBILE */

@media (max-width: 600px) {

    .flyer-modal {
        padding: 15px;
    }

    .flyer-modal-box {
        max-width: 100%;
        max-height: 94vh;

        border-radius: 18px;
    }

    .flyer-modal-box img {
        max-height: 94vh;
    }

    .flyer-modal-close {
        width: 42px;
        height: 42px;

        top: 10px;
        right: 10px;
    }

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

    .featured-event {
        grid-template-columns:
            150px
            minmax(0, 1fr);
    }

    .featured-event-accent {
        grid-column: 1 / -1;
    }

}


@media (max-width: 800px) {

    .events-hero .container,
    .upcoming-events-section .container,
    .past-events-section .container {
        width: calc(100% - 40px);
    }

    .events-section-heading {
        display: block;
    }

    .events-section-heading > p {
        margin-top: 25px;
    }

    .past-events-grid {
        grid-template-columns: 1fr;
    }

    .event-details {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 600px) {

    .events-hero {
        padding: 80px 0 70px;
    }

    .events-hero h1 {
        font-size: 52px;

        letter-spacing: -3px;
    }

    .featured-event {
        display: block;
    }

    .featured-event-date {
        min-height: auto;

        flex-direction: row;

        gap: 12px;

        padding: 25px;
    }

    .featured-event-date strong {
        font-size: 45px;

        letter-spacing: -2px;
    }

    .event-year {
        margin: 0;
    }

    .featured-event-content {
        padding: 38px 28px;
    }

    .event-marquee,
    .event-marquee-single {
        height: 280px;
    }

    .event-marquee-track img {
        width: 220px;
    }

    .past-event-content {
        padding: 30px 26px;
    }

}


/* =========================================================
   MEDIA HERO
========================================================= */

.media-hero {
    padding: 120px 0 105px;
    background: #f4f7fb;
}

.media-hero .section-label,
.media-heading .section-label {
    margin: 0 0 18px;

    color: #1756a9;

    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.7px;
}

.media-hero h1 {
    max-width: 1100px;

    margin: 0;

    color: #17202c;

    font-size: clamp(58px, 7vw, 105px);
    font-weight: 800;

    line-height: .9;
    letter-spacing: -5px;
}

.media-hero h1 span {
    display: block;

    color: #1756a9;
}

.media-hero-copy {
    max-width: 800px;

    margin: 35px 0 0;

    color: #7c8797;

    font-size: 19px;
    line-height: 1.7;
}


/* =========================================================
   MEDIA PAGE
========================================================= */

.media-page-section {
    padding: 110px 0 125px;
    background: #ffffff;
}

.media-page-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}
/* =========================================================
   MEDIA HEADING
========================================================= */

.media-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 50px;

    margin-bottom: 65px;
}

.media-heading h2 {
    margin: 0;

    color: #17202c;

    font-size: clamp(52px, 6vw, 82px);
    font-weight: 800;

    line-height: .92;
    letter-spacing: -4px;
}

.media-heading h2 span {
    color: #1756a9;
}

.media-heading > p {
    max-width: 430px;

    margin: 0 0 5px;

    color: #7c8797;

    font-size: 17px;
    line-height: 1.6;
}


/* =========================================================
   MEDIA GRID
========================================================= */

.media-page-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 24px;
}


/* =========================================================
   MEDIA CARD
========================================================= */

.media-card {
    overflow: hidden;

    border:
        1px solid #e4eaf1;

    border-radius: 24px;

    background: #073b73;

    box-shadow:
        0 15px 45px rgba(15, 45, 80, .08);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.media-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 25px 60px rgba(15, 45, 80, .15);
}


/* =========================================================
   VIDEO
========================================================= */

.media-video {
    position: relative;

    width: 100%;
    aspect-ratio: 16 / 9;

    overflow: hidden;

    background: #073b73;
}

.media-video iframe {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    border: 0;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

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

    .media-heading {
        align-items: flex-start;
        flex-direction: column;

        gap: 25px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .media-hero {
        padding: 80px 0 70px;
    }

    .media-hero h1 {
        font-size: 54px;

        letter-spacing: -3px;
    }

    .media-section {
        padding: 75px 0;
    }

    .media-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }

}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 1000px) {

    .featured-event {
        grid-template-columns: 150px 1fr;
    }

    .featured-event-accent {
        grid-column: 1 / -1;
    }

}


@media (max-width: 800px) {

    .events-hero .container,
    .upcoming-events-section .container,
    .past-events-section .container {
        width: calc(100% - 40px);
    }

    .events-section-heading {
        display: block;
    }

    .events-section-heading > p {
        margin-top: 25px;
    }

    .past-events-grid {
        grid-template-columns: 1fr;
    }

    .event-details {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 600px) {

    .events-hero {
        padding: 80px 0 70px;
    }

    .events-hero h1 {
        font-size: 52px;
        letter-spacing: -3px;
    }

    .featured-event {
        display: block;
    }

    .featured-event-date {
        min-height: auto;

        flex-direction: row;

        gap: 12px;

        padding: 25px;
    }

    .featured-event-date strong {
        font-size: 45px;
        letter-spacing: -2px;
    }

    .event-year {
        margin: 0;
    }

    .featured-event-content {
        padding: 38px 28px;
    }

    .past-event-image {
        height: 270px;
    }

}







/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .parent-resources-section .container {
        width: min(100% - 40px, 1320px);
    }

    .parent-resources-grid {
        grid-template-columns: 1fr;
    }

    .parent-resource-card {
        min-height: 350px;
    }

}


@media (max-width: 600px) {

    .parent-resources-section {
        padding: 75px 0 85px;
    }

    .parent-resources-section .container {
        width: calc(100% - 30px);
    }

    .parent-resources-heading {
        margin-bottom: 40px;
    }

    .parent-resources-heading h2 {
        font-size: 44px;
        letter-spacing: -2px;
    }

    .parent-resources-heading > p:last-child {
        font-size: 16px;
    }

    .parent-resource-card {
        min-height: 330px;
        padding: 32px 28px;

        border-radius: 24px;
    }

    .parent-resource-card h3 {
        font-size: 34px;
    }

    .parent-resource-number {
        font-size: 70px;
    }

}



/* ==================================================
   RESOURCE MODAL CONTENT
================================================== */

.resource-modal {
    position: fixed;
    inset: 0;

    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 30px;

    opacity: 0;
    visibility: hidden;

    transition: 0.25s ease;
}

.resource-modal.open {
    opacity: 1;
    visibility: visible;
}

.resource-modal-overlay {
    position: absolute;
    inset: 0;

    background: rgba(4, 20, 44, 0.84);

    backdrop-filter: blur(8px);
}

.resource-modal-box {
    position: relative;
    z-index: 2;

    width: min(900px, 95vw);
    max-height: 90vh;

    overflow-y: auto;

    padding: 55px;

    border-radius: 30px;

    background: #ffffff;

    box-shadow:
        0 35px 100px rgba(0, 0, 0, 0.35);
}

.resource-modal-large {
    width: min(1150px, 95vw);
}

.resource-modal-label {
    margin: 0 0 12px;

    color: var(--blue);

    font-size: 0.75rem;
    font-weight: 800;

    letter-spacing: 1.8px;
}

.resource-modal-box > h2 {
    margin: 0 0 18px;

    font-size: clamp(2.8rem, 4vw, 4.4rem);
    font-weight: 800;

    line-height: 0.96;
    letter-spacing: -3px;

    color: var(--blue-deep);
}

.resource-modal-intro {
    max-width: 700px;

    margin-bottom: 32px;

    color: var(--gray);

    line-height: 1.65;
}


/* CLOSE BUTTON */

.resource-modal-close {
    position: absolute;

    right: 20px;
    top: 18px;

    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;
    border-radius: 50%;

    background: var(--blue-deep);
    color: #ffffff;

    font-size: 1.7rem;

    cursor: pointer;
}


/* ==================================================
   HELPFUL LINKS
================================================== */

.resource-link-list {
    display: grid;
    gap: 13px;
}

.resource-link-list a {
    min-height: 70px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 16px 20px;

    border-radius: 15px;

    background: #f7f9fc;

    transition: 0.2s ease;
}

.resource-link-list a:hover {
    background: #edf3fa;

    transform: translateX(4px);
}

.resource-name {
    color: var(--blue-deep);

    font-weight: 700;
}

.resource-link-list strong {
    color: var(--blue);

    font-size: 0.72rem;

    white-space: nowrap;
}


/* ==================================================
   MEDICAL PROVIDERS
================================================== */

.provider-county {
    margin-top: 38px;
}

.provider-county h3 {
    margin-bottom: 20px;

    font-size: 1.8rem;

    color: var(--blue-deep);
}

.provider-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 16px;
}

.provider-card {
    padding: 24px;

    border-radius: 18px;

    background: #f7f9fc;
}

.provider-specialty {
    margin: 0 0 8px;

    color: var(--blue);

    font-size: 0.7rem;
    font-weight: 800;

    letter-spacing: 1.2px;
}

.provider-card h4 {
    margin: 0 0 10px;

    color: var(--blue-deep);

    font-size: 1.25rem;
}

.provider-card p {
    color: var(--gray);
}

.provider-card a {
    color: var(--blue);

    font-size: 0.82rem;
    font-weight: 700;
}


/* ==================================================
   AWARENESS
================================================== */

.awareness-mission {
    margin: 30px 0;

    padding: 35px;

    border-radius: 24px;

    background: var(--blue-deep);
}

.awareness-small {
    margin-bottom: 18px;

    color: var(--yellow);

    font-size: 0.75rem;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.awareness-mission h3 {
    margin: 0 0 12px;

    color: #ffffff;

    font-size: 1.4rem;
    line-height: 1.25;
}


/* ==================================================
   SCHOOLS
================================================== */

.school-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 18px;

    margin-top: 30px;
}

.school-card {
    padding: 28px;

    border-radius: 20px;

    background: #f7f9fc;
}

.school-type {
    margin-bottom: 10px;

    color: var(--blue);

    font-size: 0.7rem;
    font-weight: 800;

    letter-spacing: 1.3px;
}

.school-card h3 {
    margin-bottom: 15px;

    color: var(--blue-deep);

    font-size: 1.4rem;
    line-height: 1.1;
}

.school-card p {
    color: var(--gray);

    font-size: 0.9rem;
}

.school-card a {
    color: var(--blue);

    font-size: 0.82rem;
    font-weight: 700;
}

/* =========================================================
   MEDIA CARD TITLE AREA
========================================================= */

.media-card {
    display: flex;
    flex-direction: column;

    overflow: hidden;

    border-radius: 24px;

    background: #ffffff;

    box-shadow:
        0 15px 40px rgba(15, 45, 80, .08);
}


/* VIDEO / THUMBNAIL */

.media-video {
    flex-shrink: 0;
}


/* CONTENT UNDER VIDEO */

.media-card-content {
    flex: 1;

    padding: 23px 25px 27px;

    background: #ffffff;
}


/* MEDIA SOURCE */

.media-source {
    margin: 0 0 8px;

    color: #1756a9;

    font-size: 11px;
    font-weight: 800;

    line-height: 1.2;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


/* TITLE */

.media-card-content h3 {
    margin: 0;

    color: #073b73;

    font-size: 19px;
    font-weight: 800;

    line-height: 1.3;
}


/* EXTERNAL CARD LINKS */

.media-news-link {
    display: block;

    color: inherit;
    text-decoration: none;
}


/* SUBTLE HOVER */

.media-card {
    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.media-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 24px 55px rgba(15, 45, 80, .14);
}


/* =========================================================
   FOOTER LAYOUT
========================================================= */

.footer-grid {
    display: grid;

    grid-template-columns:
        1.1fr
        1fr
        .8fr;

    align-items: center;

    gap: 80px;
}


/* =========================================================
   FOOTER FEET
========================================================= */

.footer-feet {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.footer-feet img {
    display: block;

    width: 190px;
    max-width: 100%;
    height: auto;

    object-fit: contain;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 900px) {

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .footer-feet {
        justify-content: flex-start;
    }

    .footer-feet img {
        width: 150px;
    }

}


/* MOBILE */

@media (max-width: 850px) {

    .provider-grid,
    .school-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 600px) {

    .resource-modal {
        padding: 15px;
    }

    .resource-modal-box {
        padding: 45px 24px 30px;
    }

    .resource-link-list a {
        align-items: flex-start;
        flex-direction: column;
    }

}


/* ==================================================
   PROGRAMS RESPONSIVE
================================================== */

@media (max-width: 1000px) {

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

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

    .service-card {
        min-height: auto;
    }

}


@media (max-width: 720px) {

    .programs-intro {
        padding: 60px 0;
    }

    .programs-intro h1 {
        font-size: clamp(3rem, 13vw, 4.8rem);

        letter-spacing: -3px;
    }

    .programs-section-heading h2,
    .services-heading h2 {
        font-size: 3rem;

        letter-spacing: -2px;
    }

    .program-feature-content {
        padding: 28px 25px 32px;
    }

    .program-feature-content > p:not(.program-category) {
        min-height: auto;
    }

    .service-card {
        padding: 35px 28px;
    }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 720px) {

    .section {
        padding: 70px 0;
    }


    /* HEADER */

    .top-bar-inner {
        justify-content: center;

        text-align: center;
    }

    .top-links {
        display: none;
    }

    .nav-wrapper {
        min-height: 74px;
    }

    .main-logo {
        height: 56px;
    }


    /* HERO */

    .hero {
        min-height: 680px;

        padding: 58px 0 0;

        align-items: flex-start;

        background:
            linear-gradient(
                180deg,
                #073b73 0%,
                #0b467f 58%,
                #426f9d 76%,
                #9bb2c9 100%
            );
    }

    .hero .container {
        width: 90%;
    }

    .hero-copy {
        width: 100%;
        max-width: 100%;
    }

    .hero-eyebrow {
        font-size: 0.68rem;

        letter-spacing: 1.7px;
    }

    .hero-title {
        letter-spacing: -2px;
    }

    .hero-title-white {
        font-size: clamp(2.3rem, 10vw, 3.7rem);

        letter-spacing: -2px;
    }

    .hero-title-yellow {
        margin-top: 12px;

        font-size: clamp(2.8rem, 12vw, 4.3rem);

        letter-spacing: -2px;
    }

    .hero-description {
        width: 100%;
        max-width: 100%;

        margin-top: 34px;

        font-size: 0.86rem;

        line-height: 1.5;

        letter-spacing: 0.4px;
    }

    .hero-buttons {
        gap: 10px;

        margin-top: 25px;
    }

    .hero .btn {
        min-height: 48px;

        padding: 0 20px;

        font-size: 0.8rem;
    }

    .hero::after {
        width: 90%;
        height: 42%;

        top: auto;
        right: -18%;
        bottom: -3%;

        background-position: right bottom;

        opacity: 0.42;
    }


    /* MISSION */

    .mission-grid {
        gap: 30px;
    }


    /* IMPACT */

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

    .impact-item {
        padding: 15px 10px;
    }


    /* PROGRAMS */

    .program-card-grid {
        grid-template-columns: 1fr;
    }

    .program-card-content p {
        min-height: auto;
    }


    /* SECTION HEADING */

    .split-heading {
        align-items: start;

        flex-direction: column;
    }


    /* EVENTS */

    .event-feature {
        padding: 36px 25px;

        grid-template-columns: 1fr;
    }

    .event-date {
        width: 110px;
        height: 110px;
    }

    .event-info h3 {
        font-size: 2rem;
    }


    /* DONATE */

    .donate-inner {
        grid-template-columns: 1fr;

        gap: 25px;
    }


    /* FOOTER */

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }
}

@media (max-width: 1050px) {

    .about-link-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {

    .about-hero {
        min-height: 360px;
    }

    .about-hero h1 {
        font-size: clamp(3rem, 14vw, 5rem);
        letter-spacing: -3px;
    }

    .about-link-card {
        min-height: auto;
        padding: 32px 24px;
    }
}
/* ==================================================
   SMALL MOBILE
================================================== */

@media (max-width: 480px) {

    .hero {
        min-height: 650px;
    }

    .hero-title-white {
        font-size: clamp(2rem, 9.5vw, 3rem);
    }

    .hero-title-yellow {
        font-size: clamp(2.45rem, 11vw, 3.6rem);
    }

    .hero-description {
        margin-top: 28px;
    }

    .hero-buttons {
        flex-direction: column;

        align-items: flex-start;
    }

    .hero .btn {
        width: 100%;
        max-width: 280px;
    }

    .hero::after {
        width: 100%;

        right: -26%;

        opacity: 0.35;
    }
}


@media (max-width: 900px) {

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

    .story-feature {
        min-height: 420px;
    }

}

@media (max-width: 560px) {

    .our-story {
        padding: 70px 0;
    }

    .story-section-heading h2 {
        font-size: 3rem;
        letter-spacing: -2px;
    }

    .story-feature-content,
    .story-copy-card {
        padding: 32px 26px;
    }

    .story-feature h3 {
        font-size: 2.7rem;
    }

}

@media (max-width: 800px) {

    .advocacy-modal {
        padding: 15px;
    }

    .advocacy-modal-grid {
        grid-template-columns: 1fr;
    }

    .advocacy-modal-image {
        min-height: 350px;
        max-height: 420px;
    }

    .advocacy-modal-content {
        padding: 40px 28px;
    }

    .advocacy-modal-content h2 {
        font-size: 3rem;
        letter-spacing: -2px;
    }

}

/* =========================================================
   GLOBAL MOBILE FIXES
========================================================= */

@media (max-width: 768px) {

    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    * {
        box-sizing: border-box;
    }

    img,
    video,
    iframe {
        max-width: 100%;
    }

    .container {
        width: calc(100% - 30px) !important;
        max-width: none !important;

        margin-left: auto !important;
        margin-right: auto !important;
    }


    /* =====================================================
       TOP BAR
    ===================================================== */

    .top-bar-inner {
        min-height: 44px;

        display: flex;
        align-items: center;
        justify-content: space-between;

        gap: 10px;
    }

    .top-bar-message {
        max-width: 68%;

        font-size: 10px;
        line-height: 1.25;
    }

    .top-bar-member {
        font-size: 10px;
        white-space: nowrap;
    }


    /* =====================================================
       HEADER / NAV
    ===================================================== */

    .nav-wrapper {
        min-height: 78px;
    }

    .main-logo {
        width: auto;
        height: 58px;
        max-width: 220px;
    }

    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;

        gap: 5px;

        width: 42px;
        height: 42px;

        padding: 8px;

        border: 0;

        background: transparent;

        cursor: pointer;
    }

    .mobile-menu-toggle span {
        display: block;

        width: 100%;
        height: 2px;

        background: #073b73;
    }


    /* =====================================================
       TYPOGRAPHY
    ===================================================== */

    h1,
    .hero h1,
    .events-hero h1,
    .sponsors-hero h1,
    .media-hero h1 {
        font-size: clamp(42px, 12vw, 58px) !important;

        line-height: .96 !important;
        letter-spacing: -2.5px !important;
    }

    h2,
    .events-section-heading h2,
    .sponsors-heading h2,
    .media-heading h2,
    .parent-resources-heading h2 {
        font-size: clamp(36px, 10vw, 48px) !important;

        line-height: .98 !important;
        letter-spacing: -2px !important;
    }

    p {
        max-width: 100%;

        font-size: 15px;
        line-height: 1.6;
    }


    /* =====================================================
       HERO SECTIONS
    ===================================================== */

    .hero,
    .events-hero,
    .sponsors-hero,
    .media-hero {
        padding-top: 70px !important;
        padding-bottom: 70px !important;
    }


    /* =====================================================
       GRIDS - FORCE SINGLE COLUMN
    ===================================================== */

    .media-grid,
    .media-page-grid,
    .past-events-grid,
    .sponsors-grid,
    .parent-resources-grid,
    .provider-grid,
    .school-grid,
    .therapists-grid,
    .team-grid {
        grid-template-columns: 1fr !important;
    }


    /* =====================================================
       HOMEPAGE MEDIA / OUR VOICE
    ===================================================== */

    .media-section {
        overflow: hidden;
    }

    .media-section::before {
        right: -80px;
        top: -40px;

        font-size: 16rem;
    }

    .media-grid {
        display: grid;

        grid-template-columns: 1fr !important;

        gap: 35px;
    }

    .media-feature {
        width: 100%;

        padding: 30px 24px;
    }

    .media-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .media-buttons a,
    .media-buttons button {
        width: 100%;
        justify-content: center;
    }


    /* =====================================================
       UPCOMING EVENT CARDS
    ===================================================== */

    .featured-event {
        display: block !important;

        width: 100%;

        border-radius: 24px;
    }

    .featured-event-date {
        min-height: auto !important;

        flex-direction: row !important;

        justify-content: flex-start !important;

        gap: 12px;

        padding: 22px 24px !important;
    }

    .featured-event-date strong {
        font-size: 46px !important;

        letter-spacing: -2px !important;
    }

    .event-month,
    .event-year {
        margin: 0 !important;
    }

    .featured-event-content {
        padding: 32px 24px !important;
    }

    .featured-event-content h3 {
        font-size: 38px !important;

        letter-spacing: -2px !important;
    }

    .event-details {
        grid-template-columns: 1fr !important;

        gap: 14px;
    }

    .featured-event-accent {
        padding: 28px 24px !important;
    }


    /* =====================================================
       PAST EVENT MARQUEES
    ===================================================== */

    .event-marquee,
    .event-marquee-single {
        height: 240px !important;
    }

    .event-marquee-track img {
        width: 190px !important;
    }


    /* =====================================================
       SPONSORS
    ===================================================== */

    .sponsors-heading,
    .media-heading,
    .events-section-heading {
        display: block !important;
    }

    .sponsors-heading > p,
    .media-heading > p,
    .events-section-heading > p {
        margin-top: 22px !important;
    }

    .sponsor-card {
        min-height: 180px !important;

        padding: 28px !important;
    }

    .sponsor-card img {
        max-width: 220px !important;

        height: 120px !important;
    }

    .sponsor-cta-box {
        flex-direction: column !important;
        align-items: flex-start !important;

        gap: 30px;

        padding: 38px 26px !important;
    }


    /* =====================================================
       MEDIA PAGE
    ===================================================== */

    .media-card {
        width: 100%;
    }

    .media-card-content {
        padding: 20px 20px 24px !important;
    }

    .media-card-content h3 {
        font-size: 18px !important;
    }


    /* =====================================================
       MODALS
    ===================================================== */

    .resource-modal,
    .advocacy-modal,
    .gala-modal,
    .flyer-modal,
    .report-modal {
        padding: 12px !important;
    }

    .resource-modal-box,
    .advocacy-modal-box,
    .gala-modal-box,
    .report-modal-box {
        width: 100% !important;
        max-width: 100% !important;

        max-height: 92vh !important;

        border-radius: 20px !important;
    }

    .resource-modal-box,
    .report-modal-box {
        padding: 42px 20px 24px !important;
    }

    .advocacy-modal-grid {
        grid-template-columns: 1fr !important;
    }

    .advocacy-modal-image {
        min-height: 300px !important;
        max-height: 360px;
    }

    .advocacy-modal-content {
        padding: 32px 22px !important;
    }

    .gala-modal-box {
        display: block !important;
    }

    .gala-modal-date {
        min-height: auto !important;

        flex-direction: row !important;

        gap: 12px;

        padding: 20px !important;
    }

    .gala-modal-content {
        padding: 34px 22px !important;
    }

    .gala-modal-details {
        grid-template-columns: 1fr !important;
    }


    /* =====================================================
       FOOTER
    ===================================================== */

    .footer-grid {
        grid-template-columns: 1fr !important;

        gap: 35px !important;
    }

    .footer-feet {
        justify-content: flex-start !important;
    }

}

/* =========================================================
   MOBILE NAVIGATION
========================================================= */

@media (max-width: 900px) {

    .nav-wrapper {
        position: relative;

        display: flex;
        align-items: center;
        justify-content: space-between;
    }


    /* HAMBURGER */

    .mobile-menu-toggle {
        position: relative;
        z-index: 10002;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        width: 44px;
        height: 44px;

        gap: 6px;

        padding: 8px;

        border: 0;

        background: transparent;

        cursor: pointer;
    }

    .mobile-menu-toggle span {
        display: block;

        width: 26px;
        height: 2px;

        border-radius: 2px;

        background: #073b73;

        transition:
            transform .25s ease,
            opacity .25s ease;
    }


    /* TURN HAMBURGER INTO X */

    .mobile-menu-toggle.active span:nth-child(1) {
        transform:
            translateY(8px)
            rotate(45deg);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform:
            translateY(-8px)
            rotate(-45deg);
    }


    /* =====================================================
       MOBILE MENU
    ===================================================== */

    .main-nav {
        position: absolute;

        top: 100%;
        left: 0;
        right: 0;

        z-index: 10000;

        display: block;

        width: 100%;

        max-height: 0;

        overflow: hidden;

        margin: 0;

        background: #ffffff;

        box-shadow:
            0 20px 35px rgba(7, 59, 115, .14);

        opacity: 0;

        visibility: hidden;

        transition:
            max-height .35s ease,
            opacity .25s ease,
            visibility .25s ease;
    }


    /* OPEN MENU */

    .main-nav.mobile-open {
        max-height: 85vh;

        overflow-y: auto;

        opacity: 1;

        visibility: visible;
    }


    /* MAIN LIST */

    .main-nav > ul {
        display: block;

        width: 100%;

        margin: 0;
        padding: 12px 20px 22px;

        list-style: none;
    }

    .main-nav > ul > li {
        display: block;

        width: 100%;

        border-bottom:
            1px solid #e8edf3;
    }

    .main-nav > ul > li:last-child {
        border-bottom: 0;
    }


    /* MAIN LINKS */

    .main-nav > ul > li > a {
        display: flex;
        align-items: center;
        justify-content: space-between;

        width: 100%;

        padding: 17px 4px;

        color: #073b73;

        font-size: 17px;
        font-weight: 800;

        text-decoration: none;
    }


    /* =====================================================
       MOBILE DROPDOWNS
    ===================================================== */

    .main-nav .dropdown {
        position: static;

        display: none;

        width: 100%;
        min-width: 0;

        margin: 0;
        padding: 0 0 12px 15px;

        border-radius: 0;

        background: transparent;

        box-shadow: none;

        opacity: 1;
        visibility: visible;

        transform: none;
    }


    /* SHOW DROPDOWN */

    .main-nav
    .has-dropdown.mobile-dropdown-open
    > .dropdown {

        display: block;
    }


    /* DROPDOWN LINKS */

    .main-nav .dropdown li a {
        display: block;

        padding: 11px 8px;

        color: #1756a9;

        font-size: 14px;
        font-weight: 700;

        text-decoration: none;
    }


    /* STOP DESKTOP HOVER FROM FORCING IT OPEN */

    .main-nav
    .has-dropdown:hover
    > .dropdown {

        opacity: 1;
        visibility: visible;
        transform: none;
    }


    /* LOCK PAGE WHEN OPEN */

    body.mobile-menu-open {
        overflow: hidden;
    }

}


//* =========================================================
   DESKTOP
========================================================= */

@media (min-width: 901px) {

    .mobile-menu-toggle {
        display: none;
    }

}

/* =========================================================
   IEP ADVOCACY — TABLET + MOBILE FIX
========================================================= */

@media screen and (max-width: 1050px) {

    #iep-advocacy {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
    }

    #iep-advocacy .advocacy-grid {
        display: block !important;

        width: 100% !important;
        min-height: 0 !important;

        margin: 0 !important;
        padding: 0 !important;
    }

    #iep-advocacy .advocacy-image {
        display: block !important;

        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;

        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;

        padding: 0 !important;

        overflow: hidden !important;
    }

    #iep-advocacy .advocacy-photo {
        display: block !important;

        width: 100% !important;
        max-width: 100% !important;

        height: auto !important;
        max-height: none !important;

        margin: 0 !important;
        padding: 0 !important;

        transform: none !important;

        object-fit: contain !important;
        object-position: left top !important;
    }

    #iep-advocacy .advocacy-content {
        width: 100% !important;

        margin: 0 !important;
        padding: 40px 24px 55px !important;
    }

    #iep-advocacy .advocacy-content h2 {
        max-width: 100% !important;

        font-size: 44px !important;
        line-height: .98 !important;
        letter-spacing: -2px !important;
    }

    #iep-advocacy .advocacy-content h2 br {
        display: none !important;
    }
}

/* =========================================================
   HAMBURGER — DESKTOP HIDDEN
========================================================= */

.mobile-menu-toggle {
    display: none !important;
}


/* =========================================================
   HAMBURGER — MOBILE ONLY
========================================================= */

@media screen and (max-width: 1050px) {

    .mobile-menu-toggle {
        display: flex !important;

        width: 44px;
        height: 44px;

        margin-left: auto;
        padding: 8px;

        background: transparent;
        border: 0;

        flex-direction: column;
        align-items: center;
        justify-content: center;

        gap: 6px;

        cursor: pointer;
    }

    .mobile-menu-toggle span {
        display: block;

        width: 28px;
        height: 3px;

        background: #073b73;
        border-radius: 10px;
    }

}