:root {
    --cream: #FAF6EC;
    --cream-deep: #F1E8D3;
    --navy: #16233F;
    --navy-2: #1F2F52;
    --gold: #C9A227;
    --gold-light: #E8C468;
    --green: #4B6B45;
    --green-dark: #31452C;
    --ink: #1B2A4A;
    --rule: rgba(27,42,74,0.18);
    --serif-display: 'Fraunces', serif;
    --serif-body: 'Newsreader', serif;
    --sans-label: 'Space Grotesk', sans-serif;
    --topbar-h: 38px;
}
@media (max-width:760px) {
    :root {
        --topbar-h: 64px;
    }
}
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--topbar-h) + 70px);
}

body {
    margin: 0;
    background: var(--cream);
    color: var(--ink);
    font-family: var(--serif-body);
    font-size: 18px;
    line-height: 1.6;
    overflow-x: hidden;
}

img, svg {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 42px 32px 0 32px;
}

::selection {
    background: var(--gold-light);
    color: var(--navy);
}

:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

/* -------- paper texture -------- */
.grain {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 5;
    opacity: .05;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* -------- nav -------- */
.nav {
    position: fixed;
    top: var(--topbar-h);
    left: 0;
    right: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 32px;
    background: rgba(27,42,74,1);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--rule);
    transition: background .4s ease, border-color .4s ease;
}

    .nav.on-dark {
        background: var(--cream);
        border-color: rgba(232,196,104,0.25);
    }

        .nav.on-dark .nav-word, .nav.on-dark .nav-links a, .nav.on-dark .chapter-tag {
            color: var(--navy);
        }

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-word {
    font-family: var(--sans-label);
    font-size: 13px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.2;
}

    .nav-word strong {
        display: block;
        font-size: 14px;
        letter-spacing: .08em;
    }

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

    .nav-links > a, .nav-item > button {
        font-family: var(--sans-label);
        font-size: 12.5px;
        letter-spacing: .1em;
        text-transform: uppercase;
        text-decoration: none;
        color: #fff;
        opacity: 1;
        transition: opacity .2s;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        display: flex;
        align-items: center;
        gap: 6px;
    }

        .nav-links > a:hover, .nav-item > button:hover {
            opacity: 1;
            color: var(--gold-light);
        }

.nav.on-dark .nav-item > button {
    color: var(--navy);
}

/* dropdowns */
.nav-item {
    position: relative;
}

    .nav-item::after {
        content: "";
        position: absolute;
        top: 100%;
        left: -20px;
        right: -20px;
        height: 22px;
    }

    .nav-item > button svg {
        width: 9px;
        height: 9px;
        transition: transform .2s ease;
    }

    .nav-item.open > button svg, .nav-item:hover > button svg {
        transform: rotate(180deg);
    }

.dropdown {
    position: absolute;
    top: calc(100% + 20px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    background: var(--cream);
    border: 1px solid var(--rule);
    box-shadow: 0 18px 40px rgba(22,35,63,0.14);
    min-width: 200px;
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease, visibility .18s;
    z-index: 60;
}

.nav-item:hover .dropdown, .nav-item:focus-within .dropdown, .nav-item.open .dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav-links .nav-item:first-child .dropdown {
    left: 0;
    transform: translateY(-6px);
}

.nav-links .nav-item:first-child:hover .dropdown,
.nav-links .nav-item:first-child:focus-within .dropdown,
.nav-links .nav-item:first-child.open .dropdown {
    transform: translateY(0);
}

.nav-links .nav-item:last-of-type .dropdown {
    left: auto;
    right: 0;
    transform: translateY(-6px);
}

.nav-links .nav-item:last-of-type:hover .dropdown,
.nav-links .nav-item:last-of-type:focus-within .dropdown,
.nav-links .nav-item:last-of-type.open .dropdown {
    transform: translateY(0);
}

.dropdown a {
    display: block;
    padding: 10px 12px;
    font-family: var(--sans-label);
    font-size: 12px;
    letter-spacing: .04em;
    text-transform: none;
    text-decoration: none;
    color: var(--ink);
    opacity: .85;
    border-radius: 2px;
    transition: background .15s, opacity .15s;
}

    .dropdown a:hover {
        background: rgba(201,162,39,0.14);
        opacity: 1;
        color: var(--green);
    }

.btn-donate {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--sans-label);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--navy) !important;
    background: var(--gold-light) !important;
    padding: 12px 24px !important;
    border-radius: 999px;
    margin-left: 6px;
    white-space: nowrap;
    border: 1.5px solid var(--gold-light);
    box-shadow: 0 8px 18px rgba(22,35,63,0.24);
    cursor: pointer;
    transition: background .2s ease, transform .2s ease, color .2s ease, box-shadow .2s ease;
}

    .btn-donate svg {
        width: 13px;
        height: 13px;
        flex-shrink: 0;
    }

    .btn-donate::after {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 999px;
        z-index: -1;
        box-shadow: 0 0 0 0 rgba(201,162,39,0.55);
        animation: donatePulse 2.6s ease-in-out infinite;
    }

    .btn-donate:hover {
        background: var(--navy);
        color: var(--gold-light);
        transform: translateY(-2px);
        box-shadow: 0 12px 24px rgba(22,35,63,0.32);
    }

    .btn-donate:active {
        transform: translateY(0);
        box-shadow: 0 5px 12px rgba(22,35,63,0.28);
    }

.nav.on-dark .btn-donate {
    color: var(--navy);
}

    .nav.on-dark .btn-donate:hover {
        background: var(--gold-light);
        color: var(--navy);
    }

@keyframes donatePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(201,162,39,0.55);
    }

    65% {
        box-shadow: 0 0 0 11px rgba(201,162,39,0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(201,162,39,0);
    }
}

.chapter-tag {
    font-family: var(--serif-display);
    font-style: italic;
    font-size: 14px;
    color: var(--ink);
    border-left: 1px solid var(--rule);
    padding-left: 16px;
    margin-left: 4px;
    white-space: nowrap;
}
/* -------- about page: committee table -------- */
.committee-wrap {
    max-width: 960px;
    margin: 0 auto;
    border: 1px solid var(--rule);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(27,42,74,0.08);
}

table.committee-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    background: #fff;
}

    table.committee-table thead th {
        background: var(--navy);
        color: var(--gold-light);
        font-family: var(--sans-label);
        font-weight: 500;
        font-size: 11.5px;
        letter-spacing: .1em;
        text-transform: uppercase;
        text-align: left;
        padding: 16px 20px;
        white-space: nowrap;
    }

    table.committee-table tbody td {
        font-family: var(--serif-body);
        font-size: .98rem;
        color: var(--ink);
        padding: 16px 20px;
        border-top: 1px solid var(--rule);
        vertical-align: middle;
    }

    table.committee-table tbody tr:nth-child(even) {
        background: var(--cream-deep);
    }

    table.committee-table tbody tr:hover {
        background: rgba(201,162,39,0.09);
    }

.committee-name {
    font-family: var(--serif-display);
    font-weight: 600;
    color: var(--navy);
}

.committee-role-badge {
    display: inline-block;
    font-family: var(--sans-label);
    font-size: 10.5px;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--green-dark);
    background: #DCE9D6;
    padding: 3px 10px;
    border-radius: 20px;
}

@media (max-width:640px) {
    table.committee-table thead th, table.committee-table tbody td {
        padding: 12px 14px;
        font-size: .88rem;
    }
}

/* hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 34px;
    height: 34px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 70;
}

    .hamburger span {
        display: block;
        width: 100%;
        height: 2px;
        background: #f0f0f0;
        transition: transform .3s ease, opacity .3s ease;
    }

.nav.on-dark .hamburger span {
    background: var(--cream);
}

.hamburger.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
    opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* mobile drawer */
.mobile-menu {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(340px,84vw);
    height: 100vh;
    z-index: 65;
    background: var(--navy);
    color: var(--cream);
    padding: 100px 30px 40px;
    transform: translateX(100%);
    transition: transform .35s ease;
    overflow-y: auto;
}

    .mobile-menu.is-open {
        transform: translateX(0);
    }

.mobile-scrim {
    position: fixed;
    inset: 0;
    background: rgba(15,20,35,0.4);
    z-index: 64;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
}

    .mobile-scrim.is-open {
        opacity: 1;
        visibility: visible;
    }

.mobile-group {
    border-bottom: 1px solid rgba(232,196,104,0.18);
    padding: 6px 0 14px;
    margin-bottom: 14px;
}

.mobile-plain-link {
    display: block;
    font-family: var(--serif-display);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--cream);
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 1px solid rgba(232,196,104,0.18);
    margin-bottom: 14px;
}

.mobile-group-head {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    color: var(--cream);
    font-family: var(--serif-display);
    font-style: italic;
    font-size: 1.2rem;
    padding: 10px 0;
    cursor: pointer;
}

    .mobile-group-head svg {
        width: 12px;
        height: 12px;
        transition: transform .25s ease;
        flex-shrink: 0;
    }

.mobile-group.open .mobile-group-head svg {
    transform: rotate(180deg);
}

.mobile-sub {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}

.mobile-group.open .mobile-sub {
    max-height: 300px;
}

.mobile-sub a {
    display: block;
    padding: 9px 4px 9px 14px;
    font-family: var(--sans-label);
    font-size: 13px;
    letter-spacing: .04em;
    text-decoration: none;
    color: #C7CEE0;
}

    .mobile-sub a:hover {
        color: var(--gold-light);
    }

@media (max-width:860px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}
.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 60;
    background: var(--navy);
    color: var(--gold-light);
    font-family: var(--sans-label);
    font-size: 12px;
    letter-spacing: .03em;
    padding: 9px 32px;
    min-height: var(--topbar-h);
    display: flex;
    align-items: center;
}

.topbar-inner {
    max-width: 1180px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px 30px;
    flex-wrap: wrap;
    text-align: center;
}

    .topbar-inner span {
        white-space: nowrap;
    }

    .topbar-inner strong {
        color: var(--cream);
        font-weight: 600;
        letter-spacing: .02em;
    }

.topbar-divider {
    opacity: .4;
}

@media (max-width:760px) {
    .topbar {
        padding: 8px 16px;
        font-size: 11px;
    }

    .topbar-inner {
        gap: 2px 16px;
    }

    .topbar-divider {
        display: none;
    }
}


/* -------- hero -------- */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 112px 0px 80px;
    overflow: hidden;
    background: radial-gradient(ellipse at 50% 0%, rgba(201,162,39,0.10), transparent 60%), var(--cream);
}

.hero-inner {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: 100%;
}

.eyebrow {
    font-family: var(--sans-label);
    font-size: 12.5px;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--green-dark);
    margin: 0 0 22px;
}

h1.display {
    font-family: var(--serif-display);
    font-weight: 600;
    font-size: clamp(2.1rem, 4.4vw, 3.6rem);
    line-height: 1.08;
    letter-spacing: -.01em;
    color: var(--navy);
    margin: 0 0 20px;
}

    h1.display em {
        font-style: italic;
        font-weight: 500;
        color: var(--gold);
    }

.lede {
    font-family: var(--serif-body);
    font-size: 1.1rem;
    color: #3a4665;
    max-width: 460px;
    margin: 0 0 30px;
}

.cta-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 22px;
    flex-wrap: wrap;
}

/* -------- hero slider -------- */
.hero-slider {
    position: relative;
    min-height: 380px;
}

.hero-slides {
    position: relative;
    overflow: hidden;
    width: 100%;
}

/* NEW — put in same place */
.hero-slides {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: transform .6s ease, opacity .6s ease, visibility .6s;
    display: grid;
    grid-template-columns: 1fr; /* full width now */
    align-items: center;
    text-align: left;
    pointer-events: none;
}

    .hero-slide.is-active {
        position: relative;
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
        pointer-events: auto;
    }

    .hero-slide.is-prev {
        transform: translateX(-100%);
    }
.hero-visual {
    width: 100%;
    height: 520px;
    overflow: hidden;
    transition: height .3s ease;
}

    .hero-visual.is-portrait {
        height: 620px; /* taller box for vertical imgs */
    }

.hero-banner-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
    position: relative;
    z-index: 1;
}

@media (max-width:820px) {
    .hero-visual {
        height: 260px;
    }

        .hero-visual.is-portrait {
            height: 380px;
        }
}

    .hero-visual svg {
        width: 100%;
        height: auto;
    }

.logo-mark {
    width: 100%;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 18px 46px rgba(22,35,63,0.28), 0 0 0 6px var(--cream), 0 0 0 7px var(--rule);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 6;
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid var(--rule);
    background: rgba(250,246,236,0.85);
    backdrop-filter: blur(4px);
    cursor: pointer;
    transition: background .2s, transform .2s;
}

    .hero-arrow:hover {
        background: var(--gold-light);
        transform: translateY(-50%) scale(1.06);
    }

    .hero-arrow svg {
        width: 16px;
        height: 16px;
    }

    .hero-arrow.prev {
        left: 60px;
    }

    .hero-arrow.next {
        right: 60px;
    }

.hero-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 36px;
}

.hero-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background .25s, width .25s;
    position: relative;
}

    .hero-dot.is-active {
        background: var(--gold);
        width: 26px;
        border-radius: 5px;
    }

@media (max-width:1100px) {
    .hero-arrow.prev {
        left: -6px;
    }

    .hero-arrow.next {
        right: -6px;
    }
}

@media (max-width:820px) {
    .hero-slide {
        grid-template-columns: 1fr;
        text-align: center;
        row-gap: 28px;
    }
    .hero {
        min-height: 50svh;
        padding: 112px 0px 20px;
    }
    .hero-slider {
        min-height: 300px;
    }
    .hero-visual {
        height: 260px;
    }

    .lede {
        margin: 0 auto 30px;
    }

    .cta-row {
        justify-content: center;
    }
}


/* -------- scroll to top -------- */
.scroll-top {
    position: fixed;
    right: 26px;
    bottom: 26px;
    z-index: 55;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background: var(--navy);
    color: var(--gold-light);
    box-shadow: 0 10px 24px rgba(22,35,63,0.28);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    transition: opacity .3s ease, transform .3s ease, visibility .3s, background .2s;
}

    .scroll-top.is-visible {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .scroll-top:hover {
        background: var(--gold);
        color: var(--navy);
    }

    .scroll-top svg {
        width: 18px;
        height: 18px;
    }

@media (max-width:560px) {
    .scroll-top {
        right: 16px;
        bottom: 16px;
        width: 44px;
        height: 44px;
    }
}

/* -------- whatsapp floating button -------- */
.whatsapp-float {
    position: fixed;
    left: 26px;
    bottom: 26px;
    z-index: 55;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 26px rgba(0,0,0,0.28);
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease;
}

    .whatsapp-float:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 14px 30px rgba(0,0,0,0.32);
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }

    .whatsapp-float::after {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 50%;
        z-index: -1;
        box-shadow: 0 0 0 0 rgba(37,211,102,0.55);
        animation: waPulse 2.4s ease-in-out infinite;
    }

@keyframes waPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37,211,102,0.55);
    }

    70% {
        box-shadow: 0 0 0 14px rgba(37,211,102,0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37,211,102,0);
    }
}

@media (max-width:560px) {
    .whatsapp-float {
        left: 16px;
        bottom: 16px;
        width: 50px;
        height: 50px;
    }

        .whatsapp-float svg {
            width: 25px;
            height: 25px;
        }
}

.btn {
    font-family: var(--sans-label);
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 15px 30px;
    border-radius: 2px;
    text-decoration: none;
    display: inline-block;
    transition: transform .25s ease, box-shadow .25s ease;
}

.btn-primary {
    background: var(--green-dark);
    color: var(--cream);
    box-shadow: 0 6px 0 var(--gold);
    border:0;
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 0 var(--gold);
        background:var(--navy);
    }

.btn-ghost {
    color: var(--ink);
    border-bottom: 1px solid var(--ink);
    padding: 15px 2px;
}

    .btn-ghost:hover {
        color: var(--green-dark);
        border-color: var(--green-dark);
    }

.parallax-layer {
    position: absolute;
    pointer-events: none;
    will-change: transform;
    z-index: 5;
}

.laurel-l {
    left: -85px;
    top: 8%;
    width: 280px;
    z-index: 49;
    opacity: .9;
}

.laurel-r {
    right: -85px;
    top: 8%;
    width: 280px;
    z-index:49;
    opacity: .9;
    transform: scaleX(-1);
}

.leaf-drift {
    width: 46px;
    opacity: .5;
    z-index: 1;
}

.ld1 {
    left: 6%;
    top: 20%;
}

.ld2 {
    right: 4%;
    top: 60%;
}

.ld3 {
    left: 4%;
    top: 70%;
}

/* -------- section shells -------- */
section {
    position: relative;
    padding: 120px 0;
}

.on-navy {
    background: var(--navy);
    color: var(--cream);
}

    .on-navy .eyebrow {
        color: var(--gold-light);
    }

.chapter-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

    .chapter-head h2 {
        font-family: var(--serif-display);
        font-weight: 600;
        font-size: clamp(1.9rem,4vw,2.9rem);
        line-height: 1.14;
        margin: 0;
        letter-spacing: -.01em;
    }

    .chapter-head p {
        margin: 18px auto 0;
        max-width: 480px;
        opacity: .85;
    }

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .8s ease, transform .8s ease;
}

    .reveal.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

    .reveal.d1 {
        transition-delay: .08s;
    }

    .reveal.d2 {
        transition-delay: .16s;
    }

    .reveal.d3 {
        transition-delay: .24s;
    }

/* -------- story chapter -------- */
.story {
    text-align: center;
}

.story-book {
    width: 180px;
    margin: 0 auto 40px;
}

.story p.body-lg {
    max-width: 600px;
    margin: 0 auto 20px;
    font-size: 1.14rem;
    color: #DCE1EE;
}

.story .signoff {
    font-family: var(--serif-display);
    font-style: italic;
    color: var(--gold-light);
    font-size: 1.1rem;
    margin-top: 26px;
}

/* -------- women & girls spotlight -------- */
.women {
    text-align: center;
}

.women-illustration {
    width: 150px;
    margin: 0 auto 28px;
}

.women-stat-row {
    max-width: 820px;
    margin: 44px auto 54px;
}

    .women-stat-row .num {
        font-family: var(--serif-display);
        font-weight: 700;
        font-size: clamp(1.7rem,3vw,2.3rem);
        color: var(--gold-light);
    }

    .women-stat-row .label {
        font-family: var(--sans-label);
        font-size: 10.5px;
        letter-spacing: .1em;
        text-transform: uppercase;
        color: #B9C2DA;
        margin-top: 6px;
    }

.women-programs {
    max-width: 940px;
    margin: 0 auto 50px;
}

.women-program-card {
    background: rgba(232,196,104,0.06);
    border: 1px solid rgba(232,196,104,0.22);
    border-radius: 4px;
    padding: 26px 24px;
    transition: border-color .25s, transform .25s;
    text-align: left;
}

    .women-program-card:hover {
        border-color: var(--gold);
        transform: translateY(-4px);
    }

.women-program-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 16px;
}

.women-program-card h4 {
    font-family: var(--serif-display);
    font-size: 1.08rem;
    color: var(--gold-light);
    margin: 0 0 8px;
}

.women-program-card p {
    font-size: .92rem;
    color: #C7CEE0;
    margin: 0;
    line-height: 1.55;
}


/* -------- pillar rows -------- */
.pillar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    padding: 70px 0;
}

    .pillar.reverse {
        direction: rtl;
    }

        .pillar.reverse > * {
            direction: ltr;
        }

.pillar-icon {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
}

.pillar-copy .eyebrow {
    margin-bottom: 16px;
}

.pillar-copy h3 {
    font-family: var(--serif-display);
    font-weight: 600;
    font-size: clamp(1.6rem,3vw,2.2rem);
    margin: 0 0 16px;
    color: var(--navy);
    letter-spacing: -.01em;
}

.pillar-copy p {
    color: #40496a;
    margin: 0 0 20px;
}

.pillar-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

    .pillar-list li {
        font-family: var(--sans-label);
        font-size: 13px;
        letter-spacing: .03em;
        color: var(--green-dark);
        padding-left: 20px;
        position: relative;
    }

        .pillar-list li::before {
            content: "—";
            position: absolute;
            left: 0;
            color: var(--gold);
        }

.divider-wrap {
    display: flex;
    justify-content: center;
    padding: 10px 0 0;
}

.laurel-divider {
    width: 220px;
    opacity: .75;
}

@media (max-width:880px) {
    .pillar, .pillar.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        text-align: center;
        gap: 32px;
    }

    .pillar-list {
        justify-items: center;
    }

        .pillar-list li {
            padding-left: 0;
        }

            .pillar-list li::before {
                display: none;
            }
}

/* -------- noticeboard & press -------- */
.noticeboard {
    background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%);
    color: var(--cream);
}

    .noticeboard .eyebrow {
        color: var(--gold-light);
    }

.board-panel h3 {
    font-family: var(--serif-display);
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--gold-light);
    margin: 0 0 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .board-panel h3 svg {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
        color: var(--gold);
    }

.board-scroll {
    max-height: 420px;
    overflow-y: auto;
    padding-right: 12px;
    margin-right: -12px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

    .board-scroll::-webkit-scrollbar {
        width: 6px;
    }

    .board-scroll::-webkit-scrollbar-track {
        background: transparent;
    }

    .board-scroll::-webkit-scrollbar-thumb {
        background: rgba(232,196,104,0.35);
        border-radius: 6px;
    }

        .board-scroll::-webkit-scrollbar-thumb:hover {
            background: rgba(232,196,104,0.55);
        }

.board-scroll {
    scrollbar-width: thin;
    scrollbar-color: rgba(232,196,104,0.4) transparent;
}

.notice-item, .press-item {
    background: rgba(232,196,104,0.06);
    border: 1px solid rgba(232,196,104,0.2);
    border-radius: 4px;
    padding: 16px 18px;
    display: flex;
  
    gap: 8px;
    align-items: flex-start;
    transition: border-color .25s ease, transform .25s ease;
}

    .notice-item:hover, .press-item:hover {
        border-color: var(--gold);
        transform: translateX(3px);
    }

.board-date {
    flex-shrink: 0;
    font-family: var(--sans-label);
    font-size: 8px;
    font-weight:600;
    letter-spacing: .06em;
    text-transform: uppercase;
    background: var(--gold-light);
    color: var(--navy);
    padding: 1px 9px;
    border-radius: 2px;
    white-space: nowrap;
    margin-top: 2px;
}

.board-body {
    min-width: 0;
}

    .board-body h4 {
        font-family: var(--serif-display);
        font-weight: 600;
        font-size: 1rem;
        color: var(--cream);
        margin: 0 0 4px;
        line-height: 1.35;
    }

    .board-body p {
        font-size: .88rem;
        color: #C7CEE0;
        margin: 0;
        line-height: 1.5;
    }

.board-tag-new {
    display: inline-block;
    font-family: var(--sans-label);
    font-size: 9px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--green-dark);
    background: #DCE9D6;
    padding: 2px 7px;
    border-radius: 2px;
    margin-left: 8px;
    vertical-align: middle;
}

.notice-item {
    flex-wrap: wrap;
}

.board-download {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    font-family: var(--sans-label);
    font-size: 11px;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--gold-light);
    text-decoration: none;
    border-bottom: 1px solid rgba(232,196,104,0.5);
}

    .board-download svg {
        width: 13px;
        height: 13px;
    }

    .board-download:hover {
        color: #fff;
        border-color: #fff;
    }

.press-item {
    align-items: flex-start;
}

.press-thumb {
    flex-shrink: 0;
    width: 76px;
    height: 76px;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .press-thumb.tile-navy {
        background: linear-gradient(155deg,#1F2F52,#0F1830);
    }

    .press-thumb.tile-green {
        background: linear-gradient(155deg,#4B6B45,#2A3D26);
    }

    .press-thumb.tile-gold {
        background: linear-gradient(155deg,#C9A227,#8A6A12);
    }

    .press-thumb svg {
        width: 36px;
        height: 36px;
        color: var(--cream);
        opacity: .92;
    }

.press-outlet {
    font-family: var(--sans-label);
    font-size: 10.5px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 4px;
}

.press-link {
    display: inline-block;
    margin-top: 8px;
    font-family: var(--sans-label);
    font-size: 11.5px;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--gold-light);
    text-decoration: none;
    border-bottom: 1px solid rgba(232,196,104,0.5);
}

    .press-link:hover {
        color: #fff;
        border-color: #fff;
    }

@media (max-width:420px) {
    .press-thumb {
        width: 60px;
        height: 60px;
    }

        .press-thumb svg {
            width: 28px;
            height: 28px;
        }
}

@media (max-width:760px) {
    .board-scroll {
        max-height: 340px;
    }
}
/* -------- impact numbers -------- */
.impact {
    background: linear-gradient(180deg, var(--cream-deep), var(--cream));
    text-align: center;
}

.stat-grid {
    max-width: 1000px;
    margin: 0 auto;
}

.stat {
    padding: 10px;
}

    .stat .num {
        font-family: var(--serif-display);
        font-weight: 700;
        font-size: clamp(2.2rem,4vw,3.2rem);
        color: var(--navy);
    }

        .stat .num span {
            color: var(--gold);
        }

    .stat .label {
        font-family: var(--sans-label);
        font-size: 11.5px;
        letter-spacing: .12em;
        text-transform: uppercase;
        color: var(--ink);
        margin-top: 8px;
    }


/* -------- founders -------- */
.founders-grid {
    max-width: 940px;
    margin: 0 auto;
}

.founder-card {
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: 4px;
    padding: 38px 34px;
    text-align: center;
    transition: transform .3s ease, box-shadow .3s ease;
}

    .founder-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 22px 44px rgba(22,35,63,0.12);
    }

.founder-portrait {
    width: 130px;
    height: 130px;
    margin: 0 auto 22px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--cream-deep);
    box-shadow: 0 0 0 5px var(--cream), 0 0 0 6px var(--rule);
}

    .founder-portrait svg {
        width: 100%;
        height: 100%;
    }

.founder-name {
    font-family: var(--serif-display);
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--navy);
    margin: 0 0 4px;
}

.founder-role {
    font-family: var(--sans-label);
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 20px;
}

.founder-msg {
    font-family: var(--serif-display);
    font-style: italic;
    color: #40496a;
    font-size: 1.02rem;
    line-height: 1.55;
    margin: 0;
}

@media (max-width:760px) {
    .founders-grid {
        max-width: 440px;
    }
}

/* -------- activities slider -------- */
.activities {
    background: linear-gradient(180deg, var(--cream), var(--cream-deep));
    overflow: hidden;
}

.activities-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    max-width: 1180px;
    margin: 0 auto 40px;
    flex-wrap: wrap;
}

    .activities-head .chapter-head {
        text-align: left;
        margin: 0;
        max-width: 520px;
    }

.activities-controls {
    display: flex;
    gap: 12px;
}

.activities-arrow {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid var(--rule);
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, border-color .2s, transform .2s;
}

    .activities-arrow:hover {
        background: var(--gold-light);
        border-color: var(--gold-light);
        transform: scale(1.06);
    }

    .activities-arrow:disabled {
        opacity: .35;
        cursor: default;
        transform: none;
    }

        .activities-arrow:disabled:hover {
            background: #fff;
            border-color: var(--rule);
        }

    .activities-arrow svg {
        width: 16px;
        height: 16px;
    }

.activities-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 6px 6px 26px;
    margin: 0 -32px;
    padding-left: 32px;
    padding-right: 32px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

    .activities-track::-webkit-scrollbar {
        display: none;
    }

.activity-card {
    flex: 0 0 auto;
    width: 280px;
    scroll-snap-align: start;
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: 4px;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
}

    .activity-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 40px rgba(22,35,63,0.12);
    }

.activity-icon {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, var(--cream-deep), #EADFC4);
}

    .activity-icon svg {
        width: 64px;
        height: 64px;
    }

.activity-body {
    padding: 22px 22px 26px;
}

.activity-tag {
    font-family: var(--sans-label);
    font-size: 10.5px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 8px;
}

.activity-title {
    font-family: var(--serif-display);
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--navy);
    margin: 0 0 8px;
}

.activity-desc {
    font-size: .92rem;
    color: #4a5273;
    margin: 0;
    line-height: 1.5;
}

.activities-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 6px;
}

    .activities-dots .hero-dot {
        border-color: var(--green);
    }

        .activities-dots .hero-dot.is-active {
            background: var(--green);
        }

@media (max-width:760px) {
    .activities-head {
        flex-direction: column;
        align-items: flex-start;
    }

        .activities-head .chapter-head {
            text-align: left;
        }

    .activity-card {
        width: 76vw;
    }
}

/* -------- gallery -------- */
.gallery {
    background: var(--cream-deep);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px,1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    border: none;
    padding: 0;
    margin: 0;
    display: block;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    text-align: left;
    transition: transform .35s ease, box-shadow .35s ease;
}

    .gallery-item:hover {
        transform: translateY(-6px);
        box-shadow: 0 22px 40px rgba(22,35,63,0.22);
    }

    .gallery-item.tile-navy {
        background: linear-gradient(155deg,#1F2F52,#0F1830);
    }

    .gallery-item.tile-green {
        background: linear-gradient(155deg,#4B6B45,#2A3D26);
    }

    .gallery-item.tile-gold {
        background: linear-gradient(155deg,#C9A227,#8A6A12);
    }

.gallery-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    transition: transform .4s ease;
}

.gallery-item:hover .gallery-icon {
    transform: scale(1.1);
}

.gallery-icon svg {
    width: 36%;
    height: 36%;
    opacity: .92;
}

.gallery-expand {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .25s ease;
}

.gallery-item:hover .gallery-expand {
    opacity: 1;
}

.gallery-expand svg {
    width: 13px;
    height: 13px;
    color: #fff;
}

.gallery-caption-bar {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 16px 18px 14px;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,0.55));
}

    .gallery-caption-bar span {
        font-family: var(--sans-label);
        font-size: 11.5px;
        letter-spacing: .06em;
        text-transform: uppercase;
        color: #fff;
    }

/* lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(9,14,26,0.93);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 70px 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s;
}

    .lightbox.is-open {
        opacity: 1;
        visibility: visible;
    }

.lightbox-content {
    max-width: 600px;
    width: 100%;
    background: var(--cream);
    border-radius: 6px;
    overflow: hidden;
    transform: scale(0.94) translateY(10px);
    transition: transform .35s ease;
}

.lightbox.is-open .lightbox-content {
    transform: scale(1) translateY(0);
}

.lightbox-visual {
    aspect-ratio: 3/2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
}

    .lightbox-visual svg {
        width: 38%;
        height: 38%;
        opacity: .95;
    }

.lightbox-caption {
    padding: 26px 32px 30px;
}

    .lightbox-caption p.eyebrow {
        margin: 0 0 8px;
    }

    .lightbox-caption h3 {
        font-family: var(--serif-display);
        font-weight: 600;
        font-size: 1.35rem;
        color: var(--navy);
        margin: 0 0 10px;
    }

    .lightbox-caption p.desc {
        color: #4a5273;
        margin: 0;
        font-size: .98rem;
        line-height: 1.55;
    }

.lightbox-close, .lightbox-nav {
    position: fixed;
    z-index: 101;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease, transform .2s ease;
}

    .lightbox-close:hover, .lightbox-nav:hover {
        background: rgba(255,255,255,0.24);
    }

.lightbox-close {
    top: 22px;
    right: 24px;
    width: 42px;
    height: 42px;
}

    .lightbox-close svg {
        width: 16px;
        height: 16px;
    }

.lightbox-nav {
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
}

    .lightbox-nav:hover {
        transform: translateY(-50%) scale(1.06);
    }

    .lightbox-nav svg {
        width: 17px;
        height: 17px;
    }

    .lightbox-nav.lb-prev {
        left: 24px;
    }

    .lightbox-nav.lb-next {
        right: 24px;
    }

.lightbox-count {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 101;
    font-family: var(--sans-label);
    font-size: 11.5px;
    letter-spacing: .1em;
    color: #C7CEE0;
}

@media (max-width:640px) {
    .lightbox {
        padding: 24px 16px 90px;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
    }

        .lightbox-nav.lb-prev {
            left: 10px;
        }

        .lightbox-nav.lb-next {
            right: 10px;
        }
    .footer-logo {
        width: 26% !important;
    }
}

/* -------- contact -------- */
.contact {
    background: var(--cream);
}

.contact-grid {
    max-width: 1080px;
    margin: 0 auto;
}

.contact-form {
    display: grid;
    gap: 18px;
}

.field {
    display: grid;
    gap: 8px;
    text-align: left;
}

    .field label {
        font-family: var(--sans-label);
        font-size: 11px;
        letter-spacing: .1em;
        text-transform: uppercase;
        color: var(--green-dark);
    }

    .field input, .field textarea {
        font-family: var(--serif-body);
        font-size: 1rem;
        color: var(--ink);
        background: #fff;
        border: 1px solid var(--rule);
        border-radius: 3px;
        padding: 13px 15px;
        transition: border-color .2s ease, box-shadow .2s ease;
        resize: vertical;
    }

        .field input:focus, .field textarea:focus {
            outline: none;
            border-color: var(--gold);
            box-shadow: 0 0 0 3px rgba(201,162,39,0.18);
        }

.contact-form .btn-primary {
    justify-self: start;
    border: none;
    cursor: pointer;
    font-family: var(--sans-label);
}

.form-note {
    font-family: var(--sans-label);
    font-size: 12px;
    color: var(--green-dark);
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: opacity .3s ease;
}

    .form-note.is-visible {
        opacity: 1;
        height: auto;
        margin-top: -4px;
    }

.contact-info {
    text-align: left;
}

.contact-map {
    width: 100%;
    aspect-ratio: 4/3;
    border: 1px solid var(--rule);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 26px;
    filter: grayscale(.15) contrast(1.02);
}

    .contact-map iframe {
        width: 100%;
        height: 100%;
        border: 0;
        display: block;
    }

.contact-detail {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
    align-items: flex-start;
}

    .contact-detail svg {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
        margin-top: 3px;
        color: var(--gold);
    }

    .contact-detail h5 {
        font-family: var(--sans-label);
        font-size: 11px;
        letter-spacing: .1em;
        text-transform: uppercase;
        color: var(--green-dark);
        margin: 0 0 4px;
    }

    .contact-detail p {
        margin: 0;
        color: #3a4665;
        font-size: .96rem;
    }



/* -------- testimonial -------- */
.testimonial {
    background: var(--navy);
    color: var(--cream);
    text-align: center;
    padding: 100px 0;
}

.quote {
    font-family: var(--serif-display);
    font-style: italic;
    font-weight: 500;
    font-size: clamp(1.4rem,2.6vw,2rem);
    max-width: 720px;
    margin: 0 auto 24px;
    line-height: 1.4;
}

.quote-attr {
    font-family: var(--sans-label);
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold-light);
}

/* -------- epilogue / CTA -------- */
.epilogue {
    background: var(--cream);
    color: var(--cream);
    text-align: center;
    padding: 130px 0 100px;
}

.join-grid {
    max-width: 900px;
    margin: 52px auto 0;
}

.join-card {
    border: 0px solid rgba(232,196,104,0.25);
    padding: 26px 24px;
    border-radius: 2px;
    transition: border-color .25s, transform .25s;
    text-align: left;
    background: var(--navy);
}

    .join-card:hover {
        border-color: var(--gold);
        transform: translateY(-4px);
    }

    .join-card h4 {
        font-family: var(--serif-display);
        font-size: 1.15rem;
        margin: 0 0 8px;
        color: var(--gold-light);
    }

    .join-card p {
        margin: 0;
        font-size: .95rem;
        opacity: .8;
    }

.join-form-wrap {
    max-width: 640px;
    margin: 56px auto 0;
    text-align: left;
    background: var(--navy);
    border: 1px solid rgba(232,196,104,0.22);
    border-radius: 4px;
    padding: 38px 36px;
}

    .join-form-wrap h3 {
        font-family: var(--serif-display);
        font-weight: 600;
        font-size: 1.3rem;
        color: var(--gold-light);
        margin: 0 0 6px;
        text-align: center;
    }

    .join-form-wrap > p {
        text-align: center;
        font-size: .92rem;
        color: #C7CEE0;
        margin: 0 0 26px;
    }

.join-form {
    display: grid;
    gap: 18px;
}

    .join-form .field {
        display: grid;
        gap: 8px;
    }

        .join-form .field label {
            font-family: var(--sans-label);
            font-size: 11px;
            letter-spacing: .1em;
            text-transform: uppercase;
            color: var(--gold-light);
        }

        .join-form .field input, .join-form .field select, .join-form .field textarea {
            font-family: var(--serif-body);
            font-size: 1rem;
            color: var(--ink);
            background: #fff;
            border: 1px solid var(--rule);
            border-radius: 3px;
            padding: 13px 15px;
            transition: border-color .2s ease, box-shadow .2s ease;
            resize: vertical;
            width: 100%;
        }

            .join-form .field input:focus, .join-form .field select:focus, .join-form .field textarea:focus {
                outline: none;
                border-color: var(--gold);
                box-shadow: 0 0 0 3px rgba(201,162,39,0.18);
            }

    .join-form .field-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }

    .join-form button[type="submit"] {
        justify-self: center;
        border: none;
        cursor: pointer;
        font-family: var(--sans-label);
        margin-top: 6px;
    }

    .join-form .form-note {
        font-family: var(--sans-label);
        font-size: 12px;
        color: var(--gold-light);
        opacity: 0;
        height: 0;
        overflow: hidden;
        transition: opacity .3s ease;
        text-align: center;
    }

        .join-form .form-note.is-visible {
            opacity: 1;
            height: auto;
            margin-top: -4px;
        }

@media (max-width:600px) {
    .join-form-wrap {
        padding: 30px 22px;
    }

    .join-form .field-row {
        grid-template-columns: 1fr;
    }
}

/* -------- footer -------- */
footer {
    background: #101a30;
    color: var(--cream);
    padding: 70px 0 30px;
}

.foot-top {
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.foot-seal {
    width: 110px;
    margin-bottom: 18px;
}

.foot-tag {
    font-family: var(--serif-display);
    font-style: italic;
    color: #B9C2DA;
    font-size: 1rem;
    max-width: 260px;
}

.foot-col h5 {
    font-family: var(--sans-label);
    font-size: 11.5px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin: 0 0 16px;
}

.foot-col a {
    display: block;
    text-decoration: none;
    color: #C7CEE0;
    font-size: .92rem;
    margin-bottom: 10px;
    opacity: .85;
}

    .foot-col a:hover {
        opacity: 1;
        color: var(--gold-light);
    }

.foot-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 26px;
    flex-wrap: wrap;
    gap: 12px;
}

    .foot-bottom p {
        font-size: .8rem;
        color: #8892AC;
        margin: 0;
        font-family: var(--sans-label);
        letter-spacing: .02em;
    }


@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .parallax-layer {
        transform: none !important;
    }

    .reveal {
        transition: none;
        opacity: 1;
        transform: none;
    }

    #bellSwing {
        animation: none !important;
        transform: none !important;
    }

    .btn-donate::after {
        animation: none !important;
    }

    .whatsapp-float::after {
        animation: none !important;
    }
}