/* =========================================================
   BLUE RIDGE LEARNING FOUNDATION
   MAIN STYLESHEET
========================================================= */

:root {
    --navy: #0d2d5a;
    --blue: #1e5baa;
    --light-blue: #6ba6d6;
    --green: #3e8e5a;
    --light-green: #7fbf45;
    --cream: #f7f9fc;
    --white: #ffffff;
    --text: #1f2a37;
    --muted: #667085;
    --border: #d9e2ec;
    --shadow: 0 18px 45px rgba(13, 45, 90, 0.12);
}


/* =========================================================
   RESET / BASE
========================================================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 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 {
    font: inherit;
}


/* =========================================================
   GLOBAL LAYOUT
========================================================= */

.section {
    padding: 90px 24px;
}

.section-container {
    width: min(1180px, 100%);
    margin: 0 auto;
}

.centered {
    text-align: center;
}

.section-label {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--green);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.light-label {
    color: #b7e783;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 48px;
}

.section-heading.centered {
    margin-left: auto;
    margin-right: auto;
}

.section-heading h2,
.mission h2,
.employers h2,
.donation-cta h2,
.final-message h2 {
    color: var(--navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.08;
    margin-bottom: 20px;
}

.section-heading p {
    color: var(--muted);
    font-size: 1.08rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 800;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    background: var(--green);
    color: var(--white);
    box-shadow: 0 10px 24px rgba(62, 142, 90, 0.25);
}

.button-primary:hover {
    background: #327849;
}

.button-secondary {
    border: 2px solid rgba(255, 255, 255, 0.7);
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
}

.button-secondary:hover {
    background: rgba(255, 255, 255, 0.16);
}

.button-light {
    background: var(--white);
    color: var(--navy);
}

.text-link {
    display: inline-block;
    margin-top: 10px;
    color: var(--blue);
    font-weight: 800;
}

.center-button {
    margin-top: 40px;
    text-align: center;
}


/* =========================================================
   HEADER / NAV
========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(13, 45, 90, 0.08);
}

.nav-container {
    width: min(1220px, calc(100% - 32px));
    min-height: 82px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.nav-logo {
    width: 185px;
    max-height: 70px;
    object-fit: contain;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    color: var(--navy);
    font-size: 0.95rem;
    font-weight: 700;
}

.main-nav > a,
.dropdown-button {
    position: relative;
}

.main-nav > a:not(.donate-button)::after,
.dropdown-button::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--green);
    transition: width 0.2s ease;
}

.main-nav > a:hover::after,
.dropdown:hover .dropdown-button::after {
    width: 100%;
}

.donate-button {
    padding: 11px 18px;
    border-radius: 999px;
    color: var(--white);
    background: var(--green);
    box-shadow: 0 8px 18px rgba(62, 142, 90, 0.22);
}

.dropdown {
    position: relative;
}

.dropdown-button {
    border: none;
    background: transparent;
    color: var(--navy);
    font-weight: 700;
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    min-width: 260px;
    padding: 10px;
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background: var(--white);
    border: 1px solid rgba(13, 45, 90, 0.08);
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition:
        opacity 0.2s ease,
        transform 0.2s ease,
        visibility 0.2s ease;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 4px);
}

.dropdown-menu a {
    display: block;
    padding: 12px 14px;
    border-radius: 10px;
    color: var(--navy);
    font-size: 0.92rem;
}

.dropdown-menu a:hover {
    background: #f0f6fb;
    color: var(--green);
}

.mobile-menu-button {
    display: none;
    border: none;
    background: transparent;
    color: var(--navy);
    font-size: 1.7rem;
    cursor: pointer;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;
    min-height: 540px;
    display: flex;
    align-items: center;
    overflow: hidden;

    background:
        linear-gradient(
            110deg,
            #08274d 0%,
            #0d3b6f 52%,
            #3d7eb5 100%
        );
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;

    background:
        radial-gradient(
            circle at 78% 40%,
            rgba(126, 191, 69, 0.12),
            transparent 32%
        );
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    padding: 38px 0;
    color: var(--white);
}

.hero-split {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 42px;
    align-items: center;
}

.hero-copy {
    min-width: 0;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: #cce6b7;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.17em;
}

.hero h1 {
    max-width: 610px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.9rem, 5vw, 5.2rem);
    line-height: 0.95;
    letter-spacing: -0.035em;
}

.hero h1 span {
    color: #a9db76;
}

.hero-tagline {
    margin-top: 18px;
    color: #cce6b7;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.45rem;
    font-style: italic;
}

.hero-description {
    max-width: 590px;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}


/* =========================================================
   HERO MEDIA / CAROUSEL
========================================================= */

.hero-media {
    min-width: 0;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 650px;
    overflow: hidden;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.55s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-slide img,
.hero-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(4, 21, 42, 0.72) 0%,
            rgba(4, 21, 42, 0.12) 45%,
            transparent 70%
        );
}

.slide-caption {
    position: absolute;
    z-index: 3;
    left: 30px;
    right: 30px;
    bottom: 28px;
    color: var(--white);
}

.slide-caption span {
    display: block;
    margin-bottom: 6px;
    color: #b7e783;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.17em;
}

.slide-caption strong {
    display: block;
    max-width: 480px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.55rem;
    line-height: 1.2;
}

.slider-arrow {
    position: absolute;
    z-index: 5;
    top: 50%;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    transform: translateY(-50%);
    border: none;
    border-radius: 50%;
    color: var(--white);
    background: rgba(7, 29, 58, 0.65);
    backdrop-filter: blur(8px);
    font-size: 1.25rem;
    cursor: pointer;
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.slider-arrow:hover {
    background: rgba(7, 29, 58, 0.88);
    transform: translateY(-50%) scale(1.06);
}

.slider-prev {
    left: 18px;
}

.slider-next {
    right: 18px;
}

.slider-dots {
    position: absolute;
    z-index: 5;
    right: 26px;
    bottom: 26px;
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
}

.slider-dot.active {
    width: 26px;
    border-radius: 999px;
    background: #b7e783;
}

/* =========================================================
   MISSION
========================================================= */

.mission {
    background: var(--white);
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}

.mission p {
    margin-bottom: 18px;
    color: var(--muted);
    font-size: 1.08rem;
}


/* =========================================================
   JOURNEY
========================================================= */

.journey {
    background:
        linear-gradient(180deg, #f6f9fc 0%, #ffffff 100%);
}

.journey-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.journey-card {
    position: relative;
    padding: 30px;
    background: var(--white);
    border: 1px solid rgba(13, 45, 90, 0.08);
    border-radius: 22px;
    box-shadow: 0 12px 28px rgba(13, 45, 90, 0.06);
}

.journey-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 30px;
    right: 30px;
    height: 4px;
    border-radius: 0 0 4px 4px;
    background: linear-gradient(90deg, var(--blue), var(--green));
}

.journey-number {
    margin-bottom: 34px;
    color: var(--light-blue);
    font-size: 0.85rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.journey-card h3 {
    margin-bottom: 10px;
    color: var(--navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.7rem;
}

.journey-card p {
    color: var(--muted);
}


/* =========================================================
   PROGRAMS
========================================================= */

.programs {
    background: var(--white);
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.program-card {
    padding: 32px;
    border: 1px solid rgba(13, 45, 90, 0.08);
    border-radius: 22px;
    background:
        linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.program-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 22px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: #eef6ff;
    font-size: 1.7rem;
}

.program-card h3 {
    margin-bottom: 10px;
    color: var(--navy);
    font-size: 1.25rem;
}

.program-card p {
    color: var(--muted);
}


/* =========================================================
   EMPLOYERS
========================================================= */

.employers {
    color: var(--white);
    background:
        linear-gradient(120deg, #0d2d5a 0%, #123f73 55%, #1b5e62 100%);
}

.employer-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 70px;
    align-items: center;
}

.employers h2 {
    color: var(--white);
}

.employer-content p {
    max-width: 660px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.82);
}

.talent-preview {
    display: flex;
    justify-content: center;
}

.talent-card {
    width: min(420px, 100%);
    padding: 34px;
    color: var(--text);
    background: var(--white);
    border-radius: 26px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
}

.talent-status {
    display: inline-block;
    padding: 7px 12px;
    margin-bottom: 22px;
    border-radius: 999px;
    color: #256b42;
    background: #e8f6ec;
    font-size: 0.82rem;
    font-weight: 800;
}

.talent-avatar {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 50%;
    color: var(--white);
    background:
        linear-gradient(135deg, var(--blue), var(--green));
    font-size: 1.5rem;
    font-weight: 900;
}

.talent-card h3 {
    color: var(--navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.6rem;
}

.talent-role {
    margin-top: 4px;
    color: var(--muted);
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 22px 0;
}

.skill-tags span {
    padding: 7px 10px;
    border-radius: 999px;
    background: #eef4fa;
    color: var(--navy);
    font-size: 0.78rem;
    font-weight: 700;
}

.profile-preview-button {
    width: 100%;
    padding: 13px 16px;
    border: none;
    border-radius: 12px;
    color: var(--white);
    background: var(--navy);
    font-weight: 800;
    cursor: pointer;
}


/* =========================================================
   GET INVOLVED
========================================================= */

.get-involved {
    background: #f7faf7;
}

.involvement-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.involvement-card {
    min-height: 260px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border: 1px solid rgba(13, 45, 90, 0.08);
    border-radius: 22px;
    background: var(--white);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.involvement-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.involvement-card span {
    margin-bottom: 16px;
    color: var(--green);
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.involvement-card h3 {
    margin-bottom: 10px;
    color: var(--navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.55rem;
}

.involvement-card p {
    color: var(--muted);
}

.featured-card {
    color: var(--white);
    background:
        linear-gradient(145deg, var(--navy), var(--blue));
}

.featured-card span {
    color: #b7e783;
}

.featured-card h3,
.featured-card p {
    color: var(--white);
}


/* =========================================================
   DONATION CTA
========================================================= */

.donation-cta {
    padding: 68px 24px;
    color: var(--white);
    background:
        linear-gradient(115deg, #256b42 0%, #3e8e5a 50%, #1d5e50 100%);
}

.donation-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.donation-cta h2 {
    color: var(--white);
    margin-bottom: 12px;
}

.donation-cta p {
    max-width: 700px;
    color: rgba(255, 255, 255, 0.85);
}

.donate-large {
    min-width: 180px;
    color: var(--green);
    background: var(--white);
}


/* =========================================================
   FINAL MESSAGE
========================================================= */

.final-message {
    background:
        radial-gradient(circle at top, #eef6ff 0%, #ffffff 60%);
}

.small-heading {
    margin-bottom: 16px;
    color: var(--green);
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.15em;
}

.final-message h2 {
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.final-tagline {
    color: var(--green);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.8rem;
    font-style: italic;
}

/* =========================================================
   INNER PAGE HERO
========================================================= */

.page-hero {
    padding: 95px 24px;
    color: var(--white);

    background:
        linear-gradient(
            110deg,
            #08274d 0%,
            #0d3b6f 55%,
            #3d7eb5 100%
        );
}

.page-hero-content {
    max-width: 900px;
}

.page-hero h1 {
    max-width: 850px;
    margin-bottom: 22px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3rem, 6vw, 5.6rem);
    line-height: 1;
}

.page-hero p {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.15rem;
}


/* =========================================================
   ABOUT PAGE
========================================================= */

.about-two-column {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}

.about-panel {
    padding: 42px;
    border-radius: 24px;
    background: #f7fafc;
    border: 1px solid rgba(13, 45, 90, 0.08);
}

.about-panel h2 {
    margin-bottom: 18px;
    color: var(--navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.25rem;
    line-height: 1.15;
}

.about-panel p {
    color: var(--muted);
}


.values-section {
    background: #f7faf7;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.value-card {
    padding: 28px;
    background: var(--white);
    border-radius: 20px;
    border: 1px solid rgba(13, 45, 90, 0.08);
}

.value-card span {
    display: block;
    margin-bottom: 28px;
    color: var(--green);
    font-size: 0.8rem;
    font-weight: 900;
}

.value-card h3 {
    margin-bottom: 10px;
    color: var(--navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.4rem;
}

.value-card p {
    color: var(--muted);
}


.about-quote-card {
    padding: 42px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-quote {
    margin-bottom: 26px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2rem;
    line-height: 1.25;
}

.about-quote-tagline {
    margin-bottom: 6px;
    color: rgba(255, 255, 255, 0.78);
}

.about-quote-card strong {
    color: #b7e783;
    font-size: 1.2rem;
}


.about-cta-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.donate-outline {
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.7);
    background: transparent;
}


/* =========================================================
   ABOUT RESPONSIVE
========================================================= */

@media (max-width: 1050px) {

    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


@media (max-width: 820px) {

    .about-two-column {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-hero {
        padding: 72px 20px;
    }
}


@media (max-width: 620px) {

    .values-grid {
        grid-template-columns: 1fr;
    }

    .about-panel,
    .about-quote-card {
        padding: 28px;
    }

    .about-cta-buttons {
        width: 100%;
    }
}

/* =========================================================
   STUDENT PAGE / FORMS
========================================================= */

.student-interest-section {
    background:
        linear-gradient(180deg, #f5f9fc 0%, #ffffff 100%);
}

.student-interest-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 70px;
    align-items: start;
}

.student-interest-grid h2 {
    margin-bottom: 20px;
    color: var(--navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.3rem, 5vw, 4rem);
    line-height: 1.08;
}

.student-interest-grid p {
    color: var(--muted);
    margin-bottom: 16px;
}

.form-note {
    padding: 16px 18px;
    margin-top: 24px;
    border-left: 4px solid var(--green);
    border-radius: 10px;
    background: #edf7f0;
    font-size: 0.9rem;
}

.student-form {
    padding: 38px;
    background: var(--white);
    border: 1px solid rgba(13, 45, 90, 0.08);
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 7px;
    color: var(--navy);
    font-size: 0.9rem;
    font-weight: 800;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid #ced8e3;
    border-radius: 11px;
    background: var(--white);
    color: var(--text);
    font: inherit;
    outline: none;
    transition:
        border 0.2s ease,
        box-shadow 0.2s ease;
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(30, 91, 170, 0.1);
}

.form-submit {
    border: none;
    cursor: pointer;
}


@media (max-width: 820px) {

    .student-interest-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}


@media (max-width: 620px) {

    .student-form {
        padding: 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* =========================================================
   EMPLOYER TALENT DIRECTORY
========================================================= */

.talent-section {
    background:
        linear-gradient(
            180deg,
            #f4f8fb 0%,
            #ffffff 100%
        );
}

.talent-directory {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 38px;
}

.candidate-card {
    padding: 28px;
    background: var(--white);
    border: 1px solid rgba(13, 45, 90, 0.1);
    border-radius: 22px;
    box-shadow: var(--shadow);
}

.candidate-top {
    display: flex;
    gap: 18px;
    align-items: center;
    margin-bottom: 24px;
}

.candidate-avatar {
    flex: 0 0 68px;
    width: 68px;
    height: 68px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background:
        linear-gradient(
            135deg,
            var(--navy),
            var(--blue)
        );
    font-weight: 900;
    font-size: 1.2rem;
}

.candidate-top h3 {
    margin-top: 5px;
    color: var(--navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.4rem;
}

.candidate-top p {
    margin-top: 3px;
    color: var(--muted);
    font-size: 0.9rem;
}

.candidate-status {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.candidate-status.available {
    color: #25643a;
    background: #e5f5e9;
}

.candidate-status.interviewing {
    color: #7c5b12;
    background: #fff4d8;
}

.candidate-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 24px;
}

.candidate-skills span {
    padding: 6px 10px;
    border-radius: 999px;
    color: var(--navy);
    background: #edf3f9;
    font-size: 0.76rem;
    font-weight: 700;
}

.candidate-details {
    padding-top: 18px;
    margin-bottom: 24px;
    border-top: 1px solid #e5ebf1;
}

.candidate-details p {
    margin-bottom: 9px;
    color: var(--muted);
    font-size: 0.9rem;
}

.candidate-details strong {
    color: var(--navy);
}

.candidate-button {
    width: 100%;
    border: none;
    cursor: pointer;
}

.talent-disclaimer {
    max-width: 760px;
    margin: 32px auto 0;
    color: var(--muted);
    text-align: center;
    font-size: 0.82rem;
    font-style: italic;
}


/* =========================================================
   EMPLOYER PAGE RESPONSIVE
========================================================= */

@media (max-width: 1050px) {

    .talent-directory {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 700px) {

    .talent-directory {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   GET INVOLVED PAGE
========================================================= */

.get-involved-page .involvement-section {
    scroll-margin-top: 110px;
}

.get-involved-page .involvement-alt {
    background: #f6f9fc;
}

.get-involved-page .involvement-section .involvement-grid {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 55px;
    align-items: start;
}

.get-involved-page .involvement-number {
    position: sticky;
    top: 120px;
    color: rgba(30, 91, 170, 0.13);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 6rem;
    font-weight: 700;
    line-height: 1;
}

.get-involved-page .involvement-content {
    max-width: 850px;
}

.get-involved-page .involvement-content h2 {
    max-width: 720px;
    margin-bottom: 22px;
    color: var(--navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.05;
}

.get-involved-page .involvement-content > p {
    max-width: 760px;
    margin-bottom: 16px;
    color: var(--muted);
}

.get-involved-page .involvement-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 32px 0;
}

.get-involved-page .involvement-points > div {
    padding: 22px;
    border-radius: 16px;
    background: var(--white);
    border: 1px solid rgba(13, 45, 90, 0.09);
}

.get-involved-page .involvement-alt .involvement-points > div {
    background: #ffffff;
}

.get-involved-page .involvement-points strong {
    display: block;
    margin-bottom: 8px;
    color: var(--navy);
}

.get-involved-page .involvement-points span {
    display: block;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.6;
}


/* =========================================================
   GET INVOLVED RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .get-involved-page .involvement-section .involvement-grid {
        grid-template-columns: 90px 1fr;
        gap: 30px;
    }

    .get-involved-page .involvement-number {
        font-size: 4.5rem;
    }

    .get-involved-page .involvement-points {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 620px) {

    .get-involved-page .involvement-section .involvement-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .get-involved-page .involvement-number {
        position: static;
        font-size: 3.6rem;
    }
}


/* =========================================================
   GET INVOLVED RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .get-involved-page .involvement-section .involvement-grid {
        grid-template-columns: 90px 1fr;
        gap: 30px;
    }

    .involvement-number {
        font-size: 4.5rem;
    }

    .involvement-points {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 620px) {

    .get-involved-page .involvement-section .involvement-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .involvement-number {
        position: static;
        font-size: 3.6rem;
    }
}

/* =========================================================
   DONATE PAGE
========================================================= */

.donation-options-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 38px;
}

.donation-option {
    padding: 30px;
    border: 1px solid rgba(13, 45, 90, 0.09);
    border-radius: 20px;
    background: #f7fafc;
}

.donation-option-number {
    display: block;
    margin-bottom: 32px;
    color: var(--green);
    font-size: 0.8rem;
    font-weight: 900;
}

.donation-option h3 {
    margin-bottom: 12px;
    color: var(--navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.45rem;
}

.donation-option p {
    color: var(--muted);
}


.donate-main {
    scroll-margin-top: 100px;
    background:
        linear-gradient(
            180deg,
            #f3f8f5 0%,
            #ffffff 100%
        );
}

.donate-main-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 70px;
    align-items: center;
}

.donate-main-grid h2 {
    max-width: 600px;
    margin-bottom: 20px;
    color: var(--navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.08;
}

.donate-main-grid > div:first-child > p {
    max-width: 620px;
    margin-bottom: 16px;
    color: var(--muted);
}


.donation-box {
    padding: 40px;
    border-radius: 26px;
    background: var(--white);
    border: 1px solid rgba(13, 45, 90, 0.1);
    box-shadow: var(--shadow);
}

.donation-box-label {
    display: block;
    margin-bottom: 12px;
    color: var(--green);
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.donation-box h3 {
    margin-bottom: 10px;
    color: var(--navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.8rem;
}

.donation-box > p {
    color: var(--muted);
}

.donation-amounts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin: 28px 0;
}

.donation-amounts button {
    padding: 14px 8px;
    border: 1px solid #cfdbe6;
    border-radius: 10px;
    color: var(--navy);
    background: #f7fafc;
    font: inherit;
    font-weight: 800;
    cursor: default;
}

.donation-custom {
    margin-bottom: 22px;
}

.donation-custom label {
    display: block;
    margin-bottom: 7px;
    color: var(--navy);
    font-size: 0.9rem;
    font-weight: 800;
}

.donation-input {
    display: flex;
    align-items: center;
    overflow: hidden;
    border: 1px solid #ced8e3;
    border-radius: 11px;
}

.donation-input span {
    padding-left: 15px;
    color: var(--navy);
    font-weight: 800;
}

.donation-input input {
    width: 100%;
    padding: 14px 12px;
    border: none;
    outline: none;
    font: inherit;
}

.donation-disabled {
    width: 100%;
    border: none;
    opacity: 0.6;
    cursor: not-allowed;
}

.donation-security {
    margin-top: 14px;
    text-align: center;
    font-size: 0.75rem;
}


/* =========================================================
   DONATE RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

    .donation-options-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .donate-main-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}


@media (max-width: 620px) {

    .donation-options-grid {
        grid-template-columns: 1fr;
    }

    .donation-box {
        padding: 26px;
    }

    .donation-amounts {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =========================================================
   CONTACT PAGE
========================================================= */

.contact-options-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 38px;
}

.contact-option {
    padding: 30px;
    border: 1px solid rgba(13, 45, 90, 0.09);
    border-radius: 20px;
    background: #f7fafc;
}

.contact-option h3 {
    margin: 18px 0 10px;
    color: var(--navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.4rem;
}

.contact-option p {
    margin-bottom: 16px;
    color: var(--muted);
}


.contact-main {
    background:
        linear-gradient(
            180deg,
            #f4f8fb 0%,
            #ffffff 100%
        );
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 70px;
    align-items: start;
}

.contact-information h2 {
    max-width: 550px;
    margin-bottom: 20px;
    color: var(--navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.08;
}

.contact-information > p {
    max-width: 560px;
    color: var(--muted);
}

.contact-detail {
    display: flex;
    gap: 16px;
    margin-top: 28px;
    align-items: flex-start;
}

.contact-detail-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #eaf3ee;
    font-size: 1.25rem;
}

.contact-detail strong {
    display: block;
    margin-bottom: 4px;
    color: var(--navy);
}

.contact-detail p {
    color: var(--muted);
}

.contact-form-note {
    margin-top: 15px;
    color: var(--muted);
    text-align: center;
    font-size: 0.78rem;
}


.contact-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.contact-faq {
    padding: 30px;
    border-radius: 20px;
    background: var(--white);
    border: 1px solid rgba(13, 45, 90, 0.08);
}

.contact-faq h3 {
    margin-bottom: 12px;
    color: var(--navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.4rem;
}

.contact-faq p {
    margin-bottom: 16px;
    color: var(--muted);
}


/* =========================================================
   CONTACT RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

    .contact-options-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-main-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }
}


@media (max-width: 620px) {

    .contact-options-grid,
    .contact-faq-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   POLICY / INFORMATION PAGES
========================================================= */

.policy-container {
    max-width: 900px;
}

.policy-container h2 {
    max-width: 780px;
    margin: 10px 0 22px;
    color: var(--navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4vw, 3.1rem);
    line-height: 1.12;
}

.policy-container > p {
    max-width: 820px;
    margin-bottom: 17px;
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.8;
}

.policy-container > .button {
    margin-top: 14px;
}

.policy-container > .text-link {
    display: inline-block;
    margin-top: 8px;
}

.policy-divider {
    width: 100%;
    height: 1px;
    margin: 55px 0;
    background: rgba(13, 45, 90, 0.12);
}

.policy-closing {
    margin-top: 55px;
    padding: 38px;
    border-radius: 22px;

    background:
        linear-gradient(
            120deg,
            #08274d,
            #174f85
        );

    color: var(--white);
}

.policy-closing p {
    margin-bottom: 6px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.55rem;
}

.policy-closing strong {
    color: #b7e783;
    font-size: 1.1rem;
}

/* =========================================================
   THANK YOU PAGE
========================================================= */

.thank-you-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 90px 24px;

    background:
        linear-gradient(
            135deg,
            #f4f8fb 0%,
            #edf7f0 100%
        );
}

.thank-you-card {
    max-width: 760px;
    margin: 0 auto;
    padding: 60px;
    text-align: center;

    background: var(--white);
    border: 1px solid rgba(13, 45, 90, 0.1);
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.thank-you-icon {
    width: 74px;
    height: 74px;
    display: grid;
    place-items: center;
    margin: 0 auto 24px;

    border-radius: 50%;

    color: var(--white);
    background: var(--green);

    font-size: 2rem;
    font-weight: 900;
}

.thank-you-card h1 {
    margin: 12px 0 20px;

    color: var(--navy);

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.05;
}

.thank-you-card > p {
    max-width: 620px;
    margin: 0 auto;

    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

.thank-you-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;

    margin-top: 30px;
}

.button-secondary-dark {
    color: var(--navy);
    border: 2px solid var(--navy);
    background: transparent;
}

.thank-you-tagline {
    margin-top: 34px !important;
    padding-top: 28px;

    border-top: 1px solid rgba(13, 45, 90, 0.1);

    font-family: Georgia, "Times New Roman", serif;
}

.thank-you-tagline strong {
    display: block;
    margin-top: 5px;

    color: var(--green);
}


@media (max-width: 620px) {

    .thank-you-section {
        padding: 55px 18px;
    }

    .thank-you-card {
        padding: 38px 24px;
    }
}

/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    padding: 70px 24px 26px;
    color: rgba(255, 255, 255, 0.78);
    background: #081f3f;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr repeat(3, 1fr);
    gap: 48px;
}

.footer-brand img {
    width: 310px;
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 20px;
}

.footer-brand p {
    white-space: nowrap;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column h4 {
    margin-bottom: 4px;
    color: var(--white);
}

.footer-column a:hover {
    color: #b7e783;
}

.footer-bottom {
    width: min(1180px, 100%);
    margin: 50px auto 0;
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.86rem;
}

.footer-bottom div {
    display: flex;
    gap: 18px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1050px) {

    .main-nav {
        gap: 14px;
        font-size: 0.88rem;
    }

    .nav-logo {
        width: 160px;
    }

    .journey-grid,
    .get-involved-page .involvement-section .involvement-grid {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 55px;
    align-items: start;
}

    .program-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

    .footer-column:last-child {
        grid-column: 2 / 4;
    }
}


@media (max-width: 820px) {

    .hero-split {
    grid-template-columns: 1fr;
}

.hero-slider {
    height: 380px;
}

    .mobile-menu-button {
        display: block;
    }

    .main-nav {
        display: none;
    }

    .hero {
        min-height: 650px;
    }

    .hero-content {
        padding: 72px 0;
    }

    .mission-grid,
    .employer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .donation-content {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-column:last-child {
        grid-column: auto;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}


@media (max-width: 620px) {

    .section {
        padding: 68px 18px;
    }

    .nav-container {
        min-height: 72px;
    }

    .nav-logo {
        width: 145px;
    }

    .hero-content {
        width: min(100% - 32px, 1180px);
    }

    .hero h1 {
        font-size: clamp(3rem, 17vw, 5.2rem);
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .button {
        width: 100%;
    }

    .journey-grid,
    .program-grid,
    .involvement-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-column:last-child,
    .footer-brand {
        grid-column: auto;
    }

    .talent-card {
        padding: 26px;
    }
}

/* =========================================================
   MOBILE NAVIGATION
========================================================= */

@media (max-width: 820px) {

    .nav-container {
        position: relative;
    }

    .mobile-menu-button {
        display: block;
        margin-left: auto;
        z-index: 1001;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;

        display: none;
        flex-direction: column;
        align-items: stretch;

        padding: 18px 24px 24px;

        background: #ffffff;
        border-top: 1px solid rgba(13, 45, 90, 0.08);

        box-shadow: 0 18px 30px rgba(0, 0, 0, 0.12);

        z-index: 1000;
    }

    .main-nav.mobile-open {
        display: flex;
    }

    .main-nav > a,
    .dropdown-button {
        width: 100%;
        padding: 13px 4px;

        text-align: left;

        border-bottom: 1px solid rgba(13, 45, 90, 0.08);
    }

    .dropdown {
        width: 100%;
    }

    .dropdown-button {
        display: block;
        background: transparent;
    }

    .dropdown-menu {
        position: static;

        display: block;

        width: 100%;
        min-width: 0;

        padding: 4px 0 8px 18px;

        border: none;
        box-shadow: none;

        background: #f7fafc;
    }

    .dropdown-menu a {
        display: block;
        padding: 10px 8px;

        font-size: 0.9rem;
    }

    .main-nav .donate-button {
        margin-top: 12px;

        text-align: center;

        border-bottom: none;
    }
}

/* =========================================================
   MOBILE JOURNEY CARDS
========================================================= */

@media (max-width: 820px) {

    .journey-grid {
        display: grid;
        grid-template-columns: 1fr !important;
        gap: 18px;
    }

    .journey-card {
        width: 100%;
        min-width: 0;
        padding: 28px;
    }

    .journey-card h3 {
        font-size: 1.55rem;
    }

    .journey-card p {
        max-width: none;
    }
}

@media (max-width: 820px) {

    .footer-brand p {
        white-space: normal;
    }
}