/* ===== CSS VARIABLES ===== */
:root {
  --navy: #0d2659;
  --navy-light: #1a3a7a;
  --navy-dark: #081640;
  --gold: #c9a227;
  --gold-light: #e8bb3a;
  --cream: #f8f7f4;
  --white: #ffffff;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --gray-800: #1f2937;
  --text: #1a1a2e;
  --text-light: #4b5563;
  --pride-red: #e40303;
  --pride-orange: #ff8c00;
  --pride-yellow: #ffed00;
  --pride-green: #008026;
  --pride-blue: #004dff;
  --pride-purple: #750787;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 12px;
  --radius-sm: 6px;
  --shadow: 0 4px 24px rgba(13, 38, 89, 0.10);
  --shadow-lg: 0 12px 48px rgba(13, 38, 89, 0.18);
  --transition: 0.25s ease;
  --max-width: 1200px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.7; font-size: 1rem; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }

/* ===== LAYOUT ===== */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }
.section { padding: 5rem 0; }
.bg-light { background: var(--cream); }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: 1.3rem; font-weight: 700; }
p { color: var(--text-light); line-height: 1.8; }

.eyebrow { display: inline-block; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; }
.eyebrow.light { color: var(--gold-light); }
.section-header { margin-bottom: 3rem; }
.section-header.center { text-align: center; }
.section-header.center h2 { margin: 0 auto; max-width: 600px; }
.section-sub { margin-top: 1rem; font-size: 1.1rem; max-width: 600px; }
.section-header.center .section-sub { margin: 1rem auto 0; }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.85rem 2rem; border-radius: 50px; font-weight: 600; font-size: 0.95rem; transition: all var(--transition); cursor: pointer; text-decoration: none; white-space: nowrap; }
.btn-primary { background: var(--gold); color: var(--navy-dark); box-shadow: 0 4px 16px rgba(201,162,39,0.35); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,162,39,0.45); }
.btn-outline { border: 2px solid rgba(255,255,255,0.7); color: white; }
.btn-outline:hover { background: rgba(255,255,255,0.15); border-color: white; }
.btn-outline-light { border: 2px solid var(--gold-light); color: var(--gold-light); display: inline-flex; align-items: center; padding: 0.85rem 2rem; border-radius: 50px; font-weight: 600; font-size: 0.95rem; transition: all var(--transition); margin-top: 1.5rem; }
.btn-outline-light:hover { background: rgba(232,187,58,0.15); }
.btn-sm { padding: 0.6rem 1.4rem; font-size: 0.85rem; background: var(--navy); color: white; border-radius: 50px; font-weight: 600; transition: all var(--transition); white-space: nowrap; align-self: center; }
.btn-sm:hover { background: var(--navy-light); transform: translateY(-1px); }
.btn-large { padding: 1.1rem 2.5rem; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

/* ===== NAV ===== */
.nav-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: transparent; transition: all 0.3s ease; padding: 1rem 0; }
.nav-header.scrolled { background: rgba(13,38,89,0.97); backdrop-filter: blur(12px); padding: 0.6rem 0; box-shadow: 0 4px 20px rgba(0,0,0,0.2); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo img { height: 56px; width: auto; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3)); transition: transform var(--transition); }
.nav-logo:hover img { transform: scale(1.04); }
.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-links a { color: rgba(255,255,255,0.9); font-weight: 500; font-size: 0.9rem; padding: 0.5rem 0.85rem; border-radius: 6px; transition: all var(--transition); }
.nav-links a:hover { color: white; background: rgba(255,255,255,0.1); }
.nav-cta { background: var(--gold) !important; color: var(--navy-dark) !important; border-radius: 50px !important; padding: 0.5rem 1.4rem !important; font-weight: 700 !important; margin-left: 0.5rem; }
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 0.5rem; }
.hamburger span { display: block; width: 24px; height: 2px; background: white; border-radius: 2px; transition: all 0.3s; }

/* ===== HERO ===== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding-top: 5rem; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, #1a3a7a 100%); }
.hero-bg::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 50%, rgba(201,162,39,0.12) 0%, transparent 65%), radial-gradient(ellipse at 20% 80%, rgba(117,7,135,0.15) 0%, transparent 50%); }
.rainbow-bar { position: absolute; top: 0; left: 0; right: 0; height: 5px; background: linear-gradient(90deg, var(--pride-red) 0%, var(--pride-orange) 20%, var(--pride-yellow) 37%, var(--pride-green) 53%, var(--pride-blue) 70%, var(--pride-purple) 100%); z-index: 10; }
.hero-content { position: relative; z-index: 2; max-width: 760px; padding: 4rem 2rem; animation: fadeUp 0.9s ease both; }
.hero-badge { display: inline-block; background: rgba(201,162,39,0.2); border: 1px solid rgba(201,162,39,0.4); color: var(--gold-light); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.45rem 1.1rem; border-radius: 50px; margin-bottom: 1.5rem; }
.hero h1 { color: white; margin-bottom: 1.5rem; text-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.hero-sub { color: rgba(255,255,255,0.82); font-size: 1.15rem; margin-bottom: 2.5rem; max-width: 580px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-wave { position: absolute; bottom: -1px; left: 0; right: 0; z-index: 3; }
.hero-wave svg { width: 100%; height: 80px; }

/* ===== STATS ===== */
.stats-band { background: var(--cream); padding: 3.5rem 0; border-bottom: 1px solid var(--gray-200); }
.stats-grid { display: flex; align-items: center; justify-content: space-around; gap: 1rem; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0.5rem 1.5rem; }
.stat-num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 900; color: var(--navy); line-height: 1; }
.stat-label { font-size: 0.82rem; color: var(--text-light); max-width: 160px; margin-top: 0.4rem; line-height: 1.4; }
.stat-divider { width: 1px; height: 60px; background: var(--gray-200); }

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: center; }
.about-img-block { position: relative; display: flex; align-items: center; justify-content: center; }
.about-color-block { position: absolute; width: 340px; height: 340px; border-radius: 50%; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); opacity: 0.08; }
.about-logo-large { position: relative; width: 320px; height: 320px; object-fit: contain; filter: drop-shadow(0 16px 48px rgba(13,38,89,0.25)); }
.about-text h2 { margin: 0.5rem 0 1.5rem; }
.about-text p { margin-bottom: 1.1rem; }
.about-text .btn { margin-top: 0.5rem; }

/* ===== MISSION ===== */
.mission { background: var(--navy-dark); }
.mission .eyebrow { color: var(--gold-light); }
.mission h2 { color: white; }
.mission-statement { background: rgba(255,255,255,0.06); border-left: 4px solid var(--gold); border-radius: 0 var(--radius) var(--radius) 0; padding: 2rem 2.5rem; margin: 2rem 0 3.5rem; }
.mission-text { font-family: var(--font-display); font-size: 1.3rem; color: rgba(255,255,255,0.92); font-style: italic; line-height: 1.6; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.value-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); padding: 2rem 1.5rem; transition: all var(--transition); }
.value-card:hover { background: rgba(255,255,255,0.09); transform: translateY(-4px); border-color: rgba(201,162,39,0.3); }
.value-icon { font-size: 2rem; margin-bottom: 1rem; }
.value-card h3 { color: white; margin-bottom: 0.75rem; }
.value-card p { color: rgba(255,255,255,0.65); font-size: 0.92rem; }

/* ===== PROGRAMS ===== */
.programs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.program-card { background: white; border-radius: var(--radius); padding: 2rem 1.5rem; box-shadow: var(--shadow); transition: all var(--transition); display: flex; flex-direction: column; }
.program-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.program-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 1.25rem; }
.program-card h3 { margin-bottom: 0.75rem; color: var(--navy); }
.program-card p { font-size: 0.9rem; flex: 1; }
.program-tag { display: inline-block; margin-top: 1.25rem; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--navy); background: var(--cream); padding: 0.3rem 0.8rem; border-radius: 50px; }
.program-link { display: inline-block; margin-top: 1rem; font-size: 0.88rem; font-weight: 600; color: var(--navy); transition: color var(--transition); }
.program-link:hover { color: var(--gold); }

/* ===== EVENTS ===== */
.events { background: white; }
.events-list { display: flex; flex-direction: column; gap: 1.25rem; }
.event-card { display: flex; align-items: flex-start; gap: 2rem; background: white; border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 1.75rem 2rem; box-shadow: var(--shadow); transition: all var(--transition); }
.event-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); border-color: var(--gold); }
.featured-event { border-color: var(--gold); border-width: 2px; background: #fffdf5; }
.event-date { display: flex; flex-direction: column; align-items: center; min-width: 64px; background: var(--navy); border-radius: var(--radius-sm); padding: 0.6rem; color: white; }
.event-month { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.75; }
.event-day { font-family: var(--font-display); font-size: 2rem; font-weight: 900; line-height: 1; }
.event-info { flex: 1; }
.event-type { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem; }
.event-info h3 { color: var(--navy); margin-bottom: 0.5rem; }
.event-info p { font-size: 0.9rem; margin-bottom: 0.75rem; }
.event-meta { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.event-meta span { font-size: 0.82rem; color: var(--gray-600); }
.events-footer { text-align: center; margin-top: 2.5rem; }
.events-footer a { color: var(--navy); font-weight: 600; text-decoration: underline; }

/* ===== RESOURCES ===== */
.crisis-banner { display: flex; align-items: center; gap: 1.5rem; background: var(--navy-dark); color: white; border-radius: var(--radius); padding: 1.5rem 2rem; margin-bottom: 3rem; }
.crisis-icon { font-size: 2rem; flex-shrink: 0; }
.crisis-text { display: flex; flex-direction: column; gap: 0.3rem; }
.crisis-text strong { font-size: 1rem; }
.crisis-text span { font-size: 0.88rem; opacity: 0.85; }
.resources-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.resource-category { background: white; border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); }
.resource-category h3 { color: var(--navy); margin-bottom: 1.25rem; font-size: 1.1rem; }
.resource-list { display: flex; flex-direction: column; gap: 1.25rem; }
.resource-list li { border-bottom: 1px solid var(--gray-100); padding-bottom: 1.25rem; }
.resource-list li:last-child { border-bottom: none; padding-bottom: 0; }
.resource-list a { display: flex; align-items: center; justify-content: space-between; font-weight: 600; color: var(--navy); font-size: 0.95rem; transition: color var(--transition); }
.resource-list a:hover { color: var(--gold); }
.resource-list p { font-size: 0.83rem; margin-top: 0.25rem; }
.resource-footer { text-align: center; margin-top: 2.5rem; }
.resource-footer a { color: var(--navy); font-weight: 600; text-decoration: underline; }

/* ===== DONATE ===== */
.donate { position: relative; overflow: hidden; }
.donate-bg { position: absolute; inset: 0; background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #1e4a8a 100%); }
.donate-bg::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 50%, rgba(201,162,39,0.1) 0%, transparent 60%); }
.donate-inner { position: relative; z-index: 2; padding-top: 5rem; padding-bottom: 5rem; }
.donate h2 { color: white; }
.donate .section-sub { color: rgba(255,255,255,0.75); }
.impact-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin: 3rem 0; }
.impact-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); padding: 2rem 1.25rem; text-align: center; transition: all var(--transition); }
.impact-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-4px); }
.featured-impact { background: rgba(201,162,39,0.18) !important; border-color: var(--gold) !important; transform: scale(1.03); }
.impact-amount { display: block; font-family: var(--font-display); font-size: 2.2rem; font-weight: 900; color: var(--gold-light); margin-bottom: 0.75rem; }
.impact-card p { color: rgba(255,255,255,0.78); font-size: 0.88rem; line-height: 1.5; }
.donate-options { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.donate-box { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); padding: 2.5rem; }
.donate-box h3 { color: white; margin-bottom: 0.75rem; }
.donate-box > p { color: rgba(255,255,255,0.7); margin-bottom: 1.5rem; font-size: 0.92rem; }
.donate-note { font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-top: 1rem; text-align: center; }
.give-list { display: flex; flex-direction: column; gap: 0.85rem; }
.give-list li { color: rgba(255,255,255,0.8); font-size: 0.92rem; }
.give-list strong { color: white; }

/* ===== GET INVOLVED ===== */
.involved-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.involved-card { background: white; border-radius: var(--radius); padding: 2rem 1.5rem; box-shadow: var(--shadow); transition: all var(--transition); }
.involved-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.involved-num { font-family: var(--font-display); font-size: 3rem; font-weight: 900; color: var(--gray-200); line-height: 1; margin-bottom: 0.5rem; }
.involved-card h3 { color: var(--navy); margin-bottom: 0.75rem; }
.involved-card p { font-size: 0.88rem; margin-bottom: 1.25rem; }
.link-arrow { font-weight: 600; color: var(--navy); font-size: 0.88rem; transition: all var(--transition); }
.link-arrow:hover { color: var(--gold); }

/* ===== CONTACT ===== */
.contact { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: start; }
.contact-info h2 { margin: 0.5rem 0 1rem; }
.contact-info > p { font-size: 0.95rem; margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }
.contact-details li { display: flex; align-items: flex-start; gap: 1rem; }
.contact-icon { font-size: 1.3rem; margin-top: 0.1rem; flex-shrink: 0; }
.contact-details strong { display: block; color: var(--navy); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.2rem; }
.contact-details a, .contact-details span { font-size: 0.95rem; color: var(--text-light); }
.contact-details a:hover { color: var(--navy); }
.social-links { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.social-btn { display: inline-block; padding: 0.5rem 1.1rem; border: 1.5px solid var(--navy); border-radius: 50px; font-size: 0.8rem; font-weight: 600; color: var(--navy); transition: all var(--transition); }
.social-btn:hover { background: var(--navy); color: white; }
.contact-form-wrap { background: white; border-radius: var(--radius); padding: 2.5rem; box-shadow: var(--shadow-lg); }
.contact-form h3 { margin-bottom: 1.5rem; color: var(--navy); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.1rem; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--gray-800); letter-spacing: 0.03em; }
.form-group input, .form-group select, .form-group textarea { padding: 0.8rem 1rem; border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 0.95rem; color: var(--text); transition: border-color var(--transition); background: white; outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--navy); }
.form-group textarea { resize: vertical; }
.form-note { font-size: 0.78rem; text-align: center; margin-top: 0.75rem; color: var(--gray-400); }
.form-success { display: none; background: #dcfce7; color: #166534; padding: 1rem; border-radius: var(--radius-sm); font-weight: 600; text-align: center; margin-top: 1rem; font-size: 0.9rem; }
.form-success.show { display: block; }

/* ===== FOOTER ===== */
.footer { background: var(--navy-dark); }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 4rem; padding: 4rem 2rem 3rem; max-width: var(--max-width); margin: 0 auto; }
.footer-brand .footer-logo { height: 80px; width: auto; margin-bottom: 1.25rem; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4)); }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.92rem; margin-bottom: 0.5rem; }
.footer-ein { font-size: 0.78rem !important; color: rgba(255,255,255,0.35) !important; margin-top: 1rem !important; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer-col { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col h4 { color: white; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.25rem; font-family: var(--font-body); }
.footer-col a { color: rgba(255,255,255,0.55); font-size: 0.88rem; transition: color var(--transition); }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); }
.rainbow-stripe { height: 4px; background: linear-gradient(90deg, var(--pride-red) 0%, var(--pride-orange) 20%, var(--pride-yellow) 37%, var(--pride-green) 53%, var(--pride-blue) 70%, var(--pride-purple) 100%); }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 2rem; max-width: var(--max-width); margin: 0 auto; flex-wrap: wrap; gap: 1rem; }
.footer-bottom-inner p { color: rgba(255,255,255,0.4); font-size: 0.8rem; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: rgba(255,255,255,0.4); font-size: 0.8rem; transition: color var(--transition); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .involved-grid { grid-template-columns: repeat(2, 1fr); }
  .impact-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
  .container { padding: 0 1.25rem; }
  .hamburger { display: flex; }
  .nav-links { position: fixed; top: 0; right: -100%; height: 100vh; width: 75vw; max-width: 300px; background: var(--navy-dark); flex-direction: column; align-items: flex-start; padding: 5rem 2rem 2rem; gap: 0.25rem; transition: right 0.35s ease; box-shadow: -10px 0 40px rgba(0,0,0,0.3); }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1.1rem; padding: 0.75rem 1rem; width: 100%; border-radius: 8px; }
  .nav-cta { margin-left: 0 !important; margin-top: 1rem; text-align: center; width: 100%; justify-content: center; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-img-wrap { display: flex; justify-content: center; }
  .about-logo-large { width: 220px; height: 220px; }
  .values-grid { grid-template-columns: 1fr; }
  .programs-grid { grid-template-columns: 1fr; }
  .resources-grid { grid-template-columns: 1fr; }
  .donate-options { grid-template-columns: 1fr; }
  .impact-cards { grid-template-columns: repeat(2, 1fr); }
  .involved-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .event-card { flex-direction: column; gap: 1rem; }
  .stats-grid { flex-direction: column; gap: 1.5rem; }
  .stat-divider { width: 60px; height: 1px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .featured-impact { transform: scale(1); }
}
@media (max-width: 480px) {
  .impact-cards { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}
