/* ═══════════════════════════════════════════════════════
   CHICAGO ENGAGE — Premium Design System
   Brand: Cyan #22D3EE · Green #4ADE80 · Dark #0F172A · White #FFF
   ═══════════════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --cyan:        #22D3EE;
  --cyan-dark:   #06B6D4;
  --cyan-light:  #67E8F9;
  --green:       #4ADE80;
  --green-dark:  #22C55E;
  --dark:        #0F172A;
  --dark-mid:    #1E293B;
  --dark-light:  #334155;
  --white:       #FFFFFF;
  --off-white:   #F8FAFC;
  --gray-100:    #F1F5F9;
  --gray-200:    #E2E8F0;
  --gray-400:    #94A3B8;
  --gray-600:    #475569;

  --gradient-primary: linear-gradient(135deg, var(--cyan) 0%, var(--green) 100%);
  --gradient-dark:    linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 100%);
  --gradient-glow:    linear-gradient(135deg, rgba(34,211,238,.15) 0%, rgba(74,222,128,.15) 100%);

  --font-head: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;

  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg:  0 12px 48px rgba(0,0,0,0.14);
  --shadow-xl:  0 24px 80px rgba(0,0,0,0.18);
  --shadow-glow: 0 0 40px rgba(34,211,238,0.25);

  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  22px;
  --radius-xl:  32px;
  --radius-full: 999px;

  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--dark);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select {
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
}
select { appearance: none; }

/* ── UTILITY ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(34,211,238,0.08);
  border: 1px solid rgba(34,211,238,0.2);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}
.section-tag-light { color: var(--cyan-light); background: rgba(34,211,238,0.12); border-color: rgba(34,211,238,0.25); }
.section-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 20px;
}
.section-subtitle {
  font-size: 17px;
  color: var(--gray-600);
  max-width: 640px;
  line-height: 1.7;
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header .section-subtitle { margin: 0 auto; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

/* ── BUTTONS ── */
.btn-primary, .btn-outline, .btn-donate {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient-primary);
  color: var(--dark);
  box-shadow: 0 4px 24px rgba(34,211,238,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(34,211,238,0.5);
  filter: brightness(1.05);
}
.btn-outline {
  background: transparent;
  color: var(--dark);
  border-color: var(--gray-400);
}
.btn-outline:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  transform: translateY(-2px);
}
/* Membership "Join Free" buttons - ensure visibility on dark cards */
.membership-card .btn-outline {
  border-color: var(--cyan);
  color: var(--cyan);
}
.membership-card .btn-outline:hover {
  background: rgba(34,211,238,0.12);
  border-color: var(--cyan);
  color: var(--cyan);
}
.btn-donate {
  background: var(--gradient-primary);
  color: var(--dark);
  font-size: 17px;
  padding: 16px 48px;
  width: 100%;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(34,211,238,0.35);
}
.btn-donate:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(34,211,238,0.5);
}
.btn-join { width: 100%; justify-content: center; margin-top: auto; }

/* ── ANIMATIONS ── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.3s; }
.fade-in:nth-child(5) { transition-delay: 0.4s; }

/* ═══════════════════════ NAVBAR ═══════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition-slow);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 12px 0;
  box-shadow: 0 2px 32px rgba(0,0,0,0.25);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* Navbar logo — direct, no wrapper */
.nav-logo {
  display: flex;
  align-items: center;
}
.logo-img {
  height: 52px;
  width: auto;
  display: block;
  transition: var(--transition);
  filter: drop-shadow(0 2px 8px rgba(34,211,238,0.18));
}
.logo-img:hover {
  filter: drop-shadow(0 4px 18px rgba(34,211,238,0.4));
  transform: translateY(-1px);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links li a {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  transition: var(--transition);
}
.nav-links li a:hover { color: var(--cyan); background: rgba(34,211,238,0.1); }
.nav-cta {
  background: var(--gradient-primary) !important;
  color: var(--dark) !important;
  font-weight: 700 !important;
  padding: 10px 22px !important;
  box-shadow: 0 4px 20px rgba(34,211,238,0.35);
}
.nav-cta:hover { box-shadow: 0 6px 30px rgba(34,211,238,0.5) !important; transform: translateY(-1px); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ═══════════════════════ HERO ═══════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--dark);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(34,211,238,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34,211,238,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(34,211,238,0.18) 0%, transparent 70%);
  top: -100px; right: -150px;
}
.hero-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(74,222,128,0.14) 0%, transparent 70%);
  bottom: -100px; left: -150px;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(34,211,238,0.1);
  border: 1px solid rgba(34,211,238,0.25);
  color: var(--cyan-light);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  margin-bottom: 32px;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(52px, 9vw, 100px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: -2px;
}
.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,0.65);
  max-width: 680px;
  margin: 0 auto 48px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 72px;
}
.hero .btn-outline { color: var(--white); border-color: rgba(255,255,255,0.25); }
.hero .btn-outline:hover { color: var(--cyan); border-color: var(--cyan); background: rgba(34,211,238,0.08); }
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 28px 48px;
  backdrop-filter: blur(12px);
  flex-wrap: wrap;
  gap: 0;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 48px;
}
.stat-number {
  font-family: var(--font-head);
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
}
/* For word-based stats like "Growing" or "Launching" */
.stat-number.stat-word {
  font-size: 22px;
  letter-spacing: -0.5px;
}
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  letter-spacing: 0.5px;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.1);
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.3);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(34,211,238,0.6), transparent);
  animation: scroll-pulse 2s infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.7); }
}

/* ═══════════════════════ PILLARS ═══════════════════════ */
.pillars-section {
  padding: 80px 0;
  background: var(--white);
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.pillar-card {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
  cursor: pointer;
}
.pillar-card:hover {
  border-color: var(--cyan);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(34,211,238,0.2);
  transform: translateY(-6px);
}
.pillar-featured {
  background: var(--dark);
  border-color: rgba(34,211,238,0.3);
  box-shadow: var(--shadow-lg);
}
.pillar-featured h3, .pillar-featured p, .pillar-featured .pillar-link { color: var(--white); }
.pillar-featured p { color: rgba(255,255,255,0.65); }
.pillar-featured .pillar-icon { background: rgba(34,211,238,0.15); color: var(--cyan); }
.pillar-icon {
  width: 56px; height: 56px;
  background: rgba(34,211,238,0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
}
.pillar-icon svg { width: 26px; height: 26px; }
.pillar-card h3 { font-family: var(--font-head); font-size: 20px; font-weight: 700; color: var(--dark); }
.pillar-card p { font-size: 14px; color: var(--gray-600); line-height: 1.6; }
.pillar-link { font-size: 13px; font-weight: 700; color: var(--cyan); }
.pillars-tagline {
  text-align: center;
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 1px;
}

/* ═══════════════════════ ABOUT ═══════════════════════ */
.about-section {
  padding: 100px 0;
  background: var(--off-white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text p {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 20px;
}
.about-highlights { display: flex; flex-direction: column; gap: 14px; margin: 28px 0 36px; }
.highlight-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
}
.highlight-icon {
  width: 28px; height: 28px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.highlight-icon svg { width: 14px; height: 14px; stroke: var(--dark); }
.about-visual { position: relative; }
.about-card-stack { position: relative; padding: 20px 20px 60px 20px; }
.about-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.about-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.about-card-main { margin-bottom: -24px; position: relative; z-index: 2; }
.about-card-secondary {
  background: var(--dark);
  border-color: rgba(34,211,238,0.2);
  margin-left: 32px;
}
.about-card-secondary h4, .about-card-secondary p { color: var(--white); }
.about-card-secondary p { color: rgba(255,255,255,0.65); }
.about-card-icon { font-size: 36px; margin-bottom: 16px; }
.about-card h4 { font-family: var(--font-head); font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.about-card p { font-size: 14px; color: var(--gray-600); line-height: 1.6; }
.about-metric-badge {
  position: absolute;
  bottom: 0; right: 0;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  z-index: 3;
}
.metric-num { display: block; font-family: var(--font-head); font-size: 36px; font-weight: 800; line-height: 1; }
.metric-label { font-size: 12px; color: var(--gray-600); font-weight: 600; letter-spacing: 1px; }

/* ═══════════════════════ PROGRAMS ═══════════════════════ */
.programs-section {
  padding: 100px 0;
  background: var(--white);
}
.programs-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  background: var(--gray-100);
  border-radius: var(--radius-full);
  padding: 6px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.tab-btn {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 32px;
  border-radius: var(--radius-full);
  color: var(--gray-600);
  transition: var(--transition);
}
.tab-btn.active {
  background: var(--dark);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.tab-content { display: none; }
.tab-content.active { display: block; }
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.program-card {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
}
.program-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: var(--transition);
}
.program-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(34,211,238,0.3); }
.program-card:hover::before { opacity: 1; }
.program-num { font-size: 12px; font-weight: 800; color: var(--cyan); letter-spacing: 2px; opacity: 0.7; }
.program-icon {
  width: 48px; height: 48px;
  background: rgba(34,211,238,0.08);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan);
}
.program-icon svg { width: 22px; height: 22px; }
.program-card h3 { font-family: var(--font-head); font-size: 17px; font-weight: 700; color: var(--dark); }
.program-card p { font-size: 14px; color: var(--gray-600); line-height: 1.65; flex: 1; }
.program-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--green-dark);
  background: rgba(74,222,128,0.1);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(74,222,128,0.2);
  width: fit-content;
}

/* ═══════════════════════ MEMBERSHIP ═══════════════════════ */
.membership-section {
  padding: 100px 0;
  background: var(--off-white);
}
.membership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.membership-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: var(--transition);
}
.membership-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-4px); }
.membership-featured {
  background: var(--dark);
  border-color: rgba(34,211,238,0.3);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
  transform: scale(1.03);
}
.membership-featured:hover { transform: scale(1.03) translateY(-4px); }
.membership-popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: var(--dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}
.membership-badge-tag {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cyan);
}
.membership-featured .membership-badge-tag { color: var(--cyan-light); }
.membership-price { display: flex; align-items: baseline; gap: 8px; }
.price-amount {
  font-family: var(--font-head);
  font-size: 52px;
  font-weight: 800;
  line-height: 1;
  color: var(--dark);
}
.membership-featured .price-amount { color: var(--white); }
.membership-featured .price-amount.gradient-text { -webkit-text-fill-color: transparent; }
.price-period { font-size: 14px; color: var(--gray-400); font-weight: 500; }
.membership-featured .price-period { color: rgba(255,255,255,0.45); }
.membership-offer-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: rgba(74,222,128,0.1);
  color: var(--green-dark);
  border: 1px solid rgba(74,222,128,0.25);
  width: fit-content;
}
.membership-featured .membership-offer-tag {
  background: rgba(34,211,238,0.15);
  color: var(--cyan-light);
  border-color: rgba(34,211,238,0.3);
}
.membership-desc { font-size: 14px; color: var(--gray-600); line-height: 1.65; }
.membership-featured .membership-desc { color: rgba(255,255,255,0.6); }
.membership-features { display: flex; flex-direction: column; gap: 12px; flex: 1; }
.membership-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--dark);
  line-height: 1.4;
}
.membership-featured .membership-features li { color: rgba(255,255,255,0.85); }
.membership-features li svg {
  width: 16px; height: 16px;
  stroke: var(--green-dark);
  flex-shrink: 0;
  margin-top: 2px;
}
.membership-featured .membership-features li svg { stroke: var(--green); }
.membership-eligibility {
  background: var(--gray-100);
  border-radius: var(--radius-md);
  padding: 16px;
}
.membership-eligibility h5 { font-size: 12px; font-weight: 700; color: var(--dark); margin-bottom: 6px; letter-spacing: 0.5px; }
.membership-eligibility p { font-size: 12px; color: var(--gray-600); line-height: 1.55; }
.membership-note {
  text-align: center;
  font-size: 13px;
  color: var(--gray-400);
  max-width: 600px;
  margin: 48px auto 0;
  line-height: 1.6;
}

/* Stripe modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,0.75);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.active { display: flex; }
.modal-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-xl);
  animation: modal-in 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes modal-in {
  from { opacity: 0; transform: scale(0.85) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 36px; height: 36px;
  background: var(--gray-100);
  border-radius: 50%;
  font-size: 20px;
  color: var(--gray-600);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.modal-close:hover { background: var(--gray-200); color: var(--dark); }
.modal-header { margin-bottom: 28px; }
.modal-header h3 { font-family: var(--font-head); font-size: 24px; font-weight: 800; color: var(--dark); margin-bottom: 6px; }
.modal-header p { font-size: 14px; color: var(--gray-600); }
.modal-form { display: flex; flex-direction: column; gap: 14px; }
.modal-form input, .modal-form select, .modal-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 15px;
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
}
.modal-form input:focus, .modal-form select:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(34,211,238,0.12); }
.amount-display {
  background: var(--gradient-glow);
  border: 1.5px solid rgba(34,211,238,0.25);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-weight: 700;
  color: var(--dark);
  font-size: 16px;
}
.modal-secure-note { font-size: 12px; color: var(--gray-400); text-align: center; }
.modal-success { text-align: center; padding: 20px 0; }
.success-icon {
  width: 64px; height: 64px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: var(--dark); font-weight: 900;
  margin: 0 auto 20px;
}
.modal-success h4 { font-family: var(--font-head); font-size: 22px; font-weight: 800; margin-bottom: 12px; }
.modal-success p { font-size: 14px; color: var(--gray-600); line-height: 1.65; }

/* ═══════════════════════ VOLUNTEER ═══════════════════════ */
.volunteer-section {
  padding: 100px 0;
  background: var(--white);
}
.volunteer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.volunteer-lead {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}
.volunteer-text p {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 16px;
}
.volunteer-benefits { display: flex; flex-direction: column; gap: 24px; margin: 32px 0 36px; }
.volunteer-benefit {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.benefit-icon {
  width: 48px; height: 48px;
  background: rgba(34,211,238,0.08);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan);
  flex-shrink: 0;
}
.benefit-icon svg { width: 22px; height: 22px; }
.volunteer-benefit h4 { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.volunteer-benefit p { font-size: 14px; color: var(--gray-600); }

/* ═══════════════════════ GLASS CARD (shared) ═══════════════════════ */
.glass-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
}
.glass-card h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}
.glass-card > p { font-size: 14px; color: var(--gray-600); margin-bottom: 24px; }
.contact-form-inner { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form-inner input,
.contact-form-inner textarea,
.contact-form-inner select {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 15px;
  color: var(--dark);
  background: var(--off-white);
  transition: var(--transition);
  resize: none;
}
.contact-form-inner input:focus,
.contact-form-inner textarea:focus,
.contact-form-inner select:focus {
  border-color: var(--cyan);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(34,211,238,0.12);
}
.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(74,222,128,0.1);
  border: 1px solid rgba(74,222,128,0.3);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  color: var(--green-dark);
  font-weight: 600;
  font-size: 14px;
}
.form-success svg { width: 18px; height: 18px; stroke: var(--green-dark); flex-shrink: 0; }
.form-error {
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.25);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  color: #DC2626;
  font-size: 13px;
}

/* ═══════════════════════ DONATE ═══════════════════════ */
.donate-section {
  padding: 100px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.donate-bg { position: absolute; inset: 0; pointer-events: none; }
.donate-orb-1 {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(34,211,238,0.12) 0%, transparent 70%);
  top: -200px; right: -100px;
  border-radius: 50%;
}
.donate-orb-2 {
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(74,222,128,0.10) 0%, transparent 70%);
  bottom: -100px; left: -50px;
  border-radius: 50%;
}
.donate-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.donate-title { color: var(--white); }
.donate-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  max-width: 620px;
  margin: 0 auto 48px;
  line-height: 1.7;
}
.donate-impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}
.impact-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  transition: var(--transition);
}
.impact-item:hover { background: rgba(34,211,238,0.08); border-color: rgba(34,211,238,0.2); transform: translateY(-4px); }
.impact-icon { font-size: 32px; margin-bottom: 12px; }
.impact-item h4 { font-family: var(--font-head); font-size: 24px; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.impact-item p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.55; }
.donate-form-wrap {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 40px;
  max-width: 560px;
  margin: 0 auto;
  backdrop-filter: blur(12px);
}
.donate-form-wrap h3 { font-family: var(--font-head); font-size: 22px; font-weight: 800; color: var(--white); margin-bottom: 24px; }
.donate-amounts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
  justify-content: center;
}
.amount-btn {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  border: 2px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.75);
  background: transparent;
  transition: var(--transition);
}
.amount-btn:hover, .amount-btn.active {
  background: var(--gradient-primary);
  border-color: transparent;
  color: var(--dark);
}
.custom-amount-wrap { margin-bottom: 16px; }
.custom-amount-wrap input {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.06);
  color: var(--white);
  font-size: 15px;
}
.custom-amount-wrap input:focus { border-color: var(--cyan); outline: none; }
.custom-amount-wrap input::placeholder { color: rgba(255,255,255,0.35); }
#donateForm { display: flex; flex-direction: column; gap: 14px; }
#donateForm input {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.06);
  color: var(--white);
  font-size: 15px;
  transition: var(--transition);
}
#donateForm input:focus { border-color: var(--cyan); outline: none; box-shadow: 0 0 0 3px rgba(34,211,238,0.15); }
#donateForm input::placeholder { color: rgba(255,255,255,0.35); }
.donate-secure-note { font-size: 12px; color: rgba(255,255,255,0.35); margin-top: 16px; line-height: 1.6; }

/* ═══════════════════════ CONTACT ═══════════════════════ */
.contact-section {
  padding: 100px 0;
  background: var(--off-white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact-info .section-title { margin-top: 16px; }
.contact-info > p { font-size: 16px; color: var(--gray-600); line-height: 1.75; margin-bottom: 36px; }
.contact-details { display: flex; flex-direction: column; gap: 24px; margin-bottom: 40px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon {
  width: 44px; height: 44px;
  background: rgba(34,211,238,0.08);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan);
  flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-label { display: block; font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--gray-400); margin-bottom: 4px; }
.contact-value { font-size: 16px; font-weight: 600; color: var(--dark); transition: var(--transition); }
a.contact-value:hover { color: var(--cyan); }
.social-links { display: flex; align-items: center; gap: 12px; }
.social-links span { font-size: 13px; font-weight: 700; color: var(--gray-400); letter-spacing: 1px; text-transform: uppercase; margin-right: 4px; }
.social-link {
  width: 40px; height: 40px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--dark);
  transition: var(--transition);
}
.social-link svg { width: 16px; height: 16px; }
.social-link:hover { background: var(--dark); color: var(--white); border-color: var(--dark); transform: translateY(-3px); }

/* ═══════════════════════ FOOTER ═══════════════════════ */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 64px 0 0;
}

/* ── Single-row main grid: brand col + 3 link cols ── */
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

/* Brand column */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footer-logo-img {
  width: auto;
  display: block;
  filter: drop-shadow(0 3px 14px rgba(34,211,238,0.22));
  transition: var(--transition);
}
.footer-logo-img:hover {
  filter: drop-shadow(0 6px 24px rgba(34,211,238,0.42));
  transform: translateY(-2px);
}
.footer-org-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  max-width: 280px;
  margin: 0;
}
.footer-social-icons { display: flex; gap: 8px; }
.footer-social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-social-icon svg { width: 15px; height: 15px; }
.footer-social-icon:hover {
  background: var(--gradient-primary);
  color: var(--dark);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(34,211,238,0.3);
}

/* Link columns */
.footer-col h5 {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--cyan); padding-left: 4px; }

/* Contact list */
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.footer-contact-list li svg { width: 13px; height: 13px; stroke: rgba(255,255,255,0.3); flex-shrink: 0; margin-top: 2px; }
.footer-contact-list li a:hover { color: var(--cyan); }

/* ── Bottom bar ── */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(255,255,255,0.3); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--cyan); }

/* ═══════════════════════ IMAGE PLACEHOLDERS ═══════════════════════ */
.img-placeholder {
  background: linear-gradient(135deg, var(--dark-mid) 0%, var(--dark-light) 100%);
  border: 2px dashed rgba(34,211,238,0.3);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  transition: var(--transition);
}
.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(34,211,238,0.06) 0%, rgba(74,222,128,0.06) 100%),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 12px,
      rgba(34,211,238,0.03) 12px,
      rgba(34,211,238,0.03) 13px
    );
}
.img-placeholder:hover {
  border-color: rgba(34,211,238,0.6);
  box-shadow: 0 0 24px rgba(34,211,238,0.15);
}
.img-ph-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 24px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.img-ph-inner svg {
  width: 40px; height: 40px;
  stroke: rgba(34,211,238,0.5);
}
.img-ph-inner span {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.5px;
}
.img-ph-inner small {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.5px;
  max-width: 160px;
  line-height: 1.5;
}

/* ── Hero image row ── */
.hero-image-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.hero-img-card {
  flex: 0 0 180px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
  border: 1px solid rgba(34,211,238,0.2);
}
.img-ph-hero {
  height: 120px;
  border-radius: 0;
  border: none;
}
.img-ph-hero .img-ph-inner { padding: 12px; gap: 6px; }
.img-ph-hero .img-ph-inner svg { width: 24px; height: 24px; }
.img-ph-hero .img-ph-inner span { font-size: 11px; }

/* Hero card images */
.hero-card-img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.88) saturate(0.9) contrast(1.06);
  transition: filter 0.3s ease;
}
.hero-img-card:hover .hero-card-img {
  filter: brightness(0.95) saturate(0.95) contrast(1.04);
}

/* ── About image placeholder ── */
.img-placeholder-about {
  width: 100%;
  height: 220px;
  margin-bottom: 20px;
  border-radius: var(--radius-xl);
}
.img-placeholder-about .img-ph-inner svg { width: 48px; height: 48px; }
.img-placeholder-about .img-ph-inner span { font-size: 15px; }

/* About community image */
.about-community-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-xl);
  margin-bottom: 20px;
  display: block;
  filter: brightness(0.88) saturate(0.9) contrast(1.06);
  box-shadow: inset 0 0 60px rgba(15, 23, 42, 0.3);
  transition: filter 0.3s ease;
}
.about-visual:hover .about-community-img {
  filter: brightness(0.95) saturate(0.95) contrast(1.04);
}

/* ── Volunteer image placeholder ── */
.img-placeholder-volunteer {
  width: 100%;
  height: 200px;
  margin-bottom: 20px;
  border-radius: var(--radius-xl);
}
.img-placeholder-volunteer .img-ph-inner svg { width: 44px; height: 44px; }

/* Volunteer team image */
.volunteer-team-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-xl);
  margin-bottom: 20px;
  display: block;
  filter: brightness(0.88) saturate(0.9) contrast(1.06);
  box-shadow: inset 0 0 50px rgba(15, 23, 42, 0.25);
  transition: filter 0.3s ease;
}
.volunteer-form-wrap:hover .volunteer-team-img {
  filter: brightness(0.95) saturate(0.95) contrast(1.04);
}

/* ═══════════════════════ GALLERY SECTION ═══════════════════════ */
.gallery-section {
  padding: 80px 0;
  background: var(--dark);
}
.gallery-section .section-title { color: var(--white); }
.gallery-section .section-subtitle { color: rgba(255,255,255,0.5); }
.gallery-section .section-subtitle em { color: rgba(34,211,238,0.7); font-style: normal; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 14px;
}
.gallery-item { border-radius: var(--radius-lg); overflow: hidden; }
.gallery-item .img-placeholder.img-ph-gallery {
  height: 200px;
  border-radius: 0;
  border: none;
  border: 1.5px solid rgba(34,211,238,0.15);
  border-radius: var(--radius-lg);
}
.gallery-item:hover .img-ph-gallery { border-color: rgba(34,211,238,0.5); }
.gallery-item-tall {
  grid-row: span 2;
}
.gallery-item-tall .img-ph-gallery { height: 100% !important; min-height: 414px; }
.img-ph-gallery .img-ph-inner { gap: 10px; }
.img-ph-gallery .img-ph-inner svg { width: 32px; height: 32px; }
.img-ph-gallery .img-ph-inner span { font-size: 13px; color: rgba(255,255,255,0.55); }

/* Gallery collage layout: large portrait left, 4 smaller right in 2x2 */
.gallery-collage {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  align-items: stretch;
  min-height: 420px;
}
.gallery-featured {
  grid-row: span 2;
  grid-column: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--dark-mid);
}
.gallery-featured img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.gallery-grid-right {
  grid-column: 2;
  grid-row: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
}
.gallery-img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: var(--radius-lg);
  filter: brightness(0.88) saturate(0.9) contrast(1.06);
  transition: filter 0.3s ease;
}
.gallery-item:hover .gallery-img,
.gallery-featured:hover .gallery-img,
.gallery-grid-right:hover .gallery-img {
  filter: brightness(0.95) saturate(0.95) contrast(1.04);
}
.gallery-img-small {
  border-radius: var(--radius-lg);
}

/* ═══════════════════════ RESPONSIVE ═══════════════════════ */
@media (max-width: 1024px) {
  .pillars-grid { grid-template-columns: repeat(3, 1fr); }
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .membership-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .membership-featured { transform: scale(1); }
  .membership-featured:hover { transform: translateY(-4px); }
  .donate-impact-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1.5fr 1fr 1fr; gap: 32px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { max-width: 500px; margin: 0 auto; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item-tall { grid-row: span 1; }
  .gallery-item-tall .img-ph-gallery,
  .gallery-item-tall .gallery-img { min-height: 200px; height: 200px !important; }
  .hero-img-card { flex: 0 0 140px; }
  .gallery-collage {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    max-height: none;
    min-height: 0;
  }
  .gallery-featured { grid-row: span 1; min-height: 280px; }
  .gallery-img-featured { min-height: 280px; }
  .gallery-grid-right {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    min-height: 200px;
  }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--dark);
    flex-direction: column;
    padding: 100px 32px 40px;
    gap: 4px;
    transition: var(--transition-slow);
    z-index: 999;
    box-shadow: var(--shadow-xl);
    align-items: flex-start;
  }
  .nav-links.active { right: 0; }
  .nav-links li a { font-size: 16px; padding: 12px 16px; display: block; width: 100%; }
  .hero-stats { padding: 20px 24px; flex-direction: column; gap: 20px; }
  .stat-divider { width: 48px; height: 1px; }
  .stat-item { padding: 0; flex-direction: row; gap: 12px; align-items: center; }
  .pillars-grid { grid-template-columns: 1fr; }
  .programs-grid { grid-template-columns: 1fr; }
  .volunteer-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: 1 / -1; flex-direction: row; align-items: flex-start; gap: 24px; flex-wrap: wrap; }
  .footer-org-desc { max-width: 100%; }
  .donate-impact-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }
  .modal-box { padding: 36px 24px; }
  .membership-grid { max-width: 100%; }
  .about-card-stack { padding: 0; }
  .about-card-main { margin-bottom: -16px; }
  .about-card-secondary { margin-left: 16px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item-tall .img-ph-gallery,
  .gallery-item-tall .gallery-img { height: 220px !important; min-height: 220px; }
  .gallery-collage { gap: 10px; }
  .gallery-featured { min-height: 240px; }
  .gallery-img-featured { min-height: 240px; }
  .gallery-grid-right { gap: 10px; min-height: 180px; }
  .hero-image-row { gap: 8px; }
  .hero-img-card { flex: 0 0 calc(33% - 6px); }
  .logo-img { height: 42px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .donate-impact-grid { grid-template-columns: 1fr 1fr; }
  .donate-amounts { gap: 8px; }
  .donate-form-wrap { padding: 28px 20px; }
  .glass-card { padding: 28px 20px; }
  .membership-card { padding: 32px 24px; }
  .hero-image-row { display: none; }
  .footer-main { grid-template-columns: 1fr; gap: 24px; }
  .footer-brand { flex-direction: column; }
  .footer-logo-img { height: 48px; }
}

/* ── DARK MODE ── */
@media (prefers-color-scheme: dark) {
  body { background: var(--dark-mid); }
  .pillars-section, .programs-section, .volunteer-section { background: var(--dark-mid); }
  .about-section, .membership-section, .contact-section { background: var(--dark); }
  .pillar-card, .program-card { background: var(--dark-light); border-color: rgba(255,255,255,0.08); }
  .pillar-card h3, .program-card h3 { color: var(--white); }
  .pillar-card p, .program-card p { color: rgba(255,255,255,0.55); }
  .membership-card { background: var(--dark-mid); border-color: rgba(255,255,255,0.1); }
  .membership-card .price-amount { color: var(--white); }
  .membership-card .membership-desc, .membership-card .membership-features li { color: rgba(255,255,255,0.7); }
  .membership-card .btn-outline { color: var(--cyan); border-color: var(--cyan); }
  .membership-card .btn-outline:hover { background: rgba(34,211,238,0.15); color: var(--cyan-light); }
  .membership-eligibility { background: rgba(255,255,255,0.04); }
  .membership-eligibility h5 { color: var(--white); }
  .glass-card { background: var(--dark-mid); border-color: rgba(255,255,255,0.1); }
  .glass-card h3 { color: var(--white); }
  .contact-form-inner input, .contact-form-inner textarea, .contact-form-inner select { background: var(--dark-light); border-color: rgba(255,255,255,0.1); color: var(--white); }
  .contact-value { color: var(--white); }
  .section-title { color: var(--white); }
  .social-link { background: var(--dark-light); border-color: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); }
  .about-card { background: var(--dark-light); border-color: rgba(255,255,255,0.1); }
  .about-card h4, .about-card p { color: var(--white); }
  .about-card p { color: rgba(255,255,255,0.6); }
  .about-metric-badge { background: var(--dark-light); border-color: rgba(255,255,255,0.1); }
  .highlight-item { color: var(--white); }
  .volunteer-benefit h4 { color: var(--white); }
  .contact-label { color: rgba(255,255,255,0.4); }
  .membership-eligibility p { color: rgba(255,255,255,0.5); }
  .modal-box { background: var(--dark-mid); }
  .modal-header h3 { color: var(--white); }
  .modal-header p { color: rgba(255,255,255,0.5); }
  .modal-form input { background: var(--dark-light); border-color: rgba(255,255,255,0.1); color: var(--white); }
  .modal-close { background: var(--dark-light); color: rgba(255,255,255,0.6); }
  .membership-featured { background: linear-gradient(135deg, #0d2a3a 0%, #0a1f1a 100%); }
  .pillars-tagline { color: var(--white); }
}
