:root {
    --navy:    #001428;
    --navy2:   #001e3a;
    --accent:  #a0783c;
    --accent2: #8c643c;
    --light:   #F8F6F1;
    --white:   #FFFFFF;
    --fg:      #001428;
    --muted:   #5a5a4a;
    --border:  rgba(0,20,40,0.1);
    --r:       8px;
    --sh:      0 4px 24px rgba(0,20,40,0.08);
    --sh-lg:   0 16px 48px rgba(0,20,40,0.16);
}



*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--white);
    color: var(--fg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
section[id] { scroll-margin-top: 80px; }
a { color: inherit; text-decoration: none; }
::selection { background: rgba(160,120,60,0.2); }

/* ── CONTAINER ── */
.container { max-width: 1120px; margin: 0 auto; padding: 0 2.5rem; }

/* ── BUTTONS ── */
.btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-family: inherit; font-size: 0.8rem; font-weight: 700;
    letter-spacing: 0.07em; text-transform: uppercase;
    padding: 0.8rem 1.8rem; border-radius: 0;
    border: 2px solid transparent;
    transition: all 0.22s ease; cursor: pointer; white-space: nowrap;
}
.btn-lg { padding: 1rem 2.4rem; font-size: 0.85rem; }
.btn-primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-primary:hover { background: var(--accent2); border-color: var(--accent2); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(160,120,60,0.4); }
.btn-white { background: #fff; color: var(--navy); border-color: #fff; }
.btn-white:hover { background: var(--light); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.25); }
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.5); color: #fff; }
.btn-outline { background: transparent; color: var(--accent); border-color: var(--accent); }
.btn-outline:hover { background: var(--accent); color: #fff; transform: translateY(-2px); }

/* ── HEADER ── */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    transition: all 0.3s ease;
}
.site-header.scrolled {
    background: rgba(10,22,40,0.96);
    backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 rgba(255,255,255,0.06), 0 4px 24px rgba(0,0,0,0.3);
}
.nav-inner {
    max-width: 1120px; margin: 0 auto; padding: 0 2.5rem;
    height: 72px; display: flex; align-items: center; gap: 3rem;
}
.nav-logo { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.nav-logo img { width: 38px; height: 38px; border-radius: 50%; border: 2px solid rgba(160,120,60,0.3); }
.nav-logo span { font-size: 0.95rem; font-weight: 800; color: #fff; letter-spacing: -0.01em; }
.nav-links { display: flex; align-items: center; gap: 2.5rem; margin-left: auto; }
.nav-links a {
    font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em;
    text-transform: uppercase; color: rgba(255,255,255,0.5);
    transition: color 0.2s; position: relative; padding-bottom: 3px;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 2px; background: var(--accent);
    border-radius: 2px; transition: width 0.25s ease;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { margin-left: 0.5rem; }
.nav-burger { display: none; background: none; border: none; cursor: pointer; padding: 4px; flex-direction: column; gap: 5px; margin-left: auto; }
.nav-burger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }
.nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── MOBILE MENU ── */
.mobile-menu {
    position: fixed; inset: 0; background: var(--navy); z-index: 99;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
    opacity: 0; pointer-events: none; visibility: hidden; transition: opacity 0.3s, visibility 0.3s;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; visibility: visible; }
.mobile-menu a { font-size: 1.4rem; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; color: rgba(255,255,255,0.4); transition: color 0.2s; }
.mobile-menu a:hover, .mobile-menu a.active { color: #fff; }
.mobile-menu .btn { margin-top: 0.5rem; }

/* ── HERO ── */
.hero {
    min-height: 100vh;
    background: var(--navy);
    position: relative; overflow: hidden;
    display: grid; place-items: center;
    padding: 8rem 0 5rem;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 90% 70% at 100% 50%, rgba(160,120,60,0.15) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 0% 100%, rgba(160,120,60,0.08) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 20% 20%, rgba(0,100,200,0.04) 0%, transparent 60%);
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
}
/* animated gold accent bar */
.hero-accent-bar {
    position: absolute; bottom: 0; left: 0;
    height: 3px; width: 0;
    background: linear-gradient(90deg, var(--accent), rgba(160,120,60,0.2));
    animation: heroBar 1.8s cubic-bezier(0.16,1,0.3,1) 0.4s forwards;
}
@keyframes heroBar { to { width: 60%; } }
/* scroll indicator */
.hero-scroll {
    position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    opacity: 0; animation: fadeIn 1s ease 2s forwards;
}
.hero-scroll span { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.2); }
.hero-scroll-dot { width: 4px; height: 4px; background: var(--accent); border-radius: 50%; animation: scrollBounce 1.5s ease-in-out infinite; }
@keyframes scrollBounce { 0%,100% { transform: translateY(0); opacity:1; } 50% { transform: translateY(8px); opacity:0.3; } }
@keyframes fadeIn { to { opacity: 1; } }
.hero-inner {
    max-width: 1120px; margin: 0 auto; padding: 0 2.5rem;
    position: relative; z-index: 1;
    display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.hero-left {}
.hero-logo { margin-bottom: 2rem; }
.hero-logo img { width: 72px; height: 72px; border-radius: 50%; border: 2px solid rgba(160,120,60,0.4); }
.hero-tag {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
    color: #a0783c;
    background: rgba(160,120,60,0.1); border: 1px solid rgba(160,120,60,0.25);
    padding: 0.4rem 1rem; border-radius: 100px; margin-bottom: 2rem;
}
.hero-tag::before { content: ''; width: 6px; height: 6px; background: #a0783c; border-radius: 50%; }
.hero-headline {
    font-size: clamp(2.6rem, 4.5vw, 4.8rem);
    font-weight: 800; line-height: 1.06; letter-spacing: -0.04em;
    color: #fff; margin-bottom: 1.5rem;
}
.hero-headline em {
    font-style: normal; color: var(--accent);
    position: relative; display: inline-block;
}
.hero-headline em::after {
    content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
    height: 3px; background: var(--accent); opacity: 0.4;
    transform: scaleX(0); transform-origin: left;
    animation: underlineIn 0.8s cubic-bezier(0.16,1,0.3,1) 1s forwards;
}
@keyframes underlineIn { to { transform: scaleX(1); } }
.hero-sub {
    font-size: 1.1rem; line-height: 1.75;
    color: rgba(255,255,255,0.5); margin-bottom: 2.5rem; max-width: 480px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-right {
    display: flex; flex-direction: column; gap: 1rem;
}
.hero-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 0; padding: 1.75rem;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.hero-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(160,120,60,0.2); transform: translateX(4px); }
.hero-card-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.5rem; }
.hero-card-text { font-size: 0.95rem; color: rgba(255,255,255,0.65); line-height: 1.6; }

/* ── BAND ── */
.band {
    background: var(--navy2);
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.band-inner {
    max-width: 1120px; margin: 0 auto; padding: 0 2.5rem;
    display: grid; grid-template-columns: repeat(3,1fr);
}
.band-item { padding: 2.25rem 2rem; border-right: 1px solid rgba(255,255,255,0.05); position: relative; transition: background 0.2s; }
.band-item::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--accent); transform: scaleY(0); transform-origin: bottom; transition: transform 0.3s ease; }
.band-item:hover::before { transform: scaleY(1); }
.band-item:hover { background: rgba(255,255,255,0.02); }
.band-item:last-child { border-right: none; }
.band-item strong { display: block; font-size: 1.1rem; font-weight: 800; letter-spacing: -0.02em; color: var(--accent); margin-bottom: 0.5rem; }
.band-item p { font-size: 0.88rem; color: rgba(255,255,255,0.45); line-height: 1.6; }

/* ── SECTION LABELS ── */
.label {
    font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--accent); margin-bottom: 1rem; display: block;
}
.label-light { color: rgba(255,255,255,0.4); }

/* ── SECTION HEADINGS ── */
.h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800; line-height: 1.1; letter-spacing: -0.03em;
    color: var(--fg); margin-bottom: 1.5rem;
}
.h2-light { color: #fff; }

/* ── SECTION HERO SUB (for partners/impact pages) ── */
.section-hero-sub {
    padding: 8rem 0 5rem;
    color: var(--fg); margin-bottom: 1.5rem;
}
.h2-light { color: #fff; }

/* ── MISSION ── */
.mission { 
    padding: 7rem 0; background: var(--light); 
    content-visibility: auto;
    contain-intrinsic-size: 1px 600px;
}
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
.mission-text p { font-size: 1.05rem; line-height: 1.85; color: var(--muted); margin-bottom: 1.25rem; }
.mission-text p:last-child { margin-bottom: 0; }
.mission-right { display: flex; flex-direction: column; gap: 1.25rem; padding-top: 0.5rem; }
.m-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: 0; padding: 2rem; box-shadow: var(--sh);
    transition: transform 0.2s, box-shadow 0.2s;
}
.m-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.m-card-num { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.6rem; }
.m-card-title { font-size: 1rem; font-weight: 700; color: var(--fg); margin-bottom: 0.4rem; }
.m-card-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }

/* ── MISSION VALUES (inline list) ── */
.mission-values { display: flex; flex-direction: column; gap: 0; }
.mv-item { display: flex; gap: 1.5rem; align-items: flex-start; padding: 1.5rem 0; border-bottom: 1px solid var(--border); }
.mv-item:last-child { border-bottom: none; }
.mv-icon { font-size: 0.65rem; font-weight: 800; letter-spacing: 0.08em; color: var(--accent); background: rgba(160,120,60,0.08); border: 1px solid rgba(160,120,60,0.2); border-radius: 0; padding: 0.4rem 0.6rem; min-width: 36px; text-align: center; flex-shrink: 0; margin-top: 2px; }
.mv-title { font-size: 0.95rem; font-weight: 700; color: var(--fg); margin-bottom: 0.25rem; }
.mv-desc { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }

/* ── FUND DARK SECTION ── */
.fund-dark { padding: 7rem 0; background: var(--navy); position: relative; overflow: hidden; }
.fund-dark::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 60% at 80% 50%, rgba(160,120,60,0.08) 0%, transparent 60%); pointer-events: none; }
.fund-dark-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; position: relative; z-index: 1; }
.fund-dark-left h2 { margin-bottom: 1rem; }
.fund-dark-left p { font-size: 1rem; color: rgba(255,255,255,0.5); line-height: 1.75; max-width: 400px; }
.fund-cert-list { display: flex; flex-direction: column; gap: 0; margin-bottom: 2rem; }
.fund-cert-item { display: flex; align-items: center; gap: 1rem; padding: 0.9rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 0.95rem; color: rgba(255,255,255,0.75); font-weight: 500; }
.fund-cert-item:last-child { border-bottom: none; }
.fund-cert-tag { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); background: rgba(160,120,60,0.12); border: 1px solid rgba(160,120,60,0.25); padding: 0.2rem 0.5rem; border-radius: 0; min-width: 42px; text-align: center; flex-shrink: 0; }
.fund-award { display: flex; align-items: baseline; gap: 1rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.08); }
.fund-award-num { font-size: 2.5rem; font-weight: 800; letter-spacing: -0.04em; color: var(--accent); line-height: 1; }
.fund-award-label { font-size: 0.8rem; color: rgba(255,255,255,0.4); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }

@media (max-width: 900px) { .fund-dark-grid { grid-template-columns: 1fr; gap: 3rem; } }

.partner-cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; margin-top: 3.5rem; }
.partner-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: 0; padding: 2rem; box-shadow: var(--sh);
    transition: transform 0.2s, box-shadow 0.2s;
}
.partner-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.partner-card h3 { font-size: 1rem; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 1rem; }
.partner-card p { font-size: 0.95rem; color: var(--muted); line-height: 1.7; }
.partner-card ul { list-style: disc; padding-left: 1.25rem; margin-top: 0.75rem; font-size: 0.9rem; color: var(--muted); line-height: 2; }

/* ── STATS SECTION (for impact page) ── */
.stats-section {
    padding: 7rem 0; background: var(--white);
    content-visibility: auto;
    contain-intrinsic-size: 1px 500px;
}
.stats-section .stats-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1px; background: var(--border); border-radius: 12px; overflow: hidden;
    margin-top: 3.5rem;
}
.stats-section .stat {
    background: var(--white); border: none; border-radius: 0;
    padding: 2.5rem 2rem; text-align: center;
    transition: background 0.2s, transform 0.2s;
}
.stats-section .stat:hover { background: var(--light); transform: translateY(-4px); }
.stats-section .stat-num { font-size: 3rem; font-weight: 800; letter-spacing: -0.04em; color: var(--accent); line-height: 1; margin-bottom: 0.5rem; }
.stats-section .stat-text { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }
.stat-footnote { font-size: 0.75rem; color: var(--muted); opacity: 0.6; margin-top: 1rem; text-align: center; }

/* ── STATS ── */
.stats { 
    padding: 7rem 0; background: var(--navy); position: relative; overflow: hidden; 
    content-visibility: auto;
    contain-intrinsic-size: 1px 500px;
}
.stats::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(160,120,60,0.07) 0%, transparent 70%);
    pointer-events: none;
}
.stats-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3.5rem; }
.stat {
    border: 1px solid rgba(255,255,255,0.07); border-radius: 0;
    padding: 2.5rem 2rem; position: relative; overflow: hidden;
    transition: border-color 0.2s, transform 0.2s;
}
.stat::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, #a0783c, transparent); opacity: 0; transition: opacity 0.2s; }
.stat:hover { border-color: rgba(160,120,60,0.25); transform: translateY(-4px); }
.stat:hover::before { opacity: 1; }
.stat-num { font-size: 3.5rem; font-weight: 800; letter-spacing: -0.04em; color: var(--accent); line-height: 1; margin-bottom: 1rem; }
.stat-text { font-size: 0.9rem; color: rgba(255,255,255,0.5); line-height: 1.65; }

/* ── PROCESS ── */
.process { 
    padding: 7rem 0; background: var(--white); 
    content-visibility: auto;
    contain-intrinsic-size: 1px 800px;
}
.process-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; margin-top: 3.5rem; }
.funding-section {
    padding: 7rem 0;
    background: rgba(160,120,60,0.04);
    content-visibility: auto;
    contain-intrinsic-size: 1px 520px;
}
.funding-section .container { max-width: 1120px; }
.funding-section .funding-grid {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) minmax(280px, 360px);
    gap: 2rem;
    align-items: start;
    margin-top: 2rem;
}
.funding-section .funding-grid ul {
    list-style: disc inside;
    color: var(--fg);
    line-height: 1.9;
}
.funding-section .funding-grid li {
    margin-bottom: 0.85rem;
    font-size: 0.96rem;
}
.funding-section .funding-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 0;
    padding: 2rem;
    box-shadow: var(--sh);
}
.funding-section .funding-card strong {
    display: block;
    color: var(--accent);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}
.funding-section .funding-card p {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--fg);
}
.funding-section .h2 { max-width: 12ch; }
.funding-section p { max-width: 640px; color: var(--muted); }
.process-steps { display: flex; flex-direction: column; }
.p-step { display: flex; gap: 2rem; padding: 1.75rem 0; border-bottom: 1px solid var(--border); transition: padding-left 0.2s; }
.p-step:last-child { border-bottom: none; }
.p-step:hover { padding-left: 0.75rem; }
.p-step-num { font-size: 0.7rem; font-weight: 800; letter-spacing: 0.06em; color: var(--accent); padding-top: 3px; min-width: 30px; }
.p-step-title { font-size: 0.95rem; font-weight: 700; color: var(--fg); margin-bottom: 0.3rem; }
.p-step-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }
/* Process aside */
.process-aside a:not(.btn) { color: var(--accent); }
.process-aside a:not(.btn):hover { text-decoration: underline; }

.process-aside {
    background: var(--navy); border-radius: 0; padding: 2.5rem;
    position: sticky; top: 100px;
}
.process-aside h3 { font-size: 1.3rem; font-weight: 800; color: #fff; margin-bottom: 0.75rem; }
.process-aside p { font-size: 0.9rem; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 2rem; }

/* ── BOTTOM CTA ── */
.cta-section {
    padding: 10rem 0; background: var(--navy);
    text-align: center; position: relative; overflow: hidden;
    content-visibility: auto;
    contain-intrinsic-size: 1px 400px;
}
.cta-section::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(160,120,60,0.1) 0%, transparent 70%);
    pointer-events: none;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section .label { color: rgba(255,255,255,0.4); }
.cta-section .h2 { color: #fff; margin-bottom: 1.25rem; }
.cta-section p { font-size: 1.05rem; color: rgba(255,255,255,0.5); max-width: 500px; margin: 0 auto 2.5rem; line-height: 1.75; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
.site-footer { 
    background: var(--navy); padding: 4rem 0 2.5rem; 
    content-visibility: auto;
    contain-intrinsic-size: 1px 300px;
}
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 2rem; }
.footer-brand { display: flex; align-items: center; gap: 0.75rem; }
.footer-brand img { width: 32px; height: 32px; border-radius: 50%; opacity: 0.8; }
.footer-brand span { font-size: 0.9rem; font-weight: 800; color: rgba(255,255,255,0.6); }
.footer-nav { display: flex; gap: 2rem; flex-wrap: wrap; }
.footer-nav a { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer-nav a:hover { color: rgba(255,255,255,0.8); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.2); }
.footer-email { font-size: 0.75rem; color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer-email:hover { color: var(--accent); }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1); }
.reveal.visible { opacity: 1; transform: none; }
.rd1 { transition-delay: 0.1s; } .rd2 { transition-delay: 0.2s; } .rd3 { transition-delay: 0.3s; } .rd4 { transition-delay: 0.4s; } .rd5 { transition-delay: 0.5s; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: rgba(160,120,60,0.4); border-radius: 3px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
    .hero-right { display: none; }
    .mission-grid, .process-grid, .funding-grid { grid-template-columns: 1fr; gap: 3rem; }
    .partner-cards-grid { grid-template-columns: 1fr; }
    .process-aside { position: static; }
    .stats-grid { grid-template-columns: 1fr; }
    .band-inner { grid-template-columns: 1fr; }
    .band-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); }
    .band-item:last-child { border-bottom: none; }
    .nav-links, .nav-cta { display: none; }
    .nav-burger { display: flex; }
    .footer-top { flex-direction: column; gap: 2rem; }
}
@media (max-width: 600px) {
    .container { padding: 0 1.5rem; }
    .nav-inner { padding: 0 1.5rem; }
    .hero-inner { padding: 0 1.5rem; }
    .band-inner { padding: 0 1.5rem; }
    .mission, .stats, .process, .cta-section { padding: 5rem 0; }
    .hero-headline { font-size: 2.4rem; }
    .h2 { font-size: 2rem; }
    .stats-grid { gap: 1rem; }
    .footer-top { padding: 0 1.5rem 2rem; }
    .footer-bottom { padding: 0 1.5rem; }
    .site-footer .container { padding: 0 1.5rem; }
}
