/* ── ROOT VARIABLES ── */
:root {
    --c-gold:  #c9a84c;
    --c-white: #f5f0e8;
    --c-dark:  #0d0d0d;
    --c-speed: 900ms;
}

/* ── BASE ── */
body {
    font-family: Arial, sans-serif;
    margin: 0;
}

/* ── TOPBAR ── */
.topbar {
    background: #2f3b52;
    color: white;
    padding: 15px 30px;
    display: flex;
    align-items: center;
}

    .topbar img {
        height: 50px;
        margin-right: 15px;
    }

    .topbar h1 {
        font-size: 20px;
        margin: 0;
    }

/* ── NAV ── */
.nav {
    background: linear-gradient(135deg, #0D1B3E, #0B5345);
    padding: 10px 30px;
    display: flex;
    align-items: center;
}

    .nav a {
        color: white;
        margin-right: 20px;
        text-decoration: none;
    }

/* ── MENU LINKS ── */
.menu-link {
    color: white;
    text-decoration: none;
    margin-right: 8px;
    padding: 6px 14px;
    border-radius: 20px;               /* pill shape */
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
}

    /* ACTIVE STATE — gold pill with dark text */
    .menu-link.active {
        background: var(--c-gold);
        color: #0d0d0d !important;
        font-weight: 700;
    }

    .menu-link:hover {
        background: rgba(201, 168, 76, 0.25);
        color: var(--c-gold) !important;
    }

/* ── DONATE BUTTON ── */
.donate-btn {
    background: var(--c-gold);
    color: black !important;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: bold;
    margin-left: auto;
    text-decoration: none;
}

    .donate-btn:hover {
        background: #ffcc33;
    }

/* ── MOBILE MENU BUTTON ── */
.menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
}

/* ── HERO ── */
.hero {
    max-width: 1100px;
    margin: 30px auto;
    position: relative;
    width: 100%;
}

    .hero img {
        width: 100%;
        display: block;
        border-radius: 5px;
    }

    .hero::after {
        content: '';
        position: absolute;
        inset: 0;
    }

.hero-text {
    position: absolute;
    bottom: 20px;
    left: 30px;
    color: white;
    font-size: 28px;
    font-weight: bold;
    z-index: 1;
}

/* ── STICKY SECTION NAV ── */
.section-nav {
    position: sticky;
    top: 0;
    background: #0c6b58;
    padding: 10px 30px;
    z-index: 1000;
    display: flex;
    gap: 15px;
}

    .section-nav a {
        background: #0f7c67;
        color: white;
        padding: 8px 15px;
        border-radius: 4px;
        text-decoration: none;
        font-size: 14px;
    }

        .section-nav a:hover {
            background: #f4b400;
            color: black;
        }

/* ── CONTENT CONTAINER ── */
.container {
    max-width: 1100px;
    margin: auto;
    padding: 40px 20px;
}

.section-title {
    font-size: 24px;
    margin-bottom: 10px;
}

/* ── SECTION ── */
.section {
    margin-bottom: 60px;
}

    .section h2 {
        margin-bottom: 20px;
    }

/* ── ROW ── */
.row {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

    .row img {
        width: 100%;
        max-width: 450px;
        border-radius: 8px;
    }

/* ── IMPACT SECTION ── */
.impact-section {
    background: linear-gradient(135deg, #0D1B3E, #0B5345);
    color: white;
    padding: 60px 20px;
}

.impact-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.impact-left {
    flex: 1;
}

    .impact-left h1 {
        font-size: 48px;
        margin-bottom: 20px;
    }

    .impact-left p {
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .impact-left h3 {
        margin-top: 20px;
    }

.impact-right {
    flex: 1;
}

.stats {
    display: flex;
    gap: 40px;
    margin-bottom: 20px;
}

.stat .label {
    font-size: 14px;
    color: #ddd;
}

.stat h2 {
    font-size: 40px;
    margin: 5px 0;
}

.chart img {
    width: 100%;
    border-radius: 6px;
    background: white;
    padding: 10px;
}

/* ── LAYOUT / SIDEBAR / CARDS ── */
.layout {
    display: flex;
    gap: 20px;
}

.sidebar {
    width: 220px;
    background: #f0f0f0;
    padding: 15px;
}

    .sidebar button {
        display: block;
        width: 100%;
        margin-bottom: 10px;
        padding: 8px;
        border: none;
        background: white;
        cursor: pointer;
        text-align: left;
    }

        .sidebar button.active {
            background: #0c6b58;
            color: white;
        }

.content {
    flex: 1;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.card {
    width: 300px;
    background: #f5f5f5;
    padding: 15px;
    border-radius: 8px;
}

/* ── CAROUSEL ── */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 52vh;
    min-height: 320px;
    overflow: hidden;
    font-family: 'DM Sans', sans-serif;
}

.hc-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--c-gold);
    width: 0%;
    z-index: 20;
    transition: width linear;
}

.hc-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--c-speed) cubic-bezier(.45,.05,.55,.95);
}

    .hc-slide.active {
        opacity: 1;
        pointer-events: all;
    }

.hc-slide__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.07);
    transition: transform 6s ease;
}

.hc-slide.active .hc-slide__bg {
    transform: scale(1);
}

.hc-slide:nth-child(2) .hc-slide__bg { background-image: url('images/teacherwithchild.jpeg'); }
.hc-slide:nth-child(3) .hc-slide__bg { background-image: url('images/childfood.jpeg'); }
.hc-slide:nth-child(4) .hc-slide__bg { background-image: url('images/childactivity1.jpeg'); }

.hc-slide__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, rgba(8,8,8,.75) 0%, rgba(8,8,8,.35) 55%, transparent 100%);
}

.hc-slide__content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 7vw;
    max-width: 780px;
}

.hc-slide__tag {
    font-size: .68rem;
    font-weight: 500;
    letter-spacing: .26em;
    text-transform: uppercase;
    color: var(--c-gold);
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .55s .2s, transform .55s .2s;
}

.hc-slide.active .hc-slide__tag {
    opacity: 1;
    transform: none;
}

.hc-slide__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.7rem, 4vw, 3.2rem);
    line-height: 1.1;
    color: var(--c-white);
    margin: .75rem 0 1rem;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s .35s, transform .6s .35s;
}

.hc-slide.active .hc-slide__title {
    opacity: 1;
    transform: none;
}

.hc-slide__body {
    font-size: clamp(.82rem, 1.3vw, .97rem);
    line-height: 1.7;
    color: rgba(245,240,232,.78);
    max-width: 420px;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .6s .5s, transform .6s .5s;
}

.hc-slide.active .hc-slide__body {
    opacity: 1;
    transform: none;
}

.hc-slide__cta {
    margin-top: 1.6rem;
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: .7rem 1.7rem;
    background: var(--c-gold);
    color: var(--c-dark);
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: .78rem;
    letter-spacing: .09em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    align-self: flex-start;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .55s .65s, transform .55s .65s, background .22s;
}

.hc-slide.active .hc-slide__cta {
    opacity: 1;
    transform: none;
}

.hc-slide__cta:hover { background: var(--c-white); }

.hc-slide__cta svg {
    width: 14px;
    height: 14px;
    transition: transform .22s;
}

.hc-slide__cta:hover svg { transform: translateX(4px); }

.hc-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 46px;
    height: 46px;
    border: 1.5px solid rgba(245,240,232,.3);
    border-radius: 50%;
    background: rgba(13,13,13,.3);
    backdrop-filter: blur(5px);
    color: var(--c-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color .22s, background .22s, transform .22s;
}

    .hc-arrow:hover {
        border-color: var(--c-gold);
        background: rgba(201,168,76,.18);
        transform: translateY(-50%) scale(1.1);
    }

.hc-arrow--prev { left: 2vw; }
.hc-arrow--next { right: 2vw; }
.hc-arrow svg   { width: 16px; height: 16px; }

.hc-dots {
    position: absolute;
    bottom: 1.4rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: .55rem;
    align-items: center;
}

.hc-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(245,240,232,.35);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background .28s, transform .28s;
}

    .hc-dot.active {
        background: var(--c-gold);
        transform: scale(1.5);
    }

.hc-counter {
    position: absolute;
    bottom: 1.4rem;
    right: 2vw;
    z-index: 10;
    font-size: .68rem;
    letter-spacing: .18em;
    color: rgba(245,240,232,.48);
    font-weight: 300;
    font-family: 'DM Sans', sans-serif;
}

/* ── RESPONSIVE ── */
@media (max-width: 800px) {
    .row          { flex-direction: column; }
    .section-nav  { flex-wrap: wrap; }
}

@media (max-width: 768px) {

    /* TOPBAR on mobile */
    .topbar {
        flex-direction: row;
        justify-content: space-between;
        padding: 12px 16px;
    }
    .topbar h1  { font-size: 15px; line-height: 1.3; }
    .topbar img { height: 42px; }

    /* HAMBURGER BUTTON */
    .menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 8px;
        background: rgba(255,255,255,0.12);
        border: 1px solid rgba(255,255,255,0.2);
        color: white;
        font-size: 20px;
        cursor: pointer;
        flex-shrink: 0;
        transition: background 0.2s;
    }
    .menu-btn:hover { background: rgba(201,168,76,0.25); }

    /* MOBILE DROPDOWN NAV */
    .nav {
        display: none;
        flex-direction: column;
        align-items: stretch;
        background: rgba(15, 20, 40, 0.97);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        padding: 12px 16px 20px;
        border-top: 2px solid var(--c-gold);
        gap: 4px;
    }
    .nav.show { display: flex; }

    /* each nav link */
    .nav .menu-link {
        display: block;
        margin: 0;
        padding: 13px 16px;
        border-radius: 10px;
        font-size: 15px;
        font-weight: 500;
        color: rgba(255,255,255,0.85);
        letter-spacing: 0.02em;
        transition: background 0.18s, color 0.18s, padding-left 0.18s;
    }
    .nav .menu-link:hover {
        background: rgba(201,168,76,0.15);
        color: var(--c-gold) !important;
        padding-left: 22px;
    }

    /* active pill */
    .nav .menu-link.active {
        background: var(--c-gold);
        color: #0d0d0d !important;
        font-weight: 700;
    }
    .nav .menu-link.active:hover { padding-left: 16px; }

    /* donate button — full width */
    .nav .donate-btn {
        display: block;
        margin: 10px 0 0;
        padding: 13px 16px;
        border-radius: 10px;
        text-align: center;
        font-size: 15px;
        font-weight: 700;
        background: var(--c-gold);
        color: #0d0d0d !important;
        letter-spacing: 0.04em;
    }
    .nav .donate-btn:hover { background: #e8c060; padding-left: 16px; }

    .impact-container { flex-direction: column; }
    .impact-left h1   { font-size: 36px; }
    .stats            { justify-content: space-between; }
}

/* ── LANGUAGE BAR (above nav) ── */
.lang-bar {
    background: #1a2236;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    flex-wrap: wrap;
}

.lang-bar__label {
    font-size: 13px;
    margin-right: 4px;
    opacity: 0.6;
}

.lang-btn {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.7);
    padding: 3px 9px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 0.04em;
    transition: background 0.18s, color 0.18s, border-color 0.18s;
    white-space: nowrap;
}

.lang-btn:hover {
    background: rgba(201,168,76,0.2);
    border-color: var(--c-gold);
    color: var(--c-gold);
}

.lang-btn.lang-active {
    background: var(--c-gold);
    border-color: var(--c-gold);
    color: #0d0d0d;
}

/* ── SECTION-NAV SCROLL OFFSET FIX ──────────────────────────────────────────
   When a sticky .section-nav (≈42px) sits below the sticky main nav (≈45px)
   clicking anchor links scrolls the target heading underneath them.
   scroll-margin-top pushes the scroll position down so headings stay visible.
   Adjust the value if your combined header height differs.
── */
:target {
    scroll-margin-top: 100px;
}

/* More specific for sections that use id anchors inside about/impact pages */
[id] {
    scroll-margin-top: 100px;
}

/* ══════════════════════════════════════════════
   MOBILE  ≤ 768px
   ══════════════════════════════════════════════ */
@media (max-width: 768px) {

    /* Topbar */
    .topbar {
        flex-direction: row !important;
        justify-content: space-between;
        padding: 12px 16px;
    }
    .topbar h1  { font-size: 15px; line-height: 1.3; }
    .topbar img { height: 42px; }

    /* Hamburger — force visible */
    .menu-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border-radius: 8px;
        background: rgba(255,255,255,0.15);
        border: 1px solid rgba(255,255,255,0.25);
        color: white;
        font-size: 20px;
        cursor: pointer;
        flex-shrink: 0;
        transition: background 0.2s;
        z-index: 9999;
    }
    .menu-btn:hover { background: rgba(201,168,76,0.3); }

    /* Nav — hidden by default, shown via .show */
    .nav {
        display: none !important;
        flex-direction: column !important;
        align-items: stretch;
        background: rgba(13,18,38,0.98);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        padding: 10px 16px 18px;
        border-top: 2px solid var(--c-gold, #c9a84c);
        gap: 3px;
    }
    .nav.show {
        display: flex !important;
    }

    /* Nav links */
    .nav .menu-link,
    .nav a {
        display: block !important;
        margin: 0 !important;
        padding: 13px 16px;
        border-radius: 10px;
        font-size: 15px;
        font-weight: 500;
        color: rgba(255,255,255,0.85) !important;
        letter-spacing: 0.02em;
        border-bottom: none !important;
        text-decoration: none;
        transition: background 0.18s, padding-left 0.18s;
    }
    .nav .menu-link:hover,
    .nav a:hover {
        background: rgba(201,168,76,0.15);
        color: var(--c-gold, #c9a84c) !important;
        padding-left: 22px;
    }
    .nav .menu-link.active {
        background: var(--c-gold, #c9a84c) !important;
        color: #0d0d0d !important;
        font-weight: 700;
    }

    /* Donate button full-width */
    .nav .donate-btn,
    .nav button.donate-btn {
        display: block !important;
        width: 100%;
        margin: 10px 0 0;
        padding: 13px 16px;
        border-radius: 10px;
        text-align: center;
        font-size: 15px;
        font-weight: 700;
        background: var(--c-gold, #c9a84c) !important;
        color: #0d0d0d !important;
        letter-spacing: 0.04em;
        border: none;
        cursor: pointer;
        box-sizing: border-box;
    }
    .nav .donate-btn:hover,
    .nav button.donate-btn:hover { background: #e8c060 !important; }

    /* Misc */
    .impact-container { flex-direction: column; }
    .impact-left h1   { font-size: 36px; }
    .stats            { justify-content: space-between; }
    .row              { flex-direction: column; }
}

/* ══════════════════════════════════════════════════════════
   MOBILE FIX — appended last to guarantee cascade priority
   ══════════════════════════════════════════════════════════ */

/* Desktop: hide hamburger */
.menu-btn {
    display: none;
    background: none;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 8px;
    color: white;
    font-size: 22px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

@media (max-width: 768px) {

    /* Show hamburger */
    .menu-btn {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    .menu-btn:hover { background: rgba(201,168,76,0.3); }

    /* Topbar: clamp title so button stays visible */
    .topbar {
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 10px 14px !important;
        flex-wrap: nowrap !important;
        gap: 10px;
    }
    .topbar img {
        height: 40px !important;
        flex-shrink: 0;
    }
    .topbar h1 {
        font-size: 13px !important;
        line-height: 1.3 !important;
        flex: 1 !important;
        min-width: 0 !important;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        margin: 0 8px !important;
    }

    /* Lang bar — wrap on small screens */
    .lang-bar {
        flex-wrap: wrap;
        padding: 5px 12px;
        gap: 4px;
    }
    .lang-btn {
        padding: 3px 7px;
        font-size: 10px;
    }

    /* Nav hidden by default */
    .nav,
    #mainNav {
        display: none !important;
        flex-direction: column !important;
        align-items: stretch !important;
        width: 100% !important;
        background: rgba(13,18,38,0.98) !important;
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        padding: 10px 16px 20px !important;
        border-top: 2px solid var(--c-gold, #c9a84c);
        gap: 3px;
        box-sizing: border-box;
    }

    /* Nav shown when .show added by JS */
    .nav.show,
    #mainNav.show {
        display: flex !important;
    }

    /* Nav links */
    .nav a,
    #mainNav a,
    .nav .menu-link,
    #mainNav .menu-link {
        display: block !important;
        padding: 12px 16px !important;
        margin: 0 !important;
        border-radius: 10px;
        color: rgba(255,255,255,0.88) !important;
        font-size: 15px;
        font-weight: 500;
        text-decoration: none;
        border-bottom: none !important;
        transition: background 0.18s, padding-left 0.18s;
    }
    .nav a:hover,
    #mainNav a:hover {
        background: rgba(201,168,76,0.15);
        color: var(--c-gold, #c9a84c) !important;
        padding-left: 22px !important;
    }
    .nav .menu-link.active,
    #mainNav .menu-link.active {
        background: var(--c-gold, #c9a84c) !important;
        color: #0d0d0d !important;
        font-weight: 700;
    }

    /* Donate button */
    .nav .donate-btn,
    #mainNav .donate-btn,
    .nav button.donate-btn,
    #mainNav button.donate-btn {
        display: block !important;
        width: 100% !important;
        margin: 10px 0 0 !important;
        padding: 13px 16px !important;
        border-radius: 10px !important;
        text-align: center !important;
        font-size: 15px !important;
        font-weight: 700 !important;
        background: var(--c-gold, #c9a84c) !important;
        color: #0d0d0d !important;
        border: none !important;
        cursor: pointer;
        box-sizing: border-box;
    }

    /* Row layouts stack vertically */
    .row { flex-direction: column !important; }
    .impact-container { flex-direction: column !important; }
}

/* ╔══════════════════════════════════════════════════════╗
   ║  FINAL MOBILE OVERRIDE — must stay at bottom of file ║
   ╚══════════════════════════════════════════════════════╝ */

/* Desktop: hamburger hidden */
.menu-btn {
    display: none;
    background: none;
    border: 1.5px solid rgba(255,255,255,0.28);
    border-radius: 8px;
    color: white;
    font-size: 22px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 1;
    transition: background .2s;
}

/* Nav always visible on desktop */
@media (min-width: 769px) {
    .nav, #mainNav {
        display: flex !important;
        flex-direction: row !important;
        align-items: center;
    }
    .nav .menu-link, #mainNav .menu-link { display: inline-block; }
}

@media (max-width: 768px) {

    /* Show hamburger */
    .menu-btn {
        display: flex !important;
        visibility: visible !important;
    }
    .menu-btn:hover { background: rgba(201,168,76,.3); }

    /* Topbar: keep title clamped so button stays visible */
    .topbar {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        flex-wrap: nowrap !important;
        padding: 10px 12px !important;
        gap: 8px;
    }
    .topbar img { height: 38px !important; flex-shrink: 0; }
    .topbar h1 {
        flex: 1 !important;
        min-width: 0 !important;
        font-size: 13px !important;
        line-height: 1.3 !important;
        margin: 0 6px !important;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    /* Lang bar compact */
    .lang-bar { flex-wrap: wrap; padding: 4px 10px; gap: 3px; }
    .lang-btn  { padding: 2px 7px; font-size: 10px; }

    /* Nav: hidden by default */
    .nav, #mainNav {
        display: none !important;
        flex-direction: column !important;
        align-items: stretch !important;
        background: rgba(12,16,34,.97) !important;
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        padding: 8px 14px 18px !important;
        border-top: 2px solid var(--c-gold, #c9a84c);
        gap: 2px;
        width: 100%;
        box-sizing: border-box;
    }

    /* Shown when JS adds .show OR inline style */
    .nav.show, #mainNav.show {
        display: flex !important;
    }

    /* Links */
    .nav a, #mainNav a,
    .nav .menu-link, #mainNav .menu-link {
        display: block !important;
        padding: 12px 16px !important;
        margin: 0 !important;
        border-radius: 9px;
        color: rgba(255,255,255,.88) !important;
        font-size: 15px;
        font-weight: 500;
        text-decoration: none;
        border: none !important;
        border-bottom: none !important;
        transition: background .18s, padding-left .18s;
    }
    .nav a:hover, #mainNav a:hover {
        background: rgba(201,168,76,.15);
        color: var(--c-gold, #c9a84c) !important;
        padding-left: 22px !important;
    }
    .nav .menu-link.active, #mainNav .menu-link.active {
        background: var(--c-gold, #c9a84c) !important;
        color: #0d0d0d !important;
        font-weight: 700;
    }

    /* Donate button */
    .nav .donate-btn, #mainNav .donate-btn,
    .nav button.donate-btn, #mainNav button.donate-btn {
        display: block !important;
        width: 100% !important;
        margin: 10px 0 0 !important;
        padding: 13px !important;
        border-radius: 9px !important;
        text-align: center !important;
        font-size: 15px !important;
        font-weight: 700 !important;
        background: var(--c-gold, #c9a84c) !important;
        color: #0d0d0d !important;
        border: none !important;
        cursor: pointer;
        box-sizing: border-box;
    }

    /* Stacking */
    .row { flex-direction: column !important; }
    .impact-container { flex-direction: column !important; }
    .section-nav { flex-wrap: wrap; }
}
