:root {
    --green:#039938;
    --green-dark:#027d2e;
    --green-deep:#026528;
    --gold:#f4b41b;
    --gold-dark:#d99b08;
    --ink:#13231d;
    --muted:#65736d;
    --soft:#eef6f1;
    --white:#fff;
    --border:#dce7e1;
    --shadow:0 18px 50px rgba(6,61,42,.10);
}

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

html {
    scroll-behavior:smooth;
}

body {
    font-family:'DM Sans',sans-serif;
    color:var(--ink);
    background:#fff;
    line-height:1.7;
}

img {
    max-width:100%;
    display:block;
}

a {
    text-decoration:none;
    color:inherit;
}

button {
    font:inherit;
    cursor:pointer;
}

.container {
    width:min(1180px,92%);
    margin:auto;
}


/* =========================================================
   TOP BAR
========================================================= */

.topbar {
    background:#f5f7f6;
    color:#607069;
    font-size:12px;
}

.topbar-inner {
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:7px 0;
}


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

.site-header {
    background:#fff;
    position:sticky;
    top:0;
    z-index:1000;
    border-bottom:1px solid rgba(0,0,0,.04);
    transition:.25s;
}

.site-header.scrolled {
    box-shadow:0 10px 35px rgba(0,0,0,.08);
}

.nav-wrap {
    min-height:82px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:25px;
}


/* =========================================================
   FSADE BRAND
========================================================= */

.brand {
    display:flex;
    align-items:center;
    gap:10px;
    flex-shrink:0;
}

.brand-logo {
    width:58px;
    height:58px;
    object-fit:contain;
    object-position:center;
    display:block;
    flex-shrink:0;
}

.brand-text {
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.brand-text strong {
    display:block;
    color:var(--green);
    font-size:25px;
    line-height:1;
    font-weight:700;
}

.brand-text small {
    display:block;
    color:#29342f;
    font-size:9px;
    line-height:1.25;
    margin-top:4px;
    white-space:nowrap;
}


/* =========================================================
   MAIN NAVIGATION
========================================================= */

.main-nav {
    display:flex;
    align-items:center;
    gap:23px;
    font-size:12px;
    font-weight:700;
    text-transform:uppercase;
}

.main-nav a {
    padding:29px 0;
    position:relative;
    white-space:nowrap;
}

.main-nav a:not(.nav-donate)::after {
    content:'';
    position:absolute;
    left:0;
    right:0;
    bottom:20px;
    height:2px;
    background:var(--green);
    transform:scaleX(0);
    transition:.25s;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    transform:scaleX(1);
}


/* =========================================================
   SUPPORT BUTTON
========================================================= */

.nav-donate {
    background:var(--gold);
    padding:10px 19px !important;
    border-radius:999px;
}

.nav-donate:hover {
    transform:translateY(-1px);
}


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

.menu-toggle {
    display:none;
    border:0;
    background:none;
    font-size:25px;
    color:var(--green-dark);
}


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

.hero {
    height:min(690px,calc(100vh - 90px));
    min-height:560px;
    position:relative;
    overflow:hidden;
    background:#123;
}

.hero-slider,
.hero-slide {
    position:absolute;
    inset:0;
}

.hero-slide {
    background-position:center;
    background-size:cover;
    opacity:0;
    transform:scale(1.04);
    transition:opacity 1s ease,transform 7s ease;
}

.hero-slide.is-active {
    opacity:1;
    transform:scale(1);
}

.hero-overlay {
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(3,31,21,.78) 0%,
        rgba(3,31,21,.46) 50%,
        rgba(3,31,21,.15) 100%
    );
}

.hero-content {
    position:relative;
    z-index:2;
    height:100%;
    display:flex;
    justify-content:center;
    flex-direction:column;
    color:#fff;
    max-width:1180px;
}

.eyebrow {
    display:block;
    text-transform:uppercase;
    letter-spacing:1.7px;
    font-size:11px;
    font-weight:800;
    margin-bottom:12px;
}

.eyebrow-dark {
    color:var(--green);
}

.hero h1 {
    font-family:'Playfair Display',serif;
    font-size:clamp(42px,5vw,70px);
    line-height:1.07;
    max-width:760px;
    margin-bottom:20px;
}

.hero h1 span {
    color:var(--gold);
}

.hero p {
    max-width:650px;
    font-size:17px;
    margin-bottom:28px;
}

.hero-actions {
    display:flex;
    gap:14px;
    flex-wrap:wrap;
}


/* =========================================================
   BUTTONS
========================================================= */

.btn {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:13px 23px;
    border-radius:999px;
    font-weight:800;
    font-size:13px;
    border:1px solid transparent;
    transition:.25s;
}

.btn-primary {
    background:var(--green);
    color:#fff;
}

.btn-primary:hover {
    background:#075637;
    transform:translateY(-2px);
}

.btn-outline-light {
    border-color:rgba(255,255,255,.8);
    color:#fff;
}

.btn-outline-light:hover {
    background:#fff;
    color:var(--green);
}


/* =========================================================
   SLIDER CONTROLS
========================================================= */

.slider-arrow {
    position:absolute;
    z-index:4;
    top:50%;
    transform:translateY(-50%);
    width:45px;
    height:45px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,.8);
    background:rgba(0,0,0,.12);
    color:#fff;
    font-size:30px;
    cursor:pointer;
    transition:.2s;
}

.slider-arrow:hover {
    background:rgba(255,255,255,.18);
}

.slider-prev {
    left:22px;
}

.slider-next {
    right:22px;
}

.slider-bottom {
    position:absolute;
    z-index:5;
    bottom:27px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    align-items:center;
    gap:20px;
    color:#fff;
}

.slider-counter {
    font-size:12px;
    min-width:52px;
}

.slider-counter strong {
    font-size:16px;
}

.slider-progress {
    width:130px;
    height:2px;
    background:rgba(255,255,255,.4);
    overflow:hidden;
}

.slider-progress span {
    display:block;
    height:100%;
    background:#fff;
    width:100%;
}

@keyframes sliderProgress {
    from {
        transform:translateX(-100%);
    }

    to {
        transform:translateX(0);
    }
}

.slider-dots {
    display:flex;
    gap:6px;
}

.slider-dot {
    width:7px;
    height:7px;
    border:0;
    border-radius:50%;
    background:rgba(255,255,255,.5);
    cursor:pointer;
}

.slider-dot.is-active {
    background:var(--gold);
    width:22px;
    border-radius:8px;
}


/* =========================================================
   GENERAL SECTIONS
========================================================= */

.section {
    padding:92px 0;
}

.section-soft {
    background:var(--soft);
    padding:82px 0;
}

h2 {
    font-family:'Playfair Display',serif;
    font-size:clamp(34px,4vw,48px);
    line-height:1.15;
    margin-bottom:18px;
}

h3 {
    line-height:1.25;
}

.heading-line {
    width:48px;
    height:4px;
    background:var(--gold);
    margin:17px 0 20px;
}

.intro-grid {
    display:grid;
    grid-template-columns:290px 1fr;
    gap:70px;
    align-items:center;
}

.section-heading p {
    color:var(--muted);
    font-size:14px;
}

.text-link {
    color:var(--green);
    font-weight:800;
    font-size:13px;
    display:inline-block;
    margin-top:17px;
}


/* =========================================================
   VALUE CARDS
========================================================= */

.value-cards {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.value-card {
    background:#fff;
    padding:28px;
    border-radius:10px;
    box-shadow:var(--shadow);
    border:1px solid #edf2ef;
}

.icon-circle {
    width:48px;
    height:48px;
    border-radius:50%;
    background:#e2f2ea;
    color:var(--green);
    display:grid;
    place-items:center;
    font-weight:800;
    margin-bottom:20px;
}

.icon-circle.gold {
    background:#fff0c9;
    color:#9b6d00;
}

.value-card h3 {
    font-size:18px;
    margin-bottom:10px;
}

.value-card p {
    font-size:13px;
    color:var(--muted);
}

.value-card a {
    display:block;
    color:var(--green);
    font-size:12px;
    font-weight:800;
    margin-top:18px;
}


/* =========================================================
   IMPACT
========================================================= */

.impact-grid {
    width:min(1180px,92%);
    margin:auto;
    display:grid;
    grid-template-columns:1.1fr 2fr .7fr;
    gap:35px;
    align-items:center;
}

.impact p {
    font-size:13px;
    color:var(--muted);
}

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

.stat strong {
    font-size:31px;
    color:var(--green);
    display:block;
}

.stat span {
    font-size:12px;
    color:var(--muted);
}

.impact-map {
    border-left:1px solid #c8d9d0;
    padding-left:25px;
    text-align:center;
    color:var(--green);
    font-size:13px;
}

.map-shape {
    font-size:42px;
    font-weight:900;
    opacity:.22;
    margin-bottom:8px;
}


/* =========================================================
   FEATURED SECTION
========================================================= */

.featured-grid {
    display:grid;
    grid-template-columns:1fr 1.35fr;
    gap:65px;
    align-items:center;
}

.featured-copy p {
    color:var(--muted);
    max-width:470px;
    margin-bottom:25px;
}

.featured-image {
    position:relative;
}

.featured-image>img {
    height:420px;
    width:100%;
    object-fit:cover;
    border-radius:10px;
}

.quote-card {
    position:absolute;
    right:-30px;
    bottom:-30px;
    background:#fff;
    width:min(340px,80%);
    padding:24px 28px;
    box-shadow:var(--shadow);
    border-radius:10px;
}

.quote-card span {
    color:var(--green);
    font-size:45px;
    line-height:.5;
}

.quote-card p {
    font-family:'Playfair Display',serif;
    font-size:19px;
    line-height:1.35;
}


/* =========================================================
   PROGRAMS
========================================================= */

.section-top {
    display:flex;
    align-items:end;
    justify-content:space-between;
    gap:20px;
    margin-bottom:30px;
}

.section-top .text-link {
    margin:0;
}

.program-grid {
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}

.program-card {
    background:#fff;
    padding:27px;
    border-radius:10px;
    position:relative;
    min-height:235px;
    border:1px solid var(--border);
    transition:.25s;
}

.program-card:hover {
    transform:translateY(-5px);
    box-shadow:var(--shadow);
}

.program-card>span {
    position:absolute;
    right:20px;
    top:18px;
    color:#b2c1bb;
    font-size:11px;
    font-weight:800;
}

.program-icon {
    font-size:30px;
    color:var(--green);
    margin-bottom:22px;
}

.program-card h3 {
    font-size:18px;
    margin-bottom:9px;
}

.program-card p {
    font-size:12px;
    color:var(--muted);
}


/* =========================================================
   CTA
========================================================= */

.cta {
    background:var(--green-deep);
    color:#fff;
    padding:65px 0;
}

.cta-inner {
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;
}

.cta h2 {
    max-width:620px;
    margin-bottom:8px;
}

.cta p {
    color:#cfe1d8;
}

.cta .eyebrow {
    color:var(--gold);
}


/* =========================================================
   INNER PAGE HERO
========================================================= */

.page-hero {
    padding:100px 0 90px;
    background:linear-gradient(120deg,var(--green-deep),var(--green));
    color:#fff;
}

.page-hero h1 {
    font-family:'Playfair Display',serif;
    font-size:clamp(42px,6vw,64px);
    line-height:1.1;
}

.page-hero p {
    margin-top:10px;
    color:#d7e8df;
}


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

.two-col {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
}

.two-col p {
    color:var(--muted);
    margin-bottom:17px;
}

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

.mission-card {
    background:#fff;
    border:1px solid var(--border);
    padding:32px;
    border-radius:10px;
}

.mission-card>span,
.large-program-grid article>span {
    color:var(--gold-dark);
    font-weight:900;
    font-size:12px;
}

.mission-card h3 {
    font-size:22px;
    margin:12px 0;
}

.mission-card p,
.large-program-grid p {
    color:var(--muted);
    font-size:13px;
}


/* =========================================================
   LARGE PROGRAMS
========================================================= */

.large-program-grid {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.large-program-grid article {
    padding:32px;
    background:var(--soft);
    border-radius:10px;
    min-height:240px;
}

.large-program-grid h3 {
    font-size:22px;
    margin:16px 0 10px;
}


/* =========================================================
   PROJECTS
========================================================= */

.project-list {
    display:grid;
    gap:20px;
}

.project-item {
    display:grid;
    grid-template-columns:80px 180px 1fr;
    align-items:center;
    gap:25px;

    border:1px solid var(--border);
    padding:35px;
    border-radius:12px;

    background:#fff;

    transition:.25s;
}

.project-item:hover {
    box-shadow:var(--shadow);
    transform:translateY(-2px);
}


/* =========================================================
   PROJECT NUMBER
========================================================= */

.project-number {
    font-family:'Playfair Display',serif;
    font-size:50px;
    color:#dcebe4;
    line-height:1;
}


/* =========================================================
   PARTNER LOGOS
========================================================= */

.project-partner-logo {
    width:180px;
    height:115px;

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

    background:#fff;
    border:1px solid #edf2ef;
    border-radius:10px;

    padding:10px;

    overflow:hidden;
    flex-shrink:0;
}

.project-partner-logo img {
    width:100%;
    height:100%;

    max-width:100%;
    max-height:100%;

    object-fit:contain;
    object-position:center;

    display:block;
}


/* =========================================================
   PROJECT CONTENT
========================================================= */

.project-content {
    min-width:0;
}

.project-item h2 {
    font-size:30px;
    margin:4px 0;
}

.project-item p {
    color:var(--muted);
    font-size:13px;
}

.project-item .text-link {
    margin-top:17px;
}


/* =========================================================
   NEWS / ACTIVITIES
========================================================= */

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

.news-card {
    border:1px solid var(--border);
    border-radius:10px;
    overflow:hidden;
    padding-bottom:22px;
}

.news-image {
    height:190px;
    background:linear-gradient(135deg,#c6ddd1,#f5c958);
}

.news-card>*:not(.news-image) {
    margin-left:22px;
    margin-right:22px;
}

.news-card small {
    display:block;
    margin-top:18px;
    color:#84918c;
    font-size:11px;
}

.news-card h3 {
    font-size:20px;
    margin-top:7px;
}

.news-card p {
    font-size:13px;
    color:var(--muted);
    margin-top:8px;
}


/* =========================================================
   GALLERY
========================================================= */

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

.gallery-grid img {
    width:100%;
    height:290px;
    object-fit:cover;
    border-radius:10px;
    transition:.3s;
}

.gallery-grid img:hover {
    transform:scale(1.02);
    box-shadow:var(--shadow);
}


/* =========================================================
   CONTACT
========================================================= */

.contact-grid {
    display:grid;
    grid-template-columns:1fr .8fr;
    gap:80px;
}

.contact-item {
    border-top:1px solid var(--border);
    padding:18px 0;
}

.contact-item strong {
    color:var(--green);
}

.contact-item p {
    font-size:13px;
    color:var(--muted);
}

.contact-box {
    background:var(--soft);
    padding:40px;
    border-radius:12px;
    align-self:start;
}

.contact-box h3 {
    font-family:'Playfair Display',serif;
    font-size:30px;
    margin-bottom:10px;
}

.contact-box p {
    color:var(--muted);
    margin-bottom:20px;
}


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

.footer {
    position:relative;

    background:
        linear-gradient(
            135deg,
            #034f25 0%,
            #026528 55%,
            #035a26 100%
        );

    color:#dcebe3;

    overflow:hidden;
}


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

.footer-top-line {
    width:100%;
    height:3px;
    background:var(--gold);
}


/* =========================================================
   SUBTLE DECORATION
========================================================= */

.footer::before {
    content:"";

    position:absolute;

    width:360px;
    height:360px;

    right:-210px;
    top:-210px;

    border-radius:50%;

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

    pointer-events:none;
}

.footer::after {
    content:"";

    position:absolute;

    width:220px;
    height:220px;

    left:-150px;
    bottom:-170px;

    border-radius:50%;

    background:rgba(244,180,27,.025);

    pointer-events:none;
}


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

.footer-grid {
    position:relative;
    z-index:1;

    display:grid;

    grid-template-columns:
        1.45fr
        .85fr
        .85fr
        1.35fr;

    gap:48px;

    padding:42px 0 38px;
}


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

.footer-brand {
    min-width:0;
}

.footer-brand-link {
    display:flex;

    align-items:center;

    gap:11px;

    width:max-content;
    max-width:100%;

    text-decoration:none;
}


/*
   This selector is intentionally specific.
   It also overrides the global img { max-width:100%; }
*/

.footer-brand-link .footer-logo {
    width:64px !important;
    height:64px !important;

    max-width:64px !important;
    max-height:64px !important;

    min-width:64px !important;
    min-height:64px !important;

    display:block !important;

    object-fit:contain !important;
    object-position:center !important;

    flex:0 0 64px !important;
}


.footer-brand-text {
    display:flex;

    flex-direction:column;

    justify-content:center;

    min-width:0;
}


.footer-brand-text strong {
    display:block;

    color:#fff;

    font-size:24px;

    line-height:1;

    font-weight:800;
}


.footer-brand-text small {
    display:block;

    margin-top:5px;

    color:#d5e6dd;

    font-size:8.5px;

    line-height:1.35;

    white-space:nowrap;
}


.footer-tagline {
    margin:15px 0 7px;

    color:#eef6f2;

    font-size:12.5px;

    line-height:1.55;

    font-weight:600;
}


.footer-location {
    display:inline-block;

    color:#82a99a;

    font-size:8px;

    font-weight:800;

    letter-spacing:.8px;

    line-height:1.4;
}


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

.footer-column {
    min-width:0;
}


.footer-column h4 {
    margin:2px 0 0;

    color:#fff;

    font-size:13px;

    font-weight:800;

    line-height:1.4;
}


.footer-line {
    width:27px;
    height:2px;

    margin:8px 0 13px;

    background:var(--gold);

    border-radius:10px;
}


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

.footer-column > a {
    display:block;

    width:max-content;
    max-width:100%;

    padding:5px 0;

    color:#a8c4b6;

    font-size:11.5px;

    line-height:1.5;

    text-decoration:none;

    transition:
        color .2s ease,
        transform .2s ease;
}


.footer-column > a:hover {
    color:#fff;

    transform:translateX(3px);
}


/* =========================================================
   CONTACT
========================================================= */

.contact-row {
    display:flex;

    align-items:flex-start;

    gap:9px;

    margin-bottom:11px;
}


.contact-icon {
    width:26px;
    height:26px;

    flex:0 0 26px;

    display:grid;

    place-items:center;

    border-radius:6px;

    background:rgba(244,180,27,.07);

    border:1px solid rgba(244,180,27,.20);

    color:var(--gold);

    font-size:11px;
}


.contact-row > div:last-child {
    min-width:0;
}


.contact-row strong {
    display:block;

    margin-bottom:1px;

    color:#e8f2ed;

    font-size:9px;

    font-weight:800;

    line-height:1.4;

    text-transform:uppercase;

    letter-spacing:.45px;
}


.contact-row p {
    margin:0;

    color:#a8c4b6;

    font-size:10.5px;

    line-height:1.5;
}


.contact-row a {
    display:block;

    width:max-content;
    max-width:100%;

    color:#a8c4b6;

    font-size:10.5px;

    line-height:1.55;

    text-decoration:none;

    transition:color .2s ease;
}


.contact-row a:hover {
    color:#fff;
}


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

.footer-bottom {
    position:relative;

    z-index:2;

    border-top:1px solid rgba(255,255,255,.075);

    background:rgba(0,0,0,.10);
}


.footer-bottom .container {
    min-height:48px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:15px;

    color:#78988a;

    font-size:9px;

    line-height:1.5;
}


.footer-motto {
    color:#78988a;

    text-align:center;
}


.footer-motto b {
    margin:0 3px;

    color:var(--gold);

    font-weight:400;
}


/* =========================================================
   BACK TO TOP
========================================================= */

.back-to-top {
    width:28px;
    height:28px;

    flex:0 0 28px;

    display:grid;

    place-items:center;

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

    border-radius:50%;

    color:#fff;

    font-size:13px;

    text-decoration:none;

    transition:
        background .2s ease,
        color .2s ease,
        border-color .2s ease;
}


.back-to-top:hover {
    background:var(--gold);

    color:var(--ink);

    border-color:var(--gold);
}


/* =========================================================
   TABLET — GENERAL
========================================================= */

@media(max-width:1050px) {

    .main-nav {
        gap:12px;
    }

    .main-nav a {
        font-size:10px;
    }

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

    .value-cards {
        grid-template-columns:repeat(3,1fr);
    }

    .impact-grid {
        grid-template-columns:1fr 1.5fr;
    }

    .impact-map {
        display:none;
    }


    /* Footer */

    .footer-grid {
        grid-template-columns:
            1.3fr
            1fr
            1fr;

        gap:35px;
    }

    .footer-contact {
        grid-column:1 / -1;

        display:grid;

        grid-template-columns:
            1fr 1fr 1fr;

        gap:15px 30px;
    }

    .footer-contact h4,
    .footer-contact .footer-line {
        grid-column:1 / -1;
    }


    /* Projects */

    .project-item {
        grid-template-columns:55px 150px 1fr;
        gap:20px;
    }

    .project-partner-logo {
        width:150px;
        height:100px;
    }

}


/* =========================================================
   TABLET / MOBILE NAVIGATION
========================================================= */

@media(max-width:820px) {

    .topbar-inner {
        display:none;
    }

    .nav-wrap {
        min-height:70px;
    }


    /* Header logo */

    .brand-logo {
        width:50px;
        height:50px;
    }


    .brand-text strong {
        font-size:21px;
    }

    .brand-text small {
        font-size:8px;
        line-height:1.2;
    }


    /* Mobile menu */

    .menu-toggle {
        display:block;
    }


    .main-nav {
        position:absolute;

        top:70px;
        left:0;
        right:0;

        background:#fff;

        display:none;

        flex-direction:column;
        align-items:stretch;

        gap:0;

        padding:10px 5%;

        box-shadow:0 15px 25px rgba(0,0,0,.08);
    }

    .main-nav.open {
        display:flex;
    }

    .main-nav a {
        padding:11px 0;
    }

    .main-nav a:not(.nav-donate)::after {
        bottom:4px;
    }

    .nav-donate {
        text-align:center;
        margin:8px 0;
    }


    /* Hero */

    .hero {
        min-height:620px;
    }

    .hero h1 {
        font-size:44px;
    }

    .slider-arrow {
        display:none;
    }

    .slider-bottom {
        bottom:20px;
    }


    /* General grids */

    .value-cards,
    .program-grid,
    .mission-grid,
    .large-program-grid,
    .news-grid,
    .gallery-grid {
        grid-template-columns:1fr 1fr;
    }

    .featured-grid,
    .two-col,
    .contact-grid {
        grid-template-columns:1fr;
        gap:40px;
    }

    .featured-image>img {
        height:360px;
    }

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

    .stats {
        grid-template-columns:repeat(4,1fr);
    }


    /* =====================================================
       FOOTER — TABLET
    ===================================================== */

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

        gap:30px;

        padding:38px 0 34px;
    }

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

    .footer-contact {
        grid-column:1 / -1;

        display:block;
    }

    .footer-brand-link .footer-logo {
        width:58px !important;
        height:58px !important;

        max-width:58px !important;
        max-height:58px !important;

        min-width:58px !important;
        min-height:58px !important;

        flex-basis:58px !important;
    }

    .footer-bottom .container {
        min-height:0;

        padding:13px 0;

        flex-wrap:wrap;

        justify-content:center;

        text-align:center;
    }

    .back-to-top {
        display:none;
    }


    /* Projects */

    .project-item {
        grid-template-columns:55px 150px 1fr;
        gap:20px;
    }

    .project-partner-logo {
        width:150px;
        height:100px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media(max-width:560px) {

    .container {
        width:90%;
    }


    /* Header */

    .brand-logo {
        width:46px;
        height:46px;
    }

    .brand-text strong {
        font-size:19px;
    }

    .brand-text small {
        font-size:7px;
        line-height:1.2;
    }


    /* Hero */

    .hero {
        min-height:620px;
    }

    .hero h1 {
        font-size:37px;
    }

    .hero p {
        font-size:14px;
    }


    /* Slider */

    .slider-bottom {
        gap:10px;
    }

    .slider-progress {
        width:75px;
    }


    /* Sections */

    .section {
        padding:65px 0;
    }

    .section-soft {
        padding:60px 0;
    }


    /* Single-column grids */

    .value-cards,
    .program-grid,
    .mission-grid,
    .large-program-grid,
    .news-grid,
    .gallery-grid,
    .stats {
        grid-template-columns:1fr;
    }


    /* Featured */

    .featured-image>img {
        height:300px;
    }

    .quote-card {
        right:10px;
        bottom:-25px;
    }

    .quote-card p {
        font-size:16px;
    }


    /* CTA */

    .cta-inner {
        flex-direction:column;
        align-items:flex-start;
    }


    /* Inner pages */

    .page-hero {
        padding:75px 0;
    }


    /* =====================================================
       PROJECTS — MOBILE
    ===================================================== */

    .project-item {
        grid-template-columns:1fr;

        gap:18px;
    }

    .project-number {
        font-size:38px;
    }

    .project-partner-logo {
        width:170px;
        height:105px;
    }

    .project-item .text-link {
        grid-column:auto;
    }


    /* =====================================================
       FOOTER — MOBILE
    ===================================================== */

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

        gap:27px;

        padding:35px 0 32px;
    }

    .footer-brand {
        grid-column:auto;
    }

    .footer-brand-link .footer-logo {
        width:52px !important;
        height:52px !important;

        max-width:52px !important;
        max-height:52px !important;

        min-width:52px !important;
        min-height:52px !important;

        flex-basis:52px !important;
    }

    .footer-brand-text strong {
        font-size:21px;
    }

    .footer-brand-text small {
        font-size:7.5px;
    }

    .footer-tagline {
        font-size:12px;
    }

    .footer-location {
        font-size:7px;
    }

    .footer-bottom .container {
        min-height:0;

        flex-direction:column;

        justify-content:center;

        gap:4px;

        text-align:center;

        padding:14px 12px;
    }

    .footer-bottom .container > span {
        font-size:9px;
    }

}