/* =========================================
   TRIO-Oklahoma site styles
   Design tokens, base styles, components.
   ========================================= */

:root {
    --color-primary: #1e3a5f;
    --color-secondary: #2d5a87;
    --color-accent: #e67e22;
    --color-accent-hover: #d35400;
    --color-green: #27ae60;
    --color-teal: #16a085;
    --color-light: #f8fafc;
    --color-text: #1f2937;
    --color-muted: #6b7280;
    --color-muted-light: #9ca3af;
    --color-border: #e5e7eb;
    --color-white: #ffffff;
    --color-gray-100: #f3f4f6;
    --color-gray-900: #111827;

    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;

    --radius-sm: 0.75rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-full: 9999px;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    --content-max: 80rem;
}

/* ---------- Reset + base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-sans);
    color: var(--color-text);
    background: var(--color-light);
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
}

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

a { color: inherit; text-decoration: none; }

button {
    font-family: inherit;
    border: 0;
    background: none;
    cursor: pointer;
    color: inherit;
}

h1, h2, h3, h4 { margin: 0; line-height: 1.2; color: var(--color-primary); }

p { margin: 0; }

ul { list-style: none; padding: 0; margin: 0; }

/* ---------- Typography helpers ---------- */
.serif { font-family: var(--font-serif); font-weight: 700; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    background: rgba(30, 58, 95, 0.08);
    color: var(--color-primary);
}
.eyebrow--accent { background: rgba(230, 126, 34, 0.1); color: var(--color-accent); }
.eyebrow--green { background: rgba(39, 174, 96, 0.1); color: var(--color-green); }
.eyebrow--secondary { background: rgba(45, 90, 135, 0.1); color: var(--color-secondary); }
.eyebrow--on-dark { background: rgba(255, 255, 255, 0.1); color: #fff; border: 1px solid rgba(255, 255, 255, 0.2); }

/* ---------- Layout ---------- */
.container {
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 0 1rem;
}
@media (min-width: 640px)  { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.section { padding: 6rem 0; }
.section--light { background: var(--color-light); }
.section--white { background: var(--color-white); }

.section-head { text-align: center; margin-bottom: 4rem; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3rem); margin: 1rem 0; }
.section-head p { font-size: 1.25rem; color: var(--color-muted); max-width: 42rem; margin: 0 auto; }

.grid { display: grid; gap: 2rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }
@media (min-width: 768px) {
    .grid-2 { grid-template-columns: 1fr 1fr; }
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-4 { grid-template-columns: repeat(4, 1fr); }
}
.grid--wide { gap: 4rem; align-items: center; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1.75rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    transition: background-color 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}
.btn--primary { background: var(--color-primary); color: #fff; }
.btn--primary:hover { background: var(--color-secondary); }
.btn--accent { background: var(--color-accent); color: #fff; box-shadow: var(--shadow-lg); }
.btn--accent:hover { background: var(--color-accent-hover); }
.btn--light { background: #fff; color: var(--color-primary); box-shadow: var(--shadow-xl); }
.btn--light:hover { background: var(--color-gray-100); }
.btn--ghost-light { background: transparent; color: #fff; border: 2px solid #fff; }
.btn--ghost-light:hover { background: rgba(255, 255, 255, 0.1); }
.btn--lg { padding: 1rem 2rem; font-size: 1.125rem; }
.btn--xl { padding: 1.25rem 2.5rem; font-size: 1.25rem; }
.btn--sm { padding: 0.6rem 1.25rem; font-size: 0.875rem; }
.btn--block { display: flex; width: 100%; }

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--color-secondary);
    font-size: 0.875rem;
    transition: color 0.2s;
}
.btn-link:hover { color: var(--color-primary); }
.btn-link--accent { color: var(--color-accent); }
.btn-link--accent:hover { text-decoration: underline; }

.pulse { animation: pulse 2s infinite; }
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(230, 126, 34, 0.4); }
    50% { box-shadow: 0 0 0 15px rgba(230, 126, 34, 0); }
}

/* ---------- Cards ---------- */
.card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
}
.card--light { background: var(--color-light); }
.card--dark { background: var(--color-primary); color: #fff; }
.card--accent { background: var(--color-accent); color: #fff; }
.card--glass {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-xl);
}

.card-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: rgba(30, 58, 95, 0.1);
    color: var(--color-primary);
    font-size: 1.5rem;
}
.card-icon--accent { background: rgba(230, 126, 34, 0.1); color: var(--color-accent); }
.card-icon--teal   { background: rgba(22, 160, 133, 0.1); color: var(--color-teal); }

.hover-lift { transition: transform 0.3s, box-shadow 0.3s; }
.hover-lift:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

/* ---------- Navigation ---------- */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(229, 231, 235, 0.5);
    transition: box-shadow 0.3s;
}
.nav--scrolled { box-shadow: var(--shadow-md); }

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 5rem;
}

.nav-brand { display: flex; align-items: center; gap: 0.75rem; }
.nav-brand img { width: 3.5rem; height: 3.5rem; object-fit: contain; mix-blend-mode: multiply; }
.nav-brand h1 { font-size: 1.5rem; font-weight: 700; letter-spacing: -0.025em; }
.nav-brand p  { font-size: 0.75rem; color: var(--color-secondary); font-weight: 500; }

.nav-links { display: none; align-items: center; gap: 2rem; }
.nav-links a { color: #374151; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--color-primary); }
.nav-links .btn { padding: 0.625rem 1.5rem; font-size: 0.95rem; }

.nav-burger {
    display: inline-flex;
    font-size: 1.5rem;
    color: #374151;
}

.nav-mobile { display: none; background: #fff; border-top: 1px solid var(--color-gray-100); }
.nav-mobile.is-open { display: block; }
.nav-mobile-inner { padding: 1rem; display: flex; flex-direction: column; gap: 0.5rem; }
.nav-mobile a { padding: 0.5rem 0; color: #374151; font-weight: 500; }
.nav-mobile a.is-cta { color: var(--color-accent); font-weight: 700; }

@media (min-width: 768px) {
    .nav-links { display: flex; }
    .nav-burger { display: none; }
    .nav-mobile { display: none !important; }
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 5rem;
    overflow: hidden;
    color: #fff;
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a87 50%, #16a085 100%);
}
.hero-blobs { position: absolute; inset: 0; opacity: 0.1; pointer-events: none; }
.hero-blobs span {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}
.hero-blobs .blob-1 { top: 5rem; left: 2.5rem; width: 18rem; height: 18rem; background: #fff; }
.hero-blobs .blob-2 { bottom: 5rem; right: 2.5rem; width: 24rem; height: 24rem; background: var(--color-teal); }

.hero-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; position: relative; z-index: 1; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1fr 1fr; } }

.hero-copy { display: flex; flex-direction: column; gap: 2rem; }
.hero-copy h1 { font-family: var(--font-serif); color: #fff; font-size: clamp(2.5rem, 6vw, 4.5rem); line-height: 1.1; font-weight: 700; }
.hero-copy h1 .accent { color: var(--color-accent); }
.hero-copy p { font-size: 1.25rem; color: rgba(229, 231, 235, 0.95); max-width: 36rem; line-height: 1.6; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-stats { display: flex; align-items: center; gap: 2rem; padding-top: 1rem; }
.hero-stats .stat-value { font-size: 1.875rem; font-weight: 700; color: var(--color-accent); }
.hero-stats .stat-label { font-size: 0.875rem; color: rgba(255, 255, 255, 0.7); }
.hero-stats .divider { width: 1px; height: 3rem; background: rgba(255, 255, 255, 0.2); }

.hero-aside { display: none; position: relative; }
@media (min-width: 1024px) { .hero-aside { display: block; } }

.float { animation: float 6s ease-in-out infinite; }
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.meeting-card { max-width: 28rem; margin-left: auto; }
.meeting-card .meeting-head { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.meeting-card .meeting-head img { width: 4rem; height: 4rem; border-radius: var(--radius-md); object-fit: cover; box-shadow: var(--shadow-md); }
.meeting-card .meeting-head h3 { font-size: 1.125rem; color: var(--color-primary); }
.meeting-card .meeting-head p { color: var(--color-muted-light); font-size: 0.875rem; }
.meeting-card blockquote { margin: 0 0 1rem; color: var(--color-muted); font-style: italic; }
.meeting-card cite { display: block; text-align: right; font-size: 0.875rem; font-weight: 600; color: var(--color-secondary); font-style: normal; }
.meeting-card .meeting-foot {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-gray-100);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.meeting-card .meeting-when { display: flex; align-items: center; justify-content: space-between; }
.meeting-card .meeting-when span:first-child { color: var(--color-muted-light); font-size: 0.875rem; }
.meeting-card .meeting-when .tag {
    background: rgba(39, 174, 96, 0.1);
    color: var(--color-green);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
}

.donor-pill {
    position: absolute;
    bottom: -2rem;
    left: -2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    padding: 1rem;
    box-shadow: var(--shadow-xl);
    max-width: 18rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.donor-pill .dot {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(230, 126, 34, 0.1);
    color: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.donor-pill strong { color: var(--color-primary); }
.donor-pill small { color: var(--color-muted-light); font-size: 0.75rem; }

.hero-fade {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 8rem;
    background: linear-gradient(to top, var(--color-light), transparent);
    pointer-events: none;
}

/* ---------- About ---------- */
.about-copy > * + * { margin-top: 1.5rem; }
.about-copy h2 { font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 3rem); }
.about-copy p { font-size: 1.125rem; color: var(--color-muted); line-height: 1.7; }

.about-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; padding-top: 1rem; }
.about-highlights .card { padding: 1rem; background: var(--color-light); }
.about-highlights i { font-size: 1.5rem; color: var(--color-secondary); margin-bottom: 0.5rem; }
.about-highlights h4 { font-size: 1rem; margin-bottom: 0.25rem; }
.about-highlights p { font-size: 0.875rem; color: var(--color-muted-light); }

.about-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.about-gallery .col { display: flex; flex-direction: column; gap: 1rem; }
.about-gallery .col--offset { margin-top: 2rem; }
.about-gallery img { border-radius: var(--radius-md); height: 12rem; object-fit: cover; box-shadow: var(--shadow-md); width: 100%; }
.about-gallery .card--dark, .about-gallery .card--accent { padding: 1.5rem; }
.about-gallery .card i { font-size: 1.875rem; margin-bottom: 0.75rem; }
.about-gallery .card--dark i { color: var(--color-accent); }
.about-gallery .card h3 { color: #fff; font-size: 1.25rem; margin-bottom: 0.5rem; }
.about-gallery .card p { color: rgba(255, 255, 255, 0.85); font-size: 0.875rem; }

/* ---------- Team Oklahoma ---------- */
.section--team-ok { position: relative; overflow: hidden; }
.section--team-ok::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -25%;
    width: 30rem;
    height: 30rem;
    border-radius: 50%;
    background: rgba(30, 58, 95, 0.05);
    filter: blur(60px);
    z-index: 0;
}
.section--team-ok .container { position: relative; z-index: 1; }

.team-ok-head { text-align: center; margin-bottom: 4rem; }
.team-ok-head h2 { font-family: var(--font-serif); font-size: clamp(2.5rem, 6vw, 4rem); margin: 1rem 0; }
.team-ok-head p { color: var(--color-muted); font-size: 1.25rem; max-width: 42rem; margin: 0 auto; }

.team-ok-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 1024px) { .team-ok-grid { grid-template-columns: 2fr 1fr; } }

.mission-card { padding: 2rem; box-shadow: var(--shadow-lg); border-radius: var(--radius-lg); background: #fff; border: 1px solid var(--color-border); }
.mission-card-head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.mission-card-head .mission-mark {
    width: 4rem; height: 4rem; border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.875rem; color: var(--color-primary);
    background: linear-gradient(135deg, #87CEEB, #98FB98);
    box-shadow: var(--shadow-md);
}
.mission-card-head h3 { font-size: 1.5rem; }
.mission-card-head p  { color: var(--color-secondary); }
.mission-card > p { font-size: 1.125rem; color: #374151; line-height: 1.7; margin-bottom: 1.5rem; }
.callout {
    background: var(--color-light);
    border-left: 4px solid var(--color-accent);
    border-radius: var(--radius-sm);
    padding: 1.5rem;
    color: var(--color-muted);
    font-style: italic;
}

.team-features { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 1.5rem; }
@media (min-width: 768px) { .team-features { grid-template-columns: 1fr 1fr; } }
.team-features .card i { font-size: 1.875rem; color: var(--color-teal); margin-bottom: 1rem; }
.team-features .card h4 { font-size: 1.125rem; margin-bottom: 0.5rem; }
.team-features .card p { color: var(--color-muted); font-size: 0.875rem; }

.managers { background: var(--color-primary); color: #fff; border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-lg); }
.managers h3 { color: #fff; font-size: 1.5rem; margin-bottom: 1.5rem; }
.manager { display: flex; align-items: center; gap: 1rem; background: rgba(255,255,255,0.1); padding: 1rem; border-radius: var(--radius-sm); }
.manager + .manager { margin-top: 1rem; }
.manager .avatar {
    width: 3rem; height: 3rem; border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.25rem;
}
.manager strong { font-weight: 700; }
.manager small { color: rgba(255, 255, 255, 0.7); font-size: 0.875rem; }
.managers-foot { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.2); }

.tg-badge { text-align: center; padding: 1.5rem; background: #fff; border-radius: var(--radius-md); border: 1px solid var(--color-border); box-shadow: var(--shadow-md); }
.tg-badge i { font-size: 2.5rem; color: #f59e0b; margin-bottom: 0.75rem; }
.tg-badge h4 { font-size: 1.125rem; }
.tg-badge p { font-size: 0.875rem; color: var(--color-muted); margin-top: 0.5rem; }

/* ---------- Support (peer to peer) ---------- */
.support-cards { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .support-cards { grid-template-columns: repeat(3, 1fr); } }
.support-cards .card { background: var(--color-light); padding: 2rem; }
.support-cards h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.support-cards > .card > p { color: var(--color-muted); margin-bottom: 1.5rem; }

.meet-info { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; font-size: 0.875rem; font-weight: 600; color: var(--color-secondary); }
.meet-info div { display: flex; align-items: center; gap: 0.5rem; }

.join-community {
    margin-top: 4rem;
    background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-xl);
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}
@media (min-width: 1024px) { .join-community { grid-template-columns: 1fr 1fr; } }
.join-community h3 { font-family: var(--font-serif); color: #fff; font-size: 1.875rem; margin-bottom: 1rem; }
.join-community p { color: rgba(229, 231, 235, 0.95); font-size: 1.125rem; margin-bottom: 1.5rem; }
.join-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.contact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    text-align: center;
    max-width: 20rem;
    margin: 0 auto;
}
.contact-card i { font-size: 2.5rem; color: var(--color-accent); margin-bottom: 0.75rem; }
.contact-card strong { color: #fff; font-weight: 600; }
.contact-card small { display: block; color: rgba(255, 255, 255, 0.75); font-size: 0.875rem; margin-top: 0.25rem; }

/* ---------- Survey ---------- */
.survey-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center; }
@media (min-width: 1024px) { .survey-grid { grid-template-columns: 1fr 1fr; } }

.survey-copy h2 { font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 3rem); margin: 1rem 0 1.5rem; }
.survey-copy > p { font-size: 1.125rem; color: var(--color-muted); line-height: 1.7; margin-bottom: 1.5rem; }

.survey-bullets { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.survey-bullets .item { display: flex; align-items: center; gap: 1rem; background: #fff; padding: 1rem; border-radius: var(--radius-sm); border: 1px solid var(--color-border); box-shadow: var(--shadow-sm); }
.survey-bullets .item .mark {
    width: 3rem; height: 3rem; border-radius: 50%;
    background: rgba(30, 58, 95, 0.1); color: var(--color-primary);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.survey-bullets .item .mark--accent { background: rgba(230, 126, 34, 0.1); color: var(--color-accent); }
.survey-bullets h4 { font-size: 1rem; }
.survey-bullets small { color: var(--color-muted-light); font-size: 0.875rem; }

.survey-card { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-xl); }
.survey-card h3 { text-align: center; font-size: 1.5rem; margin-bottom: 2rem; }
.survey-bars { display: flex; flex-direction: column; gap: 1.5rem; }
.survey-bar .row { display: flex; justify-content: space-between; margin-bottom: 0.5rem; font-weight: 600; color: #374151; }
.survey-bar .row .pct { color: var(--color-primary); }
.survey-bar .track { height: 0.75rem; background: var(--color-gray-100); border-radius: var(--radius-full); overflow: hidden; }
.survey-bar .fill { height: 100%; border-radius: var(--radius-full); background: var(--color-primary); }
.survey-bar--secondary .fill { background: var(--color-secondary); } .survey-bar--secondary .pct { color: var(--color-secondary); }
.survey-bar--teal      .fill { background: var(--color-teal); }      .survey-bar--teal .pct { color: var(--color-teal); }
.survey-bar--accent    .fill { background: var(--color-accent); }    .survey-bar--accent .pct { color: var(--color-accent); }
.survey-caption { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--color-gray-100); text-align: center; font-size: 0.875rem; color: var(--color-muted-light); }

/* ---------- Blog ---------- */
.stories { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .stories { grid-template-columns: repeat(3, 1fr); } }

.story {
    background: var(--color-light);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.story-cover { height: 12rem; display: flex; align-items: center; justify-content: center; color: rgba(255, 255, 255, 0.3); font-size: 3.75rem; }
.story-cover--primary { background: linear-gradient(135deg, var(--color-primary), var(--color-secondary)); }
.story-cover--accent  { background: linear-gradient(135deg, var(--color-accent), #f59e0b); }
.story-cover--teal    { background: linear-gradient(135deg, var(--color-teal), var(--color-green)); }
.story-body { padding: 2rem; }
.story-meta { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--color-muted-light); margin-bottom: 0.75rem; }
.story h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.story p { color: var(--color-muted); margin-bottom: 1rem; }

/* ---------- Partners ---------- */
.partners-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; justify-items: center; }
@media (min-width: 768px) { .partners-grid { grid-template-columns: repeat(3, 1fr); } }
.partner {
    width: 100%;
    text-align: center;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
}
.partner i { font-size: 2.5rem; margin-bottom: 0.75rem; color: var(--color-secondary); }
.partner--teal i   { color: var(--color-teal); }
.partner--accent i { color: var(--color-accent); }
.partner strong { display: block; color: var(--color-primary); font-size: 0.875rem; }
.partner small { display: block; color: var(--color-muted-light); font-size: 0.75rem; margin-top: 0.25rem; }

/* ---------- Donate ---------- */
.donate {
    position: relative;
    background: var(--color-primary);
    color: #fff;
    overflow: hidden;
}
.donate .blobs { position: absolute; inset: 0; opacity: 0.1; }
.donate .blobs span { position: absolute; border-radius: 50%; filter: blur(60px); }
.donate .blobs .a { top: 0; left: 25%; width: 18rem; height: 18rem; background: var(--color-accent); }
.donate .blobs .b { bottom: 0; right: 25%; width: 24rem; height: 24rem; background: var(--color-teal); }

.donate-inner { position: relative; z-index: 1; max-width: 56rem; margin: 0 auto; text-align: center; }
.donate-inner > i { font-size: 3.75rem; color: var(--color-accent); margin-bottom: 1.5rem; animation: heartbeat 1.4s ease-in-out infinite; }
@keyframes heartbeat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }
.donate-inner h2 { font-family: var(--font-serif); color: #fff; font-size: clamp(2.5rem, 6vw, 4rem); margin-bottom: 1.5rem; }
.donate-inner > p { font-size: 1.25rem; color: rgba(229, 231, 235, 0.9); line-height: 1.6; margin-bottom: 2rem; }

.donate-actions { display: flex; flex-direction: column; gap: 1rem; justify-content: center; margin-bottom: 3rem; }
@media (min-width: 640px) { .donate-actions { flex-direction: row; } }

.donate-tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 32rem; margin: 0 auto; text-align: center; }
.donate-tiers .amount { font-size: 1.875rem; font-weight: 700; color: var(--color-accent); }
.donate-tiers small { display: block; font-size: 0.875rem; color: rgba(255, 255, 255, 0.6); }

/* ---------- Footer ---------- */
.footer { background: var(--color-gray-900); color: #fff; padding: 4rem 0; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; margin-bottom: 3rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }

.footer h3, .footer h4 { color: #fff; }
.footer h3 { font-size: 1.25rem; }
.footer h4 { font-size: 1.125rem; margin-bottom: 1rem; }

.footer .brand { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.footer .brand .mark { width: 2.5rem; height: 2.5rem; background: var(--color-primary); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; }
.footer .blurb { color: #9ca3af; font-size: 0.875rem; line-height: 1.6; }

.footer-links li + li { margin-top: 0.5rem; }
.footer-links a { color: #9ca3af; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }

.footer-contact li { display: flex; align-items: center; gap: 0.75rem; color: #9ca3af; }
.footer-contact li + li { margin-top: 0.75rem; }
.footer-contact i { color: var(--color-accent); }

.socials { display: flex; gap: 1rem; margin-top: 1.5rem; }
.socials a {
    width: 2.5rem; height: 2.5rem; border-radius: 50%;
    background: #1f2937; display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
}
.socials a:hover { background: var(--color-primary); }

.footer-bottom {
    border-top: 1px solid #1f2937;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: #6b7280;
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; } }
.footer-bottom nav { display: flex; gap: 1.5rem; }
.footer-bottom a:hover { color: #fff; }

/* ---------- Scroll fade ---------- */
.section-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.section-fade.is-visible {
    opacity: 1;
    transform: translateY(0);
}
