/*
Theme Name: Longball
Theme URI: https://longball.org/
Author: Amaury / Kalila
Description: A modern single-page theme for Jacob's Long Ball Mitzvah Project — baseball gear donations for youth players.
Requires at least: 6.3
Tested up to: 6.5
Requires PHP: 7.4
Version: 2.0.0
License: GPLv2 or later
Text Domain: longball
*/

/* ─── VARIABLES ─── */
:root {
  --bg: #fafbfd;
  --surface: #ffffff;
  --text: #111827;
  --muted: #6b7280;
  --accent: #2563eb;
  --accent-dark: #1d4ed8;
  --red: #dc2626;
  --red-light: #fef2f2;
  --gold: #f59e0b;
  --gold-light: #fffbeb;
  --navy: #0f172a;
  --navy-light: #1e293b;
  --teal: #0891b2;
  --border: #e5e7eb;
  --border-light: #f3f4f6;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.08);
  --max-w: 1140px;
  --transition: 0.25s cubic-bezier(.4,0,.2,1);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; padding: 0;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

.lb-container { width: min(var(--max-w), calc(100% - 2.5rem)); margin: 0 auto; }

/* ─── NAV / TOPBAR ─── */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(14px) saturate(1.6);
  border-bottom: 1px solid var(--border);
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
  width: min(var(--max-w), calc(100% - 2.5rem)); margin: 0 auto;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 1.15rem; color: var(--navy);
  text-decoration: none;
}
.logo-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--red) 0%, #b91c1c 100%);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.1rem; font-weight: 800;
}
.topnav { display: flex; align-items: center; gap: 6px; }
.topnav a {
  padding: 8px 16px; border-radius: 8px;
  font-weight: 500; font-size: 0.92rem;
  color: var(--muted); transition: var(--transition);
  text-decoration: none;
}
.topnav a:hover, .topnav a.active { color: var(--text); background: var(--border-light); }
.topnav .cta-nav {
  background: var(--navy); color: #fff !important;
  font-weight: 600; margin-left: 4px;
}
.topnav .cta-nav:hover { background: var(--navy-light); }

/* ─── HERO ─── */
.hero {
  padding: 5rem 0 4rem;
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--navy) 0%, #162544 50%, #1a365d 100%);
  color: #fff;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(600px circle at 80% 20%, rgba(220,38,38,0.15), transparent),
    radial-gradient(500px circle at 20% 80%, rgba(37,99,235,0.12), transparent);
  pointer-events: none;
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem;
  align-items: center;
  width: min(var(--max-w), calc(100% - 2.5rem)); margin: 0 auto;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px; padding: 6px 14px 6px 8px;
  font-size: 0.82rem; font-weight: 600; margin-bottom: 1.2rem;
  backdrop-filter: blur(4px);
}
.hero-badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #34d399; box-shadow: 0 0 6px #34d399;
}
.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800; line-height: 1.08;
  letter-spacing: -0.02em; margin: 0 0 1rem;
}
.hero h1 .gold { color: var(--gold); }
.hero-desc {
  font-size: 1.1rem; color: rgba(255,255,255,0.75);
  max-width: 520px; margin-bottom: 1.8rem; line-height: 1.65;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: #fff;
  padding: 14px 26px; border-radius: var(--radius-sm);
  font-weight: 700; font-size: 0.95rem;
  border: none; cursor: pointer; transition: var(--transition);
  text-decoration: none;
}
.btn-primary:hover { background: #b91c1c; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(220,38,38,0.3); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.08); color: #fff;
  padding: 14px 26px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 0.95rem;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer; transition: var(--transition);
  text-decoration: none;
}
.btn-ghost:hover { background: rgba(255,255,255,0.15); }
.hero-visual { display: flex; flex-direction: column; gap: 12px; }
.stat-row { display: flex; gap: 12px; }
.stat-card {
  flex: 1; background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 20px;
  backdrop-filter: blur(8px); text-align: center;
}
.stat-num {
  font-size: 2rem; font-weight: 800;
  background: linear-gradient(135deg, #fff, rgba(255,255,255,0.7));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-top: 4px; font-weight: 500; }
.dest-row { display: flex; gap: 12px; }
.dest-card {
  flex: 1; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); padding: 16px;
  display: flex; align-items: center; gap: 12px;
}
.dest-flag { font-size: 2rem; }
.dest-info-title { font-weight: 700; font-size: 0.95rem; }
.dest-info-sub { font-size: 0.8rem; color: rgba(255,255,255,0.5); }

/* ─── SECTION COMMON ─── */
.sect { padding: 5rem 0; }
.sect-label {
  display: inline-block;
  font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--accent); margin-bottom: 0.6rem;
  background: #eff6ff; padding: 5px 14px; border-radius: 8px;
}
.sect-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800; letter-spacing: -0.015em; margin: 0 0 0.5rem;
}
.sect-desc { color: var(--muted); font-size: 1.05rem; max-width: 600px; margin-bottom: 2.5rem; }
.sect-alt { background: var(--border-light); }

/* ─── MEET JACOB ─── */
.meet-grid {
  display: grid; grid-template-columns: 220px 1fr; gap: 3rem;
  align-items: center;
}
.meet-photo {
  width: 100%; border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3/4; object-fit: cover;
}
.meet-text h2 {
  font-size: 1.8rem; font-weight: 800; margin: 0 0 0.6rem;
}
.meet-text .quote {
  font-size: 1.1rem; line-height: 1.75; color: var(--muted);
  font-style: italic; margin-bottom: 1rem;
  border-left: 4px solid var(--gold); padding-left: 20px;
}
.meet-text .name {
  font-weight: 700; color: var(--text); font-style: normal;
}
@media (max-width: 900px) {
  .meet-grid { grid-template-columns: 1fr; text-align: center; }
  .meet-photo { max-width: 200px; margin: 0 auto; }
  .meet-text .quote { border-left: none; padding-left: 0; border-top: 4px solid var(--gold); padding-top: 16px; }
}

/* ─── GOAL TRACKER ─── */
.goal-section {
  background: linear-gradient(160deg, var(--navy) 0%, #162544 50%, #1a365d 100%);
  color: #fff; position: relative; overflow: hidden;
}
.goal-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(500px circle at 70% 30%, rgba(37,99,235,0.12), transparent);
  pointer-events: none;
}
.goal-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.goal-left h2 {
  font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; margin: 0 0 0.5rem; line-height: 1.15;
}
.goal-left p { color: rgba(255,255,255,0.6); margin-bottom: 1.5rem; font-size: 0.95rem; }
.goal-bar-track {
  background: rgba(255,255,255,0.1); border-radius: 12px;
  height: 18px; position: relative; overflow: hidden;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.08);
}
.goal-bar-fill {
  height: 100%; border-radius: 12px;
  background: linear-gradient(90deg, #3b82f6 0%, #60a5fa 60%, var(--gold) 100%);
  position: relative;
  transition: width 2s cubic-bezier(.4,0,.2,1);
}
.goal-bar-fill::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.25) 0%, transparent 100%);
  border-radius: 12px;
}
.goal-bar-label {
  display: flex; justify-content: space-between; margin-top: 10px;
  font-size: 0.8rem; color: rgba(255,255,255,0.45); font-weight: 500;
}
.goal-bar-label span:first-child { color: rgba(255,255,255,0.8); font-weight: 700; }
.goal-right {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.goal-stat {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 22px 18px;
  text-align: center;
  backdrop-filter: blur(6px);
}
.goal-stat-num {
  font-size: 1.8rem; font-weight: 800; line-height: 1;
  margin-bottom: 4px;
}
.goal-stat:nth-child(1) .goal-stat-num { color: #60a5fa; }
.goal-stat:nth-child(2) .goal-stat-num { color: var(--gold); }
.goal-stat:nth-child(3) .goal-stat-num { color: #34d399; }
.goal-stat:nth-child(4) .goal-stat-num { color: #f472b6; }
.goal-stat-label {
  font-size: 0.75rem; color: rgba(255,255,255,0.45);
  font-weight: 500; text-transform: uppercase; letter-spacing: 0.04em;
}
.goal-percent {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(96,165,250,0.15); border: 1px solid rgba(96,165,250,0.2);
  border-radius: 8px; padding: 4px 12px;
  font-size: 0.82rem; font-weight: 700; color: #93c5fd;
  margin-bottom: 1rem;
}
.goal-percent-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #60a5fa; box-shadow: 0 0 6px #60a5fa;
}
@media (max-width: 900px) {
  .goal-inner { grid-template-columns: 1fr; }
  .goal-right { grid-template-columns: 1fr 1fr; }
}

/* ─── HOW IT WORKS ─── */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px;
  position: relative; transition: var(--transition);
}
.step-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 10px;
  font-weight: 800; font-size: 1rem; margin-bottom: 16px;
}
.step-card:nth-child(1) .step-num { background: #eff6ff; color: var(--accent); }
.step-card:nth-child(2) .step-num { background: var(--red-light); color: var(--red); }
.step-card:nth-child(3) .step-num { background: var(--gold-light); color: #b45309; }
.step-card h3 { font-size: 1.1rem; font-weight: 700; margin: 0 0 8px; }
.step-card p { color: var(--muted); font-size: 0.92rem; margin: 0; }

/* ─── DONATE OPTIONS ─── */
.donate-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.donate-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  display: flex; gap: 16px; align-items: flex-start;
  transition: var(--transition);
}
.donate-card:hover { box-shadow: var(--shadow-md); border-color: var(--accent); }
.donate-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; flex-shrink: 0;
}
.donate-card:nth-child(1) .donate-icon { background: #eff6ff; }
.donate-card:nth-child(2) .donate-icon { background: var(--red-light); }
.donate-card:nth-child(3) .donate-icon { background: var(--gold-light); }
.donate-card:nth-child(4) .donate-icon { background: #ecfdf5; }
.donate-card h3 { font-size: 1rem; font-weight: 700; margin: 0 0 4px; }
.donate-card p { color: var(--muted); font-size: 0.88rem; margin: 0; }

/* ─── ACCEPT LIST ─── */
.accept-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.accept-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px;
  text-align: center; transition: var(--transition);
}
.accept-card:hover { box-shadow: var(--shadow-md); }
.accept-emoji { font-size: 2.2rem; margin-bottom: 10px; }
.accept-card h3 { font-size: 0.95rem; font-weight: 700; margin: 0 0 4px; }
.accept-card p { color: var(--muted); font-size: 0.85rem; margin: 0; }

/* ─── DONATE ONLINE / QR ─── */
.qr-banner {
  background: transparent; color: var(--text);
  padding: 0 !important;
}
.qr-banner .lb-container { padding-top: 0; padding-bottom: 0; }
.qr-inner {
  display: grid; grid-template-columns: auto 1fr; gap: 2rem;
  align-items: center;
  max-width: 680px; margin: 0 auto;
  background: linear-gradient(160deg, var(--navy) 0%, #162544 60%, #1a365d 100%);
  border-radius: 18px; padding: 2rem 2.5rem;
  color: #fff; position: relative; overflow: hidden;
}
.qr-inner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(400px circle at 25% 40%, rgba(37,99,235,0.10), transparent);
  pointer-events: none;
}
.qr-visual {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  position: relative; z-index: 1;
}
.qr-frame {
  background: #fff; border-radius: 12px; padding: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.qr-frame img {
  display: block; width: 110px; height: 110px; border-radius: 6px;
}
.qr-powered {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.62rem; color: rgba(255,255,255,0.45);
  font-weight: 500;
}
.qr-powered img { height: 13px; width: auto; opacity: 0.5; }
.qr-text { position: relative; z-index: 1; }
.qr-text h3 {
  font-size: 1.15rem; font-weight: 800; margin-bottom: 0.35rem;
  line-height: 1.25;
}
.qr-text p {
  color: rgba(255,255,255,0.65); line-height: 1.6;
  margin-bottom: 0.8rem; font-size: 0.82rem;
}
.qr-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(96,165,250,0.12); border: 1px solid rgba(96,165,250,0.18);
  border-radius: 8px; padding: 5px 12px;
  font-size: 0.68rem; font-weight: 600; color: #93c5fd;
}
.qr-badge svg { flex-shrink: 0; }
.qr-steps {
  display: flex; gap: 1rem; margin-top: 0.8rem;
}
.qr-step {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.7rem; color: rgba(255,255,255,0.5); font-weight: 500;
}
.qr-step-num {
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(96,165,250,0.18); color: #93c5fd;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem; font-weight: 700; flex-shrink: 0;
}
@media (max-width: 600px) {
  .qr-inner {
    grid-template-columns: 1fr; text-align: center; gap: 1.2rem;
    padding: 1.5rem;
  }
  .qr-visual { order: -1; }
  .qr-steps { justify-content: center; flex-wrap: wrap; }
  .qr-badge { margin: 0 auto; }
}

/* ─── PARTNERS ─── */
.partners-wrap { text-align: center; }
.partners-logos {
  display: flex; align-items: center; justify-content: center;
  gap: 3.5rem; flex-wrap: wrap; margin-top: 2rem;
}
.partner-item {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  text-decoration: none; transition: var(--transition);
}
.partner-item:hover { transform: translateY(-3px); }
.partner-item img {
  height: 42px; width: auto; object-fit: contain;
  filter: grayscale(100%) opacity(0.55);
  transition: var(--transition);
}
.partner-item:hover img {
  filter: grayscale(0%) opacity(1);
}
.partner-name {
  font-size: 0.78rem; font-weight: 600; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.04em;
}
.partner-item:hover .partner-name { color: var(--text); }
.partners-divider {
  width: 60px; height: 3px; border-radius: 3px;
  background: var(--border); margin: 0 auto 1.5rem;
}

/* ─── REGISTER FORM ─── */
.reg-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
.reg-left h2 { font-size: 1.8rem; font-weight: 800; margin: 0 0 0.5rem; }
.reg-left > p { color: var(--muted); margin-bottom: 1.5rem; }
.reg-feature { display: flex; gap: 12px; margin-bottom: 1rem; }
.reg-feature-icon {
  width: 36px; height: 36px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; background: #eff6ff; flex-shrink: 0;
}
.reg-feature h4 { font-size: 0.9rem; font-weight: 700; margin: 0 0 2px; }
.reg-feature p { font-size: 0.82rem; color: var(--muted); margin: 0; }
.form-box {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow-md);
}
.form-box label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.form-box input, .form-box select, .form-box textarea {
  width: 100%; border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 11px 14px; font: inherit; font-size: 0.92rem;
  margin-bottom: 14px; transition: var(--transition); background: var(--bg);
}
.form-box input:focus, .form-box select:focus, .form-box textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(37,99,235,0.12);
}
.form-box button {
  width: 100%; padding: 13px; border: none; border-radius: var(--radius-sm);
  background: var(--navy); color: #fff; font: inherit;
  font-weight: 700; font-size: 0.95rem; cursor: pointer; transition: var(--transition);
}
.form-box button:hover { background: var(--navy-light); }
.form-success {
  display: none; margin-top: 14px; padding: 12px 16px;
  background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0;
  border-radius: var(--radius-sm); font-size: 0.9rem; font-weight: 500;
}

/* ─── FAQ ─── */
.faq-list { max-width: 720px; }
.faq-item {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); margin-bottom: 10px; overflow: hidden;
}
.faq-item summary {
  padding: 16px 20px; cursor: pointer;
  font-weight: 600; font-size: 0.95rem; list-style: none;
  display: flex; align-items: center; justify-content: space-between;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.3rem; color: var(--muted); transition: var(--transition); }
.faq-item[open] summary::after { content: '\2212'; color: var(--accent); }
.faq-item p { padding: 0 20px 16px; color: var(--muted); font-size: 0.92rem; margin: 0; }

/* ─── SIMPLE PAGES (About, Contact) ─── */
.sp { padding: 4rem 0; max-width: 720px; }
.sp h1 { font-size: 2.2rem; font-weight: 800; margin: 0 0 1rem; }
.sp p { color: var(--muted); font-size: 1.05rem; margin-bottom: 1rem; line-height: 1.7; }
.sp a.back { color: var(--accent); font-weight: 600; text-decoration: none; }
.sp a.back:hover { text-decoration: underline; }

/* ─── UPDATES ─── */
.updates-list { display: flex; flex-direction: column; gap: 16px; }
.update-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  display: flex; gap: 20px; align-items: flex-start;
  transition: var(--transition);
}
.update-card:hover { box-shadow: var(--shadow-md); }
.update-date {
  background: var(--navy); color: #fff;
  border-radius: var(--radius-sm); padding: 10px 14px;
  text-align: center; flex-shrink: 0; min-width: 70px;
}
.update-date .month { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; opacity: 0.7; }
.update-date .year { font-size: 1.3rem; font-weight: 800; line-height: 1.1; }
.update-body h3 { font-size: 1.05rem; font-weight: 700; margin: 0 0 4px; }
.update-body p { color: var(--muted); font-size: 0.9rem; margin: 0; }

/* ─── CONTACT ─── */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 2rem; }
.contact-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px; text-align: center;
}
.contact-card .ic { font-size: 2rem; margin-bottom: 10px; }
.contact-card h3 { font-size: 0.95rem; font-weight: 700; margin: 0 0 4px; }
.contact-card p { color: var(--muted); font-size: 0.88rem; margin: 0; }

/* ─── FOOTER ─── */
.site-footer {
  background: var(--navy); color: rgba(255,255,255,0.7);
  padding: 3rem 0 2rem; margin-top: 0;
}
.foot-inner { width: min(var(--max-w), calc(100% - 2.5rem)); margin: 0 auto; }
.foot-grid { display: flex; justify-content: space-between; align-items: flex-start; gap: 2rem; flex-wrap: wrap; }
.foot-brand { font-weight: 800; font-size: 1.1rem; color: #fff; margin-bottom: 6px; }
.foot-brand-sub { font-size: 0.85rem; max-width: 280px; }
.foot-links h4 { color: #fff; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; margin: 0 0 10px; }
.foot-links a { display: block; font-size: 0.88rem; padding: 3px 0; transition: var(--transition); text-decoration: none; }
.foot-links a:hover { color: #fff; }
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 2rem; padding-top: 1.2rem;
  font-size: 0.8rem; color: rgba(255,255,255,0.4);
  text-align: center;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .steps-grid, .accept-grid, .contact-grid { grid-template-columns: 1fr; }
  .donate-grid { grid-template-columns: 1fr; }
  .reg-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .topbar-inner { height: auto; padding: 12px 0; flex-direction: column; gap: 8px; }
  .topnav { flex-wrap: wrap; justify-content: center; }
  .hero { padding: 3rem 0 2.5rem; }
  .sect { padding: 3rem 0; }
  .stat-row, .dest-row { flex-direction: column; }
}
