/* ============================================================
   C4JUSTICE.ORG — Communities United for Justice Fund
   Theme: Navy / White / Gold  (2026)
   ============================================================ */

/* ── CSS Variables ── */
:root {
    --navy:        #0d1f3c;
    --navy-dark:   #0d1b2e;
    --navy-light:  #1a3a6b;
    --bg-dark:     #0d1f3c;
    --white:       #ffffff;
    --off-white:   #F4F4F4;
    --text:        #1A1A1A;
    --text-light:  #666666;
    --text-muted:  #666666;
    --border:      #DDDDDD;
    --gold:        #e8c84a;
    --gold-dark:   #c8941a;

    --font-head:  'Merriweather', Georgia, serif;
    --font-body:  'Source Sans 3', 'Segoe UI', sans-serif;

    --shadow-sm:  0 2px 8px rgba(13,31,60,0.10);
    --shadow-md:  0 4px 16px rgba(13,31,60,0.14);
    --shadow-lg:  0 8px 32px rgba(13,31,60,0.18);
    --transition: all 0.22s ease;

    /* Legacy compat aliases */
    --c4-primary: #0d1f3c;
    --c4-primary-light: #1a3a6b;
    --c4-secondary: #0d1f3c;
    --c4-gold: #e8c84a;
    --c4-dark: #ffffff;
    --c4-text: #1A1A1A;
    --c4-text-muted: #666666;
    --c4-text-dark: #1A1A1A;
    --c4-white: #ffffff;
    --c4-border: #DDDDDD;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--text);
    background: #f5f7fa;
    overflow-x: hidden;
    line-height: 1.7;
}
img { max-width: 100%; height: auto; }
a { color: var(--navy); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Utility ── */
.py-section { padding: 64px 0; }
.section-padding { padding: 64px 0; }

/* ============================================================
   NAV LOGO (integrated into site-nav)
   ============================================================ */
.nav-logo-area {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none; flex-shrink: 0; padding: 6px 0;
}
.nav-logo-area:hover { text-decoration: none; }
.nav-logo-circle {
    width: 46px; height: 46px; border-radius: 50%;
    border: 2px solid var(--gold); overflow: hidden; flex-shrink: 0;
    background: var(--navy);
}
.nav-logo-circle img { width: 100%; height: 100%; object-fit: cover; }
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-name {
    font-family: var(--font-head); font-size: 13px; font-weight: 900;
    color: var(--navy); line-height: 1.2;
}
/* In dark nav (mobile), logo name is white */
.nav-logo-mobile .nav-logo-name { color: #ffffff; }
.nav-logo-sub {
    font-size: 9px; color: var(--gold); font-weight: 700;
    letter-spacing: 0.8px; text-transform: uppercase; margin-top: 2px;
}

/* Right section: fb + donate */
.nav-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-fb-icon {
    width: 32px; height: 32px; border-radius: 6px;
    background: #1877F2; color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; text-decoration: none; transition: var(--transition);
    flex-shrink: 0;
}
.nav-fb-icon:hover { background: #0d6ddb; color: #fff; text-decoration: none; }

/* Legacy: keep .logo-circle for footer */
.logo-circle {
    width: 52px; height: 52px; border-radius: 50%;
    background: var(--navy); border: 2px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; flex-shrink: 0;
}
.logo-circle img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   SITE HEADER (white bar — logo + donate — desktop only)
   ============================================================ */
.site-header {
    background: #ffffff;
    border-bottom: 1px solid #e0e4ec;
    position: sticky;
    top: 0;
    z-index: 400;
}
@media (min-width: 992px) {
    .site-header { display: block; }
}
.site-header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
}
.site-header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}
/* Larger logo circle in white header */
.nav-logo-circle-lg {
    width: 64px !important;
    height: 64px !important;
}
.nav-logo-name-lg {
    font-size: 16px !important;
}
/* Logo in dark nav: mobile only */
.nav-logo-mobile { display: flex; }
@media (min-width: 992px) {
    .nav-logo-mobile { display: none !important; }
}

/* ============================================================
   SITE NAV (dark sticky bar — links + facebook)
   ============================================================ */
.site-nav {
    background: #0d1f3c;
    position: sticky;
    top: 0;
    z-index: 300;
    transition: box-shadow 0.2s;
    border-bottom: none;
}
.site-nav.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.3); }

.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    min-height: 48px;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0;
    line-height: 1;
    margin: 0; padding: 0;
    flex: 1;
    justify-content: flex-end;
}
.nav-links > li { position: relative; }
    .nav-links > li > a {
        display: block;
        padding: 14px 17px;
        color: var(--navy);
        font-size: 13.5px;
        font-weight: 600;
        letter-spacing: 0.3px;
        text-decoration: none;
        border-bottom: 3px solid transparent;
        transition: var(--transition);
    }
        .nav-links > li > a:hover,
        .nav-links > li > a.active {
            background: rgba(27,79,145,0.06);
            border-bottom-color: var(--gold);
            text-decoration: none;
        }

        .nav-links > li > a.active {
            color: var(--navy);
        }

/* ── Nav caret icon ─────────────────────────────────────────── */
.nav-caret {
    font-size: 9px; margin-left: 4px;
    transition: transform 0.2s;
    vertical-align: middle;
}
.has-mega.open > a .nav-caret { transform: rotate(180deg); }

/* ── Mega Menu Panel ─────────────────────────────────────────── */
.has-mega { position: relative; }

.mega-panel {
    position: absolute;
    top: 100%; left: 0;
    width: 640px;
    background: var(--white);
    border-top: 3px solid var(--gold);
    box-shadow: 0 16px 48px rgba(0,0,0,0.22);
    display: none;
    z-index: 450;
    animation: megaFadeIn 0.18s ease;
    border-radius: 0 0 6px 6px;
}
/* Prevent overflow off the right edge of the viewport */
.has-mega:last-of-type .mega-panel,
.mega-panel.align-right { left: auto; right: 0; }
@keyframes megaFadeIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}
.has-mega.open .mega-panel { display: block; }

/* 3-column grid */
.mega-grid {
    display: grid;
    grid-template-columns: 190px 1fr 175px;
    max-width: 100%;
    min-height: 260px;
}

/* ── Col 1 — Overview (navy) ─────────────────────────────────── */
.mega-overview {
    background: var(--navy);
    padding: 22px 18px;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.mega-ov-label {
    font-size: 10px; font-weight: 700; letter-spacing: 1.6px;
    text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
}
.mega-ov-title {
    font-family: var(--font-serif); font-size: 1.15rem; font-weight: 700;
    color: #fff; margin-bottom: 12px; line-height: 1.3;
}
.mega-ov-text {
    font-size: .82rem; color: rgba(255,255,255,0.68); line-height: 1.65;
    flex: 1; margin-bottom: 20px;
}
.mega-ov-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: .8rem; font-weight: 700;
    color: var(--navy); text-decoration: none;
    background: var(--gold);
    padding: 9px 18px;
    border-radius: 3px;
    letter-spacing: .03em;
    margin-top: auto;
    align-self: flex-start;
    white-space: nowrap;
}
.mega-ov-link:hover { background: #f5d55a; color: var(--navy); text-decoration: none; }

/* ── Col 2 — Main items ──────────────────────────────────────── */
.mega-col {
    padding: 16px 14px;
    border-right: 1px solid var(--border);
}
.mega-col:last-child { border-right: none; }
.mega-col-label {
    font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
    text-transform: uppercase; color: var(--text-muted);
    margin-bottom: 10px; padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}

/* Individual mega item (link) */
.mega-item {
    display: flex; align-items: flex-start; gap: 10px;
    padding: 7px 8px; border-radius: 5px;
    text-decoration: none; transition: background 0.15s;
    margin-bottom: 2px;
}
.mega-item:hover { background: var(--off-white); text-decoration: none; }
.mega-icon {
    width: 30px; height: 30px; border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    font-size: .75rem; flex-shrink: 0; margin-top: 1px;
}
.mega-item-body { display: flex; flex-direction: column; }
.mega-item-title {
    font-size: .8rem; font-weight: 700; color: var(--text);
    line-height: 1.2; margin-bottom: 2px;
}
.mega-item-desc { font-size: .7rem; color: var(--text-muted); line-height: 1.3; }
.mega-item:hover .mega-item-title { color: var(--navy); }

/* ── Col 3 — Secondary (off-white) ──────────────────────────── */
.mega-col-alt { background: var(--off-white); }

.mega-alt-item {
    display: flex; align-items: flex-start; gap: 10px;
    padding: 7px 8px; border-radius: 5px;
    text-decoration: none; transition: background 0.15s; margin-bottom: 2px;
}
.mega-alt-item:hover { background: rgba(0,0,0,0.05); text-decoration: none; }
.mega-alt-icon {
    width: 28px; height: 28px; border-radius: 5px;
    display: flex; align-items: center; justify-content: center;
    font-size: .72rem; flex-shrink: 0; margin-top: 1px;
    background: rgba(27,79,145,0.1); color: var(--navy);
}
.mega-alt-body { display: flex; flex-direction: column; }
.mega-alt-title {
    font-size: .78rem; font-weight: 700; color: var(--text);
    line-height: 1.2; margin-bottom: 2px;
}
.mega-alt-desc { font-size: .69rem; color: var(--text-muted); line-height: 1.3; }
.mega-alt-item:hover .mega-alt-title { color: var(--navy); }

/* ── Donate button ───────────────────────────────────────────── */
.nav-donate {
    background: linear-gradient(135deg, #f5d55a 0%, var(--gold) 60%, #d4a82a 100%);
    color: var(--navy-dark) !important;
    padding: 9px 22px;
    border-radius: 4px;
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(232,200,74,0.4);
    animation: donate-pulse 2.8s ease-in-out infinite;
    transition: var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
}
.nav-donate:hover { background: linear-gradient(135deg, #ffe070 0%, #f5d55a 100%); color: var(--navy-dark); text-decoration: none; box-shadow: 0 4px 16px rgba(232,200,74,0.55); }

/* ── Hamburger ───────────────────────────────────────────────── */
.nav-toggler {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none; border: none;
    cursor: pointer;
    padding: 8px 10px;
    border-radius: 6px;
    transition: background 0.15s;
}
.nav-toggler:hover { background: rgba(13,31,60,0.07); }
.nav-toggler span {
    display: block;
    width: 22px; height: 2px;
    background: #0d1f3c;
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}
/* Animate to X when open */
.nav-toggler.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggler.open span:nth-child(2) { opacity: 0; }
.nav-toggler.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile responsive ───────────────────────────────────────── */
@media (max-width: 991px) {
    .nav-toggler { display: flex; }
    .nav-right { gap: 4px; align-items: center; }
    .nav-logo-name { font-size: 12px; }
    .nav-logo-sub { display: none; }
    .nav-donate { display: none; }
    .nav-fb-icon { display: none; }

    /* Full-screen slide-down nav panel */
    .nav-links {
        position: fixed;
        top: 70px; left: 0; right: 0; bottom: 0;
        background: #0d1f3c;
        border-top: 2px solid var(--gold);
        padding: 0 0 48px;
        display: none;
        z-index: 500;
        box-shadow: 0 8px 24px rgba(0,0,0,0.6);
        overflow-y: scroll;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        overflow-anchor: none;
    }
    .nav-links.open { display: block; }
    /* Lock body when nav is open (set via JS) */
    body.nav-open { overflow: hidden; }

    /* Top-level nav items */
    .nav-links > li > a {
        padding: 14px 20px;
        height: auto;
        border-bottom: 1px solid rgba(255,255,255,0.07) !important;
        justify-content: space-between;
        display: flex;
        align-items: center;
        font-size: 15px;
        font-weight: 600;
        color: rgba(255,255,255,0.85);
        white-space: normal;
    }
    .nav-links > li > a:hover,
    .nav-links > li > a.active { color: #fff; background: rgba(200,169,81,0.08); }

    /* Caret — bigger tap target */
    .nav-links > li > a .nav-caret { font-size: 12px; margin-left: 8px; opacity: 0.6; transition: transform 0.2s; }
    .has-mega.open > a .nav-caret { transform: rotate(180deg); opacity: 1; color: var(--gold); }

    /* Mobile mega panel — accordion style */
    .mega-panel {
        position: static;
        width: 100%;
        border-top: none;
        border-radius: 0;
        box-shadow: none;
        animation: none;
        background: rgba(0,0,0,0.25);
        border-left: 3px solid var(--gold);
        margin-left: 0;
    }
    .mega-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .mega-overview { display: none; }

    /* Section label inside mobile dropdown */
    .mega-col, .mega-col-alt {
        background: transparent;
        padding: 4px 0;
        border-right: none;
        border-top: none;
    }
    .mega-col-alt { background: transparent; }
    .mega-col-label {
        color: var(--gold);
        font-size: 10px;
        letter-spacing: 1.5px;
        padding: 10px 20px 4px;
        border-bottom: none;
        margin-bottom: 0;
    }

    /* Each link inside — plain, compact, no icon */
    .mega-item, .mega-alt-item {
        display: flex;
        align-items: center;
        padding: 10px 20px;
        border-radius: 0;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        text-decoration: none;
        gap: 0;
    }
    .mega-item:last-child, .mega-alt-item:last-child { border-bottom: none; }
    .mega-item:hover, .mega-alt-item:hover { background: rgba(200,169,81,0.08); }

    /* Hide icon boxes on mobile — show only text */
    .mega-icon, .mega-alt-icon { display: none !important; }

    /* Item text */
    .mega-item-body, .mega-alt-body { display: flex; flex-direction: column; }
    .mega-item-title, .mega-alt-title {
        color: rgba(255,255,255,0.88);
        font-size: 13px;
        font-weight: 600;
        line-height: 1.3;
    }
    .mega-item-desc, .mega-alt-desc {
        color: rgba(255,255,255,0.4);
        font-size: 11px;
        line-height: 1.3;
        margin-top: 1px;
    }
    .mega-item:hover .mega-item-title,
    .mega-alt-item:hover .mega-alt-title { color: var(--gold); }

    /* Overview link */
    .mega-ov-link { display: none; }
}

/* ============================================================
   DONATE BAR
   ============================================================ */
.donate-bar {
    background: linear-gradient(90deg, var(--navy-dark) 0%, var(--navy-light) 50%, var(--navy-dark) 100%);
    border-bottom: 2px solid var(--gold);
    text-align: center;
    padding: 11px 32px;
    color: rgba(255,255,255,0.92);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
}
.donate-bar a {
    display: inline-block;
    background: var(--gold);
    color: var(--navy) !important;
    font-weight: 700;
    text-decoration: none;
    margin-left: 10px;
    padding: 2px 12px;
    border-radius: 3px;
    font-size: 12px;
    letter-spacing: 0.5px;
    transition: background 0.2s;
}
.donate-bar a:hover { background: #f5d55a; text-decoration: none; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
    background: var(--navy);
    padding: 52px 32px 44px;
    text-align: left;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: ''; position: absolute;
    top: -60px; right: -60px;
    width: 300px; height: 300px;
    background: rgba(255,255,255,0.04); border-radius: 50%;
}
.page-hero::after {
    content: ''; position: absolute;
    bottom: -80px; left: -40px;
    width: 250px; height: 250px;
    background: rgba(200,169,81,0.07); border-radius: 50%;
}
.page-hero-particles, .page-hero-shapes, .ph-shape { display: none; }
.page-hero-content { position: relative; z-index: 2; }

.page-hero-label {
    display: inline-block;
    font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
    text-transform: uppercase; color: var(--gold);
    border-left: 3px solid var(--gold); padding-left: 10px;
    margin-bottom: 12px;
}
.page-hero-title {
    font-family: var(--font-head);
    font-size: 2.2rem; font-weight: 900;
    color: white; margin-bottom: 10px;
}
.page-hero-sub, .page-hero-subtitle {
    font-size: 1rem; color: rgba(255,255,255,0.7);
    max-width: 640px; margin: 0;
}
.page-hero-overlay { display: none; }
.page-hero-breadcrumb { margin-top: 14px; }
.breadcrumb { background: transparent; padding: 0; margin: 0; justify-content: flex-start; }
.breadcrumb-item a { color: rgba(255,255,255,0.65); font-size: 13px; }
.breadcrumb-item a:hover { color: var(--gold); }
.breadcrumb-item.active { color: rgba(255,255,255,0.4); font-size: 13px; }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.3); }

/* ============================================================
   SECTION STYLES
   ============================================================ */
.section-header { margin-bottom: 32px; }
/* Section headers are left-aligned by design (matching light theme) */
.section-header.text-center { text-align: left !important; }

.section-label {
    display: inline-block;
    font-size: 11px; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; color: var(--navy);
    border-left: 3px solid var(--navy); padding-left: 10px;
    margin-bottom: 8px;
}
/* Restore left-border style for formerly-centered labels */
.section-header.text-center .section-label {
    border-left: 3px solid var(--navy);
    border-bottom: none;
    padding-left: 10px; padding-bottom: 0;
    margin-bottom: 8px;
}
.section-label.light { color: var(--gold); border-color: var(--gold); }
.section-header.text-center .section-label.light { border-left-color: var(--gold); border-bottom: none; }

.section-title {
    font-family: var(--font-head);
    font-size: 1.7rem; font-weight: 900;
    color: var(--navy); line-height: 1.3;
}
.section-title.light, .section-title.text-white { color: white; }
.section-subtitle {
    font-size: 15px; color: var(--text-light);
    margin-top: 8px; line-height: 1.6;
}

/* ============================================================
   HERO (Home Page)
   ============================================================ */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    border-bottom: 1px solid var(--border);
}

.slider-area {
    position: relative; height: 480px;
    overflow: hidden; background: #0d1f3c;
}
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.8s ease; }
.slide.active { opacity: 1; }
.slide-bg {
    width: 100%; height: 100%;
    background-size: cover; background-position: center;
    position: relative;
}
.slide-bg::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 35%, rgba(0,0,0,0.68) 100%);
}
.slide-bg.gradient-1 { background: linear-gradient(135deg, #1a3a6b 0%, #1B4F91 50%, #2d6ab5 100%); }
.slide-bg.gradient-2 { background: linear-gradient(135deg, #2c1a4e 0%, #3d2a6b 50%, #1a3a6b 100%); }
.slide-bg.gradient-3 { background: linear-gradient(135deg, #0d2a3a 0%, #1a4a6b 50%, #0d5a8a 100%); }
.slide-bg.gradient-4 { background: linear-gradient(135deg, #4a0808 0%, #7a1a1a 50%, #b91c1c 100%); }
.slide-bg.gradient-5 { background: linear-gradient(135deg, #0a2a0a 0%, #16531e 50%, #1a7a2a 100%); }
.slide-bg.gradient-6 { background: linear-gradient(135deg, #0d1b2e 0%, #1a3a6b 50%, #0d2a3a 100%); }

.slide-caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 20px 32px; z-index: 2; color: white;
    text-align: left;
}
.slide-caption-center {
    bottom: 50%; transform: translateY(50%);
    text-align: center; padding: 0 40px;
}
.slide-label {
    display: block; font-size: 10px; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; color: var(--gold); margin-bottom: 6px;
}
.slide-caption h2 {
    font-family: var(--font-head);
    font-size: 1.55rem; font-weight: 900; line-height: 1.3;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.slide-caption p { font-size: 13px; margin-top: 6px; opacity: 0.82; font-style: italic; margin-bottom: 0; }
/* Slide 6: quote style */
.slide-quote {
    font-family: var(--font-head); font-size: 1.9rem; font-weight: 900;
    color: var(--gold); font-style: italic; line-height: 1.35;
    text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}
.slide-attribution {
    color: rgba(255,255,255,0.75); font-size: 13px; font-weight: 600;
    letter-spacing: 0.5px; margin-top: 10px;
}

.slider-dots {
    position: absolute; bottom: 18px; left: 50%;
    transform: translateX(-50%); display: flex; gap: 6px; z-index: 3;
}
.dot, .slider-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255,255,255,0.4); cursor: pointer;
    transition: background 0.2s; border: none; padding: 0;
}
.dot.active, .slider-dot.active { background: var(--gold); }
.slider-controls {
    position: absolute; bottom: 14px; right: 16px;
    display: flex; gap: 6px; z-index: 3;
}
.slider-btn {
    background: rgba(255,255,255,0.28);
    border: 1px solid rgba(255,255,255,0.45);
    color: white; width: 32px; height: 32px;
    border-radius: 4px; cursor: pointer; font-size: 18px;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
}
.slider-btn:hover { background: rgba(255,255,255,0.5); }

.quick-actions {
    background: #ffffff;
    border-left: 4px solid var(--gold);
    padding: 24px 16px;
    display: flex; flex-direction: column; gap: 10px;
    justify-content: center;
}
.quick-actions h4 {
    font-size: 11px; text-transform: uppercase;
    letter-spacing: 1.5px; color: var(--text-light);
    font-weight: 700; margin-bottom: 4px;
}
.qa-btn {
    display: block; background: var(--navy);
    color: white; text-decoration: none;
    padding: 11px 14px; font-size: 13px; font-weight: 600;
    text-align: center; border-radius: 3px;
    transition: background 0.2s;
}
.qa-btn:hover { background: var(--navy-light); color: white; text-decoration: none; }
.qa-btn.qa-donate {
    background: linear-gradient(135deg, #f5d55a 0%, var(--gold) 60%, #d4a82a 100%);
    color: var(--navy-dark) !important;
    font-weight: 700;
    font-size: 14px;
    padding: 13px 14px;
    border: none;
    box-shadow: 0 3px 12px rgba(232,200,74,0.45);
    animation: donate-pulse 2.8s ease-in-out infinite;
}
.qa-btn.qa-donate:hover { background: linear-gradient(135deg, #ffe070 0%, #f5d55a 100%); color: var(--navy-dark) !important; text-decoration: none; box-shadow: 0 5px 18px rgba(232,200,74,0.6); }

.tagline-bar {
    background: linear-gradient(90deg, var(--navy-dark) 0%, var(--navy-light) 50%, var(--navy-dark) 100%);
    text-align: center;
    padding: 26px 32px;
    border-top: 3px solid var(--gold);
    border-bottom: 3px solid var(--gold);
}
.tagline-bar h2 {
    font-family: var(--font-head);
    font-size: 1.4rem;
    color: var(--gold);
    font-style: italic;
    font-weight: 900;
    margin: 0;
    letter-spacing: 0.2px;
    text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}
.tagline-bar p { font-size: 13px; color: rgba(255,255,255,0.7); margin-top: 8px; margin-bottom: 0; font-weight: 500; }

@media (max-width: 767px) {
    .hero-grid { grid-template-columns: 1fr; }
    .slider-area { height: 280px; }
    .quick-actions {
        flex-direction: row; flex-wrap: wrap;
        border-left: none; border-top: 1px solid var(--border); padding: 16px;
    }
    .quick-actions h4 { width: 100%; }
    .qa-btn { flex: 1 1 calc(50% - 6px); min-width: 120px; }
}

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section { background: var(--navy); padding: 36px 32px; }
.stats-card { max-width: 1320px; margin: 0 auto; }
.stat-item { text-align: center; padding: 16px 12px; }
.stat-icon { font-size: 1.4rem; color: var(--gold); margin-bottom: 8px; }
.stat-number {
    font-family: var(--font-head);
    font-size: 2rem; font-weight: 900; color: white; line-height: 1;
}
.stat-label {
    font-size: 12px; color: rgba(255,255,255,0.7);
    font-weight: 600; letter-spacing: 0.5px;
    margin-top: 4px; text-transform: uppercase;
}

/* ============================================================
   ISSUE / PILLAR CARDS
   ============================================================ */
.issues-grid {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 16px;
}
.issue-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-top: 3px solid var(--navy);
    padding: 20px 16px; border-radius: 3px;
    transition: box-shadow 0.2s, transform 0.2s;
}
.issue-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.issue-icon {
    width: 46px; height: 46px; background: var(--off-white);
    border-radius: 8px; display: flex; align-items: center;
    justify-content: center; font-size: 22px; margin-bottom: 12px; color: var(--navy);
}
.issue-card h4 { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 8px; line-height: 1.3; }
.issue-card p { font-size: 12px; color: var(--text-light); line-height: 1.6; margin-bottom: 12px; }
.issue-link { font-size: 12px; color: var(--navy); font-weight: 700; text-decoration: none; }
.issue-link:hover { text-decoration: underline; }
@media (max-width: 991px) { .issues-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 575px)  { .issues-grid { grid-template-columns: repeat(2,1fr); } }

/* Pillar cards (same structure) */
.pillar-card {
    background: var(--white); border: 1px solid var(--border);
    border-top: 3px solid var(--navy); border-radius: 3px;
    padding: 24px 18px;
    transition: box-shadow 0.2s, transform 0.2s; height: 100%;
}
.pillar-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.pillar-glow { display: none; }
.pillar-icon-wrap {
    width: 48px; height: 48px; background: var(--off-white);
    border-radius: 8px; display: flex; align-items: center;
    justify-content: center; font-size: 1.4rem; color: var(--navy); margin-bottom: 12px;
}
.pillar-number { font-size: 12px; font-weight: 700; color: var(--text-light); letter-spacing: 1px; margin-bottom: 8px; }
.pillar-title { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.pillar-text { font-size: 13px; color: var(--text-light); line-height: 1.6; margin-bottom: 14px; }
.pillar-link { font-size: 13px; color: var(--navy); font-weight: 700; text-decoration: none; }
.pillar-link:hover { text-decoration: underline; }
.pillar-political { border-top-color: #1B4F91; }
.pillar-racial    { border-top-color: #b91c1c; }
.pillar-economic  { border-top-color: #d97706; }
.pillar-environmental { border-top-color: #16a34a; }
.pillar-healthcare { border-top-color: #dc2626; }

/* ============================================================
   ARTICLE / DOC CARDS
   ============================================================ */
.article-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: 3px; overflow: hidden;
    transition: box-shadow 0.2s;
    display: flex; flex-direction: column; height: 100%;
}
.article-card:hover { box-shadow: var(--shadow-md); }

.article-card-link {
    text-decoration: none; display: flex;
    flex-direction: column; height: 100%; color: var(--text);
}
.article-card-link:hover { text-decoration: none; color: var(--text); }
.article-card-link:hover .article-card { box-shadow: var(--shadow-md); }

.article-card-img { height: 160px; overflow: hidden; }
.article-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s; }
.article-card:hover .article-card-img img { transform: scale(1.04); }
.article-card-img-placeholder {
    height: 160px;
    background: linear-gradient(135deg, #1B4F91, #2980b9);
    display: flex; align-items: center; justify-content: center;
    font-size: 2.5rem; color: rgba(255,255,255,0.25);
}

.article-card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.article-category {
    display: inline-block; font-size: 10px; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase;
    color: var(--navy); background: var(--off-white);
    padding: 3px 8px; border-radius: 2px; margin-bottom: 8px;
}
.article-title { font-size: 14px; font-weight: 700; color: var(--text); line-height: 1.4; margin-bottom: 8px; }
.article-excerpt { font-size: 12.5px; color: var(--text-light); line-height: 1.5; margin-bottom: 10px; flex: 1; }
.article-meta {
    font-size: 11.5px; color: var(--text-light);
    display: flex; align-items: center; margin-top: auto;
}
.article-meta .ms-auto { color: var(--navy); font-weight: 700; }

/* ============================================================
   EVENT CARDS
   ============================================================ */
/* ev-card (Events page) */
.ev-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: 3px; overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s; height: 100%;
}
.ev-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.ev-card-top { display: flex; align-items: stretch; }
.ev-date-block {
    background: var(--navy); color: white;
    padding: 16px 12px; text-align: center; min-width: 68px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.ev-day { font-family: var(--font-head); font-size: 2rem; font-weight: 900; line-height: 1; }
.ev-month { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-top: 2px; opacity: 0.9; }
.ev-year { font-size: 10px; opacity: 0.6; margin-top: 1px; }
.ev-top-info { flex: 1; padding: 12px 14px; }
.ev-category {
    font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
    color: var(--navy); background: var(--off-white);
    padding: 2px 7px; border-radius: 2px; margin-bottom: 6px; display: inline-block;
}
.ev-title { font-size: 14px; font-weight: 700; color: var(--text); line-height: 1.3; margin: 0; }
.ev-upcoming-badge {
    background: #16a34a; color: white; font-size: 10px; font-weight: 700;
    padding: 4px 8px; border-radius: 0 0 0 4px; align-self: flex-start;
    flex-shrink: 0; letter-spacing: 0.5px;
}
.ev-card-body { padding: 12px 14px; border-top: 1px solid var(--border); }
.ev-meta-row { display: flex; flex-direction: column; gap: 4px; margin-bottom: 8px; }
.ev-meta-item { font-size: 12px; color: var(--text-light); }
.ev-meta-item i { color: var(--navy); margin-right: 4px; }
.ev-desc { font-size: 13px; color: var(--text-light); line-height: 1.5; margin-bottom: 10px; }
.ev-register-btn {
    display: inline-block; padding: 7px 16px;
    background: var(--navy); color: white; font-size: 12px; font-weight: 700;
    border-radius: 3px; text-decoration: none; transition: background 0.2s;
}
.ev-register-btn:hover { background: var(--navy-dark); color: white; text-decoration: none; }

/* Past events */
.past-ev-item {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 14px; background: var(--white);
    border: 1px solid var(--border); border-radius: 3px;
    transition: box-shadow 0.15s;
}
.past-ev-item:hover { box-shadow: var(--shadow-sm); }
.past-ev-date-strip {
    background: var(--off-white); border: 1px solid var(--border);
    padding: 8px 12px; text-align: center; border-radius: 3px; min-width: 52px; flex-shrink: 0;
}
.ped-day { font-size: 1.3rem; font-weight: 900; color: var(--navy); display: block; line-height: 1; }
.ped-mon { font-size: 11px; color: var(--text-light); font-weight: 600; text-transform: uppercase; display: block; }
.ped-yr  { font-size: 10px; color: var(--text-light); display: block; }
.past-ev-info { flex: 1; }
.past-ev-title { font-size: 13.5px; font-weight: 700; color: var(--text); }
.past-ev-loc { font-size: 12px; color: var(--text-light); }
.past-ev-cat {
    font-size: 10px; font-weight: 700; background: var(--off-white);
    color: var(--navy); padding: 3px 8px; border-radius: 2px;
    text-transform: uppercase; letter-spacing: 0.5px;
}

/* Home event card */
.home-event-card {
    display: flex; background: var(--white);
    border: 1px solid var(--border); border-radius: 3px;
    overflow: hidden; transition: box-shadow 0.2s;
}
.home-event-card:hover { box-shadow: var(--shadow-md); }
.home-event-date-col {
    background: var(--navy); color: white;
    padding: 14px 12px; text-align: center;
    min-width: 66px; display: flex; flex-direction: column;
    align-items: center; justify-content: center; flex-shrink: 0;
}
.home-event-day { font-family: var(--font-head); font-size: 1.9rem; font-weight: 900; line-height: 1; display: block; }
.home-event-month { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; opacity: 0.9; display: block; margin-top: 2px; }
.home-event-body { padding: 12px 14px; flex: 1; }
.home-event-title { font-size: 14px; font-weight: 700; color: var(--text); line-height: 1.3; margin-bottom: 6px; }
.home-event-loc { font-size: 12px; color: var(--text-light); }
.home-event-loc i { color: var(--navy); }

/* ============================================================
   GET INVOLVED / CTA SECTION
   ============================================================ */
.cta-section, .get-involved-section { background: var(--navy); padding: 56px 32px; }
.cta-section .section-label,
.get-involved-section .section-label { color: rgba(255,255,255,0.7); border-color: var(--gold); }
.cta-section .section-title,
.get-involved-section .section-title { color: white; }

.cta-card, .gi-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 3px; padding: 24px 20px;
    transition: background 0.2s; height: 100%;
}
.cta-card:hover, .gi-card:hover { background: rgba(255,255,255,0.14); }
.cta-card-icon, .gi-icon { font-size: 2rem; color: var(--gold); margin-bottom: 12px; }
.cta-card h4, .gi-card h4 { font-size: 15px; font-weight: 700; color: white; margin-bottom: 8px; }
.cta-card p, .gi-card p { font-size: 13px; color: rgba(255,255,255,0.72); line-height: 1.6; margin-bottom: 16px; }
.cta-card-link, .gi-link { font-size: 13px; color: var(--gold); font-weight: 700; text-decoration: none; }
.cta-card-link:hover, .gi-link:hover { text-decoration: underline; color: var(--gold); }

/* bg-dark-section used on some pages */
.bg-dark-section { background: var(--navy); }
.bg-dark-section .section-title { color: white; }
.bg-dark-section .section-subtitle { color: rgba(255,255,255,0.7); }

/* Light modifier — text on dark backgrounds */
.body-text.light { color: rgba(255,255,255,0.8); }
.lead-text.light { color: rgba(255,255,255,0.9); }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-section { background: var(--off-white); padding: 56px 32px; }
.newsletter-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: 4px; padding: 40px;
}
.newsletter-icon-wrap { font-size: 2rem; color: var(--gold); margin-bottom: 12px; }
.newsletter-title { font-family: var(--font-head); font-size: 1.4rem; color: var(--navy); font-weight: 700; margin-bottom: 8px; }
.newsletter-subtitle { font-size: 14px; color: var(--text-light); line-height: 1.7; margin-bottom: 0; }
.newsletter-form-main { display: flex; flex-direction: column; gap: 12px; }
/* Standard label — placed before the input */
.form-label-c4j {
    display: block; font-size: 12.5px; font-weight: 600;
    color: var(--text); margin-bottom: 5px; letter-spacing: .02em;
}

/* Input with left icon ─ wrap the input in .input-icon-wrap */
.input-icon-wrap { position: relative; display: block; }
.input-icon-wrap .fi {
    position: absolute; left: 13px; top: 50%;
    transform: translateY(-50%);
    color: var(--navy); font-size: 13px;
    pointer-events: none; opacity: 0.55; z-index: 1;
}
/* For textareas: pin icon to top */
.input-icon-wrap .fi.fi-top { top: 13px; transform: none; }
/* Guarantee padding so text never overlaps icon */
.input-icon-wrap .form-input-c4j { padding-left: 38px; }
.form-floating-c4j { position: relative; display: flex; flex-direction: column; }
.form-floating-c4j label {
    order: -1;           /* renders BEFORE the input regardless of DOM position */
    font-size: 12.5px; font-weight: 600; color: var(--text);
    margin-bottom: 5px; display: block;
}
.form-icon {
    position: absolute; left: 13px; top: 12px;
    color: var(--navy); font-size: 13px; pointer-events: none; z-index: 1;
}
.form-input-c4j {
    width: 100%; padding: 11px 14px 11px 38px;
    border: 1px solid var(--border); border-radius: 3px;
    font-size: 13.5px; font-family: var(--font-body);
    color: var(--text); background: var(--white); outline: none;
    transition: border-color 0.2s;
}
.form-input-c4j:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(27,79,145,0.1); }
textarea.form-input-c4j { resize: vertical; padding-top: 11px; }
.form-error { font-size: 11px; color: #dc2626; margin-top: 2px; display: block; }
.btn-newsletter-submit {
    background: var(--navy); color: white; border: none;
    padding: 13px 24px; font-size: 14px; font-weight: 700;
    border-radius: 3px; cursor: pointer;
    transition: background 0.2s; font-family: var(--font-body);
}
.btn-newsletter-submit:hover { background: var(--navy-dark); }
.alert-success-c4j {
    background: rgba(22,163,74,0.1);
    border: 1px solid rgba(22,163,74,0.3);
    color: #15803d; padding: 12px 16px; border-radius: 3px; font-size: 14px;
}

/* ============================================================
   DOCUMENTS
   ============================================================ */
.doc-card {
    display: flex; align-items: center; gap: 14px;
    padding: 16px; background: var(--white);
    border: 1px solid var(--border); border-radius: 3px;
    transition: box-shadow 0.2s;
}
.doc-card:hover { box-shadow: var(--shadow-sm); }
.doc-icon { font-size: 2rem; color: var(--navy); flex-shrink: 0; width: 44px; text-align: center; }
.doc-info { flex: 1; }
.doc-title { font-size: 14px; font-weight: 700; color: var(--text); line-height: 1.3; margin-bottom: 4px; }
.doc-desc { font-size: 12.5px; color: var(--text-light); line-height: 1.4; margin-bottom: 6px; }
.doc-meta { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.doc-category {
    font-size: 10px; font-weight: 700; letter-spacing: 1px;
    text-transform: uppercase; color: var(--navy);
    background: var(--off-white); padding: 2px 7px; border-radius: 2px;
}
.doc-meta span { font-size: 11px; color: var(--text-light); }
.doc-download-btn {
    width: 38px; height: 38px; background: var(--navy); color: white;
    border-radius: 3px; display: flex; align-items: center; justify-content: center;
    font-size: 16px; text-decoration: none; transition: background 0.2s; flex-shrink: 0;
}
.doc-download-btn:hover { background: var(--navy-dark); color: white; text-decoration: none; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-info-card { background: var(--navy); border-radius: 4px; padding: 28px; color: white; }
.contact-info-title { font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; color: white; margin-bottom: 20px; }
.contact-info-card p { color: rgba(255,255,255,0.72); font-size: .88rem; line-height: 1.7; }
.contact-info-card hr { border-color: rgba(255,255,255,0.18); margin: 20px 0; }
.contact-icon-wrap {
    width: 40px; height: 40px; background: rgba(255,255,255,0.12);
    border-radius: 8px; display: flex; align-items: center; justify-content: center;
    font-size: 1rem; color: var(--gold); flex-shrink: 0;
}
.contact-info-label { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 2px; }
.contact-info-value { font-size: 14px; color: rgba(255,255,255,0.9); text-decoration: none; }
.contact-info-value:hover { color: var(--gold); }

/* .contact-form-card — defined fully in the Get Involved section below */

/* ── Get Involved — Volunteer Banner ─────────────────────────────── */
.volunteer-banner { background: var(--navy); }

/* Image wrap */
.vb-image-wrap {
    position: relative;
    display: inline-block;
    max-width: 320px;
    width: 100%;
}
.vb-image {
    width: 100%; border-radius: 8px;
    display: block; object-fit: cover;
    border: 3px solid rgba(255,255,255,0.15);
}
.vb-placeholder {
    width: 100%; height: 280px; border-radius: 8px;
    background: rgba(255,255,255,0.1);
    border: 2px dashed rgba(255,255,255,0.25);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 12px; color: rgba(255,255,255,0.6);
}
.vb-placeholder i { font-size: 3rem; }
.vb-placeholder span { font-size: .85rem; }
.vb-overlay-stat {
    position: absolute; bottom: -16px; left: 50%; transform: translateX(-50%);
    background: var(--gold); color: var(--navy-dark);
    padding: 8px 20px; border-radius: 100px;
    white-space: nowrap; font-size: .8rem; font-weight: 700;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}
.vb-overlay-stat strong { font-size: 1rem; margin-right: 4px; }

/* Contact info rows inside volunteer banner */
.vb-contact-info {
    display: flex; flex-direction: column; gap: 12px;
    margin: 20px 0;
}
.vb-contact-item {
    display: flex; align-items: center; gap: 14px;
}
.vb-contact-item > i {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,0.12);
    display: flex; align-items: center; justify-content: center;
    font-size: .9rem; color: var(--gold); flex-shrink: 0;
}
.vb-contact-item div { display: flex; flex-direction: column; }
.vb-contact-item strong { font-size: .8rem; color: rgba(255,255,255,0.6); font-weight: 600; }
.vb-contact-item a {
    font-size: .9rem; color: rgba(255,255,255,0.9);
    text-decoration: none; font-weight: 600;
}
.vb-contact-item a:hover { color: var(--gold); }

/* ── Get Involved — Contact Form Card ──────────────────────────── */
.contact-form-card { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 40px; }
.cfc-header { padding-bottom: 24px; border-bottom: 1px solid var(--border); margin-bottom: 28px; }
.cfc-icon {
    width: 52px; height: 52px; border-radius: 50%;
    background: rgba(27,79,145,0.08);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px; font-size: 1.3rem; color: var(--navy);
}
.cfc-header h2 {
    font-family: var(--font-serif); font-size: 1.5rem;
    font-weight: 700; color: var(--navy); margin-bottom: 6px;
}
.cfc-header p { font-size: .88rem; color: var(--text-muted); margin: 0; }

/* submit button sizing on forms */
.btn-submit-contact { padding: 13px 40px; font-size: 15px; }

/* ============================================================
   ABOUT / MISSION
   ============================================================ */
.lead-text { font-size: 1rem; color: var(--text); line-height: 1.7; margin-bottom: 12px; }
.body-text { font-size: 14px; color: var(--text-light); line-height: 1.8; margin-bottom: 10px; }
.about-features { display: flex; flex-direction: column; gap: 10px; margin: 20px 0; }
.feature-item { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text); }
.feature-item i { color: var(--navy); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }

.at-photo-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 160px; gap: 12px; border-radius: 4px; overflow: hidden;
}
.at-photo { background: var(--off-white); border-radius: 3px; overflow: hidden; }
.at-photo img { width: 100%; height: 100%; object-fit: cover; }
.at-photo.photo-placeholder { background: linear-gradient(135deg, #1B4F91, #2460a8); }
.at-photo-1 { grid-column: 1; grid-row: 1; }
.at-photo-2 { grid-column: 2; grid-row: 1; }
.at-photo-3 { grid-column: span 2; grid-row: 2; }
.at-badge {
    display: flex; align-items: center; gap: 10px;
    background: white; border: 1px solid var(--border); border-radius: 4px;
    padding: 12px 16px; box-shadow: var(--shadow-sm); margin-top: 12px;
}
.at-badge i { font-size: 1.5rem; color: var(--gold); }
.at-badge strong { display: block; font-size: 14px; color: var(--navy); font-weight: 700; }
.at-badge span { font-size: 12px; color: var(--text-light); }

.quote-card { background: var(--navy); border-radius: 4px; padding: 40px; text-align: center; }
.quote-icon { font-size: 2rem; color: var(--gold); margin-bottom: 16px; }
.quote-text {
    font-family: var(--font-head); font-size: 1rem; font-style: italic;
    color: rgba(255,255,255,0.9); line-height: 1.7; margin-bottom: 24px;
    max-width: 800px; margin-left: auto; margin-right: auto;
}
.quote-author { display: flex; align-items: center; justify-content: center; gap: 12px; }
.author-avatar { width: 44px; height: 44px; background: rgba(255,255,255,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: white; }
.author-info { text-align: left; }
.author-info strong { display: block; font-size: 14px; color: white; font-weight: 700; }
.author-info span { font-size: 12px; color: rgba(255,255,255,0.65); }


/* ============================================================
   BUTTONS (common)
   ============================================================ */
.btn-primary-c4j {
    display: inline-block; padding: 11px 24px;
    background: var(--navy); color: white; text-decoration: none;
    font-size: 14px; font-weight: 700; border-radius: 3px;
    transition: background 0.2s; border: none; cursor: pointer;
}
.btn-primary-c4j:hover { background: var(--navy-dark); color: white; text-decoration: none; }

.btn-outline-c4j {
    display: inline-block; padding: 10px 24px;
    border: 2px solid var(--navy); color: var(--navy);
    text-decoration: none; font-size: 14px; font-weight: 700;
    border-radius: 3px; transition: all 0.2s; background: transparent; cursor: pointer;
}
.btn-outline-c4j:hover { background: var(--navy); color: white; text-decoration: none; }

.btn-hero-primary, .btn-hero-outline {
    display: inline-block; border-radius: 3px; font-weight: 700; font-size: 14px; padding: 10px 22px; text-decoration: none; transition: all 0.2s;
}
.btn-hero-primary { background: var(--navy); color: white; }
.btn-hero-primary:hover { background: var(--navy-dark); color: white; text-decoration: none; }
.btn-hero-outline { border: 2px solid var(--navy); color: var(--navy); background: transparent; }
.btn-hero-outline:hover { background: var(--navy); color: white; text-decoration: none; }

.view-all {
    display: inline-block; padding: 10px 28px;
    border: 2px solid var(--navy); color: var(--navy);
    text-decoration: none; font-size: 13.5px; font-weight: 700;
    border-radius: 3px; transition: all 0.2s;
}
.view-all:hover { background: var(--navy); color: white; text-decoration: none; }

/* Filter pills */
.filter-pill {
    display: inline-block; padding: 6px 18px;
    border: 1.5px solid var(--border); border-radius: 100px;
    font-size: 13px; font-weight: 600; color: var(--text-light);
    text-decoration: none; transition: all 0.2s; background: var(--white);
}
.filter-pill:hover, .filter-pill.active {
    background: var(--navy); color: white;
    border-color: var(--navy); text-decoration: none;
}

/* Join CTA */
.join-cta-card { background: var(--navy); border-radius: 4px; padding: 48px 32px; }
.jcc-bg { display: none; }
.jcc-title { font-family: var(--font-head); font-size: 1.6rem; font-weight: 900; color: white; margin-bottom: 12px; }
.jcc-text { font-size: 15px; color: rgba(255,255,255,0.75); max-width: 480px; margin: 0 auto 24px; }

/* ============================================================
   JUSTICE HIGHLIGHT BAR & IMAGE SHOWCASE (home)
   ============================================================ */
.justice-highlight-bar {
    background: var(--navy); padding: 12px 32px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.jhb-inner {
    max-width: 1320px; margin: 0 auto;
    display: flex; align-items: center; gap: 12px;
    flex-wrap: wrap; justify-content: center;
}
.jhb-label { font-size: 12px; font-weight: 700; color: var(--gold); letter-spacing: 0.5px; text-transform: uppercase; }
.jhb-separator { width: 1px; height: 14px; background: rgba(255,255,255,0.25); }
.jhb-item { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.85); }
.jhb-item i { color: var(--gold); margin-right: 4px; }

.img-showcase-section { overflow: hidden; height: 220px; background: var(--navy-dark); }
.img-showcase-track { display: flex; height: 100%; }
.img-showcase-slide { flex: 0 0 auto; width: 33.333%; height: 100%; position: relative; overflow: hidden; }
.img-showcase-slide img { width: 100%; height: 100%; object-fit: cover; }
.img-showcase-fallback { display: grid; grid-template-columns: repeat(4,1fr); height: 100%; }
.isf-block { display: flex; align-items: center; justify-content: center; background: var(--navy); border-right: 1px solid rgba(255,255,255,0.1); }
.isf-inner { text-align: center; color: rgba(255,255,255,0.4); }
.isf-inner i { font-size: 2rem; display: block; margin-bottom: 8px; }
.isf-inner span { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }

/* ============================================================
   PRELOADER (hidden - not used)
   ============================================================ */
#preloader { display: none; }

/* ============================================================
   MISC UTILITY
   ============================================================ */
.text-muted { color: var(--text-light) !important; }
.container-xl { max-width: 1320px; }
.d-block { display: block; }

/* Focus */
a:focus-visible, button:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

/* ── Inner-page layout helpers ─────────────────────────────────
   Aligns all inner-page content with the sticky navbar width.  */
.ip-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================================
   HOME — ABOUT SECTION (white background, left-aligned)
   ============================================================ */
.home-about-section {
    background: #ffffff;
    padding: 64px 0;
    border-top: 1px solid var(--border);
}
.home-about-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.home-about-text .section-label {
    color: var(--gold);
    border-color: var(--gold);
}
.home-about-text h2 {
    font-family: var(--font-head);
    font-size: 1.75rem; font-weight: 900;
    color: var(--navy); line-height: 1.35;
    margin: 14px 0 12px;
}
.home-about-text p {
    color: var(--text-light); font-size: 14px;
    line-height: 1.8; margin-bottom: 18px;
}
.home-about-tags {
    display: flex; flex-direction: column;
    gap: 8px; margin-bottom: 22px;
}
.home-about-tags span {
    display: flex; align-items: center; gap: 10px;
    font-size: 13px; color: var(--text);
    background: var(--off-white); padding: 8px 12px;
    border-radius: 3px; border-left: 3px solid var(--navy);
}
.home-about-tags span i { color: var(--gold); }
.home-about-link {
    display: inline-block; color: var(--navy);
    font-size: 13px; font-weight: 700;
    border-bottom: 2px solid var(--navy); padding-bottom: 2px;
    text-decoration: none; transition: color 0.2s, border-color 0.2s;
}
.home-about-link:hover { color: var(--gold); border-bottom-color: var(--gold); text-decoration: none; }

/* Justice photo/color grid */
.home-justice-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 190px 150px;
    gap: 4px; border-radius: 4px; overflow: hidden;
}
.hjg-cell {
    display: flex; align-items: flex-end; padding: 14px;
    position: relative; overflow: hidden;
}
.hjg-cell.hjg-wide { grid-column: span 2; }
.hjg-label {
    color: white; font-size: 12px; font-weight: 700;
    background: rgba(0,0,0,0.5); padding: 4px 10px; border-radius: 2px;
    position: relative; z-index: 2;
}
.hjg-political { background: linear-gradient(135deg, #1a3a6b 0%, #0d1f3c 100%); }
.hjg-racial    { background: linear-gradient(135deg, #6b1a1a 0%, #2a0808 100%); }
.hjg-env       { background: linear-gradient(135deg, #0a2a0a 0%, #16531e 100%); }

@media (max-width: 991px) {
    .home-about-inner { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 575px) {
    .home-justice-grid { display: none; }
}

/* ============================================================
   INNER PAGES — general left-align corrections
   ============================================================ */
/* Ensure page hero content is left-aligned */
.page-hero-content { text-align: left; }
/* Cards / article sections with text-center: revert to left */
.section-title { text-align: left; }
.section-subtitle { text-align: left; }
/* Keep cards with explicit centering (stat numbers, etc.) as-is */
.stat-item { text-align: center; }

/* Print */
@media print {
    .site-nav, .site-header, .donate-bar, .site-footer { display: none; }
    body { color: #000; background: #fff; }
}

/* ============================================================
   ARTICLE DETAIL CONTENT BODY
   ============================================================ */
.article-content-body {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text);
    line-height: 1.8;
}
.article-content-body h1, .article-content-body h2, .article-content-body h3 {
    font-family: var(--font-head); color: var(--navy); margin: 28px 0 12px;
}
.article-content-body p { margin-bottom: 16px; }
.article-content-body ul, .article-content-body ol { margin: 0 0 16px 24px; }
.article-content-body li { margin-bottom: 6px; }
.article-content-body blockquote {
    border-left: 4px solid var(--navy); padding: 12px 20px;
    background: var(--off-white); margin: 24px 0;
    font-style: italic; color: var(--text-light);
}
.article-content-body img { max-width: 100%; border-radius: 3px; margin: 16px 0; }
.article-content-body a { color: var(--navy); font-weight: 600; }
.article-content-body a:hover { text-decoration: underline; }

/* ============================================================
   GET INVOLVED PAGE
   ============================================================ */
.involvement-card {
    background: var(--white); border: 1px solid var(--border);
    border-top: 3px solid var(--navy); border-radius: 3px;
    padding: 24px 20px; height: 100%;
    transition: box-shadow 0.2s, transform 0.2s;
}
.involvement-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.involvement-volunteer { border-top-color: var(--navy); }
.involvement-donate  { border-top-color: var(--gold); }
.involvement-educate { border-top-color: #16a34a; }
.inv-card-top { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.inv-icon { font-size: 1.6rem; color: var(--navy); }
.inv-card-top h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin: 0; }
.inv-list { list-style: none; padding: 0; margin: 12px 0 16px; display: flex; flex-direction: column; gap: 6px; }
.inv-list li { font-size: 13px; color: var(--text-light); display: flex; align-items: center; gap: 8px; }
.inv-list li i { color: var(--navy); font-size: 11px; }
.inv-btn {
    display: inline-block; padding: 9px 22px;
    background: var(--navy); color: white; font-size: 13px; font-weight: 700;
    border-radius: 3px; text-decoration: none; transition: background 0.2s;
}
.inv-btn:hover { background: var(--navy-dark); color: white; text-decoration: none; }

/* Legacy button classes used in some pages */
.btn-c4j {
    display: inline-block; padding: 10px 24px;
    background: var(--navy); color: white; font-size: 14px; font-weight: 700;
    border-radius: 3px; text-decoration: none; transition: background 0.2s;
    border: none; cursor: pointer;
}
.btn-c4j:hover { background: var(--navy-dark); color: white; text-decoration: none; }
.btn-c4j-outline {
    display: inline-block; padding: 9px 22px;
    border: 2px solid var(--navy); color: var(--navy);
    font-size: 13.5px; font-weight: 700; border-radius: 3px;
    text-decoration: none; transition: all 0.2s; background: transparent;
}
.btn-c4j-outline:hover { background: var(--navy); color: white; text-decoration: none; }

/* Stub cards (Issues page) */
.stub-card {
    background: var(--white); border: 1px solid var(--border);
    border-top: 3px solid var(--navy); border-radius: 3px; padding: 24px 18px;
    height: 100%; transition: box-shadow 0.2s, transform 0.2s;
}
.stub-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.stub-icon { width: 48px; height: 48px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 12px; }
.stub-title { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.stub-desc { font-size: 13px; color: var(--text-light); line-height: 1.6; margin-bottom: 16px; }

/* About page section backgrounds */
.about-section { background: var(--white); padding: 64px 0; }
.about-section-alt { background: var(--off-white); padding: 64px 0; }
.cursor-pointer{cursor:pointer;}
.at-photo-1 { background-color: var(--navy); background-image: url('/images/Home_aboutus/left.jpeg'); background-size: cover; background-position: center; }
.at-photo-2 { background-color: var(--navy); background-image: url('/images/Home_aboutus/right.jpeg'); background-size: cover; background-position: center; }
.at-photo-3 { background-color: var(--navy); background-image: url('/images/Home_aboutus/bottom.jpeg'); background-size: cover; background-position: center; }

/* ============================================================
   HOME — ABOUT SECTION (matches cu4justice_homepage_light_theme)
   ============================================================ */
.about-sec {
    background: var(--white);
    display: flex;
    min-height: 380px;
}
.about-left {
    flex: 1;
    padding: 48px 40px;
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.about-lbl {
    color: var(--gold);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    border-left: 3px solid var(--gold);
    padding-left: 8px;
    margin-bottom: 14px;
}
.about-left h2 {
    color: var(--navy);
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 14px;
    font-family: var(--font-head);
}
.about-left p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 18px;
}
.checks {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}
.chk {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text);
    background: var(--off-white);
    padding: 8px 12px;
    border-radius: 3px;
    border-left: 3px solid var(--navy);
}
.chk-icon {
    color: var(--gold);
    font-weight: 700;
    font-size: 12px;
    flex-shrink: 0;
}
.read-more-link {
    display: inline-block;
    color: var(--navy);
    font-size: 14px;
    font-weight: 700;
    border-bottom: 2px solid var(--navy);
    padding-bottom: 2px;
    text-decoration: none;
    transition: color 0.2s, border-color 0.2s;
}
.read-more-link:hover {
    color: var(--gold);
    border-bottom-color: var(--gold);
    text-decoration: none;
}

/* Collage grid (right side of about section) */
.collage-grid {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 3px;
}
.ci {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    position: relative;
}
.ci.sp2 { grid-column: span 2; }
.ci::after {
    content: attr(data-l);
    position: absolute;
    bottom: 8px;
    left: 8px;
    color: #fff;
    font-size: 10px;
    background: rgba(0,0,0,.55);
    padding: 3px 8px;
    border-radius: 2px;
    font-weight: 600;
}
.c1 { background: #1a3a6b; }
.c2 { background: #2a1a4a; }
.c3 { background: #1a4a28; }
.ci-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(232,200,74,.4);
    display: flex;
    align-items: center;
    justify-content: center;
}
.ci-icon svg {
    width: 20px;
    height: 20px;
    stroke: #e8c84a;
    fill: none;
    stroke-width: 1.5;
}
.ci-hint {
    color: rgba(255,255,255,.3);
    font-size: 10px;
    font-style: italic;
    text-align: center;
    padding: 0 16px;
}

@media (max-width: 768px) {
    .about-sec { flex-direction: column; }
    .collage-grid { min-height: 260px; }
}
@media (max-width: 480px) {
    .collage-grid { display: none; }
}

/* ── About Page Components ─────────────────────────────────────────────── */

/* Who We Are photo grid */
.about-photo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 180px;
    gap: 10px;
    border-radius: 8px;
    overflow: hidden;
}
.about-photo-grid .ap-wide {
    grid-column: 1 / -1;
}
.about-photo-grid .ap-cell {
    border-radius: 6px;
    overflow: hidden;
    background: var(--navy-dark);
}

/* Mission section — pillars mini grid */
.about-pillars-mini {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}
.apm-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-top: 3px solid var(--navy);
    border-radius: 4px;
    padding: 10px 12px;
    flex: 1 1 calc(50% - 8px);
    min-width: 120px;
}
.apm-item .apm-title,
.apm-item span {
    font-family: var(--font-serif);
    font-size: .82rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0;
    display: block;
    margin-top: 6px;
}
.apm-item i {
    font-size: 1.1rem;
    color: var(--navy);
}

/* About mission box */
.about-mission-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 20px 24px;
    margin-bottom: 16px;
}
.about-mission-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.about-mission-box ul li {
    padding: 6px 0;
    border-bottom: 1px solid var(--border);
    font-size: .9rem;
    color: var(--text);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.about-mission-box ul li:last-child { border-bottom: none; }
.about-mission-box ul li i {
    color: var(--gold);
    margin-top: 3px;
    flex-shrink: 0;
}

/* About quote — applied directly to <blockquote class="about-quote"> */
.about-quote {
    background: var(--off-white);
    border-left: 4px solid var(--gold);
    border-radius: 0 6px 6px 0;
    padding: 20px 24px;
    margin: 0;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1rem;
    color: var(--navy-dark);
    line-height: 1.7;
}
.about-quote footer {
    margin-top: 10px;
    font-size: .85rem;
    color: var(--text-muted);
    font-style: normal;
}

/* Founder section */
.founder-card {
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 32px;
    text-align: center;
}
.founder-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}
.founder-avatar i {
    font-size: 2.4rem;
    color: var(--gold);
}
.founder-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--navy-dark);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 12px;
    margin-bottom: 12px;
}
.founder-name {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}
.founder-title {
    font-size: .85rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}
.founder-bio {
    font-size: .9rem;
    color: var(--text);
    line-height: 1.65;
    text-align: left;
}

/* Five Pillars timeline */
.pillars-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.pillar-row {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.pillar-row:last-child { border-bottom: none; }
.pillar-row-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: .65rem;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: #fff;
}
.pillar-row-number i {
    font-size: 1rem;
    margin-bottom: 2px;
}
.pillar-row-content {
    flex: 1;
}
.pillar-row-content h3,
.pillar-row-content h4 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px 0;
}
.pillar-row-content p {
    font-size: .9rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
    margin: 0 0 12px 0;
}
.pillar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.pillar-tag {
    background: rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.85);
    font-size: .72rem;
    padding: 3px 10px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.2);
}

/* About stats bar — <section class="about-stats-bar"> wrapping .container-xl */
.about-stats-bar {
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 48px 0;
}
.about-stat {
    text-align: center;
    padding: 0 16px;
}
.about-stat + .about-stat { border-left: 1px solid var(--border); }
.about-stat-num {
    font-family: var(--font-serif);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
    display: block;
    margin-bottom: 8px;
}
.about-stat-label {
    font-size: .85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .06em;
}

/* Responsive adjustments for about page */
@media (max-width: 768px) {
    .about-photo-grid {
        grid-template-columns: 1fr;
        grid-template-rows: 160px 120px 120px;
    }
    .about-photo-grid .ap-wide { grid-column: auto; }
    .apm-item { flex: 1 1 100%; }
    .pillar-row { flex-direction: column; gap: 12px; }
    .about-stat + .about-stat { border-left: none; border-top: 1px solid var(--border); }
    .about-stat { padding: 16px 0; }
    .founder-card { padding: 24px 16px; }
}
/* ============================================================
   FOOTER (Compact Height)
   ============================================================ */
.site-footer {
    background: var(--navy-light);
    padding: 32px 32px 16px;
    border-top: 4px solid var(--gold);
}

.footer-grid-wrap {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.8fr 1.2fr 1.2fr 1.8fr;
    gap: 24px;
    margin-bottom: 16px;
}

@media (max-width: 991px) {
    .footer-grid-wrap {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 575px) {
    .footer-grid-wrap {
        grid-template-columns: 1fr;
    }
}

/* Branding */
.ft-name {
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    font-family: var(--font-head);
    margin-bottom: 2px;
}

.ft-tag {
    color: var(--gold);
    font-style: italic;
    font-size: 12px;
    display: block;
    margin-bottom: 6px;
    font-family: var(--font-head);
}

.ft-desc {
    color: #a0b8d8;
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 8px; /* Tighter line-height and margin */
}

.ft-soc {
    display: flex;
    gap: 8px;
    margin-top: 4px;
}

.ft-sb {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    text-decoration: none;
}

    .ft-sb.fb {
        background: #1877f2;
        color: #fff;
    }

        .ft-sb.fb:hover {
            background: #0d6ddb;
            color: white;
            text-decoration: none;
        }

    .ft-sb.em {
        background: #555;
        color: #fff;
    }

        .ft-sb.em:hover {
            background: #333;
            color: white;
            text-decoration: none;
        }

/* Headings */
.footer-col h5 {
    color: var(--gold);
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
    font-weight: 700;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Links */
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-col ul li a {
        display: block;
        color: #a0b8d8;
        font-size: 13px;
        line-height: 1.6;
        text-decoration: none;
        margin-bottom: 8px;
        transition: color 0.2s;
        padding-left: 2px;
    }

        .footer-col ul li a::before {
            content: none;
        }

        .footer-col ul li a:hover {
            color: var(--gold);
            text-decoration: none;
        }

        .footer-col ul li a.gd {
            color: var(--gold);
            font-weight: 700;
        }

/* Newsletter */
.nl-footer-stack {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
    /* Tighter gap */
    .nl-footer-stack p {
        color: #a0b8d8;
        font-size: 12px;
        line-height: 1.4;
        margin-bottom: 4px;
    }

    .nl-footer-stack input {
        background: rgba(255,255,255,0.1);
        border: 1px solid rgba(255,255,255,0.2);
        color: #fff;
        padding: 7px 10px;
        font-size: 12px;
        border-radius: 3px;
        outline: none; /* Reduced input padding */
    }

        .nl-footer-stack input::placeholder {
            color: #6a7a9a;
        }

    .nl-footer-stack .sub {
        background: var(--gold);
        color: var(--navy);
        border: none;
        padding: 8px; /* Reduced button padding */
        font-size: 12px;
        font-weight: 700;
        border-radius: 3px;
        cursor: pointer;
        margin-top: 2px;
    }

        .nl-footer-stack .sub:hover {
            background: #f5d55a;
        }

/* Bottom Donate Button */
.donate-footer-btn {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, #f5d55a 0%, var(--gold) 60%, #d4a82a 100%);
    color: var(--navy) !important;
    border: none;
    padding: 8px; /* Reduced button padding */
    font-size: 12px;
    font-weight: 700;
    border-radius: 3px;
    cursor: pointer;
    margin-top: 8px;
    text-decoration: none;
    transition: all 0.2s;
}

    .donate-footer-btn:hover {
        background: linear-gradient(135deg, #ffe070 0%, #f5d55a 100%);
        color: var(--navy);
        text-decoration: none;
        box-shadow: 0 4px 14px rgba(232,200,74,0.4);
    }

/* Footer Bottom Strip */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 12px; /* Reduced top padding */
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 8px;
}

    .footer-bottom p {
        color: #7a8aaa;
        font-size: 12px;
        margin: 0;
    }

.fnav {
    display: flex;
    gap: 16px;
    align-items: center;
}

    .fnav a {
        color: #7a8aaa;
        font-size: 12px;
        text-decoration: none;
        transition: color 0.2s;
    }

        .fnav a:hover {
            color: var(--gold);
            text-decoration: none;
        }

        .fnav a.gd {
            color: var(--gold);
            font-weight: 700;
        }

/* ============================================================
   ANIMATIONS
   ============================================================ */

/* ── Anchor scroll offset (accounts for sticky nav height) ── */
.scroll-anchor {
    display: block;
    height: 0;
    scroll-margin-top: 95px;
}

/* ── Donate pulse ── */
@keyframes donate-pulse {
    0%, 100% { box-shadow: 0 2px 10px rgba(232,200,74,0.4); }
    50%       { box-shadow: 0 2px 22px rgba(232,200,74,0.75); }
}

/* ── Global typography overrides (higher specificity than local @section Styles) ── */
body .ph-h1 {
    font-size: 30px;
    font-weight: 900;
    line-height: 1.25;
    letter-spacing: -0.3px;
}
body .ph-p {
    font-size: 15px;
    line-height: 1.75;
    color: #bdd4ea;
    max-width: 700px;
}
body .ph-bc {
    font-size: 11px;
    letter-spacing: 1.2px;
    margin-bottom: 8px;
}
/* Section labels — consistent gold uppercase across all pages */
body .sec-lbl {
    font-size: 10px;
    letter-spacing: 2.5px;
    font-weight: 700;
    margin-bottom: 10px;
}
/* Inner page h2 headings */
body .about-content h2,
body .gi-content h2,
body .ev-content h2,
body .res-content h2,
body .mission-content h2 {
    font-size: 22px;
    font-weight: 900;
    line-height: 1.35;
    letter-spacing: -0.2px;
}
/* Sidebar card headings */
body .sb-card h4 {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1px;
}

/* ── Scroll Reveal ── */
.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-d1 { transition-delay: 0.10s; }
.reveal-d2 { transition-delay: 0.20s; }
.reveal-d3 { transition-delay: 0.30s; }
.reveal-d4 { transition-delay: 0.40s; }
.reveal-d5 { transition-delay: 0.50s; }

/* ── Ken Burns on active hero slide ── */
.slide.active .slide-bg {
    animation: kenburns 9s ease-out both;
}
@keyframes kenburns {
    from { transform: scale(1);    }
    to   { transform: scale(1.07); }
}

/* ── Collage cell image hover zoom ── */
.ci {
    overflow: hidden;
}
.ci.at-photo-1,
.ci.at-photo-2,
.ci.at-photo-3 {
    transition: background-size 0.5s ease;
    background-size: 100% !important;
}
.ci.at-photo-1:hover,
.ci.at-photo-2:hover,
.ci.at-photo-3:hover {
    background-size: 108% !important;
}

/* ── Impact Counter Strip ── */
.impact-strip {
    background: var(--navy);
    border-bottom: 3px solid var(--gold);
    padding: 32px 0;
}
.impact-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.impact-item {
    text-align: center;
    padding: 12px 16px;
    border-right: 1px solid rgba(255,255,255,0.1);
}
.impact-item:last-child { border-right: none; }
.impact-num {
    color: var(--gold);
    font-size: 2.2rem;
    font-weight: 900;
    font-family: var(--font-head);
    line-height: 1;
    display: block;
}
.impact-label {
    color: rgba(255,255,255,0.65);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 8px;
    display: block;
}

@media (max-width: 767px) {
    .impact-inner { grid-template-columns: 1fr 1fr; }
    .impact-item:nth-child(2) { border-right: none; }
    .impact-item:nth-child(3),
    .impact-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.1); }
}

/* ============================================================
   RESPONSIVE — Small mobile (max 480px)
   ============================================================ */
@media (max-width: 480px) {
    /* Page heroes */
    body .ph-h1 { font-size: 22px; }
    body .ph-p  { font-size: 13px; }

    /* Inner-page content padding */
    .about-content,
    .ev-content,
    .mission-content,
    .gi-content,
    .res-content { padding: 24px 16px; }

    /* About page */
    .about-main,
    .ev-main,
    .mission-main { grid-template-columns: 1fr; }
    .about-sidebar,
    .ev-sidebar,
    .mission-sidebar { padding: 20px 16px; position: static; border-left: none; border-top: 1px solid #dde; }

    /* Inner page h2 */
    body .about-content h2,
    body .ev-content h2,
    body .mission-content h2 { font-size: 18px; }

    /* Founder card on tiny screens */
    .founder-card { flex-direction: column; align-items: center; text-align: center; padding: 20px 16px; gap: 16px; }
    .f-photo { width: 120px; height: 148px; }

    /* Events */
    .election-grid { grid-template-columns: 1fr; }
    .event-actions { flex-direction: column; }

    /* Mission justice cards */
    .justice-body { padding: 16px; }
    .justice-body h3 { font-size: 14px; }

    /* Footer */
    .footer-grid-wrap { grid-template-columns: 1fr; gap: 20px; }
    .ft-name { font-size: 13px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .fnav { flex-wrap: wrap; justify-content: center; gap: 10px; }

    /* Impact strip */
    .impact-inner { grid-template-columns: 1fr 1fr; }
    .impact-num { font-size: 1.7rem; }
    .impact-label { font-size: 10px; }

    /* Nav logo smaller on narrow screens */
    .nav-logo-name-lg { font-size: 13px !important; }
    .nav-logo-circle-lg { width: 48px !important; height: 48px !important; }
}

.font-11px {
    font-size: 11px;    
}