/* =============================================================================
   Aid Via Action — main stylesheet
   Theme: medical blue + Guatemala sky-blue, with a warm coral Donate accent.
   ========================================================================== */

:root {
    --navy:       #0e3a5f;
    --blue:       #155f9e;
    --blue-600:   #1a72bd;
    --sky:        #4a9fd8;
    --sky-soft:   #eaf3fb;
    --soft:       #f4f8fc;
    --accent:     #ef6f4c;   /* coral — Donate */
    --accent-dark:#d9542f;
    --ink:        #16242f;
    --muted:      #5b6b78;
    --line:       #e2e8f0;
    --white:      #ffffff;

    --radius:     16px;
    --radius-sm:  10px;
    --shadow:     0 10px 30px rgba(14, 58, 95, 0.08);
    --shadow-lg:  0 24px 50px rgba(14, 58, 95, 0.15);
    --maxw:       1180px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--ink);
    line-height: 1.65;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .brand-text {
    font-family: 'Sora', 'Inter', sans-serif;
    line-height: 1.15;
    color: var(--navy);
    letter-spacing: -0.01em;
}

a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--accent-dark); }

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

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 5%; }
.container.narrow { max-width: 820px; }
.center { text-align: center; }
.muted { color: var(--muted); }
.small { font-size: 0.86rem; }
code { background: var(--sky-soft); padding: 0.1rem 0.4rem; border-radius: 5px; font-size: 0.85em; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-block;
    padding: 0.85rem 1.7rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.98rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-block { display: block; width: 100%; text-align: center; }
.btn-sm { padding: 0.5rem 1.1rem; font-size: 0.9rem; }

.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary:hover { background: var(--navy); color: var(--white); box-shadow: var(--shadow); }

.btn-accent { background: var(--accent); color: var(--white); }
.btn-accent:hover { background: var(--accent-dark); color: var(--white); box-shadow: var(--shadow); }

.btn-outline { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline:hover { background: var(--blue); color: var(--white); }

.btn-light { background: var(--white); color: var(--blue); }
.btn-light:hover { background: var(--sky-soft); color: var(--navy); }

.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.7); }
.btn-outline-light:hover { background: rgba(255,255,255,0.12); color: var(--white); }

.btn-text { background: none; color: var(--blue); padding: 0.4rem 0; font-weight: 600; }
.btn-text:hover { color: var(--accent-dark); transform: none; }

/* ---------- Header / Nav ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
    gap: 1rem;
}

.brand { display: flex; align-items: center; gap: 0.65rem; flex-shrink: 0; }
.brand-badge {
    background: var(--blue);
    color: var(--white);
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    width: 46px; height: 46px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 13px;
    border: 2px solid var(--sky);
    flex-shrink: 0;
}
.brand-text {
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.1;
}
.brand-text strong { color: var(--sky); }

.nav-links { list-style: none; display: flex; align-items: center; gap: 1.25rem; }
.nav-links a { color: var(--ink); font-weight: 500; font-size: 0.94rem; }
.nav-links a:hover, .nav-links a.active { color: var(--blue); }
.nav-links a.active { font-weight: 700; }
.nav-links .nav-cta {
    background: var(--accent);
    color: var(--white) !important;
    font-weight: 700;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
}
.nav-links .nav-cta:hover { background: var(--accent-dark); }

.nav-toggle {
    display: none;
    background: none; border: none;
    font-size: 1.6rem; color: var(--blue);
    cursor: pointer;
}

/* ---------- Sections ---------- */
.section { padding: 4.5rem 0; }
.section--soft { background: var(--soft); }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 2.8rem; }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 0.6rem; }
.section-head p { color: var(--muted); font-size: 1.05rem; }

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--sky);
    margin-bottom: 0.8rem;
}

/* ---------- Hero ---------- */
.hero {
    background:
        radial-gradient(circle at 85% 12%, rgba(74,159,216,0.20) 0%, transparent 48%),
        linear-gradient(180deg, var(--sky-soft) 0%, var(--white) 100%);
    padding: 4.5rem 0 5rem;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}
.hero-copy h1 {
    font-size: clamp(2.2rem, 4.6vw, 3.4rem);
    margin-bottom: 1.1rem;
}
.hero-copy h1 span { color: var(--sky); }
.lead { font-size: 1.14rem; color: var(--muted); margin-bottom: 1.8rem; max-width: 40em; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-actions.center-actions { justify-content: center; }
.hero-note { margin-top: 1.1rem; font-size: 0.9rem; color: var(--muted); }

/* Guatemala-flag inspired hero card */
.flag-card {
    display: grid;
    grid-template-columns: 1fr 1.3fr 1fr;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    min-height: 320px;
    position: relative;
    border: 8px solid #fff;
    outline: 1px solid var(--line);
}
.flag-stripe { display: flex; align-items: center; justify-content: center; }
.flag-blue { background: linear-gradient(160deg, var(--sky) 0%, var(--blue) 100%); }
.flag-white { background: var(--white); }
.flag-emblem { font-size: 4rem; color: var(--blue); opacity: 0.9; }
.flag-caption {
    position: absolute;
    bottom: 14px; left: 0; right: 0;
    text-align: center;
    font-size: 0.85rem; font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.04em;
}

/* ---------- Stats band ---------- */
.stats-band { background: var(--navy); color: var(--white); padding: 2.5rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.stat { text-align: center; }
.stat-value { font-family: 'Sora', sans-serif; font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; color: var(--white); }
.stat-label { font-size: 0.9rem; color: rgba(255,255,255,0.75); margin-top: 0.2rem; }

/* ---------- Intro quote ---------- */
.quote-lead {
    font-size: clamp(1.4rem, 3vw, 2rem);
    line-height: 1.4;
    color: var(--navy);
    margin-bottom: 1.2rem;
}
.muted-lead { color: var(--muted); font-size: 1.08rem; max-width: 46em; margin: 0 auto; }

/* ---------- Value cards ---------- */
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.value-grid--3 { grid-template-columns: repeat(3, 1fr); }
.value-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 2rem 1.7rem;
    box-shadow: var(--shadow);
}
.value-icon {
    font-size: 1.8rem;
    width: 60px; height: 60px;
    display: flex; align-items: center; justify-content: center;
    background: var(--sky-soft);
    border-radius: 14px;
    margin-bottom: 1rem;
}
.value-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.value-card p { color: var(--muted); font-size: 0.96rem; }

/* ---------- Impact tiles ---------- */
.impact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; margin-bottom: 2rem; }
.impact-tile {
    background: var(--white);
    border: 1px solid var(--line);
    border-top: 4px solid var(--sky);
    border-radius: var(--radius-sm);
    padding: 1.5rem 1rem;
    text-align: center;
    box-shadow: var(--shadow);
}
.impact-count { font-family: 'Sora', sans-serif; font-size: 2.2rem; font-weight: 800; color: var(--blue); }
.impact-label { font-size: 0.88rem; color: var(--muted); margin-top: 0.3rem; }

/* ---------- Image placeholders / gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-bottom: 1.5rem; }
.img-placeholder {
    background:
        repeating-linear-gradient(45deg, var(--sky-soft) 0 18px, #f4f9fd 18px 36px);
    border: 2px dashed var(--sky);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--blue);
    text-align: center;
    padding: 1.5rem;
    min-height: 200px;
}
.img-placeholder .ph-icon { font-size: 2.6rem; line-height: 1; }
.img-placeholder .ph-text { font-size: 0.85rem; font-weight: 600; opacity: 0.9; max-width: 16em; }
.img-placeholder--tall { min-height: 320px; height: 100%; }

/* ---------- Split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.split-copy h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 1rem; }
.split-copy p { color: var(--muted); margin-bottom: 1rem; }
.split-copy .btn { margin-top: 0.5rem; }

.check-list { list-style: none; margin: 1.2rem 0; }
.check-list li { position: relative; padding-left: 1.9rem; margin-bottom: 0.6rem; color: var(--ink); }
.check-list li::before {
    content: '✓';
    position: absolute; left: 0; top: 0.15rem;
    color: var(--white);
    background: var(--sky);
    width: 1.3rem; height: 1.3rem;
    border-radius: 50%;
    font-size: 0.8rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
}

/* ---------- Objectives ---------- */
.objective-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.8rem; }
.objective-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
}
.objective-card h3 { font-size: 1.25rem; margin-bottom: 0.4rem; color: var(--blue); }

/* ---------- Team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.team-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.8rem 1.3rem;
    text-align: center;
    box-shadow: var(--shadow);
}
.team-avatar {
    width: 72px; height: 72px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: linear-gradient(160deg, var(--sky) 0%, var(--blue) 100%);
    color: var(--white);
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    display: flex; align-items: center; justify-content: center;
}
.team-card h3 { font-size: 1.02rem; margin-bottom: 0.2rem; }
.team-role { color: var(--muted); font-size: 0.9rem; }

/* ---------- Data table ---------- */
.data-table-wrap { max-width: 640px; margin: 0 auto; overflow-x: auto; }
.data-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.data-table th, .data-table td { padding: 0.85rem 1.3rem; text-align: left; }
.data-table thead th { background: var(--navy); color: var(--white); font-family: 'Sora', sans-serif; font-size: 0.9rem; }
.data-table th:last-child, .data-table td:last-child { text-align: right; }
.data-table tbody tr { border-top: 1px solid var(--line); }
.data-table tbody tr:nth-child(even) { background: var(--soft); }
.data-table td { color: var(--ink); }
.data-table tfoot td { border-top: 2px solid var(--sky); font-weight: 800; color: var(--navy); background: var(--sky-soft); }

/* ---------- Criteria list ---------- */
.criteria-list { max-width: 760px; margin: 0 auto; counter-reset: crit; list-style: none; }
.criteria-list li {
    position: relative;
    padding: 0.7rem 0 0.7rem 3rem;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
}
.criteria-list li::before {
    counter-increment: crit;
    content: counter(crit);
    position: absolute; left: 0; top: 0.65rem;
    width: 2rem; height: 2rem;
    background: var(--sky-soft);
    color: var(--blue);
    border-radius: 50%;
    font-weight: 800; font-size: 0.9rem;
    display: flex; align-items: center; justify-content: center;
}

/* ---------- Notice ---------- */
.notice {
    background: var(--sky-soft);
    border: 1px solid var(--line);
    border-left: 5px solid var(--sky);
    border-radius: var(--radius);
    padding: 1.4rem 1.8rem;
    margin-top: 2rem;
}
.notice p { color: var(--ink); }
.notice--center { text-align: center; max-width: 620px; margin-left: auto; margin-right: auto; }
.notice--warn { background: #fff6f0; border-left-color: var(--accent); }

/* ---------- Donors ---------- */
.donor-year { margin-bottom: 2.5rem; }
.donor-year-head {
    font-size: 1.4rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--sky);
    margin-bottom: 1.2rem;
    color: var(--blue);
}
.donor-list { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem 1.5rem; }
.donor-list li { color: var(--ink); padding: 0.25rem 0; border-bottom: 1px dotted var(--line); font-size: 0.96rem; }

/* ---------- Sponsors ---------- */
.sponsor-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; max-width: 880px; margin: 0 auto; }
.sponsor-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 1.3rem;
}
.sponsor-logo {
    width: 64px; height: 64px;
    flex-shrink: 0;
    border-radius: 14px;
    background: var(--sky-soft);
    color: var(--blue);
    font-family: 'Sora', sans-serif;
    font-weight: 800; font-size: 1.6rem;
    display: flex; align-items: center; justify-content: center;
}
.sponsor-card h3 { font-size: 1.1rem; margin-bottom: 0.2rem; }
.sponsor-card p { color: var(--muted); font-size: 0.92rem; }

/* ---------- Detail cards (5K) ---------- */
.detail-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.detail-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.8rem;
    text-align: center;
    box-shadow: var(--shadow);
}
.detail-icon { font-size: 2.2rem; margin-bottom: 0.6rem; }
.detail-card h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.detail-card p { color: var(--muted); font-size: 0.95rem; }

/* ---------- Tier cards ---------- */
.tier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; margin-bottom: 2.5rem; }
.tier-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-top: 5px solid var(--sky);
    border-radius: var(--radius);
    padding: 1.8rem;
    box-shadow: var(--shadow);
}
.tier-card h3 { font-size: 1.3rem; margin-bottom: 0.8rem; }
.tier-card--diamond { border-top-color: #6cc4d6; }
.tier-card--platinum { border-top-color: #9aa7b4; }
.tier-card--gold { border-top-color: #e3b34d; }
.tier-card .check-list { margin: 0; }
.tier-card .check-list li { font-size: 0.93rem; }

/* ---------- Timeline ---------- */
.timeline { list-style: none; }
.timeline-item {
    display: flex;
    align-items: baseline;
    gap: 1.2rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
}
.timeline-year {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    color: var(--sky);
    font-size: 1.2rem;
    min-width: 4rem;
}
.timeline-body { color: var(--ink); }

/* ---------- Events ---------- */
.event-list { display: flex; flex-direction: column; gap: 1.4rem; max-width: 860px; margin: 0 auto; }
.event-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.8rem;
    box-shadow: var(--shadow);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}
.event-icon {
    font-size: 1.8rem;
    width: 60px; height: 60px;
    flex-shrink: 0;
    background: var(--sky-soft);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
}
.event-body h3 { font-size: 1.25rem; margin-bottom: 0.25rem; }
.event-meta { color: var(--sky); font-weight: 600; font-size: 0.88rem; margin-bottom: 0.5rem; }
.event-body p { color: var(--muted); }

/* ---------- Donate ---------- */
.donate-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    text-align: center;
}
.donate-card h2 { font-size: 1.5rem; margin-bottom: 0.4rem; }
.amount-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.8rem; margin: 1.6rem 0; }
.amount-chip {
    border: 2px solid var(--line);
    border-radius: 50px;
    padding: 0.7rem 1.6rem;
    font-weight: 700;
    color: var(--blue);
    font-size: 1.05rem;
    transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.amount-chip:hover { border-color: var(--accent); background: var(--accent); color: var(--white); transform: translateY(-2px); }
.amount-chip--custom { color: var(--muted); }
.donate-card .btn-block { margin: 0.5rem 0 1.2rem; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
    background: linear-gradient(180deg, var(--sky-soft) 0%, var(--white) 100%);
    padding: 3.8rem 0 2.8rem;
    text-align: center;
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 2.9rem); margin-bottom: 0.8rem; }
.page-hero .lead { margin-left: auto; margin-right: auto; }
.page-hero--race { background: linear-gradient(180deg, #eaf6ef 0%, var(--white) 100%); }
.page-hero--donate { background: linear-gradient(180deg, #fdeee7 0%, var(--white) 100%); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 3rem; align-items: start; }
.info-block { margin-bottom: 1.6rem; }
.info-block h3 { font-size: 1.05rem; margin-bottom: 0.3rem; }
.info-block p { color: var(--muted); }
.info-block.notice { margin-top: 1rem; }

.contact-form-wrap {
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
}
.contact-form-wrap h2 { font-size: 1.4rem; margin-bottom: 1.3rem; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 0.35rem; color: var(--navy); }
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.97rem;
    background: var(--white);
    color: var(--ink);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(21,95,158,0.12);
}
.contact-form textarea { resize: vertical; }
.contact-form .btn { margin-top: 0.4rem; }
.errorlist { list-style: none; color: #b3261e; font-size: 0.85rem; margin-top: 0.3rem; }

/* ---------- Alerts ---------- */
.alert { padding: 1rem 1.3rem; border-radius: var(--radius-sm); margin: 1.5rem 0; font-weight: 500; }
.alert-success { background: #e7f4ec; color: #1c5638; border: 1px solid #bfe3cd; }
.alert-error { background: #fbeae8; color: #b3261e; border: 1px solid #f3cfcb; }

/* ---------- CTA band ---------- */
.cta-band {
    background:
        radial-gradient(circle at 85% 0%, rgba(74,159,216,0.35) 0%, transparent 50%),
        var(--navy);
    color: var(--white);
    padding: 3.5rem 0;
}
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-band h2 { color: var(--white); font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 0.4rem; max-width: 22em; }
.cta-band p { color: rgba(255,255,255,0.85); }
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.82); padding: 3.5rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 2rem; padding-bottom: 2.5rem; }
.brand--footer .brand-text { color: var(--white); }
.brand--footer .brand-text strong { color: var(--sky); }
.brand--footer .brand-badge { border-color: var(--sky); }
.footer-tagline { margin-top: 1rem; font-size: 0.92rem; color: rgba(255,255,255,0.72); max-width: 24em; }
.footer-social { margin-top: 1rem; display: flex; gap: 1rem; }
.footer-social a { color: var(--sky); font-weight: 600; font-size: 0.9rem; }
.footer-social a:hover { color: var(--white); }
.site-footer h4 { color: var(--white); font-size: 0.95rem; letter-spacing: 0.02em; margin-bottom: 0.9rem; }
.site-footer p { font-size: 0.9rem; margin-bottom: 0.6rem; }
.site-footer a { color: rgba(255,255,255,0.82); }
.site-footer a:hover { color: var(--sky); }
.footer-links { list-style: none; }
.footer-links li { padding: 0.28rem 0; font-size: 0.9rem; }
.footer-legal { font-size: 0.8rem; color: rgba(255,255,255,0.6); line-height: 1.5; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.15); padding-top: 1.3rem; }
.footer-bottom p { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin: 0; }

/* =============================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-media { order: -1; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.8rem 1rem; }
    .value-grid, .value-grid--3 { grid-template-columns: repeat(2, 1fr); }
    .impact-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .tier-grid, .detail-grid { grid-template-columns: 1fr; }
    .donor-list { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
    .nav-toggle { display: block; }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%; left: 0; right: 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        background: var(--white);
        border-bottom: 1px solid var(--line);
        padding: 0.5rem 5% 1rem;
        box-shadow: var(--shadow);
    }
    .nav-links.open { display: flex; }
    .nav-links li { width: 100%; padding: 0.5rem 0; }
    .nav-links .nav-cta { display: inline-block; margin-top: 0.4rem; }

    .split, .objective-grid, .sponsor-grid, .contact-grid { grid-template-columns: 1fr; }
    .value-grid, .value-grid--3, .impact-grid, .team-grid, .donor-list { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .event-card { flex-direction: column; gap: 1rem; }
    .cta-inner { flex-direction: column; text-align: center; align-items: center; }
    .footer-grid { grid-template-columns: 1fr; }
}
