/* =========================================================
   RESET
========================================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    overflow-x:hidden;
    background:#f7f2df;
    color:#111;
}

/* Hide Google Default Widget */
#google_translate_element {
    display: none;
}

.goog-te-banner-frame.skiptranslate {
    display: none !important;
}

@media(max-width:1240px){
.spacer {
    padding-top: 40%;
}
}

/* =========================================================
   HERO
========================================================= */

.hero{

    position:relative;

    min-height:100vh;

    /* push content below the fixed header */
    padding-top:120px;

    overflow:visible;

    background:
    linear-gradient(rgba(125, 126, 39,.88), rgba(133,124,59.92)),
    url("https://images.unsplash.com/photo-1509099836639-18ba1795216d?q=80&w=1800&auto=format&fit=crop");

    background-size:cover;
    background-position:center;

}

/* TEXTURE */

.hero::before{

    content:"";

    position:absolute;
    inset:0;

    opacity:.08;

    background-image:
    radial-gradient(circle, #000 1px, transparent 1px);

    background-size:7px 7px;

}

/* =========================================================
   HEADER
========================================================= */

.main-header{

    position:fixed;
    top:0;
    left:0;

    z-index:200;

    width:100%;

    padding:22px 70px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    /* start transparent, floating over hero */
    background:transparent;

    transition:
        background .35s ease,
        padding .35s ease,
        box-shadow .35s ease;

}

/* scrolled state — added by JS */
.main-header.scrolled{

    background:rgba(255,255,255,.96);

    backdrop-filter:blur(12px);

    box-shadow:0 4px 30px rgba(0,0,0,.10);

    padding:14px 70px;

}

.logo img{
    height:90px;
    width:auto;
    transition:height .35s ease;
}

.main-header.scrolled .logo img{
    height:60px;
}

/* NAV */

.nav{

    display:flex;
    align-items:center;
    gap:34px;

}

.nav a,
.dropdown-btn{

    text-decoration:none;
    color:#111;

    font-size:15px;
    font-weight:600;

    background:none;
    border:none;

    cursor:pointer;

}

/* DROPDOWN — use a pseudo-element bridge so cursor moving
   into the panel doesn't close the menu */

.nav-dropdown{
    position:relative;
}

/* invisible bridge between button and panel */
.nav-dropdown::after{

    content:"";
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    height:16px; /* covers the gap */

}

.dropdown-content{

    position:absolute;

    top:calc(100% + 12px);
    left:0;

    min-width:220px;

    background:#fff;

    border-radius:18px;

    padding:10px;

    /* hidden but not display:none so transition works */
    opacity:0;
    pointer-events:none;
    transform:translateY(8px);

    transition:
        opacity .2s ease,
        transform .2s ease;

    flex-direction:column;
    display:flex;

    box-shadow:0 20px 50px rgba(0,0,0,.15);

}

.dropdown-content a{

    padding:14px;
    border-radius:12px;
    color:#111;
    text-decoration:none;
    font-size:15px;
    font-weight:600;

}

.dropdown-content a:hover{
    background:#f3f3f3;
}

/* show on hover — pointer-events bridges the gap */
.nav-dropdown:hover .dropdown-content,
.nav-dropdown:focus-within .dropdown-content{

    opacity:1;
    pointer-events:all;
    transform:translateY(0);

}

/* HEADER BUTTONS */

.donate-btn{

    padding:13px 26px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    font-size:15px;

    /* warm amber gradient */
    background:linear-gradient(135deg, #f5a623 0%, #dfb126 100%);
    color:#111 !important;
    border:none;

    box-shadow:0 4px 18px rgba(223,177,38,.45);

    transition:
        transform .25s ease,
        box-shadow .25s ease;

}

.donate-btn:hover{

    transform:translateY(-3px);
    box-shadow:0 8px 28px rgba(223,177,38,.6);

}

.member-btn{

    padding:13px 26px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    font-size:15px;

    /* deep charcoal with a subtle warm tint */
    background:linear-gradient(135deg, #1a1a1a 0%, #333 100%) !important;
    color:#fff !important;
    border:none !important;

    box-shadow:0 4px 18px rgba(0,0,0,.30);

    transition:
        transform .25s ease,
        box-shadow .25s ease;

}

.member-btn:hover{

    transform:translateY(-3px);
    box-shadow:0 8px 28px rgba(0,0,0,.45);
    background:linear-gradient(135deg, #2a2a2a 0%, #444 100%) !important;

}

/* when header is transparent (top of page) — keep buttons legible */
.main-header:not(.scrolled) .donate-btn{
    box-shadow:0 4px 18px rgba(0,0,0,.20);
}

.main-header:not(.scrolled) .member-btn{
    background:linear-gradient(135deg, #111 0%, #2a2a2a 100%) !important;
}

/* =========================================================
   MOBILE MENU
========================================================= */

/* hamburger button */
.mobile-menu-btn{

    display:none;

    flex-direction:column;
    justify-content:center;
    gap:5px;

    width:44px;
    height:44px;

    background:none;
    border:none;
    cursor:pointer;
    padding:6px;
    border-radius:10px;

}

.mobile-menu-btn span{

    display:block;
    width:100%;
    height:2.5px;
    background:#111;
    border-radius:4px;
    transition:.3s ease;

}

.mobile-menu-btn.open span:nth-child(1){
    transform:translateY(7.5px) rotate(45deg);
}
.mobile-menu-btn.open span:nth-child(2){
    opacity:0;
}
.mobile-menu-btn.open span:nth-child(3){
    transform:translateY(-7.5px) rotate(-45deg);
}

/* mobile drawer */
.mobile-nav{

    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:190;

    flex-direction:column;

    background:#fff;

    padding:100px 32px 40px;

    overflow-y:auto;

    transform:translateX(100%);
    transition:transform .35s ease;

}

.mobile-nav.open{
    transform:translateX(0);
}

.mobile-nav a,
.mobile-nav-section-title{

    display:block;
    font-size:22px;
    font-weight:700;
    color:#111;
    text-decoration:none;
    padding:16px 0;
    border-bottom:1px solid #eee;

}

.mobile-nav-section-title{
    color:#b38809;
    font-size:13px;
    letter-spacing:2px;
    text-transform:uppercase;
    padding-top:28px;
    border-bottom:none;
    font-weight:700;
}

.mobile-nav-sub a{

    font-size:18px;
    font-weight:500;
    padding:12px 0 12px 16px;
    color:#333;

}

.mobile-nav-buttons{

    display:flex;
    flex-direction:column;
    gap:14px;
    margin-top:32px;

}

.mobile-nav-buttons a{

    text-align:center;
    padding:18px;
    border-radius:50px;
    font-size:17px;
    font-weight:700;
    border-bottom:none;
    transition:transform .25s ease, box-shadow .25s ease;

}

.mobile-nav-buttons .donate-btn{
    box-shadow:0 6px 22px rgba(223,177,38,.45);
}

.mobile-nav-buttons .member-btn{
    box-shadow:0 6px 22px rgba(0,0,0,.30);
}

/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content{

    position:relative;

    z-index:3;

    min-height:calc(100vh - 100px);

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    padding:
    40px
    80px
    120px;

}

/* HAND — fills right column, tall enough to bleed into about section */

.hand-mask-container{

    position:absolute;

    /* sit in the right half */
    right:0;
    left:50%;

    top:60px;

    /* tall: hero height + ~200px overlap into about section */
    height:calc(100vh + 140px);

    z-index:5;

    pointer-events:none;

    filter:drop-shadow(-16px 0px 32px rgba(0,0,0,.40));

}

/* =========================================================
   LEFT SIDE
========================================================= */

.hero-left{

    position:relative;

    display:flex;
    justify-content:center;
    align-items:center;

}

/* LABELS */

.side-text{

    position:absolute;

    left:0;

    font-family:'Oswald',sans-serif;

    text-transform:uppercase;

    color:#111;

    z-index:5;

}

.side-text.top{

    top:70px;

    font-size:68px;

    line-height:.95;

    font-weight:700;

}

.side-text.bottom{

    bottom:80px;

    font-size:22px;

    letter-spacing:2px;

}

/* =========================================================
   HAND MASK
========================================================= */

.hand-slide{

    position:absolute;
    inset:0;

    opacity:0;

    transition:
    opacity 1.6s ease,
    transform .6s ease;

    background-size:cover;
    background-position:center;

    /* SVG MASK */

    -webkit-mask-image:url("content/hand-open.svg");
    -webkit-mask-repeat:no-repeat;
    -webkit-mask-position:center;
    -webkit-mask-size:contain;

    mask-image:url("content/hand-open.svg");
    mask-repeat:no-repeat;
    mask-position:center;
    mask-size:contain;

}

/* ACTIVE */

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

/* HOVER */

.hand-mask-container:hover .hand-slide.active{

    transform:
    translateY(-8px)
    rotate(-1deg);

}

/* =========================================================
   RIGHT SIDE
========================================================= */

.hero-right{
    max-width:580px;
}

/* LOCATION */

.hero-location{

    display:flex;
    align-items:center;
    gap:12px;

    margin-bottom:25px;

    text-transform:uppercase;

    letter-spacing:2px;

    font-size:14px;

    font-weight:700;

}

.hero-dot{

    width:11px;
    height:11px;

    border-radius:50%;

    background:#111;

}

/* TITLE */

.hero-title{

    font-family:'Oswald',sans-serif;

    font-size:92px;

    line-height:.93;

    text-transform:uppercase;

    margin-bottom:28px;

}

/* DESC */

.hero-description{

    font-size:20px;

    line-height:1.9;

    max-width:570px;

    margin-bottom:34px;

}

/* QUOTE */

.hero-quote{

    font-size:32px;

    font-style:normal;

    font-weight:600;

    margin-bottom:40px;

}

/* BUTTONS */

.hero-buttons{

    display:flex;
    gap:18px;

    flex-wrap:wrap;

}

.primary-btn,
.secondary-btn{

    padding:18px 34px;

    text-decoration:none;

    border-radius:50px;

    font-weight:700;

    transition:.35s ease;

}

.primary-btn{

    background:#111;

    color:#fff;

}

.secondary-btn{

    border:2px solid #111;

    color:#111;

}

.primary-btn:hover,
.secondary-btn:hover{

    transform:translateY(-5px);

}

/* =========================================================
   CATEGORY ROW
========================================================= */

.category-row{

    position:absolute;

    bottom:30px;
    right:70px;

    display:flex;
    gap:16px;

    z-index:10;

}

/* ITEM */

.category-item{

    display:flex;
    align-items:center;
    gap:14px;

    padding:18px 24px;

    border:1px solid rgba(0,0,0,.1);

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(8px);

    transition:.35s ease;

    cursor:pointer;

}

.category-item:hover{

    background:#111;

    color:#fff;

}

/* ICON */

.category-item i{
    font-size:24px;
}

/* =========================================================
   ABOUT SECTION
========================================================= */

.about-section{

    position:relative;

    z-index:10;

    padding:140px 8%;

    background:#f7f2df;

    overflow:hidden;

    box-shadow:0 -24px 60px rgba(0,0,0,.18);

}

/* BG */

.about-bg{

    position:absolute;

    left:-30px;
    top:40px;

    font-size:180px;

    font-weight:900;

    opacity:.04;

    text-transform:uppercase;

}

/* GRID */

.about-grid{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:1fr 1.2fr;

    gap:90px;

}

/* LABEL */

.section-label{

    color:#b38809;

    text-transform:uppercase;

    letter-spacing:3px;

    margin-bottom:20px;

    font-weight:700;

}

/* TITLE */

.about-title{

    font-family:'Oswald',sans-serif;

    font-size:64px;

    line-height:1.05;

}

/* TEXT */

.about-right p{

    font-size:18px;

    line-height:2;

    margin-bottom:28px;

}

/* BTN */

.about-btn{

    display:inline-flex;

    margin-top:14px;

    padding:18px 30px;

    border-radius:50px;

    background:#111;

    color:#fff;

    text-decoration:none;

    font-weight:700;

    transition:.35s ease;

}

.about-btn:hover{
    transform:translateY(-5px);
}

/* =========================================================
   WHAT WE DO
========================================================= */

.services-section{

    padding:140px 8%;

    background:#dfb126;

}

/* HEADER */

.services-header{

    margin-bottom:60px;

}

.services-header h2{

    font-family:'Oswald',sans-serif;

    font-size:64px;

    line-height:1.05;

    max-width:700px;

}

/* GRID */

.services-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:24px;

}

/* CARD */

.service-card{

    background:rgba(255,255,255,.12);

    border:1px solid rgba(0,0,0,.08);

    backdrop-filter:blur(8px);

    padding:40px 30px;

    min-height:320px;

    cursor:pointer;

    transition:.4s ease;

}

.service-card:hover,
.service-card.active{

    background:#111;

    color:#fff;

    transform:translateY(-8px);

}

/* NUMBER */

.service-number{

    font-size:14px;

    letter-spacing:2px;

    margin-bottom:24px;

    opacity:.7;

}

/* TITLE */

.service-card h3{

    font-size:30px;

    margin-bottom:18px;

}

/* EXPAND */

.service-expand{

    max-height:0;

    overflow:hidden;

    transition:.5s ease;

}

.service-card.active .service-expand{

    max-height:200px;

}

.service-expand p{

    line-height:1.9;

}

/* =========================================================
   EVENTS
========================================================= */

.events-section{

    padding:140px 8%;

    background:#f7f2df;

}

/* HEADER */

.events-header{

    margin-bottom:50px;

}

.events-header h2{

    font-family:'Oswald',sans-serif;

    font-size:64px;

}

/* SLIDER */

.events-slider{

    display:flex;

    gap:24px;

    overflow-x:auto;

    scroll-snap-type:x mandatory;

    padding-bottom:10px;

}

.events-slider::-webkit-scrollbar{
    height:8px;
}

/* CARD */

.event-card{

    position:relative;

    min-width:400px;
    height:520px;

    border-radius:28px;

    overflow:hidden;

    flex-shrink:0;

    scroll-snap-align:start;

    cursor:pointer;

}

/* IMG */

.event-card img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:1s ease;

}

.event-card:hover img{
    transform:scale(1.08);
}

/* OVERLAY */

.event-overlay{

    position:absolute;
    inset:0;

    display:flex;
    flex-direction:column;
    justify-content:flex-end;

    padding:40px;

    background:
    linear-gradient(to top,
    rgba(0,0,0,.72),
    transparent 65%);

}

/* TEXT */

.event-overlay h3{

    color:#fff;

    font-size:36px;

    line-height:1.1;

    margin-bottom:20px;

}

/* BTN */

.event-overlay button{

    width:max-content;

    padding:14px 22px;

    border:none;

    border-radius:50px;

    background:#dfb126;

    font-weight:700;

    cursor:pointer;

}

/* =========================================================
   POPUP
========================================================= */

.event-popup{

    position:fixed;
    inset:0;

    background:rgba(0,0,0,.7);

    display:none;

    justify-content:center;
    align-items:center;

    z-index:9999;

}

.event-popup.active{
    display:flex;
}

/* BOX */

.popup-box{

    width:90%;
    max-width:620px;

    background:#fff;

    border-radius:30px;

    padding:50px;

    position:relative;

}

/* CLOSE */

.popup-close{

    position:absolute;

    top:20px;
    right:20px;

    width:42px;
    height:42px;

    border:none;

    border-radius:50%;

    cursor:pointer;

    font-size:24px;

}

/* POPUP TEXT */

.popup-box h2{

    font-size:42px;

    margin-bottom:20px;

}

.popup-box p{

    line-height:2;

    font-size:18px;

}

/* =========================================================
   RESPONSIVE
========================================================= */

/* Tablet-ish: shrink font, keep two-column + hand */
@media(max-width:1200px){

    .hero-title{
        font-size:70px;
    }

    .side-text{
        display:none;
    }

    .about-grid{
        grid-template-columns:1fr;
    }

    .services-grid{
        grid-template-columns:1fr 1fr;
    }

}

/* Narrow tablet: collapse to single column, hide hand */
@media(max-width:1240px){

    .hero-content{

        grid-template-columns:1fr;

        padding-top:40px;

        text-align:center;

    }

    .hero-right{
        margin:auto;
        max-width:600px;
    }

    /* Hide hand — no room for it without overlapping text */
    .hand-mask-container{

        display:none;

    }

    .category-row{

        position:relative;

        right:auto;
        bottom:auto;

        justify-content:center;

        flex-wrap:wrap;

        margin-top:40px;

    }

}

/* Mobile */
@media(max-width:1240px){

    .main-header{
        padding:14px 22px;
    }

    .main-header.scrolled{
        padding:10px 22px;
    }

    .nav{
        display:none;
    }

    .mobile-menu-btn{
        display:flex;
    }

    .mobile-nav{
        display:flex;
    }

    .hero{
        min-height:auto;
        padding-bottom:0;
    }

    .hero-content{

        display:flex;
        flex-direction:column;
        align-items:center;
        text-align:center;

        padding:20px 24px 260px;
        min-height:auto;

    }

    .hero-right{
        margin:auto;
        width:100%;
    }

    .hero-buttons{
        justify-content:center;
    }

    .hero-title{
        font-size:48px;
    }

    .hero-description{
        font-size:17px;
    }

    /* Hand: absolutely pinned to bottom of hero, bleeds into about section */
    .hand-mask-container{

        display:block;
        position:absolute;
        bottom:-180px;
        left:50%;
        transform:translateX(-50%);
        width:90vw;
        height:90vw;
        max-height:none;
        top:auto;
        right:auto;
        z-index:2;
        filter:drop-shadow(0 -16px 32px rgba(0,0,0,.35));

    }

    .about-title,
    .services-header h2,
    .events-header h2{

        font-size:42px;

    }

    .services-grid{
        grid-template-columns:1fr;
    }

    .event-card{

        min-width:300px;
        height:420px;

    }

}

@media(max-width:480px){
    .hand-mask-container{

        display:block;
        position:absolute;
        bottom:-10px;
        left:50%;
        transform:translateX(-50%);
        width:90vw;
        height:90vw;
        max-height:none;
        top:auto;
        right:auto;
        z-index:2;
        filter:drop-shadow(0 -16px 32px rgba(0,0,0,.35));

    }
}

/* =========================================================
   WHAT WE DO — PILLARS
========================================================= */

.pillars-section{

    padding:140px 8%;

    background:#111;

    position:relative;
    overflow:hidden;

}

/* subtle background texture */
.pillars-section::before{

    content:"";
    position:absolute;
    inset:0;
    opacity:.04;
    background-image:radial-gradient(circle, #fff 1px, transparent 1px);
    background-size:7px 7px;

}

/* HEADER */

.pillars-header{

    position:relative;
    z-index:2;
    max-width:700px;
    margin-bottom:80px;

}

.pillars-header .section-label{
    color:#dfb126;
}

.pillars-title{

    font-family:'Oswald',sans-serif;
    font-size:64px;
    line-height:1.05;
    color:#fff;
    margin-bottom:24px;

}

.pillars-subtitle{

    font-size:18px;
    line-height:1.9;
    color:rgba(255,255,255,.55);
    max-width:580px;

}

/* GRID */

.pillars-grid{

    position:relative;
    z-index:2;

    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:24px;

}

/* CARD */

.pillar-card{

    position:relative;

    padding:44px 36px 40px;

    border:1px solid rgba(255,255,255,.08);
    border-radius:24px;

    background:rgba(255,255,255,.04);

    display:flex;
    flex-direction:column;
    gap:16px;

    transition:
        background .35s ease,
        border-color .35s ease,
        transform .35s ease;

    cursor:default;

}

.pillar-card:hover{

    background:rgba(223,177,38,.10);
    border-color:rgba(223,177,38,.35);
    transform:translateY(-8px);

}

/* ICON */

.pillar-icon{

    font-size:38px;
    line-height:1;

}

/* NUMBER */

.pillar-number{

    position:absolute;
    top:36px;
    right:36px;

    font-size:13px;
    font-weight:700;
    letter-spacing:3px;
    color:rgba(255,255,255,.18);

}

/* TITLE */

.pillar-title{

    font-family:'Oswald',sans-serif;
    font-size:28px;
    color:#fff;
    line-height:1.1;

}

/* DESC */

.pillar-desc{

    font-size:16px;
    line-height:1.85;
    color:rgba(255,255,255,.55);
    flex:1;

}

/* LINK */

.pillar-link{

    display:inline-block;
    margin-top:8px;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    text-decoration:none;
    color:#dfb126;
    transition:letter-spacing .25s ease, opacity .25s ease;

}

.pillar-link:hover{
    letter-spacing:3px;
    opacity:.8;
}

/* RESPONSIVE */

@media(max-width:1200px){

    .pillars-grid{
        grid-template-columns:repeat(2, 1fr);
    }

    .pillars-title{
        font-size:48px;
    }

}

@media(max-width:768px){

    .pillars-section{
        padding:80px 6%;
    }

    .pillars-grid{
        grid-template-columns:1fr;
    }

    .pillars-title{
        font-size:38px;
    }

    .pillars-header{
        margin-bottom:50px;
    }

}
/* =========================================================
   FOOD & EDUCATION ASSISTANCE
========================================================= */

.assistance-section{

    padding:140px 8%;
    background:#f7f2df;
    position:relative;
    overflow:hidden;

}

.assistance-inner{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
    max-width:1400px;
    margin:0 auto;

}

/* ── VISUAL (left) ── */

.assistance-visual{

    position:relative;
    height:580px;

}

.assist-img{

    position:absolute;
    border-radius:28px;
    background-size:cover;
    background-position:center;
    box-shadow:0 30px 80px rgba(0,0,0,.18);

}

.assist-img--back{

    width:72%;
    height:75%;
    top:0;
    right:0;

}

.assist-img--front{

    width:65%;
    height:65%;
    bottom:0;
    left:0;

    border:6px solid #f7f2df;

}

/* BADGE */

.assist-badge{

    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);

    background:#dfb126;
    border-radius:20px;
    padding:22px 28px;
    text-align:center;

    box-shadow:0 16px 40px rgba(223,177,38,.45);

    z-index:5;

}

.assist-badge-number{

    display:block;
    font-family:'Oswald',sans-serif;
    font-size:42px;
    font-weight:700;
    color:#111;
    line-height:1;

}

.assist-badge-label{

    display:block;
    font-size:13px;
    font-weight:600;
    color:#111;
    opacity:.75;
    margin-top:4px;
    text-transform:uppercase;
    letter-spacing:1.5px;

}

/* ── TEXT (right) ── */

.assistance-title{

    font-family:'Oswald',sans-serif;
    font-size:58px;
    line-height:1.05;
    color:#111;
    margin-bottom:24px;

}

.assistance-body{

    font-size:17px;
    line-height:1.9;
    color:#444;
    margin-bottom:36px;

}

/* FEATURES */

.assistance-features{

    display:flex;
    flex-direction:column;
    gap:22px;
    margin-bottom:44px;

}

.assist-feature{

    display:flex;
    align-items:flex-start;
    gap:18px;

}

.assist-feature-icon{

    font-size:28px;
    flex-shrink:0;
    margin-top:2px;

}

.assist-feature strong{

    display:block;
    font-size:16px;
    font-weight:700;
    color:#111;
    margin-bottom:4px;

}

.assist-feature p{

    font-size:15px;
    color:#555;
    line-height:1.7;
    margin:0;

}

/* ACTIONS */

.assistance-actions{

    display:flex;
    gap:16px;
    flex-wrap:wrap;

}

/* RESPONSIVE */

@media(max-width:1100px){

    .assistance-inner{
        grid-template-columns:1fr;
        gap:60px;
    }

    .assistance-visual{
        height:420px;
    }

    .assistance-title{
        font-size:44px;
    }

}

@media(max-width:768px){

    .assistance-section{
        padding:80px 6%;
    }

    .assistance-visual{
        height:320px;
    }

    .assistance-title{
        font-size:36px;
    }

}

/* =========================================================
   PARTNERS
========================================================= */

.partners-section{

    padding:100px 0 80px;
    background:#111;
    overflow:hidden;
    position:relative;

}

/* subtle dot grid */
.partners-section::before{

    content:"";
    position:absolute;
    inset:0;
    opacity:.04;
    background-image:radial-gradient(circle, #fff 1px, transparent 1px);
    background-size:7px 7px;

}

/* HEADER */

.partners-header{

    position:relative;
    z-index:2;
    text-align:center;
    padding:0 8%;
    margin-bottom:60px;

}

.partners-header .section-label{
    color:#dfb126;
}

.partners-title{

    font-family:'Oswald',sans-serif;
    font-size:52px;
    color:#fff;
    line-height:1.05;
    margin-bottom:16px;

}

.partners-subtitle{

    font-size:17px;
    color:rgba(255,255,255,.5);
    max-width:520px;
    margin:0 auto;
    line-height:1.8;

}

/* MARQUEE WRAP — clips overflow, adds fade edges */

.partners-marquee-wrap{

    position:relative;
    overflow:hidden;

    /* fade left & right edges */
    mask-image:linear-gradient(
        to right,
        transparent 0%,
        #000 12%,
        #000 88%,
        transparent 100%
    );
    -webkit-mask-image:linear-gradient(
        to right,
        transparent 0%,
        #000 12%,
        #000 88%,
        transparent 100%
    );

}

/* MARQUEE TRACK */

.partners-marquee{

    display:flex;
    gap:0;
    width:max-content;
    padding: 20px;

    /* JS will clone this div so the animation loops perfectly */
    animation:marquee-scroll 50s linear infinite;

}

.partners-marquee:hover{
    animation-play-state:paused;
}

@keyframes marquee-scroll{

    0%  { transform:translateX(0); }
    100%{ transform:translateX(-40%); }

}

/* LOGO CARD */

.partner-logo{

    display:flex;
    align-items:center;
    justify-content:center;

    min-width:200px;
    height:100px;

    margin:0 24px;

    background:rgb(255, 255, 255);
    border:1px solid rgba(255,255,255,.08);
    border-radius:16px;

    padding:60px 80px;

    flex-shrink:0;

    transition:
        background .3s ease,
        border-color .3s ease,
        transform .3s ease;

    cursor:default;

}

.partner-logo:hover{

    background:rgb(255, 255, 255);
    border-color:rgba(223,177,38,.35);
    transform:translateY(-4px);

}

.partner-logo img{

    max-width:140px;
    max-height:100px;
    object-fit:cover;
    opacity:.7;
    transition:opacity .3s ease;

}

.partner-logo:hover img{
    opacity:1;
}

/* CTA */

.partners-cta{

    position:relative;
    z-index:2;

    text-align:center;
    margin-top:64px;
    padding:0 8%;

}

.partners-cta p{

    color:rgba(255,255,255,.5);
    font-size:16px;
    margin-bottom:16px;

}

.partner-apply-btn{

    display:inline-block;

    padding:16px 36px;
    border-radius:50px;
    text-decoration:none;

    background:transparent;
    border:2px solid rgba(223,177,38,.6);
    color:#dfb126;

    font-weight:700;
    font-size:15px;
    letter-spacing:.5px;

    transition:
        background .25s ease,
        border-color .25s ease,
        transform .25s ease;

}

.partner-apply-btn:hover{

    background:rgba(223,177,38,.12);
    border-color:#dfb126;
    transform:translateY(-3px);

}

/* RESPONSIVE */

@media(max-width:768px){

    .partners-section{
        padding:70px 0 60px;
    }

    .partners-title{
        font-size:36px;
    }

    .partner-logo{
        min-width:160px;
        height:80px;
        margin:0 14px;
        padding:16px 22px;
    }

}

/* =========================================================
   DONATE SECTION
========================================================= */

.donate-section{

    padding:140px 8%;
    background:#f7f2df;
    position:relative;
    overflow:hidden;

}

/* big watermark word */
.donate-bg{

    position:absolute;
    bottom:-60px;
    left:-20px;

    font-family:'Oswald',sans-serif;
    font-size:260px;
    font-weight:700;
    line-height:1;
    text-transform:uppercase;

    color:rgba(0,0,0,.04);

    pointer-events:none;
    user-select:none;
    white-space:nowrap;

}

/* TWO-COLUMN GRID */
.donate-grid{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:start;

}

/* LEFT */

.donate-title{

    font-family:'Oswald',sans-serif;
    font-size:52px;
    line-height:1.08;
    color:#111;
    margin-bottom:48px;

}

/* STATS */

.donate-stats{

    display:flex;
    flex-direction:column;
    gap:28px;

}

.donate-stat{

    display:flex;
    flex-direction:column;
    gap:4px;
    padding-left:20px;
    border-left:3px solid #dfb126;

}

.donate-stat-number{

    font-family:'Oswald',sans-serif;
    font-size:42px;
    font-weight:700;
    color:#111;
    line-height:1;

}

.donate-stat-label{

    font-size:14px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1.5px;
    color:#888;

}

/* RIGHT */

.donate-right p{

    font-size:17px;
    line-height:1.9;
    color:#444;
    margin-bottom:24px;

}

/* BLOCKQUOTE */

.donate-quote{

    margin:36px 0;
    padding:28px 32px;
    background:rgba(223,177,38,.10);
    border-left:4px solid #dfb126;
    border-radius:0 16px 16px 0;

    font-size:16px;
    line-height:1.8;
    color:#555;
    font-style:italic;

}

.donate-quote cite{

    display:block;
    margin-top:12px;
    font-size:13px;
    font-weight:700;
    font-style:normal;
    letter-spacing:1px;
    color:#888;
    text-transform:uppercase;

}

/* BUTTON */

.donate-section .donate-btn{

    display:inline-block;
    padding:18px 48px;
    border-radius:50px;
    text-decoration:none;

    background:linear-gradient(135deg, #f5a623 0%, #dfb126 100%);
    color:#111;

    font-size:17px;
    font-weight:800;

    box-shadow:0 8px 30px rgba(223,177,38,.40);

    transition:
        transform .3s cubic-bezier(.34,1.56,.64,1),
        box-shadow .3s ease;

    margin-bottom:20px;
    display:inline-block;

}

.donate-section .donate-btn:hover{

    transform:translateY(-4px) scale(1.03);
    box-shadow:0 18px 48px rgba(223,177,38,.55);

}

/* NOTE */

.donate-note{

    display:block;
    margin-top:16px;
    font-size:13px;
    color:#aaa;
    font-weight:500;
    line-height:1.6;

}

/* RESPONSIVE */

@media(max-width:1100px){

    .donate-grid{
        grid-template-columns:1fr;
        gap:50px;
    }

    .donate-title{
        font-size:42px;
        margin-bottom:32px;
    }

    .donate-stats{
        flex-direction:row;
        flex-wrap:wrap;
        gap:24px;
    }

}

@media(max-width:768px){

    .donate-section{
        padding:80px 6%;
    }

    .donate-title{
        font-size:34px;
    }

    .donate-bg{
        font-size:140px;
    }

}

/* =========================================================
   FOOTER
========================================================= */

.footer{

    background:linear-gradient(rgba(223,177,38,.88), rgba(223,177,38,.92));
    color:#111;

}

/* TOP GRID */

.footer-top{

    display:grid;
    grid-template-columns:1.4fr 1fr 1fr;
    gap:60px;

    padding:80px 8%;

    border-bottom:1px solid rgba(0,0,0,.12);

}

/* BRAND COL */

.footer-logo{

    height:70px;
    width:auto;
    margin-bottom:20px;
    display:block;

}

.footer-tagline{

    font-size:15px;
    color:rgba(0,0,0,.55);
    line-height:1.7;
    margin-bottom:28px;
    font-style:italic;

}

.footer-charity{

    background:rgba(0,0,0,.08);
    border:1px solid rgba(0,0,0,.18);
    border-radius:12px;
    padding:16px 20px;
    margin-bottom:16px;

}

.footer-charity p,
.footer-funded p{

    font-size:14px;
    color:rgba(0,0,0,.65);
    line-height:1.6;

}

.footer-charity strong,
.footer-funded strong{

    color:#111;

}

.footer-funded{

    display:flex;
    flex-direction:column;
    gap:2px;

}

.footer-funded p{
    font-size:13px;
}

/* HEADINGS */

.footer-heading{

    font-family:'Oswald',sans-serif;
    font-size:18px;
    font-weight:600;
    color:#111;
    text-transform:uppercase;
    letter-spacing:1.5px;
    margin-bottom:20px;

}

.footer-subheading{

    font-size:11px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
    color:rgba(0,0,0,.5);
    margin:20px 0 8px;

}

/* LINKS */

.footer-links{

    list-style:none;
    display:flex;
    flex-direction:column;
    gap:6px;

}

.footer-links a{

    text-decoration:none;
    font-size:15px;
    color:rgba(0,0,0,.6);
    font-weight:500;
    transition:color .2s ease, padding-left .2s ease;
    display:inline-block;

}

.footer-links a:hover{

    color:#111;
    padding-left:4px;

}

/* CONTACT */

.footer-contact{

    list-style:none;
    display:flex;
    flex-direction:column;
    gap:20px;

}

.footer-contact li{

    display:flex;
    align-items:flex-start;
    gap:14px;

}

.footer-contact-icon{

    font-size:18px;
    flex-shrink:0;
    margin-top:1px;

}

.footer-contact a,
.footer-contact address{

    font-size:15px;
    color:rgba(0,0,0,.65);
    text-decoration:none;
    font-style:normal;
    line-height:1.7;
    transition:color .2s ease;

}

.footer-contact a:hover{

    color:#111;

}

/* SOCIAL BUTTONS */

.footer-socials{

    display:flex;
    flex-direction:column;
    gap:10px;

}

.footer-social-btn{

    display:inline-flex;
    align-items:center;
    gap:12px;

    padding:12px 20px;
    border-radius:50px;
    border:1px solid rgba(0,0,0,.2);
    background:rgba(0,0,0,.07);

    text-decoration:none;
    color:rgba(0,0,0,.7);
    font-size:14px;
    font-weight:600;

    transition:
        background .25s ease,
        border-color .25s ease,
        color .25s ease,
        transform .25s ease;

    width:fit-content;

}

.footer-social-btn:hover{

    background:rgba(0,0,0,.14);
    border-color:rgba(0,0,0,.35);
    color:#111;
    transform:translateX(4px);

}

/* BOTTOM BAR */

.footer-bottom{

    padding:24px 8%;

    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:8px;

}

.footer-bottom p{

    font-size:13px;
    color:rgba(0,0,0,.5);

}

/* RESPONSIVE */

@media(max-width:1100px){

    .footer-top{
        grid-template-columns:1fr 1fr;
    }

    .footer-col--brand{
        grid-column:1 / -1;
    }

}

@media(max-width:768px){

    .footer-top{
        grid-template-columns:1fr;
        padding:60px 6%;
        gap:48px;
    }

    .footer-bottom{
        flex-direction:column;
        text-align:center;
        padding:20px 6%;
    }

}
/* =========================================================
   LATEST NEWS SECTION
========================================================= */

.news-section {

    padding: 120px 8% 100px;
    background: #111;
    position: relative;
    overflow: hidden;

}

/* subtle dot-grid texture matching hero */
.news-section::before {

    content: "";
    position: absolute;
    inset: 0;
    opacity: .04;
    background-image: radial-gradient(circle, #fff 1px, transparent 1px);
    background-size: 7px 7px;
    pointer-events: none;

}

/* HEADER */

.news-header {

    text-align: center;
    margin-bottom: 64px;

}

.news-header .section-label {

    color: #dfb126;

}

.news-title {

    font-family: 'Oswald', sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 18px;

}

.news-subtitle {

    font-size: 17px;
    color: rgba(255, 255, 255, .5);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.8;

}

/* LOADING */

.news-loading {

    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: 60px 0;
    color: rgba(255, 255, 255, .4);
    font-size: 15px;

}

.news-loading-spinner {

    width: 36px;
    height: 36px;
    border: 3px solid rgba(223, 177, 38, .25);
    border-top-color: #dfb126;
    border-radius: 50%;
    animation: newsSpin .8s linear infinite;

}

@keyframes newsSpin {
    to { transform: rotate(360deg); }
}

/* GRID */

.news-grid {

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

}

/* CARD */

.news-card {

    background: #1a1a1a;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    outline: none;

    border: 1px solid rgba(255, 255, 255, .06);

    transition:
        transform .3s cubic-bezier(.34, 1.56, .64, 1),
        box-shadow .3s ease,
        border-color .3s ease;

}

.news-card:hover,
.news-card:focus {

    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .5);
    border-color: rgba(223, 177, 38, .35);

}

/* CARD PHOTO */

.news-card-photo {

    height: 210px;
    background-size: cover;
    background-position: center;
    position: relative;

}

.news-card-photo-overlay {

    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, #1a1a1a 100%);

}

/* CARD BODY */

.news-card-body {

    padding: 24px 26px 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;

}

.news-card-date {

    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #dfb126;

}

.news-card-title {

    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    line-height: 1.25;

}

.news-card-excerpt {

    font-size: 14px;
    color: rgba(255, 255, 255, .5);
    line-height: 1.7;

}

.news-card-cta {

    font-size: 13px;
    font-weight: 700;
    color: #dfb126;
    letter-spacing: .5px;
    margin-top: 4px;
    transition: gap .2s ease;

}

.news-card:hover .news-card-cta {
    text-decoration: underline;
}

/* =========================================================
   NEWS MODAL
========================================================= */

.news-modal-overlay {

    position: fixed;
    inset: 0;
    z-index: 500;

    background: rgba(0, 0, 0, .82);
    backdrop-filter: blur(10px);

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 24px;

    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;

}

.news-modal-overlay.open {

    opacity: 1;
    pointer-events: all;

}

.news-modal {

    background: #1a1a1a;
    border-radius: 24px;
    overflow: hidden;
    position: relative;

    width: 100%;
    max-width: 780px;
    max-height: 90vh;
    overflow-y: auto;

    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 40px 120px rgba(0, 0, 0, .7);

    transform: translateY(20px) scale(.97);
    transition: transform .35s cubic-bezier(.34, 1.56, .64, 1);

}

.news-modal-overlay.open .news-modal {
    transform: translateY(0) scale(1);
}

/* CLOSE BUTTON */

.news-modal-close {

    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 10;

    width: 40px;
    height: 40px;
    border-radius: 50%;

    background: rgba(0, 0, 0, .5);
    border: 1px solid rgba(255, 255, 255, .15);

    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;

    transition: background .2s ease, transform .2s ease;

}

.news-modal-close:hover {
    background: rgba(0, 0, 0, .8);
    transform: rotate(90deg);
}

.news-modal-close span {

    position: absolute;
    width: 16px;
    height: 2px;
    background: #fff;
    border-radius: 2px;

}

.news-modal-close span:nth-child(1) { transform: rotate(45deg); }
.news-modal-close span:nth-child(2) { transform: rotate(-45deg); }

/* PREV / NEXT ARROWS */

.news-modal-arrow {

    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;

    width: 44px;
    height: 44px;
    border-radius: 50%;

    background: rgba(0, 0, 0, .55);
    border: 1px solid rgba(255, 255, 255, .15);
    color: #fff;

    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;

    transition: background .2s ease, transform .2s ease;

}

.news-modal-arrow:hover {
    background: rgba(223, 177, 38, .25);
    border-color: #dfb126;
}

.news-modal-arrow--prev { left: 14px; }
.news-modal-arrow--next { right: 14px; }

/* PHOTO */

.news-modal-photo {

    width: 100%;
    height: 340px;
    background-size: cover;
    background-position: center;
    position: relative;

}

.news-modal-photo::after {

    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, #1a1a1a 100%);

}

/* BODY */

.news-modal-body {

    padding: 32px 40px 40px;

}

.news-modal-date {

    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #dfb126;
    display: block;
    margin-bottom: 12px;

}

.news-modal-title {

    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;

}

.news-modal-desc {

    font-size: 16px;
    color: rgba(255, 255, 255, .65);
    line-height: 1.9;

}

/* DOTS */

.news-modal-dots {

    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 36px;

}

.news-dot {

    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background .2s ease, transform .2s ease;

}

.news-dot.active {

    background: #dfb126;
    transform: scale(1.3);

}

/* =========================================================
   NEWS RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 768px) {

    .news-section {
        padding: 80px 6% 70px;
    }

    .news-title {
        font-size: 38px;
    }

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

    .news-modal-photo {
        height: 220px;
    }

    .news-modal-body {
        padding: 24px 24px 32px;
    }

    .news-modal-title {
        font-size: 24px;
    }

    .news-modal-arrow {
        top: 220px;
        transform: none;
    }

}

/* =========================================================
   NEWS LOAD MORE BUTTON
========================================================= */

.news-load-more-btn {

    display: block;
    margin: 50px auto 0;

    padding: 16px 34px;

    border: none;
    border-radius: 50px;

    background: linear-gradient(135deg, #f5a623 0%, #dfb126 100%);
    color: #111;

    font-size: 15px;
    font-weight: 700;

    cursor: pointer;

    box-shadow: 0 8px 24px rgba(223,177,38,.35);

    transition:
        transform .25s ease,
        box-shadow .25s ease;

}

.news-load-more-btn:hover {

    transform: translateY(-4px);

    box-shadow: 0 14px 34px rgba(223,177,38,.5);

}