*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --primary: #1a3a5c;
    --primary-light: #2a5a8c;
    --accent: #c9a84c;
    --accent-light: #e0c76e;
    --text: #2d2d2d;
    --text-light: #6b7280;
    --bg: #ffffff;
    --bg-warm: #faf8f5;
    --bg-dark: #0f1f33;
    --border: #e5e7eb;
    --radius: 12px;
    --shadow: 0 4px 24px rgba(0,0,0,0.06);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.1);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.3; }

a { color: var(--primary); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Navigation ── */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    max-width: 1200px; margin: 0 auto; padding: 0 24px; height: 72px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--primary); }
.nav-logo svg { width: 44px; height: 44px; }
.nav-logo-text { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.25rem; }
.nav-logo-sub { font-size: 0.65rem; font-family: 'Inter', sans-serif; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); display: block; margin-top: -2px; }
.nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
.nav-links a {
    text-decoration: none; color: var(--text); font-size: 0.9rem; font-weight: 500;
    transition: color 0.2s; position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
    background: var(--accent); transition: width 0.3s;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-donate {
    background: var(--accent); color: var(--bg-dark); padding: 10px 24px; border-radius: 8px;
    text-decoration: none; font-size: 0.9rem; font-weight: 600; transition: all 0.2s;
}
.nav-donate:hover { background: var(--accent-light); transform: translateY(-1px); }
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--text); margin: 6px 0; transition: 0.3s; }

/* ── Page Header (for inner pages) ── */
.page-header {
    padding: 140px 0 80px; text-align: center; position: relative; overflow: hidden;
    background: linear-gradient(135deg, rgba(15,31,51,0.9) 0%, rgba(26,58,92,0.85) 50%, rgba(42,90,140,0.8) 100%),
                url('https://images.unsplash.com/photo-1544989164-31dc3291c578?w=1920&q=80&fit=crop') center/cover no-repeat;
}
.page-header h1 { font-size: clamp(2rem, 4vw, 3rem); color: #fff; margin-bottom: 16px; }
.page-header p { font-size: 1.1rem; color: rgba(255,255,255,0.75); max-width: 600px; margin: 0 auto; }
.page-header .breadcrumb {
    margin-bottom: 16px; font-size: 0.85rem; color: rgba(255,255,255,0.5);
}
.page-header .breadcrumb a { color: var(--accent-light); text-decoration: none; }
.page-header .breadcrumb a:hover { text-decoration: underline; }

/* ── Hero (Home only) ── */
.hero {
    min-height: 100vh; display: flex; align-items: center;
    background: linear-gradient(135deg, rgba(15,31,51,0.85) 0%, rgba(26,58,92,0.8) 50%, rgba(42,90,140,0.75) 100%),
                url('https://images.unsplash.com/photo-1544989164-31dc3291c578?w=1920&q=80&fit=crop') center/cover no-repeat;
    position: relative; overflow: hidden; padding-top: 72px;
}
.hero::before {
    content: ''; position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content { position: relative; z-index: 2; max-width: 720px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.3);
    color: var(--accent-light); padding: 8px 20px; border-radius: 50px;
    font-size: 0.8rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
    margin-bottom: 24px;
}
.hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); color: #fff; margin-bottom: 24px; }
.hero h1 span { color: var(--accent-light); }
.hero p { font-size: 1.15rem; color: rgba(255,255,255,0.8); margin-bottom: 40px; max-width: 560px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
    display: flex; gap: 48px; margin-top: 64px; padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat h3 { font-size: 2rem; color: var(--accent-light); font-family: 'Inter', sans-serif; font-weight: 800; }
.hero-stat p { color: rgba(255,255,255,0.6); font-size: 0.85rem; margin-top: 4px; }
.hero-visual {
    position: absolute; right: -60px; top: 50%; transform: translateY(-50%);
    width: 500px; height: 500px; opacity: 0.08;
}

/* ── Buttons ── */
.btn {
    display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px;
    border-radius: 8px; font-size: 0.95rem; font-weight: 600; text-decoration: none;
    transition: all 0.3s; cursor: pointer; border: none; font-family: 'Inter', sans-serif;
}
.btn-primary { background: var(--accent); color: var(--bg-dark); }
.btn-primary:hover { background: var(--accent-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.3); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.3); }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
.btn-dark { background: var(--primary); color: #fff; }
.btn-dark:hover { background: var(--primary-light); transform: translateY(-2px); }

/* ── Section Styles ── */
section { padding: 100px 0; }
.section-label {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--accent); font-size: 0.8rem; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px;
}
.section-label::before { content: ''; width: 32px; height: 2px; background: var(--accent); }
.section-title { font-size: clamp(2rem, 3.5vw, 2.75rem); margin-bottom: 20px; color: var(--primary); }
.section-desc { font-size: 1.1rem; color: var(--text-light); max-width: 640px; }

/* ── About ── */
.about { background: var(--bg-warm); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-top: 60px; }
.about-card {
    background: #fff; border-radius: var(--radius); padding: 32px;
    box-shadow: var(--shadow); border: 1px solid var(--border);
}
.about-card + .about-card { margin-top: 20px; }
.about-card-icon {
    width: 48px; height: 48px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px; font-size: 1.5rem;
}
.about-card-icon.arts { background: rgba(201,168,76,0.12); color: var(--accent); }
.about-card-icon.community { background: rgba(26,58,92,0.1); color: var(--primary); }
.about-card-icon.edu { background: rgba(16,185,129,0.1); color: #10b981; }
.about-card h4 { font-size: 1.15rem; margin-bottom: 8px; color: var(--primary); }
.about-card p { font-size: 0.95rem; color: var(--text-light); }
.about-image {
    border-radius: var(--radius); overflow: hidden;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center;
    position: relative;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }

/* ── Mission ── */
.mission-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
    align-items: center; margin-top: 60px; text-align: left;
}
.mission-image { border-radius: var(--radius); overflow: hidden; height: 480px; }
.mission-image img { width: 100%; height: 100%; object-fit: cover; }
.mission-quote {
    font-family: 'Playfair Display', serif; font-size: 1.5rem; font-style: italic;
    color: var(--primary); line-height: 1.6; margin: 0 0 32px;
    padding: 40px; background: var(--bg-warm); border-radius: var(--radius);
    border-left: 4px solid var(--accent); text-align: left;
}

/* ── Image Banner ── */
.img-banner { padding: 0; }
.img-banner-inner {
    position: relative; min-height: 480px; display: flex; align-items: center; justify-content: center;
    background: url('https://images.unsplash.com/photo-1533174072545-7a4b6ad7a6c3?w=1920&q=80&fit=crop') center/cover no-repeat;
}
.img-banner-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(15,31,51,0.88) 0%, rgba(26,58,92,0.82) 100%);
}
.img-banner-content {
    position: relative; z-index: 2; text-align: center; max-width: 640px; padding: 60px 24px;
}
.img-banner-content h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); color: #fff; margin-bottom: 20px; }
.img-banner-content p { font-size: 1.1rem; color: rgba(255,255,255,0.8); margin-bottom: 32px; line-height: 1.7; }

/* ── Programs ── */
.programs { background: var(--bg-warm); }
.programs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 60px; }
.program-card {
    background: #fff; border-radius: var(--radius);
    box-shadow: var(--shadow); border: 1px solid var(--border);
    transition: all 0.3s; position: relative; overflow: hidden;
}
.program-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.program-card-img { width: 100%; height: 200px; object-fit: cover; display: block; }
.program-card-body { padding: 32px; }
.program-icon {
    width: 64px; height: 64px; border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.75rem; margin-bottom: 24px;
}
.program-icon.a { background: rgba(201,168,76,0.12); }
.program-icon.b { background: rgba(26,58,92,0.1); }
.program-icon.c { background: rgba(16,185,129,0.1); }
.program-card h3 { font-size: 1.25rem; margin-bottom: 12px; color: var(--primary); }
.program-card p { color: var(--text-light); font-size: 0.95rem; }

/* ── Gallery ── */
.gallery-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 220px;
    gap: 16px; margin-top: 60px;
}
.gallery-item { border-radius: var(--radius); overflow: hidden; position: relative; cursor: pointer; }
.gallery-item-tall { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(15,31,51,0.8) 100%);
    display: flex; align-items: flex-end; padding: 24px;
    opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: #fff; font-size: 1rem; font-weight: 600; font-family: 'Inter', sans-serif; }

/* ── Transparency ── */
.transparency-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 60px; }
.info-block { margin-bottom: 32px; }
.info-block h4 {
    font-family: 'Inter', sans-serif; font-size: 0.8rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.5px; color: var(--accent); margin-bottom: 12px;
}
.info-table { width: 100%; border-collapse: collapse; }
.info-table td { padding: 12px 16px; font-size: 0.92rem; border-bottom: 1px solid var(--border); }
.info-table td:first-child { font-weight: 600; color: var(--primary); width: 40%; }
.info-table td:last-child { color: var(--text-light); }
.finance-card {
    background: var(--bg-warm); border-radius: var(--radius); padding: 32px;
    border: 1px solid var(--border);
}
.finance-card h4 { font-size: 1.1rem; margin-bottom: 20px; color: var(--primary); }
.finance-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 14px 0; border-bottom: 1px solid var(--border);
}
.finance-row:last-child { border-bottom: none; }
.finance-row .label { font-size: 0.9rem; color: var(--text-light); }
.finance-row .value { font-weight: 700; color: var(--primary); font-size: 1.05rem; }
.finance-bar { height: 8px; background: #e5e7eb; border-radius: 4px; margin-top: 24px; overflow: hidden; }
.finance-bar-fill { height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--accent), var(--primary)); }

/* ── Contact ── */
.contact { background: var(--bg-warm); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 60px; }
.contact-info-item { display: flex; gap: 16px; margin-bottom: 32px; }
.contact-info-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: rgba(26,58,92,0.08); display: flex; align-items: center;
    justify-content: center; flex-shrink: 0;
}
.contact-info-item h4 { font-family: 'Inter', sans-serif; font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; }
.contact-info-item p { font-size: 0.9rem; color: var(--text-light); }
.contact-form {
    background: #fff; border-radius: var(--radius); padding: 40px;
    box-shadow: var(--shadow); border: 1px solid var(--border);
}
.contact-form h3 { font-size: 1.5rem; margin-bottom: 8px; color: var(--primary); }
.contact-form > p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.form-group input, .form-group textarea, .form-group select {
    width: 100%; padding: 12px 16px; border: 1px solid var(--border);
    border-radius: 8px; font-size: 0.95rem; font-family: 'Inter', sans-serif;
    transition: border-color 0.2s; background: var(--bg-warm);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(26,58,92,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.btn-submit {
    width: 100%; padding: 14px; background: var(--primary); color: #fff;
    border: none; border-radius: 8px; font-size: 0.95rem; font-weight: 600;
    cursor: pointer; transition: all 0.2s; font-family: 'Inter', sans-serif;
}
.btn-submit:hover { background: var(--primary-light); }

/* ── Donate ── */
.donate-hero {
    padding: 0; position: relative;
    background: linear-gradient(135deg, rgba(15,31,51,0.9) 0%, rgba(26,58,92,0.85) 100%),
                url('https://images.unsplash.com/photo-1532629345422-7515f3d16bb6?w=1920&q=80&fit=crop') center/cover no-repeat;
}
.donate-hero-inner {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
    padding: 140px 0 100px;
}
.donate-hero-text { color: #fff; }
.donate-hero-text h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 20px; color: #fff; }
.donate-hero-text h1 span { color: var(--accent-light); }
.donate-hero-text p { font-size: 1.1rem; color: rgba(255,255,255,0.8); margin-bottom: 32px; }
.donate-hero-stats { display: flex; gap: 40px; margin-top: 40px; }
.donate-hero-stats .stat h3 {
    font-size: 1.75rem; color: var(--accent-light);
    font-family: 'Inter', sans-serif; font-weight: 800;
}
.donate-hero-stats .stat p { color: rgba(255,255,255,0.6); font-size: 0.8rem; margin-top: 4px; }

.donate-form-card {
    background: #fff; border-radius: var(--radius); padding: 40px;
    box-shadow: var(--shadow-lg); position: relative; z-index: 2;
}
.donate-form-card h3 { font-size: 1.5rem; margin-bottom: 8px; color: var(--primary); }
.donate-form-card > p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 24px; }

.amount-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 24px; }
.amount-btn {
    padding: 14px; border: 2px solid var(--border); border-radius: 8px;
    background: #fff; font-size: 1.1rem; font-weight: 700; color: var(--primary);
    cursor: pointer; transition: all 0.2s; font-family: 'Inter', sans-serif;
    text-align: center;
}
.amount-btn:hover, .amount-btn.selected {
    border-color: var(--accent); background: rgba(201,168,76,0.08); color: var(--accent);
}

.donate-type-tabs { display: flex; gap: 0; margin-bottom: 24px; border-radius: 8px; overflow: hidden; border: 1px solid var(--border); }
.donate-type-tab {
    flex: 1; padding: 12px; text-align: center; font-size: 0.9rem; font-weight: 600;
    background: #fff; border: none; cursor: pointer; transition: all 0.2s;
    font-family: 'Inter', sans-serif; color: var(--text-light);
}
.donate-type-tab.active { background: var(--primary); color: #fff; }

.donate-submit {
    width: 100%; padding: 16px; background: var(--accent); color: var(--bg-dark);
    border: none; border-radius: 8px; font-size: 1.05rem; font-weight: 700;
    cursor: pointer; transition: all 0.2s; font-family: 'Inter', sans-serif;
}
.donate-submit:hover { background: var(--accent-light); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(201,168,76,0.3); }

.donate-impact { background: var(--bg-warm); }
.impact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 60px; }
.impact-card {
    background: #fff; border-radius: var(--radius); padding: 40px 32px;
    box-shadow: var(--shadow); border: 1px solid var(--border); text-align: center;
    transition: all 0.3s;
}
.impact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.impact-card-img { width: 100%; height: 180px; object-fit: cover; border-radius: 8px; margin-bottom: 24px; }
.impact-amount {
    font-family: 'Inter', sans-serif; font-size: 2rem; font-weight: 800;
    color: var(--accent); margin-bottom: 8px;
}
.impact-card h3 { font-size: 1.15rem; margin-bottom: 12px; color: var(--primary); }
.impact-card p { font-size: 0.9rem; color: var(--text-light); }

.donate-faq { margin-top: 60px; }
.faq-item {
    border: 1px solid var(--border); border-radius: var(--radius);
    margin-bottom: 12px; overflow: hidden;
}
.faq-question {
    width: 100%; padding: 20px 24px; background: #fff; border: none;
    font-size: 1rem; font-weight: 600; color: var(--primary); text-align: left;
    cursor: pointer; font-family: 'Inter', sans-serif; display: flex;
    justify-content: space-between; align-items: center;
}
.faq-question:hover { background: var(--bg-warm); }
.faq-answer {
    padding: 0 24px; max-height: 0; overflow: hidden; transition: all 0.3s;
    font-size: 0.95rem; color: var(--text-light); line-height: 1.7;
}
.faq-item.open .faq-answer { padding: 0 24px 20px; max-height: 200px; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-chevron { transition: transform 0.3s; }

/* ── Social Icons (inline) ── */
.social-links { display: flex; gap: 12px; }
.social-link {
    width: 44px; height: 44px; border-radius: 10px;
    background: rgba(26,58,92,0.08); display: flex; align-items: center;
    justify-content: center; transition: all 0.2s; text-decoration: none;
}
.social-link:hover { background: rgba(26,58,92,0.15); transform: translateY(-2px); }

/* ── Footer ── */
footer {
    background: var(--bg-dark); color: rgba(255,255,255,0.7); padding: 80px 0 32px;
}
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
    padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-about { max-width: 320px; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer-logo svg { width: 40px; height: 40px; }
.footer-logo-text { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.1rem; color: #fff; }
.footer-about p { font-size: 0.9rem; line-height: 1.7; }
.footer-col h4 {
    font-family: 'Inter', sans-serif; font-size: 0.8rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px; color: var(--accent); margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--accent-light); }
.footer-social { display: flex; gap: 12px; margin-top: 24px; }
.footer-social a {
    width: 40px; height: 40px; border-radius: 10px;
    background: rgba(255,255,255,0.08); display: flex; align-items: center;
    justify-content: center; transition: all 0.2s;
}
.footer-social a:hover { background: var(--accent); transform: translateY(-2px); }
.footer-social a svg { width: 18px; height: 18px; fill: rgba(255,255,255,0.8); }
.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 32px; font-size: 0.8rem;
}
.footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-ein { font-size: 0.8rem; color: rgba(255,255,255,0.4); }

/* ── Animations ── */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 968px) {
    .about-grid, .transparency-grid, .contact-grid, .footer-grid, .mission-grid, .donate-hero-inner {
        grid-template-columns: 1fr; gap: 40px;
    }
    .programs-grid, .impact-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-item-tall { grid-row: span 1; }
    .hero-stats, .donate-hero-stats { gap: 32px; }
    .hero-visual { display: none; }
    .mission-image { height: 320px; }
    .donate-hero-inner { padding: 120px 0 60px; }
}
@media (max-width: 640px) {
    .nav-links { display: none; }
    .mobile-toggle { display: block; }
    .nav-links.active {
        display: flex; flex-direction: column; position: absolute;
        top: 72px; left: 0; right: 0; background: #fff;
        padding: 24px; gap: 16px; border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow);
    }
    .programs-grid, .impact-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
    .gallery-item-tall { grid-row: span 1; }
    .hero-stats, .donate-hero-stats { flex-direction: column; gap: 20px; }
    .hero-actions { flex-direction: column; }
    .form-row, .amount-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    section { padding: 64px 0; }
}
