/* ============================================================
   FOSTERING HOPE RVA — style.css
   Updated: Mission Section + Pink Accents + Neglect Stat
   Design & Develop By American Softec
   ============================================================ */

/* ============================================================
   CSS VARIABLES
============================================================ */
:root {
    /* Core Colors */
    --navy: #0f2540;
    --navy-mid: #1a3a5c;
    --navy-light: #234d7a;
    --gold: #d4920e;
    --gold-bright: #f0a820;
    --gold-light: rgba(212, 146, 14, 0.15);

    /* Pink accent palette */
    --pink: #c8899a;
    --pink-light: #dbb0bc;
    --pink-blush: #f0d4da;
    --pink-muted: rgba(181, 100, 122, 0.14);
    --mauve: #7a3a4a;

    /* Shared "purple" quote/testimonial section treatment — used site-wide
       for every quote/testimonial-style block so they all match exactly. */
    --purple-1: #3d1530;
    --purple-2: #2a0f22;
    --purple-3: #1f0a19;
    --purple-hl-1: rgba(200, 137, 154, 0.12);
    --purple-hl-2: rgba(150, 60, 90, 0.18);
    --purple-gradient: linear-gradient(160deg, var(--purple-1) 0%, var(--purple-2) 55%, var(--purple-3) 100%);

    --white: #ffffff;
    --off-white: #f8f6f2;
    --grey-soft: #eef0f4;
    --text-dark: #1a2332;
    --text-mid: #4a5568;
    --text-muted: #718096;
    --border-w: rgba(255, 255, 255, 0.10);
    --border-d: rgba(0, 0, 0, 0.07);

    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Outfit', system-ui, sans-serif;

    --hh: 78px;
    --tbh: 38px;
    --sbw: 320px;
    --max-w: 1280px;

    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --fast: 0.18s;
    --med: 0.38s;

    --r-sm: 6px;
    --r-md: 12px;
    --r-lg: 20px;
    --r-pill: 999px;
}

/* ============================================================
   RESET & BASE
============================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    background: var(--off-white);
    color: var(--text-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input,
select,
textarea {
    font-family: var(--font-sans);
    outline: none;
}

.hide-mob {
    display: flex;
}

.container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 28px;
}

body.no-scroll {
    overflow: hidden;
}

/* ============================================================
   TOP BAR
============================================================ */
.topbar {
    height: var(--tbh);
    background: var(--navy);
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1001;
    border-bottom: 1px solid var(--border-w);
}

.topbar-inner {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.tb-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.65);
    transition: color var(--fast);
}

.tb-link i {
    color: var(--gold-bright);
    font-size: 0.68rem;
}

.tb-link:hover {
    color: var(--white);
}

.tb-sep {
    width: 1px;
    height: 13px;
    background: rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}

.tb-tag {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.07em;
    text-transform: uppercase;
    font-weight: 400;
}

.tb-donate {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--gold);
    color: var(--white);
    font-size: 0.69rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: var(--r-pill);
    transition: background var(--fast), transform var(--fast);
    box-shadow: 0 2px 8px rgba(212, 146, 14, 0.30);
}

.tb-donate:hover {
    background: var(--gold-bright);
    transform: translateY(-1px);
}

/* ============================================================
   MAIN HEADER
============================================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--hh);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border-d);
    transition: height var(--med) var(--ease), box-shadow var(--med) var(--ease), background var(--med) var(--ease);
}

.site-header.scrolled {
    height: 62px;
    background: rgba(255, 255, 255, 0.99);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.10);
}

.progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2.5px;
    width: 0%;
    background: linear-gradient(90deg, var(--gold), var(--gold-bright));
    transition: width 0.06s linear;
    border-radius: 0 2px 2px 0;
    z-index: 1;
}

.header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 28px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-wrap {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    transition: opacity var(--fast), transform var(--fast);
}

.logo-wrap:hover {
    opacity: 0.85;
    transform: scale(1.02);
}

.logo-img {
    height: 80px!important;
    width: auto;
    object-fit: contain;
    transition: height var(--med) var(--ease);
}

.site-header.scrolled .logo-img {
    height: 40px;
}

.desktop-nav {
    margin-left: auto;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 18px;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--text-mid);
    border-radius: var(--r-sm);
    position: relative;
    transition: color var(--fast), background var(--fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 18px;
    right: 18px;
    height: 1.5px;
    background: var(--gold);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--med) var(--ease);
}

.nav-link:hover,
.nav-link.active {
    color: var(--navy);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-link .fa-chevron-down {
    font-size: 0.58rem;
    color: var(--gold);
    transition: transform var(--med) var(--ease);
}

.has-drop:hover .nav-link .fa-chevron-down {
    transform: rotate(180deg);
}

.has-drop {
    position: relative;
}

.drop-panel {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 290px;
    background: var(--white);
    border-radius: var(--r-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.13), 0 0 0 1px rgba(0, 0, 0, 0.05);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--med) var(--ease), transform var(--med) var(--ease), visibility var(--med);
    z-index: 500;
}

.has-drop:hover .drop-panel,
.has-drop:focus-within .drop-panel {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.drop-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    border-radius: var(--r-md);
    transition: background var(--fast);
}

.drop-item:hover {
    background: var(--off-white);
}

.drop-ico {
    width: 40px;
    height: 40px;
    border-radius: var(--r-md);
    background: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1rem;
    flex-shrink: 0;
    transition: background var(--fast), color var(--fast);
}

.drop-item:hover .drop-ico {
    background: var(--gold);
    color: var(--white);
}

.drop-txt {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.drop-txt strong {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--navy);
}

.drop-txt span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    margin-left: 16px;
}

.soc-icons {
    display: flex;
    gap: 6px;
}

.soc-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid rgba(15, 37, 64, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    color: var(--navy-mid);
    transition: background var(--fast), border-color var(--fast), color var(--fast), transform var(--fast);
}

.soc-btn:hover {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-donate {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 10px 22px;
    border-radius: var(--r-pill);
    white-space: nowrap;
    transition: background var(--fast), transform var(--fast), box-shadow var(--fast);
    box-shadow: 0 4px 16px rgba(212, 146, 14, 0.32);
}

.btn-donate:hover {
    background: var(--gold-bright);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 146, 14, 0.45);
}

.btn-donate i {
    animation: hbeat 1.8s ease infinite;
}

.hamburger {
    display: none;
    width: 46px;
    height: 46px;
    border-radius: var(--r-md);
    background: var(--navy);
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: auto;
    transition: background var(--fast);
}

.hamburger:hover {
    background: var(--navy-light);
}

.ham-inner {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 22px;
}

.hb {
    display: block;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform var(--med) var(--ease), opacity var(--fast), width var(--med) var(--ease);
}

.hb.hb1 {
    width: 22px;
}

.hb.hb2 {
    width: 16px;
}

.hb.hb3 {
    width: 12px;
}

.hamburger.open .hb1 {
    transform: translateY(7px) rotate(45deg);
    width: 22px;
}

.hamburger.open .hb2 {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.open .hb3 {
    transform: translateY(-7px) rotate(-45deg);
    width: 22px;
}

/* ============================================================
   OVERLAY
============================================================ */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 15, 30, 0.60);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1998;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--med) var(--ease), visibility var(--med);
}

.overlay.on {
    opacity: 1;
    visibility: visible;
}

/* ============================================================
   SIDEBAR
============================================================ */
.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: var(--sbw);
    max-width: 92vw;
    height: 100dvh;
    background: var(--navy);
    z-index: 1999;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform var(--med) var(--ease);
    overflow-y: auto;
    scrollbar-width: none;
}

.sidebar::-webkit-scrollbar {
    display: none;
}

.sidebar.open {
    transform: translateX(0);
}

.sb-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 20px 18px;
    border-bottom: 1px solid var(--border-w);
    flex-shrink: 0;
}

.sb-logo {
    height: 44px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.sb-close {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.09);
    color: rgba(255, 255, 255, 0.80);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    transition: background var(--fast), transform var(--fast);
}

.sb-close:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: rotate(90deg);
}

.sb-nav {
    padding: 14px 14px 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sb-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 14px;
    border-radius: var(--r-md);
    color: rgba(255, 255, 255, 0.80);
    font-size: 0.93rem;
    font-weight: 500;
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: background var(--fast), color var(--fast), padding-left var(--fast);
}

.sb-link:hover,
.sb-link.active {
    background: rgba(255, 255, 255, 0.09);
    color: var(--white);
    padding-left: 20px;
}

.sb-ico {
    width: 34px;
    height: 34px;
    border-radius: var(--r-sm);
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-bright);
    font-size: 0.85rem;
    flex-shrink: 0;
    transition: background var(--fast);
}

.sb-link:hover .sb-ico,
.sb-link.active .sb-ico {
    background: var(--gold);
    color: var(--white);
}

.sb-arr {
    margin-left: auto;
    font-size: 0.60rem;
    color: rgba(255, 255, 255, 0.25);
    transition: transform var(--fast), color var(--fast);
}

.sb-link:hover .sb-arr {
    transform: translateX(3px);
    color: var(--gold-bright);
}

.sb-acc-btn .sb-chev {
    margin-left: auto;
    font-size: 0.62rem;
    color: rgba(255, 255, 255, 0.30);
    transition: transform var(--med) var(--ease);
}

.sb-acc.open .sb-acc-btn .sb-chev {
    transform: rotate(180deg);
}

.sb-acc-body {
    overflow: hidden;
    max-height: 0;
    transition: max-height var(--med) var(--ease);
}

.sb-acc.open .sb-acc-body {
    max-height: 200px;
}

.sb-sub {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px 11px 58px;
    border-radius: var(--r-sm);
    font-size: 0.86rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.62);
    transition: background var(--fast), color var(--fast);
}

.sb-sub i {
    color: var(--gold-bright);
    font-size: 0.78rem;
}

.sb-sub:hover {
    background: rgba(255, 255, 255, 0.07);
    color: var(--white);
}

.sb-card {
    margin: 16px 14px;
    background: linear-gradient(135deg, var(--gold) 0%, #a86e08 100%);
    border-radius: var(--r-lg);
    padding: 22px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.sb-card::before {
    content: '';
    position: absolute;
    top: -24px;
    right: -24px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.10);
}

.sb-card::after {
    content: '';
    position: absolute;
    bottom: -18px;
    left: -18px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.08);
}

.sb-card-icon {
    font-size: 1.9rem;
    color: rgba(255, 255, 255, 0.90);
    margin-bottom: 10px;
}

.sb-card-title {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.sb-card-desc {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.55;
    margin-bottom: 16px;
}

.sb-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--gold);
    font-size: 0.83rem;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: var(--r-pill);
    transition: transform var(--fast), box-shadow var(--fast);
}

.sb-card-btn:hover {
    transform: scale(1.04);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
}

.sb-card-btn i {
    animation: hbeat 1.8s ease infinite;
}

.sb-foot {
    padding: 16px 20px 26px;
    border-top: 1px solid var(--border-w);
    text-align: center;
    flex-shrink: 0;
}

.sb-soc {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 14px;
}

.sb-soc a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--border-w);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.82rem;
    transition: background var(--fast), border-color var(--fast), color var(--fast), transform var(--fast);
}

.sb-soc a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
    transform: translateY(-3px);
}

.sb-copy {
    font-size: 0.70rem;
    color: rgba(255, 255, 255, 0.28);
    margin-bottom: 3px;
}

.sb-credit {
    font-size: 0.70rem;
    color: rgba(255, 255, 255, 0.28);
}

.sb-credit strong {
    color: var(--gold-bright);
    font-weight: 600;
}

/* ============================================================
   HERO SECTION
============================================================ */
.hero {
    position: relative;
    min-height: calc(100vh - var(--hh) - var(--tbh));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    transform: scale(1.06);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(8, 20, 42, 0.92) 0%, rgba(15, 37, 64, 0.82) 50%, rgba(10, 25, 50, 0.88) 100%);
}

.hero-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 40%, rgba(212, 146, 14, 0.08) 0%, transparent 60%), radial-gradient(ellipse at 20% 90%, rgba(15, 37, 64, 0.50) 0%, transparent 50%);
}

.hero-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hl {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(212, 146, 14, 0.18), transparent);
    height: 1px;
}

.hl1 {
    top: 28%;
    width: 100%;
    opacity: 0.5;
}

.hl2 {
    top: 58%;
    width: 70%;
    left: 30%;
    opacity: 0.5;
}

.hl3 {
    top: 78%;
    width: 50%;
    opacity: 0.5;
}

.ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(212, 146, 14, 0.12);
    pointer-events: none;
    opacity: 0.5;
}

.ring1 {
    width: 520px;
    height: 520px;
    right: -130px;
    top: 50%;
    transform: translateY(-50%);
}

.ring2 {
    width: 350px;
    height: 350px;
    right: -65px;
    top: 50%;
    transform: translateY(-50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
    padding: 90px 28px 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 146, 14, 0.14);
    border: 1px solid rgba(212, 146, 14, 0.32);
    color: var(--gold-bright);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: var(--r-pill);
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 0.7s var(--ease) 0.2s forwards;
}

.eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold-bright);
    flex-shrink: 0;
    animation: blink 2s ease infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.25;
    }
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(3.8rem, 10vw, 7.8rem);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -0.02em;
    margin-bottom: 28px;
    display: block;
}

.wd {
    display: block;
    color: var(--white);
    opacity: 0;
    transform: translateY(50px);
    animation: wordIn 0.75s var(--ease) forwards;
}

.w1 {
    animation-delay: 0.40s;
}

.w2 {
    animation-delay: 0.62s;
    color: var(--gold-bright);
    font-style: italic;
}

.w3 {
    animation-delay: 0.84s;
}

.hero-sub {
    max-width: 580px;
    font-size: clamp(0.98rem, 2vw, 1.12rem);
    line-height: 1.80;
    color: rgba(255, 255, 255, 0.76);
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeUp 0.7s var(--ease) 1.1s forwards;
}

.hero-sub em {
    color: var(--gold-bright);
    font-style: normal;
    font-weight: 600;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 54px;
    opacity: 0;
    animation: fadeUp 0.7s var(--ease) 1.3s forwards;
}

.hbtn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    padding: 14px 30px;
    border-radius: var(--r-pill);
    transition: transform var(--fast), box-shadow var(--fast), background var(--fast);
}

.hbtn-gold {
    background: var(--gold);
    color: var(--white);
    box-shadow: 0 6px 28px rgba(212, 146, 14, 0.45);
    position: relative;
    overflow: hidden;
}

.hbtn-gold::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--fast);
}

.hbtn-gold:hover {
    background: var(--gold-bright);
    transform: translateY(-3px);
    box-shadow: 0 10px 36px rgba(212, 146, 14, 0.55);
}

.hbtn-gold:hover::after {
    opacity: 1;
}

.hbtn-ghost {
    background: rgba(255, 255, 255, 0.10);
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.30);
    backdrop-filter: blur(8px);
}

.hbtn-ghost:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.55);
    transform: translateY(-3px);
}

.hpulse {
    animation: hbeat 1.8s ease infinite;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--r-lg);
    padding: 18px 0;
    width: 100%;
    max-width: 580px;
    opacity: 0;
    animation: fadeUp 0.7s var(--ease) 1.55s forwards;
}

.hs-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 0 32px;
    text-align: center;
    flex: 1;
}

.hs-item strong {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-bright);
    line-height: 1;
}

.hs-item span {
    font-size: 0.70rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.50);
}

.hs-div {
    width: 1px;
    height: 42px;
    background: rgba(255, 255, 255, 0.14);
    flex-shrink: 0;
}

.scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeUp 0.7s var(--ease) 2.1s forwards;
    z-index: 2;
}

.scroll-hint span {
    font-size: 0.63rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    font-weight: 500;
}

.sh-mouse {
    width: 22px;
    height: 35px;
    border-radius: 11px;
    border: 1.5px solid rgba(255, 255, 255, 0.22);
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.sh-wheel {
    width: 3px;
    height: 7px;
    border-radius: 2px;
    background: var(--gold-bright);
    animation: scrollWheel 2s ease infinite;
}

@keyframes scrollWheel {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    75% {
        transform: translateY(12px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 0;
    }
}

/* ============================================================
   GLOBAL KEYFRAMES
============================================================ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes wordIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes hbeat {

    0%,
    100% {
        transform: scale(1);
    }

    25% {
        transform: scale(1.28);
    }

    55% {
        transform: scale(1.12);
    }
}

/* ============================================================
   SHARED SECTION HELPERS
============================================================ */
.section-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 16px;
}

.section-label.left {
    justify-content: flex-start;
}

.section-label span:not(.label-line) {
    font-size: 0.70rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
}

.label-line {
    display: block;
    height: 1.5px;
    width: 48px;
    background: linear-gradient(90deg, transparent, var(--gold));
    border-radius: 2px;
    flex-shrink: 0;
}

.section-label .label-line:first-child {
    background: linear-gradient(270deg, transparent, var(--gold));
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--navy);
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.section-title.left {
    text-align: left;
}

.section-title.light {
    color: var(--white);
}

.section-title em {
    font-style: italic;
    color: var(--gold);
}

.section-sub {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-muted);
    text-align: center;
    max-width: 620px;
    margin: 0 auto 56px;
}

.section-sub.light {
    color: rgba(255, 255, 255, 0.62);
}

.reveal {
    animation: revealIn 0.7s ease forwards;
}

@keyframes revealIn {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================================
   SECTION 1B — MISSION PILLARS
   CHANGE 2: All 3 cards use pink-tinted mc-featured style.
             mc-number watermark rule kept but not rendered (HTML removed it).
             All card titles unified to var(--mauve) via mc-featured override.
============================================================ */
.mission-section {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
}

.mission-bg {
    position: absolute;
    inset: 0;
    background: var(--off-white);
}

.mission-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 0% 50%, rgba(200, 137, 154, 0.07) 0%, transparent 55%),
        radial-gradient(ellipse at 100% 20%, rgba(200, 137, 154, 0.05) 0%, transparent 50%);
}

.mission-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--pink), var(--gold-bright));
}

.mission-section .container {
    position: relative;
    z-index: 1;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 8px;
}

.mission-card {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 40px 32px 36px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-d);
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: box-shadow var(--med), transform var(--med), border-color var(--med);
}

.mission-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.10);
    transform: translateY(-6px);
    border-color: rgba(212, 146, 14, 0.15);
}

/* ALL cards now use pink tint (mc-featured applied to all in HTML) */
.mission-card.mc-featured {
    background: linear-gradient(160deg, #fff 60%, var(--pink-blush) 100%);
    border-color: rgba(200, 137, 154, 0.22);
    box-shadow: 0 8px 32px rgba(200, 137, 154, 0.12);
}

.mission-card.mc-featured:hover {
    border-color: var(--pink);
    box-shadow: 0 20px 60px rgba(200, 137, 154, 0.20);
}

/* mc-number rule kept (unused now since HTML numbers removed) */
.mc-number {
    position: absolute;
    top: 18px;
    right: 22px;
    font-family: var(--font-serif);
    font-size: 5rem;
    font-weight: 700;
    line-height: 1;
    color: rgba(15, 37, 64, 0.04);
    pointer-events: none;
    user-select: none;
    letter-spacing: -0.02em;
}

.mission-card.mc-featured .mc-number {
    color: rgba(200, 137, 154, 0.10);
}

/* Icon */
.mc-icon-wrap {
    margin-bottom: 22px;
}

.mc-icon {
    width: 58px;
    height: 58px;
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    transition: transform var(--fast), background var(--fast);
}

.mc-icon--empower {
    background: rgba(212, 146, 14, 0.12);
    color: var(--gold);
}

.mc-icon--equip {
    background: var(--pink-muted);
    color: var(--pink);
}

.mc-icon--elevate {
    background: rgba(15, 37, 64, 0.07);
    color: var(--navy-mid);
}

.mission-card:hover .mc-icon--empower {
    background: var(--gold);
    color: var(--white);
    transform: scale(1.06) rotate(-3deg);
}

.mission-card:hover .mc-icon--equip {
    background: var(--pink);
    color: var(--white);
    transform: scale(1.06) rotate(-3deg);
}

.mission-card:hover .mc-icon--elevate {
    background: var(--navy);
    color: var(--white);
    transform: scale(1.06) rotate(-3deg);
}

/* Title — all mc-featured cards get mauve */
.mc-title {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 14px;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.mission-card.mc-featured .mc-title {
    color: var(--mauve);
}

/* Body */
.mc-body {
    font-size: 0.88rem;
    line-height: 1.78;
    color: var(--text-mid);
    flex: 1;
    margin-bottom: 28px;
}

/* Accent bar at bottom */
.mc-accent-bar {
    height: 3px;
    border-radius: 2px;
    margin-top: auto;
}

.mc-bar--empower {
    background: linear-gradient(90deg, var(--gold), var(--gold-bright));
}

.mc-bar--equip {
    background: linear-gradient(90deg, var(--pink), var(--pink-light));
}

.mc-bar--elevate {
    background: linear-gradient(90deg, var(--navy-mid), var(--navy-light));
}

/* ============================================================
   SECTION 2 — IMPACT NUMBERS
============================================================ */
.impact-section {
    background: var(--white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.impact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-bright), var(--gold));
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 8px;
}

.impact-grid .impact-card:nth-child(1),
.impact-grid .impact-card:nth-child(2) {
    grid-column: span 2;
}

.impact-card {
    background: var(--off-white);
    border-radius: var(--r-lg);
    padding: 32px 28px 28px;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
    transition: border-color var(--med), box-shadow var(--med), transform var(--med);
}

.impact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--ic, var(--gold));
    border-radius: var(--r-lg) var(--r-lg) 0 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--med) var(--ease);
}

.impact-card:hover {
    border-color: rgba(212, 146, 14, 0.15);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.09);
    transform: translateY(-5px);
}

.impact-card:hover::before {
    transform: scaleX(1);
}

.impact-card--pink {
    background: linear-gradient(145deg, #fff 50%, var(--pink-blush) 100%);
    border-color: rgba(200, 137, 154, 0.18) !important;
}

.impact-card--pink::before {
    background: linear-gradient(90deg, var(--pink), var(--pink-light));
}

.impact-card--pink:hover {
    border-color: var(--pink) !important;
    box-shadow: 0 12px 40px rgba(200, 137, 154, 0.15) !important;
}

.impact-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--r-md);
    background: color-mix(in srgb, var(--ic, var(--gold)) 12%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: var(--ic, var(--gold));
    margin-bottom: 20px;
}

.impact-num {
    font-family: var(--font-serif);
    font-size: 3.4rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
    display: inline-block;
}

.impact-plus {
    display: inline-block;
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    vertical-align: top;
    margin-top: 6px;
    margin-left: 2px;
}

.impact-card--pink .impact-num {
    color: var(--mauve);
}

.impact-card--pink .impact-plus {
    color: var(--pink);
}

.impact-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    margin: 12px 0 8px;
    letter-spacing: 0.01em;
}

.impact-card p {
    font-size: 0.83rem;
    line-height: 1.65;
    color: var(--text-muted);
}

.impact-source {
    display: block;
    font-size: 0.70rem;
    color: rgba(15, 37, 64, 0.35);
    font-style: italic;
    margin-top: 12px;
    letter-spacing: 0.02em;
}

.impact-card:nth-child(1) {
    transition-delay: 0.05s;
}

.impact-card:nth-child(2) {
    transition-delay: 0.12s;
}

.impact-card:nth-child(3) {
    transition-delay: 0.19s;
}

.impact-card:nth-child(4) {
    transition-delay: 0.26s;
}

.impact-card:nth-child(5) {
    transition-delay: 0.33s;
}

.impact-card:nth-child(6) {
    transition-delay: 0.40s;
}

.impact-card:nth-child(7) {
    transition-delay: 0.47s;
}

/* ============================================================
   SECTION 3 — ABOUT US
============================================================ */
.about-section {
    padding: 110px 0;
    background: var(--off-white);
    position: relative;
    overflow: hidden;
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    border: 1.5px solid rgba(212, 146, 14, 0.10);
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.about-img-col {
    position: relative;
}

.about-img-wrap {
    position: relative;
    border-radius: var(--r-lg);
    overflow: visible;
}

.about-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: var(--r-lg);
    display: block;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
    transition: transform var(--med) var(--ease);
}

.about-img-col:hover .about-img {
    transform: scale(1.02);
}

.about-img-badge {
    position: absolute;
    bottom: -28px;
    right: -28px;
    background: var(--navy);
    color: var(--white);
    padding: 20px 22px;
    border-radius: var(--r-lg);
    max-width: 220px;
    box-shadow: 0 16px 48px rgba(15, 37, 64, 0.30);
    z-index: 2;
}

.about-img-badge i {
    color: var(--gold);
    font-size: 1.2rem;
    display: block;
    margin-bottom: 8px;
}

.about-img-badge p {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    font-style: italic;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.85);
}

.about-text-col {
    padding-bottom: 28px;
}

.about-body {
    font-size: 1rem;
    line-height: 1.80;
    color: var(--text-mid);
    margin-bottom: 18px;
}

.about-body strong {
    color: var(--navy);
    font-weight: 600;
}

.about-quote {
    background: var(--white);
    border-left: 3px solid var(--gold);
    border-radius: 0 var(--r-md) var(--r-md) 0;
    padding: 20px 22px;
    margin: 28px 0;
    position: relative;
}

.about-quote i {
    font-size: 1.8rem;
    position: absolute;
    top: 14px;
    right: 18px;
    color: rgba(212, 146, 14, 0.20);
}

.about-quote p {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-style: italic;
    line-height: 1.65;
    color: var(--navy);
    margin-bottom: 10px;
}

.about-quote footer {
    font-size: 0.80rem;
    color: var(--text-muted);
}

.about-quote footer strong {
    color: var(--navy);
    font-weight: 600;
}

.about-pillars {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 10px;
}

.pillar {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--white);
    border-radius: var(--r-md);
    padding: 14px 18px;
    border: 1px solid var(--border-d);
    transition: box-shadow var(--fast), transform var(--fast);
}

.pillar:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.07);
    transform: translateX(4px);
}

.pillar-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--r-sm);
    background: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1rem;
    flex-shrink: 0;
}

.pillar div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pillar strong {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--navy);
}

.pillar span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ============================================================
   SECTION 4 — PROGRAMS
============================================================ */
.programs-section {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
}

.programs-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--navy) 0%, #0a1e38 100%);
    z-index: 0;
}

.programs-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 10% 50%, rgba(212, 146, 14, 0.07) 0%, transparent 55%), radial-gradient(ellipse at 90% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
}

.programs-section .container {
    position: relative;
    z-index: 1;
}

.programs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.prog-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: var(--r-lg);
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 0;
    backdrop-filter: blur(8px);
    transition: background var(--med), border-color var(--med), transform var(--med), box-shadow var(--med);
    position: relative;
    overflow: hidden;
}

.prog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-bright));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--med) var(--ease);
}

.prog-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(212, 146, 14, 0.30);
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

.prog-card:hover::before {
    transform: scaleX(1);
}

.prog-card-top {
    margin-bottom: 24px;
}

.prog-badge {
    display: inline-flex;
    align-items: center;
    background: var(--gold);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: var(--r-pill);
    margin-bottom: 16px;
}

.prog-icon {
    width: 54px;
    height: 54px;
    border-radius: var(--r-md);
    background: rgba(212, 146, 14, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--gold-bright);
    margin-bottom: 18px;
    transition: background var(--fast);
}

.prog-card:hover .prog-icon {
    background: var(--gold);
    color: var(--white);
}

.prog-card-top h3 {
    font-family: var(--font-serif);
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.25;
}

.prog-card-top p {
    font-size: 0.88rem;
    line-height: 1.70;
    color: rgba(255, 255, 255, 0.60);
}

.prog-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.prog-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.87rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
}

.prog-features li i {
    color: var(--gold-bright);
    font-size: 0.75rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.prog-highlight {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(212, 146, 14, 0.10);
    border: 1px solid rgba(212, 146, 14, 0.22);
    border-radius: var(--r-md);
    padding: 14px 16px;
    margin-bottom: 0;
}

.prog-highlight i {
    color: var(--gold-bright);
    font-size: 0.95rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.prog-highlight p {
    font-size: 0.81rem;
    line-height: 1.60;
    color: rgba(255, 255, 255, 0.68);
}

.prog-highlight p strong {
    color: var(--gold-bright);
}

/* CHANGE 4: .prog-btn removed from use but rule kept for safety */
.prog-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-bright);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-top: auto;
    padding: 0;
    border-bottom: 1px solid rgba(212, 146, 14, 0.35);
    padding-bottom: 2px;
    width: fit-content;
    transition: color var(--fast), border-color var(--fast), gap var(--fast);
}

.prog-btn:hover {
    color: var(--gold-bright);
    border-color: var(--gold-bright);
    gap: 14px;
}

.prog-btn i {
    font-size: 0.75rem;
    transition: transform var(--fast);
}

.prog-btn:hover i {
    transform: translateX(4px);
}

/* ============================================================
   SECTION 5 — GALLERY
============================================================ */
.gallery-section {
    padding: 110px 0;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
    margin-bottom: 40px;
}

.gallery-item {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    background: var(--grey-soft);
}

.gallery-item.gi-large {
    grid-row: 1 / 3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 220px;
    display: block;
    transition: transform 0.55s var(--ease);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10, 20, 40, 0.80) 0%, transparent 100%);
    padding: 28px 20px 16px;
    transform: translateY(4px);
    transition: transform var(--med);
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

.gallery-caption span {
    font-size: 0.80rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.90);
    letter-spacing: 0.03em;
}

/* Gallery view button */
.gallery-btn-wrap {
    text-align: center;
    margin: 32px 0 40px;
}

.btn-view-gallery {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid var(--gold-bright);
    color: var(--gold-bright);
    background: transparent;
    padding: 14px 36px;
    border-radius: 50px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: all 0.3s ease;
}

.btn-view-gallery:hover {
    background: var(--gold-bright);
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(240, 168, 32, 0.30);
}

/* CHANGE 5: gallery-update removed from HTML; rule kept but unused */
.gallery-update {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    border-radius: var(--r-lg);
    padding: 28px 32px;
    color: var(--white);
}

.gu-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--r-md);
    background: rgba(212, 146, 14, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--gold-bright);
    flex-shrink: 0;
}

.gu-text strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.gu-text p {
    font-size: 0.87rem;
    line-height: 1.70;
    color: rgba(255, 255, 255, 0.68);
}

.gu-text p strong {
    color: var(--gold-bright);
    display: inline;
}

/* ============================================================
   SECTION 6 — TESTIMONIAL
============================================================ */
.testimonial-section {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
}

.testimonial-bg {
    position: absolute;
    inset: 0;
    background: var(--purple-gradient);
}

.testimonial-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 30%, var(--purple-hl-1) 0%, transparent 55%), radial-gradient(ellipse at 50% 90%, var(--purple-hl-2) 0%, transparent 55%);
}

.testimonial-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -46%);
    width: 480px;
    max-width: 70%;
    pointer-events: none;
    z-index: 0;
}

.testimonial-watermark img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.22;
}

.testimonial-section .container {
    position: relative;
    z-index: 1;
}

.testimonial-inner {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.t-quote-icon {
    font-size: 3rem;
    color: rgba(212, 146, 14, 0.25);
    margin-bottom: 24px;
    line-height: 1;
}

.t-quote {
    font-family: var(--font-serif);
    font-size: clamp(1.25rem, 3vw, 1.65rem);
    font-weight: 500;
    line-height: 1.60;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 40px;
}

.t-quote strong {
    font-style: normal;
    font-weight: 700;
    color: var(--white);
}

.t-quote em {
    font-style: italic;
    font-weight: 500;
}

.t-author {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 36px;
}

.t-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(212, 146, 14, 0.35);
}

.t-author strong {
    display: block;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--white);
    text-align: left;
}

.t-author span {
    display: block;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.50);
    text-align: left;
    margin-top: 2px;
}

.t-mission-pills {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.t-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    padding: 8px 18px;
    border-radius: var(--r-pill);
    transition: background var(--fast), border-color var(--fast), color var(--fast);
}

.t-pill i {
    color: var(--gold-bright);
    font-size: 0.72rem;
}

.t-pill:hover {
    background: rgba(212, 146, 14, 0.14);
    border-color: rgba(212, 146, 14, 0.35);
    color: var(--white);
}

/* ============================================================
   SECTION 7 — SPONSORS LOGO MARQUEE
============================================================ */
.sponsors-section {
    padding: 100px 0;
    background: var(--off-white);
    position: relative;
    overflow: hidden;
}

.sponsors-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
}

/* Marquee viewport with soft fade edges */
.logo-marquee {
    position: relative;
    overflow: hidden;
    margin: 8px 0 44px;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 20px;
    width: max-content;
    animation: marqueeScroll 32s linear infinite;
    will-change: transform;
}

.logo-marquee:hover .logo-track {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.logo-chip {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--white);
    border: 1px solid var(--border-d);
    border-radius: var(--r-lg);
    padding: 16px 28px;
    height: 96px;
    overflow: hidden;
    transition: filter var(--med) var(--ease), border-color var(--med) var(--ease), transform var(--med) var(--ease), box-shadow var(--med) var(--ease);
}

.logo-chip:hover {
    filter: grayscale(0) opacity(1);
    border-color: rgba(212, 146, 14, 0.30);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.logo-chip-img {
    height: auto;
    width: auto;
    max-height: 100%;
    max-width: 180px;
    object-fit: contain;
    display: block;
}

/* Become a Sponsor CTA banner (replaces the old grid card) */
.sponsor-cta-banner {
    display: flex;
    align-items: center;
    gap: 24px;
    background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 100%);
    border-radius: var(--r-lg);
    padding: 32px 36px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}

.sponsor-cta-banner::after {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(212, 146, 14, 0.10);
    pointer-events: none;
}

.sponsor-cta-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--r-md);
    background: rgba(212, 146, 14, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold-bright);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.sponsor-cta-text {
    flex: 1;
    min-width: 220px;
    position: relative;
    z-index: 1;
}

.sponsor-cta-text h4 {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.sponsor-cta-text p {
    font-size: 0.88rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.62);
}

.sponsor-cta-banner .sponsor-join-btn {
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.sponsor-join-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--white);
    font-size: 0.83rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 11px 24px;
    border-radius: var(--r-pill);
    transition: background var(--fast), transform var(--fast), box-shadow var(--fast);
    box-shadow: 0 4px 16px rgba(212, 146, 14, 0.30);
}

.sponsor-join-btn:hover {
    background: var(--gold-bright);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 146, 14, 0.40);
}

@media (prefers-reduced-motion: reduce) {
    .logo-track {
        animation: none;
    }
}

/* ============================================================
   SECTION 8 — DONATE CTA
============================================================ */
.donate-section {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
}

.donate-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #060e1c 0%, var(--navy) 50%, #0c1e36 100%);
}

.donate-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 15% 50%, rgba(212, 146, 14, 0.10) 0%, transparent 55%), radial-gradient(ellipse at 85% 20%, rgba(255, 255, 255, 0.02) 0%, transparent 45%);
}

.donate-bg::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 1px solid rgba(212, 146, 14, 0.08);
}

.donate-section .container {
    position: relative;
    z-index: 1;
}

.donate-inner {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 72px;
    align-items: center;
}

.donate-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.70rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-bright);
    margin-bottom: 18px;
}

.donate-eyebrow .eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold-bright);
    animation: blink 2s ease infinite;
}

.donate-left h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 18px;
    letter-spacing: -0.01em;
}

.donate-left h2 em {
    font-style: italic;
    color: var(--gold-bright);
}

.donate-left>p {
    font-size: 1rem;
    line-height: 1.80;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 28px;
    max-width: 500px;
}

.donate-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 36px;
}

.donate-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.90rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.5;
}

.donate-list li i {
    color: var(--gold-bright);
    font-size: 0.88rem;
    flex-shrink: 0;
}

.donate-main-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 16px 34px;
    border-radius: var(--r-pill);
    box-shadow: 0 8px 30px rgba(212, 146, 14, 0.40);
    transition: background var(--fast), transform var(--fast), box-shadow var(--fast);
}

.donate-main-btn:hover {
    background: var(--gold-bright);
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(212, 146, 14, 0.52);
}

.donate-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: var(--r-lg);
    padding: 36px 30px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.dc-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.dc-header i {
    font-size: 1.8rem;
    color: var(--gold-bright);
}

.dc-header h3 {
    font-family: var(--font-serif);
    font-size: 1.30rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

.dc-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    margin-bottom: 24px;
}

.dc-stat {
    text-align: center;
    padding: 16px 8px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--r-md);
}

.dc-stat strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--gold-bright);
    line-height: 1;
    margin-bottom: 5px;
}

.dc-stat span {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.42);
}

.dc-note {
    font-size: 0.80rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.48);
    margin-bottom: 22px;
    padding-top: 4px;
}

.dc-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: var(--gold);
    color: var(--white);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 14px;
    border-radius: var(--r-md);
    transition: background var(--fast), transform var(--fast), box-shadow var(--fast);
    box-shadow: 0 6px 20px rgba(212, 146, 14, 0.30);
}

.dc-btn:hover {
    background: var(--gold-bright);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 146, 14, 0.42);
}

.dc-btn i {
    font-size: 1rem;
}

/* ============================================================
   SECTION 9 — CONTACT
============================================================ */
.contact-section {
    padding: 110px 0;
    background: var(--off-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 56px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ci-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background: var(--white);
    border-radius: var(--r-md);
    padding: 18px 20px;
    border: 1px solid var(--border-d);
    transition: box-shadow var(--fast), transform var(--fast), border-color var(--fast);
}

.ci-card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
    transform: translateX(4px);
    border-color: rgba(212, 146, 14, 0.20);
}

.ci-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--r-md);
    background: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1rem;
    flex-shrink: 0;
    transition: background var(--fast), color var(--fast);
}

.ci-card:hover .ci-icon {
    background: var(--gold);
    color: var(--white);
}

.ci-card div {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.ci-card strong {
    font-size: 0.80rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.ci-card a,
.ci-card span {
    font-size: 0.90rem;
    font-weight: 500;
    color: var(--navy);
    word-break: break-word;
    transition: color var(--fast);
}

.ci-card a:hover {
    color: var(--gold);
}

.contact-social-row {
    display: flex;
    gap: 10px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.cs-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--border-d);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.88rem;
    color: var(--navy-mid);
    transition: background var(--fast), border-color var(--fast), color var(--fast), transform var(--fast);
}

.cs-btn:hover {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
    transform: translateY(-3px);
}

.cs-btn.cs-donate {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(212, 146, 14, 0.30);
}

.cs-btn.cs-donate:hover {
    background: var(--gold-bright);
    border-color: var(--gold-bright);
    transform: translateY(-3px);
}

.contact-form {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 38px 36px;
    border: 1px solid var(--border-d);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.form-group label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e2e8f0;
    border-radius: var(--r-md);
    font-size: 0.90rem;
    color: var(--navy);
    background: var(--off-white);
    transition: border-color var(--fast), box-shadow var(--fast), background var(--fast);
    appearance: none;
    -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a0aec0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 146, 14, 0.12);
    background: var(--white);
    outline: none;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23718096' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.form-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--gold);
    color: var(--white);
    font-size: 0.90rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 14px 32px;
    border-radius: var(--r-pill);
    width: 100%;
    border: none;
    cursor: pointer;
    transition: background var(--fast), transform var(--fast), box-shadow var(--fast);
    box-shadow: 0 6px 24px rgba(212, 146, 14, 0.40);
}

.form-submit:hover {
    background: var(--gold-bright);
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(212, 146, 14, 0.52);
}

.form-submit:active {
    transform: translateY(0);
}

.form-submit i {
    font-size: 0.88rem;
}

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
    background: var(--navy);
    color: var(--white);
}

.footer-top {
    padding: 72px 0 56px;
    border-bottom: 1px solid var(--border-w);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.footer-logo {
    height: 100px;
    width: auto;
    object-fit: contain;
    margin-bottom: 18px;
    opacity: 0.90;
}

.footer-brand p {
    font-size: 0.85rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.52);
    margin-bottom: 22px;
    max-width: 260px;
}

.footer-soc {
    display: flex;
    gap: 8px;
}

.footer-soc a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.80rem;
    transition: background var(--fast), border-color var(--fast), color var(--fast), transform var(--fast);
}

.footer-soc a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.40);
    margin-bottom: 18px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.62);
    transition: color var(--fast), gap var(--fast);
}

.footer-col ul li a i {
    font-size: 0.60rem;
    color: var(--gold);
    transition: transform var(--fast);
}

.footer-col ul li a:hover {
    color: var(--white);
    gap: 12px;
}

.footer-col ul li a:hover i {
    transform: translateX(2px);
}

.footer-donate-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--white);
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 13px 26px;
    border-radius: var(--r-pill);
    box-shadow: 0 4px 16px rgba(212, 146, 14, 0.28);
    transition: background var(--fast), transform var(--fast), box-shadow var(--fast);
}

.footer-donate-btn:hover {
    background: var(--gold-bright);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 146, 14, 0.40);
}

.footer-bottom {
    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.32);
}

.footer-credit {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.32);
}

.footer-credit strong {
    color: var(--gold-bright);
    font-weight: 600;
}

/* ============================================================
   SCROLL TO TOP
============================================================ */
.scroll-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.88rem;
    z-index: 900;
    box-shadow: 0 6px 24px rgba(212, 146, 14, 0.40);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: opacity var(--med) var(--ease), visibility var(--med), transform var(--med) var(--ease), background var(--fast);
    cursor: pointer;
    border: none;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--gold-bright);
    transform: translateY(-4px);
    box-shadow: 0 10px 32px rgba(212, 146, 14, 0.50);
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1060px) {
    .desktop-nav {
        display: none;
    }

    .hide-mob {
        display: none !important;
    }

    .hamburger {
        display: flex;
    }

    .header-right {
        margin-left: auto;
    }
}

@media (max-width: 960px) {
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .impact-grid .impact-card:nth-child(1),
    .impact-grid .impact-card:nth-child(2) {
        grid-column: span 1;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .about-img-wrap {
        max-width: 560px;
        margin: 0 auto;
    }

    .about-img {
        height: 380px;
    }

    .about-img-badge {
        bottom: -20px;
        right: -10px;
        max-width: 190px;
    }

    .about-text-col {
        padding-bottom: 0;
    }

    .programs-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .gallery-item.gi-large {
        grid-row: auto;
    }

    .gallery-item img {
        min-height: 260px;
    }

    .mission-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }
}

@media (max-width: 640px) {
    :root {
        --hh: 64px;
        --tbh: 34px;
        --sbw: 300px;
    }

    .topbar-left .tb-sep,
    .topbar-left a:last-child,
    .tb-tag {
        display: none;
    }

    .logo-img {
        height: 38px;
    }

    .hero-content {
        padding: 60px 20px 90px;
    }

    .hero-headline {
        font-size: clamp(3.2rem, 13vw, 4.5rem);
    }

    .hero-sub {
        font-size: 0.95rem;
    }

    .hbtn {
        font-size: 0.85rem;
        padding: 12px 24px;
    }

    .hero-stats {
        flex-direction: column;
        align-items: center;
        padding: 20px;
        gap: 16px;
        max-width: 100%;
    }

    .hs-div {
        width: 80%;
        height: 1px;
    }

    .hs-item {
        padding: 0;
    }

    .hs-item strong {
        font-size: 1.75rem;
    }

    .ring1,
    .ring2,
    .scroll-hint {
        display: none;
    }

    .mission-section,
    .impact-section,
    .about-section,
    .programs-section,
    .gallery-section,
    .testimonial-section,
    .sponsors-section,
    .donate-section,
    .contact-section {
        padding: 72px 0;
    }

    .section-sub {
        margin-bottom: 36px;
        font-size: 0.93rem;
    }

    .mission-card {
        padding: 30px 22px;
    }

    .mc-title {
        font-size: 1.45rem;
    }

    .mc-number {
        font-size: 4rem;
    }

    .impact-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .impact-num {
        font-size: 2.8rem;
    }

    .impact-card {
        padding: 24px 22px 20px;
    }

    .about-img {
        height: 280px;
    }

    .about-img-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 16px;
        max-width: 100%;
        border-radius: var(--r-md);
        box-shadow: none;
    }

    .about-body {
        font-size: 0.93rem;
    }

    .prog-card {
        padding: 26px 22px;
    }

    .prog-card-top h3 {
        font-size: 1.30rem;
    }

    .t-quote {
        font-size: 1.15rem;
    }

    .t-author {
        flex-direction: column;
        text-align: center;
    }

    .t-author strong,
    .t-author span {
        text-align: center;
    }

    .logo-chip {
        padding: 10px 18px;
        height: 72px;
    }

    .logo-chip-img {
        max-width: 130px;
    }

    .sponsor-cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px;
    }

    .sponsor-cta-text {
        text-align: center;
    }

    .donate-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .donate-left>p {
        max-width: 100%;
    }

    .donate-list li {
        font-size: 0.86rem;
    }

    .donate-main-btn {
        width: 100%;
        justify-content: center;
        font-size: 0.88rem;
    }

    .dc-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }

    .dc-stat strong {
        font-size: 1.30rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form {
        padding: 26px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 400px) {
    .hero-headline {
        font-size: 3rem;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
    }

    .hbtn {
        width: 100%;
        justify-content: center;
    }

    .mc-body {
        font-size: 0.85rem;
    }

    .t-mission-pills {
        gap: 8px;
    }

    .t-pill {
        font-size: 0.72rem;
        padding: 7px 14px;
    }

    .dc-stats {
        grid-template-columns: 1fr;
    }

    .dc-stat {
        padding: 12px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-logo {
        height: 42px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 6px;
    }
}

@media print {

    .topbar,
    .site-header,
    .sidebar,
    .overlay,
    .scroll-top {
        display: none !important;
    }

    body {
        background: #fff;
        color: #000;
    }

    a {
        color: #000;
    }
}

/* ============================================================
   FOSTERING HOPE RVA — preloader.css (embedded)
   CHANGE 1: .pl-logo — removed filter invert, height increased to 90px
   Design & Develop By American Softec
   ============================================================ */

.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1),
        visibility 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader::before,
.preloader::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(212, 146, 14, 0.10);
    pointer-events: none;
    animation: plRingPulse 3s ease-in-out infinite;
}

.preloader::before {
    width: 460px;
    height: 460px;
    animation-delay: 0s;
}

.preloader::after {
    width: 300px;
    height: 300px;
    animation-delay: 0.8s;
}

@keyframes plRingPulse {

    0%,
    100% {
        opacity: 0.30;
        transform: scale(1);
    }

    50% {
        opacity: 0.65;
        transform: scale(1.04);
    }
}

.preloader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    position: relative;
    z-index: 1;
}

.pl-logo-wrap {
    margin-bottom: 32px;
    opacity: 0;
    animation: plFadeDown 0.6s ease 0.1s forwards;
}

/* CHANGE 1: height 64px → 90px; filter removed so colorful logo shows */
.pl-logo {
    height: 90px;
    width: auto;
    object-fit: contain;
}

.pl-words {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    margin-bottom: 36px;
    min-height: 72px;
    overflow: hidden;
    position: relative;
}

.pl-word {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    color: transparent;
    display: block;
    opacity: 0;
    transform: translateY(20px);
    transition: none;
}

.pl-word.pl-active {
    animation: plWordSlide 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.pl-word.pl-active:nth-child(1) {
    color: #ffffff;
}

.pl-word.pl-active:nth-child(2) {
    color: var(--gold-bright, #f0a820);
    font-style: italic;
}

.pl-word.pl-active:nth-child(3) {
    color: #ffffff;
}

@keyframes plWordSlide {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pl-bar-wrap {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.10);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 18px;
    opacity: 0;
    animation: plFadeUp 0.5s ease 0.3s forwards;
}

.pl-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--gold, #d4920e), var(--gold-bright, #f0a820));
    border-radius: 2px;
    transition: width 0.12s linear;
}

.pl-tagline {
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    opacity: 0;
    animation: plFadeUp 0.5s ease 0.5s forwards;
}

@keyframes plFadeDown {
    from {
        opacity: 0;
        transform: translateY(-16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes plFadeUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

body.pl-loading {
    overflow: hidden;
}