/* ============================================
   WPBCAT — West Palm Beach Center for Arts & Technology
   Built by Marcai Consulting | marcaiconsulting.com
   ============================================ */

:root {
    --navy:        #0d2137;
    --navy-light:  #152d44;
    --navy-mid:    #1a3a52;
    --orange:      #e87722;
    --orange-dark: #d06a1c;
    --orange-glow: #f5a623;
    --teal:        #1a8b8d;
    --teal-dark:   #157072;

    --white:  #ffffff;
    --light:  #f7f8fa;
    --border: #e2e6ea;

    --text:       #2c3e50;
    --text-light: #5a6c7e;

    --heading: 'Montserrat', sans-serif;
    --body:    'Open Sans', sans-serif;

    --r-sm: 4px;
    --r-md: 8px;
    --r-lg: 12px;

    --shadow-sm: 0 1px 3px rgba(0,0,0,.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,.08);
    --shadow-lg: 0 8px 32px rgba(0,0,0,.1);

    --speed: 280ms;
    --ease:  cubic-bezier(.4,0,.2,1);
    --header-h: 80px;
}


/* --- Skip Link (Accessibility) --- */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--navy);
    color: #fff;
    padding: 12px 24px;
    border-radius: var(--r-md);
    font-family: var(--heading);
    font-weight: 600;
    font-size: .875rem;
    z-index: 10000;
    transition: top .2s ease;
}
.skip-link:focus {
    top: 12px;
    color: #fff;
}

/* --- Reset --- */
*,*::before,*::after { margin:0; padding:0; box-sizing:border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-h);
}

body {
    font-family: var(--body);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--text);
    overflow-x: hidden;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

img  { max-width:100%; height:auto; display:block; }
a    { text-decoration:none; color:inherit; transition: color var(--speed) var(--ease); }
ul   { list-style:none; }

h1,h2,h3,h4 {
    font-family: var(--heading);
    font-weight: 700;
    line-height: 1.15;
    color: var(--text);
}


/* --- Layout --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}


/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--heading);
    font-weight: 600;
    font-size: .9375rem;
    padding: 14px 34px;
    border-radius: var(--r-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--speed) var(--ease);
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}
.btn-primary:hover {
    background: var(--orange-dark);
    border-color: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232,119,34,.3);
}

.btn-outline {
    background: transparent;
    color: var(--orange);
    border-color: var(--orange);
}
.btn-outline:hover {
    background: var(--orange);
    color: var(--white);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,.5);
}
.btn-outline-light:hover {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
}
.btn-white:hover {
    background: rgba(255,255,255,.92);
    transform: translateY(-2px);
}

.btn-small {
    display: inline-flex;
    align-items: center;
    font-family: var(--heading);
    font-weight: 600;
    font-size: .8125rem;
    padding: 10px 22px;
    border-radius: var(--r-sm);
    border: 2px solid var(--orange);
    background: transparent;
    color: var(--orange);
    cursor: pointer;
    transition: all var(--speed) var(--ease);
}
.btn-small:hover {
    background: var(--orange);
    color: var(--white);
}

.btn-apply {
    color: rgba(255,255,255,.85);
    font-family: var(--heading);
    font-weight: 600;
    font-size: .875rem;
    padding: 10px 20px;
    border: 1.5px solid rgba(255,255,255,.3);
    border-radius: var(--r-sm);
    transition: all var(--speed) var(--ease);
}
.btn-apply:hover {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.5);
    color: #fff;
}

.btn-donate {
    background: var(--orange);
    color: var(--white);
    font-family: var(--heading);
    font-weight: 600;
    font-size: .875rem;
    padding: 10px 24px;
    border-radius: var(--r-sm);
    transition: all var(--speed) var(--ease);
}
.btn-donate:hover {
    background: var(--orange-dark);
    transform: translateY(-1px);
}


/* =============================================
   HEADER
   ============================================= */
.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    height: var(--header-h);
    background: transparent;
    transition: background 350ms ease, box-shadow 350ms ease;
}

.site-header.scrolled {
    background: rgba(13,33,55,.97);
    box-shadow: 0 2px 24px rgba(0,0,0,.12);
}

.page-header { background: var(--navy); }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
}

/* --- Logo lockup --- */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    height: 48px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-name {
    font-family: var(--heading);
    font-weight: 700;
    font-size: .9375rem;
    color: #fff;
    letter-spacing: -.01em;
}

.logo-sub {
    font-family: var(--heading);
    font-weight: 500;
    font-size: .6875rem;
    color: rgba(255,255,255,.5);
    letter-spacing: .02em;
}

.mobile-nav-brand { display: none; }

/* --- Nav --- */
.main-nav > ul {
    display: flex;
    gap: 32px;
}

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

.main-nav a {
    color: rgba(255,255,255,.8);
    font-family: var(--heading);
    font-weight: 500;
    font-size: .9375rem;
    padding: 6px 0;
    position: relative;
    outline: none;
}

.main-nav a:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 4px;
    border-radius: 2px;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 2px;
    background: var(--orange);
    transition: width var(--speed) var(--ease);
}

.main-nav a:hover,
.main-nav a.active { color: #fff; }

.main-nav a:hover::after,
.main-nav a.active::after { width: 100%; }

/* Dropdown */
.dropdown-arrow {
    font-size: .5rem;
    margin-left: 5px;
    transition: transform var(--speed) var(--ease);
}

.has-dropdown:hover .dropdown-arrow { transform: rotate(180deg); }

.dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: -16px;
    min-width: 220px;
    background: var(--white);
    border-radius: var(--r-md);
    box-shadow: var(--shadow-lg);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 220ms var(--ease);
    z-index: 100;
}

.dropdown::before {
    content: '';
    position: absolute;
    top: -12px; left: 0; right: 0;
    height: 12px;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    display: block;
    padding: 10px 22px;
    color: var(--text) !important;
    font-size: .9375rem;
    font-weight: 500;
    white-space: nowrap;
}

.dropdown li a::after { display: none; }

.dropdown li a:hover {
    background: var(--light);
    color: var(--orange) !important;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    width: 44px;
    height: 44px;
}

.mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 300ms ease;
}


/* =============================================
   HERO
   ============================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Hero image carousel — B&W crossfade */
.hero-carousel {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 25%;
    filter: grayscale(1);
    opacity: 0;
    transition: opacity 1.4s ease;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            135deg,
            rgba(13,33,55,.92) 0%,
            rgba(13,33,55,.72) 35%,
            rgba(26,139,141,.38) 70%,
            rgba(232,119,34,.25) 100%
        );
}

/* Subtle dot-grid texture */
.hero-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 28px 28px;
}

/* (orbs removed — hero now uses image carousel) */

.hero > .container { position: relative; z-index: 2; }

.hero-content {
    max-width: 620px;
    padding: 80px 0 120px;
}

.hero h1 { margin-bottom: 20px; }

/* Staggered text reveal */
.hero-line {
    display: block;
    font-size: clamp(2.5rem, 5.5vw, 4.25rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -.03em;
    line-height: 1.08;
    opacity: 0;
    transform: translateY(28px);
    animation: heroReveal .7s var(--ease) forwards;
}

.hero-line:nth-child(1) { animation-delay: .15s; }
.hero-line:nth-child(2) { animation-delay: .3s; }
.hero-line:nth-child(3) { animation-delay: .45s; }

.hero-highlight { color: var(--orange-glow); }

.hero-sub {
    color: rgba(255,255,255,.85);
    font-size: 1.125rem;
    font-weight: 400;
    margin-bottom: 36px;
    max-width: 520px;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
    animation: heroReveal .7s var(--ease) forwards .6s;
}

.hero-content .btn {
    opacity: 0;
    transform: translateY(16px);
    animation: heroReveal .7s var(--ease) forwards .75s;
}

@keyframes heroReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 90px;
    right: 32px;
    z-index: 900;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    font-size: 1.25rem;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(232,119,34,.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity .3s ease, visibility .3s ease, transform .3s ease, background .2s ease;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
}

.back-to-top:active {
    transform: translateY(0);
}

/* Wave → features */
.hero-wave {
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    z-index: 3;
    line-height: 0;
}
.hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}


/* =============================================
   FEATURES BAR
   ============================================= */
.features {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-glow) 100%);
    padding: 44px 0;
    position: relative;
}

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

.feature {
    display: flex;
    align-items: center;
    gap: 18px;
    color: #fff;
}

.feature-icon {
    flex-shrink: 0;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: rgba(255,255,255,.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: background var(--speed) var(--ease);
}

.feature:hover .feature-icon { background: rgba(255,255,255,.28); }

.feature h3 {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.feature p {
    font-size: .875rem;
    opacity: .88;
    line-height: 1.4;
}

.features-wave {
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    line-height: 0;
}
.features-wave svg {
    display: block;
    width: 100%;
    height: 50px;
}


/* =============================================
   MISSION
   ============================================= */
.mission {
    padding: 96px 0;
    background: var(--white);
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.mission-content h2 {
    font-size: 2rem;
    position: relative;
    padding-bottom: 16px;
    margin-bottom: 24px;
}

.mission-content h2::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 56px; height: 3px;
    background: var(--orange);
    border-radius: 2px;
}

.mission-content p {
    font-size: 1.0625rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 28px;
}

.mission-image {
    border-radius: var(--r-lg);
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.mission-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* =============================================
   IMPACT STATS
   ============================================= */
.impact {
    padding: 80px 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.impact::before {
    content: '';
    position: absolute;
    top: -80px; right: -120px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232,119,34,.06) 0%, transparent 70%);
    pointer-events: none;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.impact-item h3 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--orange-glow);
    margin-bottom: 6px;
    line-height: 1;
}

.impact-item p {
    font-size: .9375rem;
    color: rgba(255,255,255,.6);
    font-weight: 500;
}


/* =============================================
   PROGRAMS (Homepage)
   ============================================= */
.programs {
    padding: 96px 0;
    background: var(--light);
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 2rem;
    letter-spacing: -.02em;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.0625rem;
    margin-top: 8px;
}

.section-header-light h2 { color: #fff; }
.section-header-light p  { color: rgba(255,255,255,.6); }

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

.program-card {
    position: relative;
    display: block;
    height: 380px;
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: box-shadow 350ms var(--ease);
    transform-style: preserve-3d;
    will-change: transform;
}

.program-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,.18); }

.program-card::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(0,0,0,.78) 0%, rgba(0,0,0,.35) 50%, rgba(0,0,0,.18) 100%);
    transition: opacity var(--speed) var(--ease);
}

.program-card:hover::before { opacity: .92; }

.program-card.program-culinary {
    background: linear-gradient(160deg, #9b2c1f, #c0392b 40%, #e74c3c 80%, #f39c12);
    background-image: url('../images/program-culinary.jpg');
    background-size: cover;
    background-position: center;
}
.program-card.program-construction {
    background: linear-gradient(160deg, #8e6b1e, #c47b1a 40%, #d4941c 80%, #e8a830);
    background-image: url('../images/program-construction.jpg');
    background-size: cover;
    background-position: center 30%;
}
.program-card.program-technology {
    background: linear-gradient(160deg, #0e5e64, #1a8b8d 40%, #20a3a5 80%, #2ab7b9);
    background-image: url('../images/program-technology.jpg');
    background-size: cover;
    background-position: center;
}

/* Decorative industry icons on cards */
.program-card::after {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-60%);
    font-size: 9rem;
    color: rgba(255,255,255,.07);
    pointer-events: none;
    z-index: 0;
    transition: transform .5s ease, opacity .5s ease;
}

.program-card:hover::after {
    transform: translateY(-60%) scale(1.08) rotate(-3deg);
    opacity: .85;
}

.program-card.program-culinary::after     { content: '\f2e7'; }
.program-card.program-construction::after { content: '\f6e3'; }
.program-card.program-technology::after   { content: '\f108'; }

.program-card-inner {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 32px 28px;
    z-index: 2;
}

.program-tag {
    display: inline-block;
    font-family: var(--heading);
    font-size: .6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #fff;
    background: rgba(255,255,255,.16);
    padding: 4px 12px;
    border-radius: 3px;
    margin-bottom: 12px;
    opacity: 0;
    transform: translateY(8px);
    transition: all 300ms var(--ease);
}

.program-card:hover .program-tag { opacity: 1; transform: translateY(0); }

.program-card-inner h3 {
    color: #fff;
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.program-card-inner p {
    color: rgba(255,255,255,.82);
    font-size: .9375rem;
    line-height: 1.5;
    opacity: 0;
    transform: translateY(10px);
    transition: all 300ms var(--ease) 60ms;
}

.program-card:hover .program-card-inner p { opacity: 1; transform: translateY(0); }


/* =============================================
   TESTIMONIAL CAROUSEL
   ============================================= */
.testimonial {
    padding: 88px 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.testimonial::before {
    content: '';
    position: absolute;
    bottom: -60px; left: -100px;
    width: 350px; height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26,139,141,.06) 0%, transparent 70%);
    pointer-events: none;
}

.testimonial-carousel {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-slide {
    display: none;
    flex-direction: column;
    align-items: center;
}

.testimonial-slide.active {
    display: flex;
    animation: fadeSlide 500ms var(--ease);
}

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

.testimonial-quote-mark {
    font-family: Georgia, serif;
    font-size: 5rem;
    color: var(--orange);
    line-height: 1;
    opacity: .45;
    margin-bottom: 4px;
    user-select: none;
}

.testimonial-quote {
    font-size: 1.1875rem;
    font-style: italic;
    color: rgba(255,255,255,.88);
    line-height: 1.8;
    margin-bottom: 28px;
    max-width: 640px;
}

.testimonial-author {
    font-family: var(--heading);
    font-weight: 600;
    color: #fff;
    font-size: .9375rem;
}

.testimonial-role {
    color: var(--orange-glow);
    font-size: .8125rem;
    margin-top: 4px;
    font-family: var(--heading);
    font-weight: 500;
}

.carousel-dots {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 32px;
}

.carousel-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,.2);
    cursor: pointer;
    transition: all 300ms ease;
    padding: 0;
}

.carousel-dot:hover { background: rgba(255,255,255,.35); }
.carousel-dot.active { background: var(--orange); transform: scale(1.25); }


/* =============================================
   NEWS & EVENTS
   ============================================= */
.news {
    padding: 96px 0;
    background: var(--white);
}

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

.news-card {
    background: var(--white);
    border-radius: var(--r-md);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all var(--speed) var(--ease);
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.news-card-image {
    height: 200px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.news-card-image::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    z-index: 1;
}

.news-card-image::before {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 4.5rem;
    color: rgba(255,255,255,.15);
    z-index: 0;
    transition: transform .4s ease;
}

.news-card:hover .news-card-image::before {
    transform: scale(1.15) rotate(-5deg);
}

.news-img-1 { background: linear-gradient(135deg, #e87722, #f5a623); }
.news-img-1::after { background: var(--orange); }
.news-img-1::before { content: '\f073'; }
.news-img-2 { background: linear-gradient(135deg, #1a8b8d, #2ab7b9); }
.news-img-2::after { background: var(--teal); }
.news-img-2::before { content: '\f500'; }
.news-img-3 { background: linear-gradient(135deg, #152d44, #2a5a7a); }
.news-img-3::after { background: var(--navy); }
.news-img-3::before { content: '\f0c0'; }
.news-img-4 { background: linear-gradient(135deg, #8e6b1e, #c47b1a); }
.news-img-4::after { background: #c47b1a; }
.news-img-5 { background: linear-gradient(135deg, #0e5e64, #1a8b8d); }
.news-img-5::after { background: var(--teal-dark); }
.news-img-6 { background: linear-gradient(135deg, #9b2c1f, #e74c3c); }
.news-img-6::after { background: #c0392b; }

.news-card-body { padding: 28px; }

.news-date {
    display: block;
    font-size: .75rem;
    font-family: var(--heading);
    font-weight: 600;
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 10px;
}

.news-card-body h3 {
    font-size: 1.125rem;
    margin-bottom: 10px;
    letter-spacing: -.01em;
}

.news-card-body p {
    font-size: .9375rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}


/* =============================================
   CTA — Animated Gradient
   ============================================= */
.cta {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(-45deg, #e87722, #d06a1c, #f5a623, #c0541d);
    background-size: 300% 300%;
    animation: gradientShift 10s ease infinite;
}

@keyframes gradientShift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.cta h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 14px;
}

.cta p {
    color: rgba(255,255,255,.9);
    font-size: 1.0625rem;
    max-width: 540px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta .btn-primary {
    background: var(--navy);
    border-color: var(--navy);
}
.cta .btn-primary:hover {
    background: var(--navy-light);
    border-color: var(--navy-light);
    box-shadow: 0 6px 20px rgba(0,0,0,.2);
}


/* =============================================
   FOOTER
   ============================================= */
.site-footer {
    background: #091a2a;
    padding: 64px 0 0;
    color: rgba(255,255,255,.65);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

/* Footer brand lockup */
.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-brand img {
    height: 44px;
    width: auto;
}

.footer-brand-text {
    font-family: var(--heading);
    line-height: 1.25;
}

.footer-brand-text strong {
    display: block;
    font-size: .9375rem;
    font-weight: 700;
    color: #fff;
}

.footer-brand-text span {
    font-size: .75rem;
    font-weight: 500;
    color: rgba(255,255,255,.45);
}

.footer-info p {
    font-size: .9375rem;
    line-height: 1.6;
}

.footer-mission {
    font-size: .875rem;
    line-height: 1.6;
    color: rgba(255,255,255,.5);
    margin-bottom: 8px;
}

.footer-address {
    margin-top: 4px;
    font-size: .875rem !important;
    opacity: .6;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.footer-contact-list a {
    font-size: .875rem;
    color: rgba(255,255,255,.6);
    transition: color var(--speed) var(--ease);
}

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

.footer-links h4,
.footer-social h4 {
    color: #fff;
    font-family: var(--heading);
    font-size: .8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: .9375rem;
    transition: color var(--speed) var(--ease);
}
.footer-links a:hover { color: var(--orange); }

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    width: 38px; height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
    color: rgba(255,255,255,.6);
    font-size: .9375rem;
    transition: all var(--speed) var(--ease);
}

.social-icons a:hover {
    background: var(--orange);
    color: #fff;
    transform: translateY(-2px);
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: .8125rem;
    opacity: .45;
}

.footer-legal {
    margin-top: 2px;
    font-size: .75rem !important;
    opacity: .35 !important;
}

.footer-legal a {
    color: rgba(255,255,255,.6);
    transition: color var(--speed) var(--ease);
}

.footer-legal a:hover {
    color: var(--orange);
}

.footer-credit {
    font-size: .8125rem !important;
    opacity: .55 !important;
    font-family: var(--heading);
    font-weight: 500;
    letter-spacing: .01em;
}

.footer-credit a {
    color: rgba(255,255,255,.75);
    font-weight: 600;
    transition: color var(--speed) var(--ease);
}

.footer-credit a:hover {
    color: var(--orange);
}


/* =============================================
   PAGE BANNER (Inner Pages)
   ============================================= */
.page-banner {
    padding: calc(var(--header-h) + 56px) 0 56px;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.page-banner::after {
    content: '';
    position: absolute;
    right: -40px; top: 50%;
    transform: translateY(-50%);
    width: 300px; height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,.035) 0%, transparent 70%);
    pointer-events: none;
}

.page-banner h1 {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -.02em;
    margin-bottom: 10px;
}

.banner-subtitle {
    color: rgba(255,255,255,.6);
    font-size: 1.0625rem;
    max-width: 500px;
}

.page-banner-teal         { background: linear-gradient(135deg, var(--navy), #0e5e64); }
.page-banner-orange       { background: linear-gradient(135deg, var(--navy), var(--orange-dark)); }
/* program-specific banner colors defined in PROGRAM PAGE THEMING section below */


/* =============================================
   INNER PAGE SECTIONS
   ============================================= */
.page-section       { padding: 80px 0; }
.page-section.alt   { background: var(--light); }
.page-section.dark  { background: var(--navy); color: #fff; }
.page-section.dark h2 { color: #fff; }
.page-section.dark p  { color: rgba(255,255,255,.75); }

.section-heading {
    position: relative;
    padding-bottom: 16px;
    margin-bottom: 32px;
    font-size: 2rem;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 56px; height: 3px;
    background: var(--orange);
    border-radius: 2px;
}

.section-heading-center { text-align: center; }
.section-heading-center::after { left: 50%; transform: translateX(-50%); }

.lead-text {
    font-size: 1.0625rem;
    color: var(--text-light);
    line-height: 1.75;
    max-width: 720px;
}
.lead-text.centered { margin: 0 auto; text-align: center; }

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.two-column-content h2 {
    position: relative;
    padding-bottom: 16px;
    margin-bottom: 24px;
    font-size: 2rem;
}

.two-column-content h2::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 56px; height: 3px;
    background: var(--orange);
    border-radius: 2px;
}

.two-column-content p {
    font-size: 1.0625rem;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 16px;
}

.two-column-content p:last-of-type { margin-bottom: 28px; }

.two-column-image {
    border-radius: var(--r-lg);
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(26,139,141,.15), rgba(13,33,55,.1)),
        linear-gradient(225deg, var(--navy-light), var(--navy-mid));
}

.two-column-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--r-lg);
}


/* =============================================
   VALUES
   ============================================= */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.value-card {
    text-align: center;
    padding: 36px 24px;
    border-radius: var(--r-md);
    border: 1px solid var(--border);
    background: var(--white);
    transition: all var(--speed) var(--ease);
}

.value-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.value-icon {
    width: 56px; height: 56px;
    margin: 0 auto 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    background: rgba(232,119,34,.08);
    color: var(--orange);
}
.value-icon.vi-teal { background: rgba(26,139,141,.08); color: var(--teal); }
.value-icon.vi-navy { background: rgba(13,33,55,.06);   color: var(--navy); }

.value-card h3 { font-size: 1rem; margin-bottom: 8px; }
.value-card p  { font-size: .9375rem; color: var(--text-light); line-height: 1.5; }


/* =============================================
   STATS (generic — About page etc.)
   ============================================= */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--orange);
    margin-bottom: 4px;
    line-height: 1;
}

.dark .stat-item h3 { color: var(--orange-glow); }
.stat-item p { font-size: .9375rem; color: var(--text-light); }
.dark .stat-item p { color: rgba(255,255,255,.6); }


/* =============================================
   STAFF / BOARD
   ============================================= */
.staff-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 48px;
}

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

.staff-photo {
    width: 180px; height: 180px;
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    overflow: hidden;
    background: linear-gradient(135deg, var(--navy-light), var(--navy-mid));
    color: rgba(255,255,255,.2);
}

.staff-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.staff-card h3 { font-size: 1rem; margin-bottom: 4px; }

.staff-role {
    font-size: .8125rem;
    color: var(--teal);
    font-weight: 600;
    font-family: var(--heading);
}


/* =============================================
   PROGRAM DETAIL
   ============================================= */
.program-detail-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: start;
}

.program-detail-content h2 {
    position: relative;
    padding-bottom: 16px;
    margin-bottom: 20px;
    font-size: 1.75rem;
}

.program-detail-content h2::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 56px; height: 3px;
    background: var(--orange);
    border-radius: 2px;
}

.program-detail-content p {
    font-size: 1.0625rem;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 16px;
}

.curriculum-list { margin: 24px 0 36px; }

.curriculum-list li {
    padding: 14px 0 14px 32px;
    border-bottom: 1px solid var(--border);
    font-size: .9375rem;
    color: var(--text);
    position: relative;
}

.curriculum-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--teal);
    font-size: .8125rem;
    top: 16px;
}

.program-info-card {
    background: var(--navy);
    border-radius: var(--r-lg);
    padding: 36px;
    color: #fff;
    position: sticky;
    top: calc(var(--header-h) + 24px);
}

.program-info-card h3 {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.info-list { margin-bottom: 28px; }

.info-list li {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,.05);
    font-size: .9375rem;
}

.info-list li i {
    color: var(--orange-glow);
    width: 20px;
    text-align: center;
    margin-top: 2px;
}

.info-list li strong {
    display: block;
    font-size: .6875rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: rgba(255,255,255,.45);
    margin-bottom: 2px;
    font-family: var(--heading);
}

.program-info-card .btn { width: 100%; }

.careers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.career-item {
    padding: 22px;
    background: var(--white);
    border-radius: var(--r-md);
    border: 1px solid var(--border);
    transition: all var(--speed) var(--ease);
}
.career-item:hover { border-color: transparent; box-shadow: var(--shadow-sm); }

.career-item h4 { font-size: 1rem; margin-bottom: 4px; }
.career-item p  { font-size: .875rem; color: var(--text-light); line-height: 1.5; margin-bottom: 0; }


/* =============================================
   CONTACT
   ============================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 48px;
    align-items: start;
}

.form-group { margin-bottom: 20px; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    font-family: var(--heading);
    font-weight: 600;
    font-size: .8125rem;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 6px;
    color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    font-family: var(--body);
    font-size: .9375rem;
    color: var(--text);
    background: var(--white);
    transition: border-color var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(26,139,141,.1);
}

.form-group textarea { height: 150px; resize: vertical; }

.contact-info-card {
    background: var(--navy);
    border-radius: var(--r-lg);
    padding: 40px;
    color: #fff;
}
.contact-info-card h3 { color: #fff; font-size: 1.25rem; margin-bottom: 28px; }

.contact-detail {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-detail i {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange-glow);
    flex-shrink: 0;
}

.contact-detail strong {
    display: block;
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 4px;
    color: rgba(255,255,255,.5);
}

.contact-detail span,
.contact-detail a { font-size: .9375rem; color: #fff; }
.contact-detail a:hover { color: var(--orange-glow); }

.contact-hours {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.08);
}
.contact-hours h4 { color: #fff; font-size: 1rem; margin-bottom: 10px; }
.contact-hours p  { font-size: .9375rem; color: rgba(255,255,255,.65); line-height: 1.8; }


/* =============================================
   DONATE
   ============================================= */
.donate-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
}

.donate-card {
    border: 2px solid var(--border);
    border-radius: var(--r-md);
    padding: 40px 28px;
    text-align: center;
    transition: all var(--speed) var(--ease);
    position: relative;
    background: var(--white);
}
.donate-card:hover { border-color: var(--orange); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.donate-card.featured { border-color: var(--orange); }

.donate-badge {
    position: absolute;
    top: -12px; left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    color: #fff;
    font-family: var(--heading);
    font-size: .6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: 4px 16px;
    border-radius: 3px;
}

.donate-amount {
    font-family: var(--heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--orange);
    margin: 12px 0;
    line-height: 1;
}
.donate-card h3 { margin-bottom: 10px; }
.donate-card p  { font-size: .9375rem; color: var(--text-light); line-height: 1.6; margin-bottom: 24px; }

.donate-other { margin-top: 48px; text-align: center; }
.donate-other p { font-size: 1.0625rem; color: var(--text-light); margin-bottom: 20px; }


/* =============================================
   GET INVOLVED
   ============================================= */
.involve-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
}

.involve-card {
    padding: 36px 28px;
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    background: var(--white);
    transition: all var(--speed) var(--ease);
}
.involve-card:hover { border-color: transparent; box-shadow: var(--shadow-md); transform: translateY(-3px); }

.involve-card-icon {
    width: 52px; height: 52px;
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 18px;
    background: rgba(232,119,34,.08);
    color: var(--orange);
}
.involve-card-icon.ic-teal { background: rgba(26,139,141,.08); color: var(--teal); }
.involve-card-icon.ic-navy { background: rgba(13,33,55,.06);   color: var(--navy); }

.involve-card h3 { margin-bottom: 10px; }
.involve-card p  { font-size: .9375rem; color: var(--text-light); line-height: 1.6; margin-bottom: 20px; }


/* NEWS LISTING */
.news-listing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}


/* =============================================
   SCROLL REVEAL
   ============================================= */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 650ms var(--ease), transform 650ms var(--ease);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.feature.reveal:nth-child(2)      { transition-delay: 80ms; }
.feature.reveal:nth-child(3)      { transition-delay: 160ms; }
.program-card.reveal:nth-child(2) { transition-delay: 100ms; }
.program-card.reveal:nth-child(3) { transition-delay: 200ms; }
.news-card.reveal:nth-child(2)    { transition-delay: 100ms; }
.news-card.reveal:nth-child(3)    { transition-delay: 200ms; }


/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .features-grid       { grid-template-columns: 1fr; gap: 20px; }
    .programs-grid,
    .news-grid,
    .news-listing-grid   { grid-template-columns: repeat(2, 1fr); }
    .footer-content       { grid-template-columns: 1fr 1fr; }
    .values-grid          { grid-template-columns: repeat(2, 1fr); }
    .stats-grid,
    .impact-grid          { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .staff-grid           { grid-template-columns: repeat(3, 1fr); }
    .program-detail-grid  { grid-template-columns: 1fr; }
    .program-info-card    { position: static; }
    .careers-grid         { grid-template-columns: 1fr; }
    .involve-grid,
    .donate-options       { grid-template-columns: repeat(2, 1fr); }
    .two-column,
    .mission-grid         { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
    :root { --header-h: 68px; }

    .logo-text { display: flex; }
    .logo-name { font-size: .75rem; }
    .logo-sub { font-size: .5625rem; }
    .btn-apply { display: none; }
    .btn-donate { padding: 6px 14px; font-size: .75rem; }

    .main-nav {
        position: fixed;
        top: 0; right: -300px;
        width: 300px;
        height: 100vh; height: 100dvh;
        background: var(--navy);
        z-index: 999;
        padding: 68px 32px 40px;
        transition: right 300ms ease;
        box-shadow: -4px 0 24px rgba(0,0,0,.2);
        overflow-y: auto;
    }
    .mobile-nav-brand {
        display: block;
        padding: 16px 0 20px;
        border-bottom: 1px solid rgba(255,255,255,.08);
        margin-bottom: 8px;
    }
    .mobile-nav-brand strong {
        display: block;
        font-family: var(--heading);
        font-size: .8125rem;
        font-weight: 700;
        color: #fff;
    }
    .mobile-nav-brand span {
        font-family: var(--heading);
        font-size: .6875rem;
        font-weight: 500;
        color: rgba(255,255,255,.45);
    }
    .main-nav.open { right: 0; }

    .main-nav > ul { flex-direction: column; gap: 0; }

    .main-nav > ul > li > a {
        display: block;
        padding: 14px 0;
        font-size: 1.0625rem;
        border-bottom: 1px solid rgba(255,255,255,.05);
    }

    .main-nav a::after { display: none; }

    .dropdown {
        position: static;
        min-width: 0;
        background: rgba(255,255,255,.03);
        border-radius: 0;
        box-shadow: none;
        padding: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 300ms ease;
    }

    .has-dropdown.dropdown-open .dropdown { max-height: 300px; }
    .has-dropdown:hover .dropdown { max-height: 0; }
    .has-dropdown.dropdown-open:hover .dropdown { max-height: 300px; }

    .dropdown li a {
        padding: 12px 24px !important;
        font-size: .9375rem !important;
        border-bottom: 1px solid rgba(255,255,255,.03) !important;
        color: rgba(255,255,255,.65) !important;
    }
    .dropdown li a:hover { background: rgba(255,255,255,.04) !important; color: #fff !important; }

    .dropdown-arrow { float: right; margin-top: 4px; }
    .has-dropdown.dropdown-open .dropdown-arrow { transform: rotate(180deg); }

    .mobile-toggle { display: flex; }
    .mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .mobile-toggle.active span:nth-child(2) { opacity: 0; }
    .mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    h2 { font-size: 1.75rem; }
    .hero { min-height: 85vh; }
    .hero-line { font-size: clamp(2rem, 8vw, 3rem); }
    .hero-content { padding: 60px 0 100px; }
    .back-to-top { bottom: 80px; right: 20px; width: 44px; height: 44px; font-size: 1.1rem; }

    .programs-grid,
    .news-grid,
    .news-listing-grid { grid-template-columns: 1fr; }

    .program-card { height: 280px; }
    .program-card-inner p, .program-tag { opacity: 1; transform: none; }

    .cta-buttons { flex-direction: column; align-items: center; }
    .footer-content { grid-template-columns: 1fr; gap: 32px; }
    .page-banner h1 { font-size: 2rem; }

    .staff-grid     { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .contact-grid   { grid-template-columns: 1fr; }
    .involve-grid,
    .donate-options { grid-template-columns: 1fr; }
    .form-row       { grid-template-columns: 1fr; }

    .features  { padding: 36px 0; }
    .mission,
    .programs,
    .news      { padding: 72px 0; }
    .impact    { padding: 60px 0; }
    .opportunity-grid { grid-template-columns: 1fr 1fr; }
    .opportunity-item-lg { grid-row: span 1; }
    .opportunity-item-lg .opportunity-placeholder { min-height: 200px; }
    .hero-buttons { justify-content: center; }
    .final-cta .cta-buttons { flex-direction: column; align-items: center; }
    .leader-card { grid-template-columns: 1fr; }
    .board-grid  { grid-template-columns: repeat(2, 1fr); }
    .advisory-grid { grid-template-columns: 1fr; }
    .impact-tiers { grid-template-columns: 1fr; }
    .philosophy-grid { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-sub { font-size: 1rem; }
    .btn { padding: 12px 26px; font-size: .875rem; }
    .btn-donate { padding: 8px 18px; font-size: .8125rem; }
    .impact-grid { grid-template-columns: 1fr; }
    .impact-item h3 { font-size: 2.25rem; }
    .values-grid { grid-template-columns: 1fr; }
    .staff-grid  { grid-template-columns: 1fr; }
    .board-grid  { grid-template-columns: 1fr; }
    .opportunity-grid { grid-template-columns: 1fr; }
    .highlights-grid { grid-template-columns: 1fr; }
    .partners-grid { grid-template-columns: 1fr; gap: 24px; }
    .welcome-modal { padding: 32px 24px; }
}


/* =============================================
   LEADER BIO CARD
   ============================================= */
.leader-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 36px;
    align-items: start;
}

.leader-photo {
    width: 200px;
    height: 200px;
    border-radius: var(--r-lg);
    background: linear-gradient(135deg, var(--navy-light), var(--navy-mid));
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.2);
    font-size: 3rem;
    overflow: hidden;
    flex-shrink: 0;
}

.leader-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-info h3 {
    font-size: 1.375rem;
    margin-bottom: 4px;
}

.leader-title {
    font-family: var(--heading);
    font-weight: 600;
    font-size: .875rem;
    color: var(--teal);
    margin-bottom: 20px;
}

.leader-bio p {
    font-size: .9375rem;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 12px;
}

.bio-expanded {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
}

.bio-expanded.open {
    max-height: 600px;
}

.bio-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    font-family: var(--heading);
    font-size: .8125rem;
    font-weight: 600;
    color: var(--teal);
    cursor: pointer;
    padding: 4px 0;
    margin-top: 4px;
    transition: color var(--speed) var(--ease);
}

.bio-toggle:hover { color: var(--orange); }

.bio-toggle i {
    font-size: .625rem;
    transition: transform .3s ease;
}

.bio-toggle.open i {
    transform: rotate(180deg);
}


/* =============================================
   BOARD GRID
   ============================================= */
.board-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.board-member {
    padding: 20px 24px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    font-family: var(--heading);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transition: all var(--speed) var(--ease);
}

.board-member:hover {
    border-color: transparent;
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}


/* =============================================
   ADVISORY GRID
   ============================================= */
.advisory-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 24px;
    align-items: stretch;
}

.advisory-card {
    padding: 28px 24px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    transition: all var(--speed) var(--ease);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    min-height: 140px;
}

.advisory-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-sm);
}

.advisory-role {
    display: block;
    font-family: var(--heading);
    font-size: .6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--teal);
    margin-bottom: 8px;
    text-align: center;
}

.advisory-chair .advisory-role { color: var(--orange); }

.advisory-card h4 {
    font-size: 1.0625rem;
    margin-bottom: 4px;
    text-align: center;
}

.advisory-card p {
    font-size: .875rem;
    color: var(--text-light);
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
}


/* =============================================
   COMMUNITY PARTNERS
   ============================================= */
.partners {
    padding: 56px 0;
    background: var(--light);
    text-align: center;
}

.partners-label {
    font-family: var(--heading);
    font-size: .6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--text-light);
    margin-bottom: 32px;
}

.partners-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 56px;
    flex-wrap: wrap;
}

.partners-grid img {
    height: 56px;
    width: auto;
    filter: grayscale(100%);
    opacity: .45;
    transition: all 350ms var(--ease);
}

.partners-grid img:hover {
    filter: grayscale(0);
    opacity: 1;
}


/* =============================================
   FAQ ACCORDION
   ============================================= */
.faq-list {
    max-width: 800px;
    margin: 48px auto 0;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 0;
    background: none;
    border: none;
    font-family: var(--heading);
    font-weight: 600;
    font-size: 1.0625rem;
    color: var(--text);
    cursor: pointer;
    text-align: left;
    transition: color var(--speed) var(--ease);
    gap: 16px;
}

.faq-question:hover { color: var(--orange); }

.faq-icon {
    font-size: .75rem;
    color: var(--orange);
    transition: transform 300ms ease;
    flex-shrink: 0;
}

.faq-item.open .faq-icon { transform: rotate(180deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 400ms ease;
}

.faq-item.open .faq-answer { max-height: 200px; }

.faq-answer-inner {
    padding: 0 0 20px;
    font-size: .9375rem;
    color: var(--text-light);
    line-height: 1.7;
}


/* =============================================
   PROGRAM "NO-COST" BADGE
   ============================================= */
.program-free {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    background: var(--teal);
    color: #fff;
    font-family: var(--heading);
    font-size: .5625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    padding: 5px 12px;
    border-radius: 3px;
}


/* =============================================
   DONATE PAGE — Hero & Sections
   ============================================= */
.donate-hero {
    padding: calc(var(--header-h) + 80px) 0 80px;
    background: linear-gradient(135deg, var(--navy) 0%, #1a3a52 40%, var(--orange-dark) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.donate-hero::after {
    content: '';
    position: absolute;
    right: -60px; top: -60px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232,119,34,.1) 0%, transparent 70%);
    pointer-events: none;
}

.donate-hero h1 {
    color: #fff;
    font-size: 2.75rem;
    font-weight: 800;
    letter-spacing: -.02em;
    margin-bottom: 16px;
    line-height: 1.15;
}

.donate-hero .banner-subtitle {
    color: rgba(255,255,255,.75);
    font-size: 1.125rem;
    max-width: 560px;
    margin: 0 auto;
}

/* Impact tiers */
.impact-tiers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.impact-tier {
    padding: 32px 24px;
    border: 2px solid var(--border);
    border-radius: var(--r-md);
    text-align: center;
    background: var(--white);
    transition: all var(--speed) var(--ease);
    position: relative;
}

.impact-tier:hover {
    border-color: var(--orange);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.featured-tier { border-color: var(--orange); }

.tier-amount {
    font-family: var(--heading);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--orange);
    margin-bottom: 10px;
    line-height: 1;
}

.impact-tier p {
    font-size: .9375rem;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Philosophy grid */
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    text-align: center;
    margin-top: 48px;
}

.philosophy-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 32px 20px;
}

.philosophy-over {
    font-family: var(--heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--orange);
}

.philosophy-vs {
    font-size: .6875rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--text-light);
    margin: 4px 0;
}

.philosophy-under {
    font-family: var(--heading);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
    text-decoration: line-through;
    opacity: .45;
}

/* Donate story */
.donate-story {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.donate-story-quote {
    font-family: Georgia, serif;
    font-size: 4.5rem;
    color: var(--orange);
    line-height: 1;
    opacity: .4;
    margin-bottom: 4px;
    user-select: none;
}

.donate-story h2 {
    color: #fff;
    margin-bottom: 20px;
}

.donate-story p {
    font-size: 1.0625rem;
    color: rgba(255,255,255,.8);
    line-height: 1.8;
    margin-bottom: 16px;
}

.donate-story-highlight {
    font-style: italic;
    color: var(--orange-glow) !important;
    font-size: 1.125rem !important;
}

/* Trust badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.trust-badges span {
    font-family: var(--heading);
    font-size: .75rem;
    font-weight: 600;
    color: rgba(255,255,255,.7);
    text-transform: uppercase;
    letter-spacing: .06em;
}

.trust-badges i {
    color: rgba(255,255,255,.5);
    margin-right: 6px;
}


/* (palm accent removed — hero now uses image carousel) */

/* Hero dual buttons */
.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(16px);
    animation: heroReveal .7s var(--ease) forwards .75s;
}

.hero-buttons .btn-primary {
    box-shadow: 0 4px 16px rgba(232,119,34,.3);
}


/* =============================================
   OPPORTUNITY GALLERY
   ============================================= */
.opportunity {
    padding: 96px 0;
    background: var(--light);
}

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

.opportunity-item {
    border-radius: var(--r-md);
    overflow: hidden;
    position: relative;
}

/* First item spans 2 rows */
.opportunity-item-lg {
    grid-row: span 2;
}

.opportunity-placeholder {
    width: 100%;
    height: 100%;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--navy-light), var(--navy-mid));
    color: rgba(255,255,255,.2);
    transition: all 350ms var(--ease);
}

.opportunity-item-lg .opportunity-placeholder {
    min-height: 416px;
}

.opportunity-placeholder i {
    font-size: 2rem;
}

.opportunity-placeholder span {
    font-family: var(--heading);
    font-size: .6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.opportunity-placeholder:hover {
    background: linear-gradient(135deg, var(--navy-mid), #2a5a7a);
    color: rgba(255,255,255,.35);
}

.opportunity-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 400ms var(--ease);
}

.opportunity-item:hover img {
    transform: scale(1.04);
}


/* =============================================
   IMPACT — CONTENT + STATS
   ============================================= */
.impact-content {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 48px;
}

.impact-content h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 16px;
}

.impact-content p {
    color: rgba(255,255,255,.75);
    font-size: 1.0625rem;
    line-height: 1.75;
    margin-bottom: 8px;
}


/* =============================================
   FINAL CTA (navy variant)
   ============================================= */
.final-cta {
    padding: 80px 0;
    text-align: center;
    background: var(--navy);
}

.final-cta h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 14px;
}

.final-cta p {
    color: rgba(255,255,255,.72);
    font-size: 1.0625rem;
    max-width: 520px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.final-cta .cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.final-cta .btn-outline {
    color: #fff;
    border-color: rgba(255,255,255,.4);
}

.final-cta .btn-outline:hover {
    background: #fff;
    color: var(--navy);
    border-color: #fff;
}


/* =============================================
   PROGRAM PAGE THEMING — Standard Palette
   ============================================= */

/* Banner watermark icon */
.banner-watermark {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 8rem;
    color: rgba(255,255,255,.06);
    pointer-events: none;
    z-index: 0;
    animation: watermarkFloat 6s ease-in-out infinite;
}

@keyframes watermarkFloat {
    0%, 100% { transform: translateY(-50%); }
    50% { transform: translateY(-55%); }
}

.page-banner .container { position: relative; z-index: 1; }

/* Industry-themed banner backgrounds — each uses navy base with a distinct tint */
.page-banner-culinary     { background: linear-gradient(135deg, var(--navy) 30%, #3a1812 100%); }
.page-banner-construction { background: linear-gradient(135deg, var(--navy) 30%, #3a2c12 100%); }
.page-banner-technology   { background: linear-gradient(135deg, var(--navy) 30%, #0e3e40 100%); }

/* Per-industry accent colors on highlight icons */
.program-culinary .highlight-icon {
    background: rgba(192,57,43,.08);
    color: #c0392b;
}
.program-culinary .highlight-card:hover .highlight-icon {
    background: #c0392b;
    color: #fff;
}
.program-construction .highlight-icon {
    background: rgba(196,123,26,.08);
    color: #c47b1a;
}
.program-construction .highlight-card:hover .highlight-icon {
    background: #c47b1a;
    color: #fff;
}
.program-technology .highlight-icon {
    background: rgba(26,139,141,.08);
    color: var(--teal);
}
.program-technology .highlight-card:hover .highlight-icon {
    background: var(--teal);
    color: #fff;
}

/* Per-industry info card accent */
.program-culinary .program-info-card     { border-top-color: #c0392b; }
.program-construction .program-info-card { border-top-color: #c47b1a; }
.program-technology .program-info-card   { border-top-color: var(--teal); }

/* Per-industry career item hover */
.program-culinary .career-item:hover     { border-left-color: #c0392b; }
.program-construction .career-item:hover { border-left-color: #c47b1a; }
.program-technology .career-item:hover   { border-left-color: var(--teal); }

/* Curriculum list — animated check marks */
.curriculum-list li {
    position: relative;
    padding-left: 28px;
}
.curriculum-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    font-size: .75rem;
    color: var(--orange);
    opacity: 0;
    transform: scale(0);
    transition: all .3s ease;
}
.curriculum-list li.revealed::before {
    opacity: 1;
    transform: scale(1);
}

/* Info card — unified orange accent */
.program-info-card {
    border-top: 4px solid var(--orange);
}

/* Career card hover */
.career-item {
    border-left: 3px solid transparent;
    transition: all var(--speed) var(--ease);
}

.career-item:hover {
    border-left-color: var(--orange);
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

/* --- Program Highlights --- */
.program-highlights {
    padding: 80px 0;
    background: var(--white);
}

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

.highlight-card {
    text-align: center;
    padding: 36px 20px;
    border-radius: var(--r-md);
    border: 1px solid var(--border);
    background: var(--white);
    transition: all var(--speed) var(--ease);
}

.highlight-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.375rem;
    background: rgba(232,119,34,.08);
    color: var(--orange);
    transition: all var(--speed) var(--ease);
}

.highlight-card:hover .highlight-icon {
    background: var(--orange);
    color: #fff;
}

.highlight-card h4 {
    font-family: var(--heading);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.highlight-card p {
    font-size: .875rem;
    color: var(--text-light);
    line-height: 1.5;
}


/* =============================================
   WELCOME POPUP
   ============================================= */
.welcome-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(13,33,55,.6);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: popupFadeIn .4s ease forwards;
}

.welcome-overlay.hidden {
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
}

@keyframes popupFadeIn {
    to { opacity: 1; }
}

.welcome-modal {
    background: var(--white);
    border-radius: var(--r-lg);
    max-width: 520px;
    width: 90%;
    padding: 48px 40px 40px;
    text-align: center;
    position: relative;
    box-shadow: 0 24px 64px rgba(0,0,0,.25);
    transform: translateY(20px);
    animation: popupSlideUp .4s ease forwards .1s;
    opacity: 0;
}

@keyframes popupSlideUp {
    to { transform: translateY(0); opacity: 1; }
}

.welcome-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
    transition: color .2s;
    line-height: 1;
    padding: 4px;
}

.welcome-close:hover { color: var(--text); }

.welcome-modal h2 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--navy);
}

.welcome-modal .welcome-tagline {
    color: var(--orange);
    font-family: var(--heading);
    font-weight: 600;
    font-size: .875rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 20px;
}

.welcome-modal p {
    font-size: .9375rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 16px;
}

.welcome-modal .btn {
    margin-top: 8px;
}

.welcome-credit {
    margin-top: 24px;
    font-size: .75rem;
    color: var(--text-light);
    opacity: .7;
}

.welcome-credit a {
    color: var(--orange);
    font-weight: 600;
}


@media (max-width: 1024px) {
    .highlights-grid { grid-template-columns: repeat(2, 1fr); }
    .banner-watermark { font-size: 5rem; right: 5%; }
}

@media (max-width: 768px) {
    .highlights-grid { grid-template-columns: 1fr; }
    .banner-watermark { display: none; }
    .program-highlights { padding: 60px 0; }
    .welcome-modal { padding: 36px 24px 32px; }
}

/* =============================================
   REDUCED MOTION (Accessibility)
   ============================================= */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
}
