/* ============================================================
   REFUGEE AFFAIRS ACTION FUND — Global Stylesheet
   501(c)(4) Advocacy / Super PAC
   Palette: Deep Crimson / Warm White / Action Gold / Charcoal
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Bebas+Neue&family=Playfair+Display:wght@600;700&display=swap');

/* --- CSS Custom Properties --- */
:root {
    --crimson: #9b1c1c;
    --crimson-dark: #6b0f0f;
    --crimson-light: #c53030;
    --gold: #d4a017;
    --gold-light: #f0c84a;
    --charcoal: #1a1a2e;
    --charcoal-2: #16213e;
    --off-white: #f9f5f0;
    --white: #ffffff;
    --gray-100: #f5f6f8;
    --gray-200: #e8eaed;
    --gray-500: #6b7280;
    --gray-700: #374151;
    --text-main: #1a1a2e;
    --green: #15803d;

    --font-body: 'Inter', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --font-impact: 'Bebas Neue', sans-serif;

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, .08);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, .14);
    --shadow-lg: 0 24px 64px rgba(0, 0, 0, .22);

    --transition: all .3s cubic-bezier(.4, 0, .2, 1);

    --max-w: 1200px;
    --header-h: 80px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

/* --- Typography --- */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    line-height: 1.2;
    color: var(--charcoal);
}

h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(1.7rem, 3vw, 2.6rem);
}

h3 {
    font-size: clamp(1.2rem, 2vw, 1.55rem);
}

h4 {
    font-size: 1.1rem;
}

p {
    color: var(--gray-700);
    line-height: 1.85;
}

.section-label {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--crimson);
    display: block;
    margin-bottom: .85rem;
}

.impact-headline {
    font-family: var(--font-impact);
    letter-spacing: .04em;
    text-transform: uppercase;
    line-height: 1.05;
}

/* --- Layout --- */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 96px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.section-header p {
    margin-top: 16px;
    font-size: 1.05rem;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 34px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: .95rem;
    font-weight: 700;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
    letter-spacing: .02em;
}

.btn-action {
    background: var(--crimson);
    color: var(--white);
}

.btn-action:hover {
    background: var(--crimson-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(155, 28, 28, .4);
}

.btn-gold {
    background: var(--gold);
    color: var(--charcoal);
}

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(212, 160, 23, .38);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, .7);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--crimson);
    transform: translateY(-2px);
}

.btn-outline-dark {
    background: transparent;
    color: var(--charcoal);
    border-color: var(--charcoal);
}

.btn-outline-dark:hover {
    background: var(--charcoal);
    color: var(--white);
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-h);
    display: flex;
    align-items: center;
    background: rgba(26, 26, 46, .96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    transition: var(--transition);
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: var(--crimson);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.logo-text .name {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    display: block;
    line-height: 1.2;
}

.logo-text .sub {
    font-size: .6rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    display: block;
}

/* Nav */
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: .88rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .78);
    transition: var(--transition);
    position: relative;
    padding-bottom: 4px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--crimson-light);
    transition: width .3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-cta {
    background: var(--crimson) !important;
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-weight: 700 !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--crimson-light) !important;
    transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--charcoal);
    padding: 24px;
    z-index: 999;
    flex-direction: column;
    gap: 8px;
    box-shadow: var(--shadow-lg);
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav a {
    color: rgba(255, 255, 255, .82);
    font-size: 1rem;
    font-weight: 500;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    transition: var(--transition);
}

.mobile-nav a:hover,
.mobile-nav a.active {
    color: var(--gold);
}

.mobile-nav .nav-cta {
    margin-top: 8px;
    text-align: center;
    background: var(--crimson) !important;
    color: var(--white) !important;
    border-radius: var(--radius-sm);
    padding: 14px;
    border: none;
}

/* ============================================================
   URGENT ALERT BANNER
   ============================================================ */
.alert-banner {
    background: var(--crimson);
    color: var(--white);
    text-align: center;
    padding: 10px 24px;
    font-size: .85rem;
    font-weight: 600;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    z-index: 998;
    letter-spacing: .01em;
}

.alert-banner a {
    color: var(--gold-light);
    text-decoration: underline;
    margin-left: 8px;
}

.alert-banner .close-alert {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, .7);
    font-size: 1.1rem;
    cursor: pointer;
    line-height: 1;
}

/* Adjust hero top when alert is shown */
body.has-alert .hero {
    padding-top: 36px;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--charcoal);
    overflow: hidden;
    padding-top: var(--header-h);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/hero.png');
    background-size: cover;
    background-position: center 30%;
    opacity: .28;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, .95) 35%, rgba(155, 28, 28, .45) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(155, 28, 28, .25);
    border: 1px solid rgba(212, 160, 23, .5);
    border-radius: 4px;
    padding: 8px 18px;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
}

.hero-eyebrow::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .4;
        transform: scale(1.4);
    }
}

.hero-content h1 {
    color: var(--white);
    margin-bottom: 24px;
    font-size: clamp(2.4rem, 6vw, 4.5rem);
}

.hero-content h1 .accent {
    color: var(--gold);
}

.hero-content h1 .crimson {
    color: #f87171;
}

.hero-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, .76);
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.85;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Ticker */
.hero-ticker {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    background: var(--crimson);
    padding: 14px 0;
    overflow: hidden;
    white-space: nowrap;
}

.ticker-track {
    display: inline-flex;
    gap: 64px;
    animation: ticker 28s linear infinite;
}

@keyframes ticker {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.ticker-item {
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .9);
    display: inline-flex;
    align-items: center;
    gap: 16px;
}

.ticker-item::before {
    content: '★';
    color: var(--gold);
    font-size: .7rem;
}

/* ============================================================
   URGENCY / CALL-TO-ACTION STRIP
   ============================================================ */
.urgency-strip {
    background: var(--charcoal);
    padding: 56px 0;
    border-bottom: 3px solid var(--crimson);
}

.urgency-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: center;
}

.urgency-inner h2 {
    color: var(--white);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    margin-bottom: 8px;
}

.urgency-inner p {
    color: rgba(255, 255, 255, .65);
    font-size: .95rem;
}

.urgency-actions {
    display: flex;
    gap: 14px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

/* ============================================================
   ISSUE AREAS
   ============================================================ */
.issues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.issue-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.issue-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--crimson);
    transform: scaleX(0);
    transition: transform .3s ease;
    transform-origin: left;
}

.issue-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.issue-card:hover::after {
    transform: scaleX(1);
}

.issue-card-header {
    padding: 32px;
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-2) 100%);
}

.issue-card-header .icon {
    font-size: 2.4rem;
    margin-bottom: 14px;
}

.issue-card-header h3 {
    color: var(--white);
}

.issue-card-body {
    padding: 24px 32px 32px;
}

.issue-card-body p {
    font-size: .93rem;
    margin-bottom: 18px;
}

.issue-tag {
    display: inline-block;
    background: rgba(155, 28, 28, .08);
    border: 1px solid rgba(155, 28, 28, .2);
    color: var(--crimson);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
    margin-right: 6px;
    margin-bottom: 6px;
}

/* ============================================================
   URGENCY COUNTER / PETITION METRIC
   ============================================================ */
.petition-bar {
    background: var(--off-white);
    border-radius: var(--radius-md);
    padding: 32px 36px;
    margin: 48px 0;
    border: 1px solid var(--gray-200);
}

.petition-bar-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 14px;
    flex-wrap: wrap;
    gap: 8px;
}

.petition-bar-header h4 {
    font-size: 1rem;
}

.petition-count {
    font-family: var(--font-impact);
    font-size: 2rem;
    color: var(--crimson);
    letter-spacing: .04em;
}

.progress-track {
    height: 12px;
    background: var(--gray-200);
    border-radius: 100px;
    overflow: hidden;
    margin-bottom: 12px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--crimson) 0%, var(--crimson-light) 100%);
    border-radius: 100px;
    width: 0%;
    transition: width 2s cubic-bezier(.4, 0, .2, 1);
}

.progress-fill.animated {
    width: 73%;
}

.petition-bar-footer {
    font-size: .82rem;
    color: var(--gray-500);
}

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-2) 100%);
    color: var(--white);
}

.stats-section .section-header h2 {
    color: var(--white);
}

.stats-section .section-header p {
    color: rgba(255, 255, 255, .65);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2px;
    background: rgba(255, 255, 255, .06);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.stat-block {
    background: rgba(255, 255, 255, .04);
    padding: 48px 36px;
    text-align: center;
    transition: var(--transition);
}

.stat-block:hover {
    background: rgba(155, 28, 28, .25);
}

.stat-block .big {
    font-family: var(--font-impact);
    font-size: 3.2rem;
    color: var(--gold);
    letter-spacing: .04em;
    display: block;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-block p {
    color: rgba(255, 255, 255, .65);
    font-size: .88rem;
}

/* ============================================================
   CAMPAIGNS
   ============================================================ */
.campaigns-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.campaign-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: center;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 32px 36px;
    transition: var(--transition);
}

.campaign-row:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
    border-color: var(--crimson);
}

.campaign-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 10px;
}

.badge-active {
    background: rgba(21, 128, 61, .1);
    color: var(--green);
    border: 1px solid rgba(21, 128, 61, .25);
}

.badge-active::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    animation: pulse 1.5s ease-in-out infinite;
}

.badge-urgent {
    background: rgba(155, 28, 28, .1);
    color: var(--crimson);
    border: 1px solid rgba(155, 28, 28, .25);
}

.campaign-row h3 {
    margin-bottom: 8px;
}

.campaign-row p {
    font-size: .92rem;
    max-width: 650px;
}

.campaign-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
    min-width: 160px;
}

/* ============================================================
   FUNDING / DONATE
   ============================================================ */
.donate-section {
    background: var(--off-white);
}

.donate-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
    align-items: start;
}

.donate-pitch .section-label {
    margin-bottom: 12px;
}

.donate-pitch h2 {
    margin-bottom: 20px;
}

.donate-pitch p {
    margin-bottom: 16px;
}

.legal-disclaimer {
    background: rgba(155, 28, 28, .06);
    border-left: 4px solid var(--crimson);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 18px 22px;
    margin-top: 28px;
    font-size: .83rem;
    color: var(--gray-700);
    line-height: 1.7;
}

.donate-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 44px 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}

.donate-form-card h3 {
    margin-bottom: 6px;
}

.donate-form-card>p {
    color: var(--gray-500);
    font-size: .9rem;
    margin-bottom: 28px;
}

/* Amount buttons */
.amount-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.amt-btn {
    padding: 16px 8px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    background: none;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    color: var(--charcoal);
    transition: var(--transition);
    text-align: center;
}

.amt-btn.active,
.amt-btn:hover {
    border-color: var(--crimson);
    background: rgba(155, 28, 28, .06);
    color: var(--crimson);
}

.amt-desc {
    font-size: .72rem;
    color: var(--gray-500);
    margin-top: 3px;
    font-weight: 400;
}

/* ============================================================
   TAKE ACTION FORM (Petition)
   ============================================================ */
.action-form-wrap {
    background: linear-gradient(135deg, var(--crimson) 0%, var(--crimson-dark) 100%);
    border-radius: var(--radius-lg);
    padding: 48px 44px;
    color: var(--white);
}

.action-form-wrap h3 {
    color: var(--white);
    margin-bottom: 8px;
}

.action-form-wrap p {
    color: rgba(255, 255, 255, .75);
    margin-bottom: 28px;
    font-size: .95rem;
}

.action-form-wrap .form-group input,
.action-form-wrap .form-group select,
.action-form-wrap .form-group textarea {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .3);
    color: var(--white);
}

.action-form-wrap .form-group input::placeholder,
.action-form-wrap .form-group textarea::placeholder {
    color: rgba(255, 255, 255, .45);
}

.action-form-wrap .form-group input:focus,
.action-form-wrap .form-group textarea:focus {
    border-color: var(--gold);
    background: rgba(255, 255, 255, .18);
    box-shadow: 0 0 0 4px rgba(212, 160, 23, .2);
}

.action-form-wrap .form-group label {
    color: rgba(255, 255, 255, .8);
}

/* ============================================================
   TESTIMONIALS / STORIES
   ============================================================ */
.stories-section {
    background: var(--white);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.story-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.story-header {
    background: linear-gradient(135deg, var(--charcoal), var(--charcoal-2));
    padding: 28px;
}

.story-header .quote {
    font-size: 3rem;
    color: var(--crimson-light);
    line-height: 1;
    font-family: Georgia, serif;
    opacity: .5;
}

.story-body {
    padding: 24px 28px;
}

.story-body blockquote {
    font-size: .95rem;
    font-style: italic;
    color: var(--gray-700);
    margin-bottom: 20px;
    line-height: 1.8;
}

.story-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.story-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--crimson), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: .9rem;
    flex-shrink: 0;
}

.story-author .name {
    font-weight: 600;
    font-size: .9rem;
    color: var(--charcoal);
}

.story-author .meta {
    font-size: .78rem;
    color: var(--gray-500);
}

/* ============================================================
   PARTNERS / SUPPORTERS
   ============================================================ */
.partners-section {
    background: var(--gray-100);
    padding: 64px 0;
}

.partners-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.partner-logo {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-500);
    letter-spacing: .05em;
    transition: var(--transition);
    padding: 12px 24px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    background: var(--white);
}

.partner-logo:hover {
    color: var(--crimson);
    border-color: var(--crimson);
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
    padding: calc(var(--header-h) + 72px) 0 72px;
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-2) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(155, 28, 28, .2) 0%, transparent 70%);
    pointer-events: none;
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 18px;
}

.page-hero p {
    color: rgba(255, 255, 255, .7);
    max-width: 620px;
    margin: 0 auto;
    font-size: 1.05rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: .85rem;
}

.breadcrumb a {
    color: var(--gold);
}

.breadcrumb span {
    color: rgba(255, 255, 255, .35);
}

.breadcrumb .current {
    color: rgba(255, 255, 255, .65);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-img-wrap img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
    object-fit: cover;
    width: 100%;
}

.about-badge {
    position: relative;
    margin-top: -40px;
    margin-left: auto;
    margin-right: 20px;
    width: fit-content;
    background: var(--crimson);
    border-radius: var(--radius-md);
    padding: 20px 28px;
    box-shadow: var(--shadow-md);
    text-align: center;
    color: var(--white);
}

.about-badge .num {
    font-family: var(--font-impact);
    font-size: 2.5rem;
    color: var(--gold);
    display: block;
    line-height: 1;
}

.about-badge .lbl {
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .05em;
    margin-top: 4px;
}

/* ============================================================
   CONTACT / ACTION PAGE
   ============================================================ */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 64px;
    align-items: start;
}

.contact-info-card {
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-2) 100%);
    border-radius: var(--radius-md);
    padding: 48px 40px;
    color: var(--white);
    position: sticky;
    top: calc(var(--header-h) + 24px);
}

.contact-info-card h3 {
    color: var(--white);
    margin-bottom: 8px;
}

.contact-info-card>p {
    color: rgba(255, 255, 255, .65);
    margin-bottom: 36px;
    font-size: .94rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
}

.contact-detail .icon {
    width: 44px;
    height: 44px;
    background: rgba(155, 28, 28, .2);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-detail .label {
    font-size: .73rem;
    color: rgba(255, 255, 255, .45);
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.contact-detail .value {
    color: var(--white);
    font-weight: 500;
}

.contact-detail a.value {
    color: var(--gold);
}

/* ============================================================
   FORM ELEMENTS (global)
   ============================================================ */
.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    font-size: .84rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: .95rem;
    color: var(--text-main);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--crimson);
    box-shadow: 0 0 0 4px rgba(155, 28, 28, .08);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

/* Checkbox */
.check-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.check-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--crimson);
}

.check-group label {
    font-size: .88rem;
    color: var(--gray-700);
    font-weight: 400;
    cursor: pointer;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: #0d0d1a;
    color: rgba(255, 255, 255, .7);
    padding: 72px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.footer-brand p {
    font-size: .88rem;
    line-height: 1.8;
    max-width: 300px;
    color: rgba(255, 255, 255, .5);
    margin-top: 18px;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul a {
    font-size: .88rem;
    color: rgba(255, 255, 255, .5);
    transition: var(--transition);
}

.footer-col ul a:hover {
    color: var(--gold);
}

.footer-disclaimer {
    background: rgba(155, 28, 28, .15);
    border-top: 1px solid rgba(155, 28, 28, .3);
    padding: 20px 0;
    margin-top: 0;
}

.footer-disclaimer p {
    font-size: .78rem;
    color: rgba(255, 255, 255, .4);
    line-height: 1.7;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    font-size: .8rem;
    color: rgba(255, 255, 255, .3);
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom a {
    color: rgba(255, 255, 255, .45);
}

.footer-bottom a:hover {
    color: var(--gold);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .65s ease, transform .65s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger>*:nth-child(1) {
    transition-delay: .05s;
}

.stagger>*:nth-child(2) {
    transition-delay: .13s;
}

.stagger>*:nth-child(3) {
    transition-delay: .21s;
}

.stagger>*:nth-child(4) {
    transition-delay: .29s;
}

.stagger>*:nth-child(5) {
    transition-delay: .37s;
}

.stagger>*:nth-child(6) {
    transition-delay: .45s;
}

/* ============================================================
   UTILITY
   ============================================================ */
.text-center {
    text-align: center;
}

.mt-32 {
    margin-top: 32px;
}

.bg-off-white {
    background: var(--off-white);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .donate-layout {
        grid-template-columns: 1fr;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-info-card {
        position: static;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .urgency-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --header-h: 70px;
    }

    section {
        padding: 64px 0;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .campaign-row {
        grid-template-columns: 1fr;
    }

    .campaign-actions {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .amount-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}