:root {
    --yellow: #F1BE49;
    --deep-gold: #C47F00;
    --black: #1A0F00;
    --cream: #FFF9EE;

    --sand: #FFF9EE;

    --white: #FFF9EE;
    --orange: #DD5C35;
    --green: #317039;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    background: var(--warm-white);
    color: var(--black);
    overflow-x: hidden;
}

span {
    font-family: "Bebas Neue", sans-serif;
    color: var(--green);
    font-weight: 100;
}

/* ── PATTERNS ── */



/* ── NAVBAR ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--green);
    backdrop-filter: blur(12px);
    border-bottom: 2px solid var(--yellow);
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 50%;
    border: 2px solid var(--yellow);
    text-decoration: none;
}

.nav-logo svg {
    fill: #F1BE49;
    width: 48px;
    height: 48px;
}

.nav-logo img {
    width: 48px;
    height: 48px;


}

.nav-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.nav-logo-text .name {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--yellow);
    letter-spacing: 0.5px;
}

.nav-logo-text .tagline {
    font-size: 0.65rem;
    color: var(--sand);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.25rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--sand);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 14px;
    border-radius: 4px;
    transition: all 0.3s;
    position: relative;
}


.nav-links a:hover {
    color: var(--yellow);
}



.nav-cta {
    background: var(--yellow) !important;
    color: var(--black) !important;
    border-radius: 15px !important;
    font-weight: 500 !important;
}

.nav-cta:hover {
    background: var(--deep-gold) !important;
    color: var(--black) !important;
}

/* ── HAMBURGER ── */
.ham-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    z-index: 300;
}

.ham-btn {
    position: relative;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

/* both images on top of each other */
.ham-btn div {
    position: absolute;
    top: 0;
    left: 0;
}

/* show hamburger by default */
.ham-btn div:nth-child(1) {
    opacity: 1;
}

/* hide close by default */
.ham-btn div:nth-child(2) {
    opacity: 0;
}

/* when open → hide hamburger */
.ham-btn.is-open div:nth-child(1) {
    opacity: 0;
}

/* when open → show close */
.ham-btn.is-open div:nth-child(2) {
    opacity: 1;
}


#mobileNav {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 2px solid var(--yellow);
    flex-direction: column;
    padding: 0;
    z-index: 9999;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

#mobileNav.is-open {
    display: flex;
}

#mobileNav a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 1.1rem 1.5rem;
    color: #1a2744;
    text-decoration: none;
    font-family: "Inter", sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: color 0.2s, background 0.2s;
    text-align: center;
}

#mobileNav a:first-child {
    color: var(--yellow);
}

#mobileNav a:last-child {
    border-bottom: none;
}

#mobileNav a:hover,
#mobileNav a.active {
    background: rgba(241, 190, 73, 0.06);
    color: var(--yellow);
}


#mobileNav .nav-cta {
    margin: 0.8rem 6rem 1.2rem;
    background: var(--yellow) !important;
    color: var(--black) !important;
    border-radius: 22px !important;
    text-align: center;
    justify-content: center;
    padding: 15px 4rem;
    font-weight: 700 !important;
    border-bottom: none !important;
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    background: #3a3939;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 72px;
    background-image: url("images/Frame6.webp");
    background-size: cover;
    background-position: center;
}

.hero-photo-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    opacity: 0.18;
    filter: saturate(0.6);
}





.hero-top-border {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    height: 6px;
    background: repeating-linear-gradient(90deg, var(--yellow) 0, var(--yellow) 20px, var(--rust) 20px, var(--rust) 40px, var(--yellow) 40px);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(245, 168, 0, 0.12);
    border: 1px solid rgba(245, 168, 0, 0.3);
    color: var(--yellow);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease both;
}

.hero-eyebrow1 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(245, 168, 0, 0.12);
    border: 1px solid rgba(245, 168, 0, 0.3);
    color: var(--yellow);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease both;
}

.hero-eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--yellow);
    border-radius: 50%;
}

.hero-title {
    font-family: "Bebas Neue", sans-serif;
    font-weight: 100;
    font-size: clamp(3.5rem, 6vw, 7rem);
    line-height: 1;
    color: var(--cream);
    margin-bottom: 0.5rem;
    animation: fadeInUp 0.8s 0.15s ease both;
}

.hero-title .highlight {
    color: var(--yellow);
    font-style: italic;
}

.hero-subtitle {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(0.85rem, 1.5vw, 1.1rem);
    color: var(--sand);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s 0.25s ease both;
}

.hero-desc {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(232, 213, 163, 0.8);
    max-width: 500px;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s 0.35s ease both;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s 0.45s ease both;
}

.btn-primary {
    background: var(--yellow);
    color: var(--black);
    padding: 14px 32px;
    border: none;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    box-shadow: 0 4px 24px rgba(245, 168, 0, 0.35);
}

.btn-primary:hover {
    background: var(--deep-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(245, 168, 0, 0.5);
}

.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 0.8s 0.2s ease both;
}

.hero-visual {
    position: relative;
    width: 380px;
    height: 480px;
}

.hero-smile-accent {
    position: absolute;
    bottom: -10px;
    left: -40px;
    width: 110px;
    height: 140px;
    border-radius: 60px 60px 60px 20px;
    overflow: hidden;
    border: 3px solid var(--yellow);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    animation: float 5s 2s ease-in-out infinite;
    background-color: rgba(13, 8, 0, 0.73);
    mix-blend-mode: multiply;
}

.hero-smile-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
}

/* ── STATS BAR ── */
.stats-bar {
    background: var(--orange);
    padding: 3rem 2rem;
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 0;
    position: relative;
}

.stat-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1 1 200px;
    padding: 1rem 0;
}

.stat-item .num {
    font-family: "Bebas Neue", sans-serif;
    color: white;
    font-size: clamp(2.5rem, 5vw, 5rem);
    padding: 0 4.2vw;
    font-weight: 100;
    line-height: 1;
}

.stat-item .text {
    font-family: "Inter", sans-serif;
    color: white;
    font-size: 0.75rem;
    padding-left: 3vw;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ── ABOUT ── */
.about {
    padding: 6rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.section-label {
    display: inline-flex;
    gap: 10px;
    background: var(--orange);
    color: white;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 350;
    margin-bottom: 1.5rem;
}

.section-title {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 100;
    color: var(--black);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.section-title1 {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 100;
    color: var(--black);

    font-style: normal;
}

.section-title .accent {
    color: var(--rust);
}

.section-title em {
    font-style: normal;
    font-family: "Bebas Neue", sans-serif;
    color: var(--green);
    font-weight: 100;
}

.about-text p {
    color: #5B5B5B;
    line-height: 1.85;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.about-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.pillar {
    background: var(--cream);
    border: 1.5px solid var(--sand);
    border-radius: 12px;
    padding: 1.2rem;
    border-left: 4px solid var(--yellow);
    transition: all 0.3s;
}

.pillar:hover {
    border-left-color: var(--orange);
    transform: translateX(4px);
    box-shadow: 3px 3px 20px rgba(184, 74, 0, 0.14);
}

.pillar .p-icon {
    font-size: 1.5rem;
    margin-bottom: 0.4rem;
}

.pillar .p-title {
    font-family: "Inter", sans-serif;
    color: var(--yellow);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.pillar .p-text {
    font-size: 0.78rem;
    color: #7A5C44;
    line-height: 1.5;
}

.about-visual {
    position: relative;
}

.about-img-frame {
    position: relative;
    border-radius: 4px 80px 4px 80px;
    overflow: hidden;
    aspect-ratio: 4/5;
    background: linear-gradient(145deg, var(--sand), var(--yellow));
}

.about-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: linear-gradient(145deg, #E8D5A3 0%, #C47F00 50%, #8B5E00 100%);
    padding: 2rem;
    text-align: center;
}

.about-img-placeholder .img-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.about-img-placeholder p {
    color: #5B5B5B;
    font-size: 0.8rem;
    font-style: italic;
}

.about-corner-deco {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border: 3px solid var(--yellow);
    border-radius: 4px 60px 4px 60px;
    opacity: 0.3;
}

.about-corner-deco-2 {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 80px;
    height: 80px;
    border: 2px solid var(--rust);
    border-radius: 60px 4px 60px 4px;
    opacity: 0.25;
}

/* ── FOCUS ── */
.focus {
    background: var(--yellow);
    padding: 6rem 3rem;
    position: relative;
    overflow: hidden;
}

.focus::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23F5A800' stroke-opacity='0.05' stroke-width='1'%3E%3Ccircle cx='60' cy='60' r='50'/%3E%3Ccircle cx='60' cy='60' r='35'/%3E%3Ccircle cx='60' cy='60' r='20'/%3E%3Cpath d='M60 10 L110 60 L60 110 L10 60 Z'/%3E%3Cline x1='60' y1='10' x2='60' y2='110'/%3E%3Cline x1='10' y1='60' x2='110' y2='60'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 120px 120px;
}

.focus-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.focus-header {
    text-align: left;
    margin-bottom: 1rem;
}

.focus-header .section-title {
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 2px;
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.focus-card {
    background: rgba(255, 249, 238, 0.33);
    border: 1px solid rgba(245, 168, 0, 0.15);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.focus-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--orange);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.focus-card:hover {
    background: rgba(255, 249, 238, 0.82);
    border-color: var(--orange);
    transform: translateY(-6px);
}

.focus-card:hover::before {
    transform: scaleX(1);
}

.focus-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: rgba(245, 168, 0, 0.1);
    border: 2px solid rgba(245, 168, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: all 0.3s;
}

.focus-card:hover .focus-icon {
    background: rgba(245, 168, 0, 0.2);
    border-color: var(--yellow);
}

.focus-card h3 {
    font-family: "Inter", sans-serif;
    color: #5B5B5B;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.focus-card p {
    color: #5B5B5B;
    font-size: 0.85rem;
    line-height: 1.7;
}

/* ── DISTRICTS ── */
.districts {
    background-color: var(--yellow);
    padding: 5rem 3rem;


}

.districts-header {
    display: flex;
    gap: 60px;
    justify-content: center;
    align-items: center;

}

.districts-header span {
    font-family: "Bebas Neue", sans-serif;
}

.districts-grid {

    justify-content: center;
    display: grid;

    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

.district-card {
    margin-left: 1vw;
    width: 20vw;
    height: 55vh;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 3/4;
    cursor: pointer;
    transition: transform 0.4s;
}

.district-card:hover {
    transform: scale(1.03);
}

.district-bg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    transition: all 0.4s;
}

.d1 .district-bg {
    background: linear-gradient(145deg, #C25A2A, #8B1A1A);
}

.d2 .district-bg {
    background: linear-gradient(145deg, #1A6B6B, #0D3B3B);
}

.d3 .district-bg {
    background: linear-gradient(145deg, #8B5E00, #4A3000);
}

.district-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 60%);
}

.district-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem;
}

.district-content h3 {
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
    font-weight: 900;
    margin-bottom: 0.4rem;
}

.district-content p {
    font-size: 0.8rem;
    color: #5B5B5B;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.district-deco {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    transform: rotate(45deg);
}

/* ── MISSION BANNER ── */
/* Desktop - all 6 in one row */
.mission-banner {

    padding: 5rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mission-banner-inner {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    max-width: 100%;
    margin: 0 auto;
    gap: 20px;
}

.sdg {
    flex: 0 0 200;
    width: 200px;
    overflow: hidden;
    border-radius: 8px;
    transition: box-shadow 0.3s ease;
}

.sdg img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.sdg:hover img {
    transform: scale(1.05);
}

.sdg:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* ── Impact Grid ── */
.impact {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 1rem;
}

/* Big left card: spans col 1–2, row 1–2 */
.impacth12 {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    min-height: 400px;
}

.impacth12 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
    display: block;
}

.impacth12:hover img {
    transform: scale(1.05);
}

.impact-overlay {
    position: absolute;
    inset: 0;
}

/* Generic card base */
.impacth1 {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.impacth1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
    display: block;
}

.impacth1:hover img {
    transform: scale(1.05);
}

/* Top right cards */
.top-right-1 {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
    aspect-ratio: 3 / 3.5;
}

.top-right-2 {
    grid-column: 4 / 5;
    grid-row: 1 / 2;
    aspect-ratio: 3 / 3.5;
}

/* Bottom right cards */
.bottom-1 {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
}

.bottom-2 {
    grid-column: 4 / 5;
    grid-row: 2 / 3;
}

/* Card overlay gradient */
.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 1rem;
}

.card-label {
    color: white;
    text-transform: uppercase;
    font-size: 13.12px;
    letter-spacing: 1px;
    font-weight: 600;
    margin-top: 2px;
}

/* ── Skill Row ── */
.skill-row {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
}

.skill-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    height: 220px;
    cursor: pointer;
}

.skill-card.no-pointer {
    pointer-events: none;
}

.skill-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
    display: block;
}

.skill-card:hover img {
    transform: scale(1.05);
}

.skill-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.2rem;
}

/* ── Tablet Portrait (max 768px) ── */
@media (max-width: 768px) {

    /* 2 column grid */
    .impact {
        justify-content: center;
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    /* Big card: full width, fixed height */
    .impacth12 {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
        min-height: 260px;
    }

    .top-right-1 {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
        aspect-ratio: unset;
        min-height: 200px;

    }

    .top-right-2 {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
        aspect-ratio: 3 / 3.5;
        height: 50vh;
        width: 85vw;

    }

    .bottom-1 {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
        min-height: 200px;
    }

    .bottom-2 {
        grid-column: 2 / 3;
        grid-row: 3 / 4;
        min-height: 200px;
    }

    /* Skill row: 2 columns */
    .skill-row {
        grid-template-columns: 1fr 1fr;

    }

    /* Last skill card spans full width */
    .skill-card:last-child {
        grid-column: 1 / 3;
    }

    .skill-card {
        height: 190px;
    }
}


/* ── Mobile Large (max 576px) ── */
@media (max-width: 576px) {

    .impact {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }

    /* All cards full width, single column */
    .impacth12 {
        grid-column: 1 / 2;
        grid-row: auto;
        min-height: 240px;
    }

    .top-right-1,
    .top-right-2,
    .bottom-1,
    .bottom-2 {
        grid-column: 1 / 2;
        grid-row: auto;
        aspect-ratio: unset;
        min-height: 200px;
    }

    /* Skill row: single column */
    .skill-row {
        grid-template-columns: 1fr;
    }

    .skill-card:last-child {
        grid-column: 1 / 2;
    }

    .skill-card {
        height: 200px;
    }
}


/* ── Mobile Small (max 400px) ── */
@media (max-width: 400px) {

    .impact {
        gap: 0.5rem;
    }

    .impacth12 {
        min-height: 200px;
    }

    .top-right-1,
    .top-right-2,
    .bottom-1,
    .bottom-2 {
        min-height: 170px;
    }

    .skill-card {
        height: 170px;
    }

    .card-label {
        font-size: 11px;
    }

    .skill-overlay,
    .card-overlay {
        padding: 0.8rem;
    }
}


/* Tablet - 4 on top, 2 on bottom */
@media (max-width: 1024px) {
    .mission-banner-inner {
        flex-wrap: wrap;
        /* allow wrapping into rows */
        justify-content: center;
        gap: 16px;
    }

    .sdg {
        flex: 0 0 calc(25% - 16px);
        /* 4 per row */
        width: calc(25% - 16px);
        max-width: 180px;
    }
}

/* Mobile - 2 per row */
@media (max-width: 600px) {
    .mission-banner {
        padding: 3rem 1rem;
    }

    .mission-banner-inner {
        flex-wrap: wrap;
        gap: 12px;
    }

    .sdg {
        flex: 0 0 calc(50% - 12px);
        /* 2 per row */
        width: calc(50% - 12px);
        max-width: none;
    }
}






/* ── GALLERY ── */
.gallery-teaser {
    background-color: var(--orange);
    padding: 6rem 5rem;


}

.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.5rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 250px 250px;
    gap: 1rem;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item:first-child {
    grid-row: 1 / 3;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 2rem;
    transition: all 0.4s;
}

.gallery-item:hover .gallery-placeholder {
    transform: scale(1.05);
}

.gp-1 {
    background: linear-gradient(145deg, #C25A2A, #8B1A1A);
}

.gp-2 {
    background: linear-gradient(145deg, #1A6B6B, #0D3B3B);
}

.gp-3 {
    background: linear-gradient(145deg, #8B5E00, #4A3000);
}

.gp-4 {
    background: linear-gradient(145deg, #4A3000, #8B1A1A);
}

.gp-5 {
    background: linear-gradient(145deg, #1A3B4A, #0D2030);
}

.gallery-item-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 1.5rem 1rem 1rem;
    color: white;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}

.gallery-add-note {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    border: 1px dashed rgba(255, 255, 255, 0.4);
    color: rgba(255, 255, 255, 0.7);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.7rem;
    letter-spacing: 1px;
    white-space: nowrap;
}

#volgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}



/* ─── FOOTER WRAPPER ─────────────────────────────── */
.footer-up {
    background: var(--cream);
}

.footer-up img {
    display: block;
    width: 100%;
}

.site-footer {
    margin-top: -4px;
    background: var(--green);
    color: var(--white);

    padding: clamp(48px, 7vw, 80px) clamp(24px, 6vw, 80px) 0;
    position: relative;
    overflow: hidden;
}



/* ─── MAIN GRID ──────────────────────────────────── */
.footer-main {
    display: grid;
    grid-template-columns: 1fr 3px 2fr;
    gap: 0 clamp(32px, 5vw, 72px);
    position: relative;
    z-index: 1;
}

/* ─── DIVIDER ────────────────────────────────────── */
.footer-divider {
    background: var(--white-line);
    width: 1.5px;
    align-self: stretch;
    margin-top: 12px;
}

/* ─── LEFT COLUMN ────────────────────────────────── */
.footer-brand {
    padding-bottom: 40px;
}

.footer-headline {
    font-family: "Bebas Neue", sans-serif;
    font-weight: 100;
    font-size: clamp(52px, 9vw, 100px);
    line-height: 0.92;
    letter-spacing: -1px;
    text-transform: uppercase;
    margin-bottom: clamp(28px, 4vw, 48px);
}

.footer-headline span {
    color: var(--gold);
    display: inline-block;
}

.footer-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav a {
    text-decoration: none;
    color: var(--white-dim);
    font-size: clamp(11px, 1.2vw, 13px);
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.footer-nav a:hover {
    color: var(--yellow);
}

/* ─── RIGHT SECTION ──────────────────────────────── */
.footer-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(24px, 4vw, 56px);
    padding-bottom: 40px;
}

.footer-col-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(13px, 1.4vw, 15px);
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--white);
    border-bottom: 2px solid var(--white);
    padding-bottom: 6px;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-links a {
    text-decoration: none;
    color: var(--white-dim);
    font-size: clamp(11px, 1.15vw, 13px);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--yellow);
}

/* ─── SOCIAL ICONS ───────────────────────────────── */
.footer-socials {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.social-icon:hover {
    border-color: var(--yellow);
    background: var(--yellow);
    transform: translateY(-2px);
}

.social-icon svg {
    width: 18px;
    height: 18px;
    fill: var(--white);
}

/* ─── BOTTOM BAR ─────────────────────────────────── */
.footer-bottom {
    border-top: 1px solid var(--white-line);
    margin-top: 8px;
    padding: 22px 0;
    position: relative;
    z-index: 1;
}

.footer-address {
    color: var(--white-dim);
    font-size: clamp(11px, 1.1vw, 13px);
    font-weight: 400;
    letter-spacing: 0.04em;
    line-height: 1.65;
}

/* ─── RESPONSIVE ─────────────────────────────────── */

/* Tablet: ~768px */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr 3px 1.6fr;
    }
}

@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .footer-divider {
        display: none;
    }

    .footer-brand {
        border-bottom: 1px solid var(--white-line);
        padding-bottom: 32px;
        margin-bottom: 32px;
    }

    .footer-right {
        grid-template-columns: 1fr 1fr;
        padding-bottom: 32px;
    }
}

/* Mobile: ~480px */
@media (max-width: 480px) {
    .footer-right {
        grid-template-columns: 1fr;
        gap: 32px;
    }


}

@media (max-width: 360px) {
    .footer-headline {
        font-size: 44px;
    }
}


/* ── ANIMATIONS ── */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes rotate-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--yellow);
    border-radius: 4px;
}


/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */

/* ── TABLET ── */
@media (max-width: 1024px) {

    .hero-content {
        grid-template-columns: 1fr;
        text-align: left;

        gap: 2rem;
        margin: 0 auto;
    }

    .hero-eyebrow {
        margin-left: 20px;
    }

    .hero-title {
        margin-left: 20px;
        font-size: 5rem;
    }


    .hero-desc {
        margin: 0 auto 2rem;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-right {
        justify-content: center;
    }

    .hero-visual {
        width: 300px;
        height: 380px;
    }

    .stats-bar {
        padding: 2.5rem 1.5rem;
    }

    .stats-bar .text {
        margin-right: 60px;
    }

    #num1 {
        margin-left: 18px;
    }

    #num2 {
        margin-left: 20px;
    }

    .stat-item {
        flex: 1 1 180px;
    }

    .about {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 4rem 2rem;
    }

    .about-visual {
        max-width: 500px;
        margin: 0 auto;
    }

    .focus-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .districts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .district-card {
        width: 40vw;
    }



    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .gallery-item:first-child {
        grid-column: 1 / 3;
        height: 260px;
    }

    footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.2rem;
        padding: 2rem;
    }
}

/* ── MOBILE ── */
@media (max-width: 768px) {
    nav {
        padding: 0 1.2rem;
        height: 64px;
    }

    .nav-links {
        display: none;
    }

    .ham-btn {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        margin-left: 20px;
        text-align: left;
        padding: 2.5rem 1.5rem;
        gap: 2rem;
        margin: 0 auto;
    }

    .hero-eyebrow {
        margin-top: 200px;
    }

    .hero-title {
        font-size: 4rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        letter-spacing: 2px;
    }

    .hero-desc {
        font-size: 0.9rem;
        margin: 0 auto 2rem;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .btn-primary {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .hero-right {
        display: none;
    }

    .hero-smile-accent {
        display: none;
    }

    .stats-bar {
        padding: 2rem 1rem;
        justify-content: flex-start;
        gap: 0;
    }

    #num3 {
        margin-left: 24px;
    }

    #num4 {
        margin-left: 24px;
    }

    #text3 {
        margin-left: 24px;
    }

    #text4 {
        margin-left: 24px;
    }


    .stat-item {
        flex: 1 1 50%;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }



    .stat-item .num {
        font-size: clamp(2rem, 10vw, 3rem);
        padding: 0 1.2rem;
    }

    .stat-item .text {
        padding-left: 1.2rem;
        font-size: 0.65rem;
        letter-spacing: 1px;
    }

    .about {
        padding: 3rem 1.2rem;
    }

    .about-img-frame {
        aspect-ratio: 16/9;
        border-radius: 16px;
    }

    .about-pillars {
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
    }

    .about-corner-deco,
    .about-corner-deco-2 {
        display: none;
    }

    .section-title {
        font-size: 1.8rem;
    }



    .districts {
        padding: 3rem 1.2rem;
    }

    .districts-header {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .districts-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .district-card {
        justify-content: center;
        width: 90vw;
        margin-left: 10px;
        margin: 20px 10px;
    }

    .impact {
        grid-template-columns: 1fr;
    }

    .mission-banner {
        padding: 3rem 1.2rem;
    }



    .gallery-teaser {
        padding: 3rem 1.2rem;
    }

    .gallery-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr;
    }

    .gallery-item:first-child {
        grid-column: 1 / 3;
        height: 200px;
    }

}

/* ── SMALL MOBILE ── */
@media (max-width: 480px) {
    .hero-title {
        font-size: clamp(4rem, 10vw, 2.8rem);
    }

    .stat-item {
        flex: 1 1 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .stats-bar {
        padding: 1.5rem 0.5rem;
    }

    .stat-item .num {
        padding: 0 1rem;
    }

    .stat-item .text {
        padding-left: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .district-card {
        margin-right: 19vw;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr;
    }

    .gallery-item {
        height: 160px;
    }


    .about-pillars {
        grid-template-columns: 1fr;
    }

    .pillar {
        padding: 1rem;
    }

    .btn-primary {
        padding: 12px 24px;
        font-size: 0.85rem;
    }

    footer {
        padding: 1.5rem 1rem;
    }

    .footer-links {
        gap: 0.6rem;
    }

    .footer-links a {
        font-size: 0.72rem;
    }

    .volunteer>div {
        display: flex !important;
        flex-direction: column;
    }

    .districts {
        padding: 3rem 1.2rem;
    }

    .districts-header {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .districts-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .district-card {
        justify-content: center;
        width: 90vw;
        margin-left: 10px;
        margin: 20px 10px;
    }

    /* Images side by side */
    #volunteer1 {
        justify-content: center;
        margin-right: -100px;
    }

    #volunteer1 p {
        margin-right: -25vw;
    }

    #volgrid {
        display: none;
    }





}

/* ── TINY ── */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .nav-logo-text .name {
        font-size: 0.85rem;
    }
}