/* ================================================================
   LIONS CLUB FUNDRAISING PLATFORM — GLOBAL STYLES
   Design System: Navy · Gold · Forest Green · Warm Cream
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&display=swap');

/* ── CSS Variables ──────────────────────────────────────────── */
:root {
  --gold:         #C8950A;
  --gold-light:   #F0B429;
  --gold-pale:    #FEF3C7;
  --navy:         #0D1B2A;
  --navy-mid:     #1B2D4A;
  --navy-light:   #2E4A6B;
  --green:        #1B4332;
  --green-mid:    #2D6A4F;
  --green-light:  #52B788;
  --green-pale:   #D8F3DC;
  --cream:        #FDF8F0;
  --cream-dark:   #F5EDD8;
  --white:        #FFFFFF;
  --text:         #1A1A2E;
  --text-mid:     #3D3D5C;
  --text-light:   #6B7280;
  --border:       #E5DDD0;
  --red:          #B91C1C;
  --red-light:    #FEE2E2;

  --shadow-sm:    0 2px 8px  rgba(13,27,42,0.08);
  --shadow:       0 4px 24px rgba(13,27,42,0.12);
  --shadow-lg:    0 8px 48px rgba(13,27,42,0.18);
  --shadow-gold:  0 4px 24px rgba(200,149,10,0.30);

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

  --transition:   all 0.25s cubic-bezier(0.4,0,0.2,1);
  --transition-slow: all 0.45s cubic-bezier(0.4,0,0.2,1);

  --max-width:    1180px;
  --nav-height:   72px;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* ── Typography Scale ───────────────────────────────────────── */
.display { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(2.4rem,5vw,4.2rem); font-weight: 700; line-height: 1.12; }
.heading-1 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem,3.5vw,3rem); font-weight: 700; line-height: 1.2; }
.heading-2 { font-family: 'Playfair Display', serif; font-size: clamp(1.4rem,2.8vw,2.2rem); font-weight: 600; line-height: 1.3; }
.heading-3 { font-family: 'Playfair Display', serif; font-size: clamp(1.1rem,2vw,1.6rem); font-weight: 600; line-height: 1.35; }
.serif-body { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.15rem; line-height: 1.8; }
.label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.caption { font-size: 0.82rem; color: var(--text-light); }

/* ── Layout Utilities ───────────────────────────────────────── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-sm { gap: 12px; }
.gap { gap: 20px; }
.gap-lg { gap: 32px; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }

/* ── Section Headers ────────────────────────────────────────── */
.section-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold-pale); color: var(--gold);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 999px; margin-bottom: 16px;
  border: 1px solid rgba(200,149,10,0.25);
}
.section-badge.green { background: var(--green-pale); color: var(--green-mid); border-color: rgba(45,106,79,0.25); }
.section-badge.navy { background: rgba(13,27,42,0.08); color: var(--navy); border-color: rgba(13,27,42,0.15); }
.section-divider {
  width: 56px; height: 4px; border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 18px 0;
}
.section-divider.center { margin: 18px auto; }
.section-divider.green { background: linear-gradient(90deg, var(--green), var(--green-light)); }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 32px; border-radius: var(--radius); font-weight: 600; font-size: 0.95rem;
  transition: var(--transition); cursor: pointer; white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy); box-shadow: var(--shadow-gold);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(200,149,10,0.45); }
.btn-navy {
  background: var(--navy); color: var(--white);
  box-shadow: var(--shadow);
}
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-green {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-mid) 100%);
  color: var(--white); box-shadow: 0 4px 20px rgba(27,67,50,0.30);
}
.btn-green:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(27,67,50,0.40); }
.btn-outline {
  background: transparent; color: var(--navy);
  border: 2px solid var(--border);
}
.btn-outline:hover { border-color: var(--navy); background: var(--navy); color: var(--white); }
.btn-outline-white {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.50);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: white; }
.btn-lg { padding: 18px 44px; font-size: 1.05rem; border-radius: var(--radius-lg); }
.btn-sm { padding: 9px 20px; font-size: 0.85rem; border-radius: var(--radius-sm); }
.btn-full { width: 100%; }
.btn-icon { width: 44px; height: 44px; padding: 0; border-radius: 50%; }

/* ── Navigation ─────────────────────────────────────────────── */
#navbar {
  position: sticky; top: 0; z-index: 1000;
  height: var(--nav-height);
  background: rgba(13,27,42,0.96);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}
#navbar .container { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-text .name { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--white); line-height: 1.1; }
.nav-logo-text .sub { font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 8px 16px; border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.75); font-size: 0.88rem; font-weight: 500;
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--white); background: rgba(255,255,255,0.1); }
.nav-link.active { color: var(--gold-light); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-donate-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy); font-weight: 700; font-size: 0.85rem;
  padding: 9px 22px; border-radius: var(--radius-sm); transition: var(--transition);
}
.nav-donate-btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-gold); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; }
.hamburger span { width: 22px; height: 2px; background: white; border-radius: 2px; transition: var(--transition); }
.mobile-menu {
  display: none; position: fixed; top: var(--nav-height); left: 0; right: 0;
  background: var(--navy); padding: 20px 24px; border-bottom: 1px solid rgba(255,255,255,0.1);
  flex-direction: column; gap: 4px; z-index: 999;
}
.mobile-menu.open { display: flex; }
.mobile-menu .nav-link { color: rgba(255,255,255,0.8); padding: 12px 16px; font-size: 0.95rem; }
.mobile-menu .nav-donate-btn { text-align: center; padding: 14px; border-radius: var(--radius-sm); margin-top: 8px; display: block; }

/* ── Hero ────────────────────────────────────────────────────── */
#hero {
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-mid) 50%, #1a3a5e 100%);
  min-height: calc(100vh - var(--nav-height)); padding: 80px 0 96px;
  position: relative; overflow: hidden;
}
#hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Ccircle cx='40' cy='40' r='1' fill='rgba(200,149,10,0.06)'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.6;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,149,10,0.15); border: 1px solid rgba(200,149,10,0.35);
  color: var(--gold-light); padding: 6px 16px; border-radius: 999px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-badge .dot { width: 7px; height: 7px; background: var(--gold-light); 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.4)} }
.hero-title { color: var(--white); margin-bottom: 16px; }
.hero-title span { color: var(--gold-light); }
.hero-sub {
  color: rgba(255,255,255,0.72); font-size: 1.1rem; line-height: 1.7;
  max-width: 520px; margin-bottom: 36px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }
.hero-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(255,255,255,0.1); border-radius: var(--radius); overflow: hidden; }
.hero-stat {
  background: rgba(13,27,42,0.6); padding: 22px 18px; text-align: center;
  backdrop-filter: blur(8px);
}
.hero-stat .number { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--gold-light); line-height: 1; }
.hero-stat .label { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-top: 4px; }
.hero-visual { display: flex; flex-direction: column; gap: 20px; }
.hero-stamp-card {
  background: rgba(255,255,255,0.07); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius-lg);
  padding: 28px; text-align: center;
}
.hero-stamp-card h3 { font-family: 'Playfair Display', serif; color: var(--white); font-size: 1.1rem; margin-bottom: 4px; }
.hero-stamp-card p { color: rgba(255,255,255,0.55); font-size: 0.8rem; margin-bottom: 16px; }
.stamp-preview-wrap { position: relative; display: inline-block; width: 100%; }
.stamp-preview-wrap img {
  width: 100%; max-width: 280px; border-radius: var(--radius-sm);
  border: 3px solid rgba(255,255,255,0.2); margin: 0 auto;
  filter: blur(2px) brightness(0.85);
}
.stamp-demo-overlay {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
}
.stamp-demo-overlay span {
  background: rgba(200,149,10,0.88); color: white;
  font-weight: 900; font-size: 1.8rem; letter-spacing: 0.2em;
  padding: 6px 20px; border-radius: 4px; transform: rotate(-20deg);
  text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}
.hero-trust-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.trust-pill {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  padding: 6px 14px; border-radius: 999px; font-size: 0.78rem; color: rgba(255,255,255,0.7);
}
.trust-pill .icon { font-size: 0.95rem; }

/* ── Campaign Section ────────────────────────────────────────── */
#active-campaigns { background: var(--white); }
.campaign-header { text-align: center; margin-bottom: 56px; }
.main-campaign-card {
  background: var(--cream); border-radius: var(--radius-xl);
  overflow: hidden; box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.campaign-inner { display: grid; grid-template-columns: minmax(180px, 0.48fr) 1.52fr; }
.campaign-media {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  background: linear-gradient(165deg, var(--navy) 0%, #1a3a5c 55%, #243d5e 100%);
}
.campaign-media-img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: min(300px, 55vh);
  object-fit: contain;
  object-position: center;
  border-radius: var(--radius-sm);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}
.campaign-media img:not(.campaign-media-img) { width: 100%; height: 100%; object-fit: cover; }
.campaign-media-badge {
  position: absolute; top: 20px; left: 20px;
  background: var(--red); color: white;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 999px;
  animation: pulse-badge 2.5s infinite;
}
@keyframes pulse-badge { 0%,100%{box-shadow:0 0 0 0 rgba(185,28,28,0.5)} 50%{box-shadow:0 0 0 8px rgba(185,28,28,0)} }
.stamp-showcase {
  padding: 36px; display: flex; flex-direction: column; align-items: center;
  background: linear-gradient(160deg, #FDF5E0 0%, var(--cream) 100%);
  gap: 16px;
}
.stamp-showcase--inline {
  padding: 20px;
  margin: 0;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.stamp-frame {
  position: relative; display: inline-block;
  padding: 12px; background: white; border-radius: 4px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  border: 1px solid var(--border);
  line-height: 0;
}
.stamp-frame img {
  display: block;
  width: min(240px, 100%);
  height: auto;
  filter: blur(3px) brightness(0.9);
  transition: var(--transition-slow);
}
.stamp-frame.unlocked img { filter: none; }
.stamp-serration {
  position: absolute; inset: 0; pointer-events: none; z-index: 2;
  background:
    repeating-radial-gradient(circle at 0 50%, transparent 3px, rgba(253,245,224,0.95) 3px, rgba(253,245,224,0.95) 6px, transparent 6px) 0 0 / 12px 12px,
    repeating-radial-gradient(circle at 100% 50%, transparent 3px, rgba(253,245,224,0.95) 3px, rgba(253,245,224,0.95) 6px, transparent 6px) 100% 0 / 12px 12px;
}
.demo-badge {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%) rotate(-25deg);
  z-index: 3;
  background: rgba(200,149,10,0.9); color: white;
  font-weight: 900; font-size: 1.5rem; letter-spacing: 0.25em;
  padding: 5px 18px; border-radius: 4px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.stamp-locked-label { font-size: 0.78rem; color: var(--text-light); text-align: center; margin-top: 6px; }

.campaign-content { padding: 40px; display: flex; flex-direction: column; gap: 20px; overflow-y: auto; }
.campaign-content h2 { font-family: 'Playfair Display', serif; font-size: 1.75rem; color: var(--navy); line-height: 1.25; }
.campaign-content .campaign-desc { font-size: 0.92rem; color: var(--text-mid); line-height: 1.7; }
.campaign-detail-box {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 16px; font-size: 0.82rem; color: var(--text-mid); line-height: 1.7;
}
.campaign-detail-box h4 { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy); margin-bottom: 8px; }
.stamp-catalog { padding: 20px; }
.stamp-catalog-header {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  flex-wrap: wrap; margin-bottom: 12px;
}
.stamp-catalog-header h4 { margin-bottom: 0; }
.stamp-catalog-badge {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); background: rgba(200,149,10,0.1); border: 1px solid rgba(200,149,10,0.25);
  padding: 4px 10px; border-radius: 999px; white-space: nowrap;
}
.stamp-catalog-lead {
  font-size: 0.84rem; color: var(--text-mid); line-height: 1.75; margin: 0 0 16px;
  padding-bottom: 16px; border-bottom: 1px solid var(--border);
}
.stamp-spec-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 20px;
  margin: 0 0 18px; padding-bottom: 18px; border-bottom: 1px solid var(--border);
}
.stamp-spec-item { margin: 0; }
.stamp-spec-item dt {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--navy); margin-bottom: 2px;
}
.stamp-spec-item dd { margin: 0; font-size: 0.8rem; color: var(--text-mid); line-height: 1.5; }
.stamp-catalog-section { margin-bottom: 16px; }
.stamp-catalog-section:last-child { margin-bottom: 0; }
.stamp-catalog-section h5 {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--navy); margin: 0 0 8px;
}
.stamp-catalog-list {
  margin: 0; padding-left: 1.1rem; display: flex; flex-direction: column; gap: 6px;
}
.stamp-catalog-list li { font-size: 0.8rem; line-height: 1.65; }
.stamp-catalog-provenance {
  margin: 0; font-size: 0.8rem; line-height: 1.7; color: var(--text-mid);
  font-style: italic; padding: 12px 14px;
  background: linear-gradient(135deg, rgba(253,245,224,0.5) 0%, var(--cream) 100%);
  border-left: 3px solid var(--gold); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.progress-track { background: var(--border); border-radius: 999px; height: 8px; overflow: hidden; margin-top: 6px; }
.progress-fill { height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%); transition: width 1.5s cubic-bezier(0.4,0,0.2,1); }
.progress-fill.green { background: linear-gradient(90deg, var(--green) 0%, var(--green-light) 100%); }
.progress-labels { display: flex; justify-content: space-between; margin-top: 6px; font-size: 0.75rem; color: var(--text-light); }
.progress-labels strong { color: var(--navy); }

/* ── Donation Tiers ───────────────────────────────────────────── */
.donation-label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy); margin-bottom: 10px; }
.donation-tiers { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.tier-btn {
  padding: 12px 8px; border-radius: var(--radius-sm);
  border: 2px solid var(--border); background: var(--white);
  text-align: center; cursor: pointer; transition: var(--transition);
  font-weight: 600; color: var(--navy);
}
.tier-btn .amount { font-family: 'Playfair Display', serif; font-size: 1.15rem; display: block; }
.tier-btn .tier-label { font-size: 0.68rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-light); display: block; margin-top: 2px; }
.tier-btn:hover, .tier-btn.active {
  border-color: var(--gold); background: var(--gold-pale); color: var(--navy);
}
.tier-btn.featured { border-color: var(--gold); background: linear-gradient(135deg, var(--gold-pale), var(--cream)); }
.custom-amount { display: flex; gap: 8px; margin-top: 8px; }
.custom-amount input {
  flex: 1; padding: 11px 14px; border: 2px solid var(--border); border-radius: var(--radius-sm);
  font-size: 0.9rem; color: var(--navy); background: var(--white); transition: var(--transition);
}
.custom-amount input:focus { outline: none; border-color: var(--gold); }
.donate-now-btn {
  width: 100%; padding: 16px; background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy); font-weight: 700; font-size: 1rem; border-radius: var(--radius);
  border: none; cursor: pointer; transition: var(--transition);
  box-shadow: var(--shadow-gold); display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 8px;
}
.donate-now-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(200,149,10,0.45); }
.donation-note { font-size: 0.73rem; color: var(--text-light); text-align: center; display: flex; align-items: center; justify-content: center; gap: 4px; }

/* ── Use Cases / Stories Tabs ─────────────────────────────────── */
#use-cases { background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%); padding: 80px 0; }
.use-cases-header { text-align: center; margin-bottom: 44px; }
.use-cases-header h2 { color: var(--white); }
.use-cases-header p { color: rgba(255,255,255,0.6); margin-top: 10px; font-size: 0.95rem; }
.use-case-tabs { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 36px; }
.uc-tab {
  padding: 10px 22px; border-radius: 999px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.65); font-size: 0.83rem; font-weight: 600; cursor: pointer; transition: var(--transition);
}
.uc-tab.active, .uc-tab:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.uc-panels { }
.uc-panel { display: none; }
.uc-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: start; }
.uc-panel-content { color: rgba(255,255,255,0.9); }
.uc-panel-content h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: white; margin-bottom: 14px; }
.uc-panel-content p { color: rgba(255,255,255,0.7); font-size: 0.92rem; line-height: 1.7; margin-bottom: 14px; }
.uc-impact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 20px; }
.uc-impact-item {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm); padding: 16px; text-align: center;
}
.uc-impact-item .val { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--gold-light); }
.uc-impact-item .lbl { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-top: 4px; }
.uc-money-map { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); padding: 24px; }
.uc-money-map h4 { color: var(--gold-light); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; }
.money-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.money-row:last-child { border-bottom: none; }
.money-row .m-amount { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--gold-light); font-weight: 600; }
.money-row .m-desc { font-size: 0.82rem; color: rgba(255,255,255,0.65); }

/* ── Impact Dashboard ─────────────────────────────────────────── */
#impact { background: var(--cream-dark); }
.impact-header { text-align: center; margin-bottom: 56px; }
.impact-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-bottom: 48px; }
.impact-card {
  background: var(--white); border-radius: var(--radius); padding: 28px 20px; text-align: center;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border); transition: var(--transition);
}
.impact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.impact-card .ic-icon { font-size: 2.2rem; margin-bottom: 12px; }
.impact-card .ic-number { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--navy); line-height: 1; }
.impact-card .ic-unit { font-size: 0.75rem; color: var(--text-light); margin-top: 4px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.impact-card .ic-label { font-size: 0.82rem; color: var(--text-mid); margin-top: 8px; line-height: 1.4; }
.impact-donation-map { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.idm-card {
  background: var(--white); border-radius: var(--radius); padding: 24px;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
}
.idm-card .amount { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--gold); margin-bottom: 8px; }
.idm-card .equals { font-size: 1.2rem; color: var(--green-light); margin-bottom: 6px; }
.idm-card .outcome { font-size: 0.85rem; color: var(--text-mid); line-height: 1.5; }

/* ── Trust Signals ────────────────────────────────────────────── */
#trust { background: var(--white); }
.trust-header { text-align: center; margin-bottom: 56px; }
.trust-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-bottom: 56px; }
.trust-card {
  background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px 28px; transition: var(--transition);
}
.trust-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold); }
.trust-card .tc-icon { font-size: 2.4rem; margin-bottom: 16px; }
.trust-card .tc-title { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--navy); margin-bottom: 10px; }
.trust-card .tc-text { font-size: 0.87rem; color: var(--text-mid); line-height: 1.65; }
.trust-awards { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); border-radius: var(--radius-xl); padding: 48px; }
.trust-awards-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 48px; align-items: center; }
.awards-photo img { border-radius: var(--radius); box-shadow: var(--shadow-lg); border: 3px solid rgba(255,255,255,0.15); }
.awards-content h2 { font-family: 'Playfair Display', serif; color: white; font-size: 1.6rem; margin-bottom: 8px; }
.awards-content p { color: rgba(255,255,255,0.65); font-size: 0.9rem; line-height: 1.7; margin-bottom: 24px; }
.awards-list { display: flex; flex-direction: column; gap: 12px; }
.award-item { display: flex; align-items: flex-start; gap: 12px; }
.award-item .aw-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.award-item .aw-text { font-size: 0.85rem; color: rgba(255,255,255,0.75); line-height: 1.5; }
.award-item .aw-text strong { color: var(--gold-light); }

/* ── Community / Engagement ──────────────────────────────────── */
#community { background: linear-gradient(160deg, var(--green) 0%, var(--green-mid) 100%); padding: 80px 0; }
.community-header { text-align: center; margin-bottom: 52px; }
.community-header h2 { color: white; }
.community-header p { color: rgba(255,255,255,0.65); font-size: 0.95rem; margin-top: 10px; }
.community-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.comm-card {
  background: rgba(255,255,255,0.09); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.18); border-radius: var(--radius-lg);
  padding: 32px 26px; text-align: center; transition: var(--transition);
}
.comm-card:hover { background: rgba(255,255,255,0.15); transform: translateY(-4px); }
.comm-card .cc-icon { font-size: 2.4rem; margin-bottom: 16px; }
.comm-card h3 { font-family: 'Playfair Display', serif; color: white; font-size: 1.15rem; margin-bottom: 10px; }
.comm-card p { color: rgba(255,255,255,0.65); font-size: 0.86rem; line-height: 1.65; margin-bottom: 18px; }

/* ── Newsletter Banner ────────────────────────────────────────── */
#newsletter { background: var(--gold-pale); border-top: 1px solid rgba(200,149,10,0.20); border-bottom: 1px solid rgba(200,149,10,0.20); }
.newsletter-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; padding: 64px 0; }
.newsletter-text h2 { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--navy); margin-bottom: 10px; }
.newsletter-text p { color: var(--text-mid); font-size: 0.92rem; line-height: 1.65; }
.newsletter-form { display: flex; flex-direction: column; gap: 12px; }
.form-row { display: flex; gap: 10px; }
.newsletter-form input {
  flex: 1; padding: 13px 18px; border: 2px solid var(--border); border-radius: var(--radius-sm);
  font-size: 0.9rem; background: white; transition: var(--transition); color: var(--text);
}
.newsletter-form input:focus { outline: none; border-color: var(--gold); }
.newsletter-form .submit-btn {
  padding: 13px 28px; background: var(--navy); color: white; border: none;
  border-radius: var(--radius-sm); font-weight: 600; font-size: 0.9rem;
  cursor: pointer; transition: var(--transition); white-space: nowrap;
}
.newsletter-form .submit-btn:hover { background: var(--navy-mid); }
.newsletter-note { font-size: 0.72rem; color: var(--text-light); }

/* ── Footer ──────────────────────────────────────────────────── */
footer {
  background: var(--navy); color: rgba(255,255,255,0.75);
  padding: 64px 0 32px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand .logo-wrap { margin-bottom: 16px; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; color: rgba(255,255,255,0.55); max-width: 280px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
  transition: var(--transition); color: rgba(255,255,255,0.6);
}
.social-btn:hover { background: rgba(255,255,255,0.1); color: white; border-color: rgba(255,255,255,0.4); }
.footer-col h4 { color: white; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.55); transition: var(--transition); }
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.78rem; color: rgba(255,255,255,0.35); transition: var(--transition); }
.footer-legal a:hover { color: rgba(255,255,255,0.65); }
.footer-cert { display: flex; align-items: center; gap: 8px; font-size: 0.72rem; color: rgba(255,255,255,0.35); }

/* ── Payment Modal ────────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(13,27,42,0.78); backdrop-filter: blur(8px);
  display: none; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; transition: opacity 0.25s ease;
}
.modal-overlay.open { display: flex; opacity: 1; }
.modal-box {
  background: white; border-radius: var(--radius-xl);
  width: 100%; max-width: 560px; max-height: 90vh; overflow-y: auto;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s ease;
  opacity: 0;
}
.modal-overlay.open .modal-box { transform: translateY(0) scale(1); opacity: 1; }
.modal-header {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  padding: 28px 32px 24px; position: relative;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.modal-header h2 { font-family: 'Playfair Display', serif; color: white; font-size: 1.4rem; margin-bottom: 4px; }
.modal-header p { color: rgba(255,255,255,0.6); font-size: 0.85rem; }
.modal-close {
  position: absolute; top: 20px; right: 20px;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.15); border: none; color: white;
  font-size: 1rem; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.modal-close:hover { background: rgba(255,255,255,0.25); }
.modal-body { padding: 28px 32px; }
.modal-amount-display {
  background: var(--gold-pale); border: 1px solid rgba(200,149,10,0.3);
  border-radius: var(--radius); padding: 16px 20px;
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px;
}
.modal-amount-display .lbl { font-size: 0.75rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.08em; }
.modal-amount-display .val { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; color: var(--navy); }
.modal-amount-display .gets { font-size: 0.8rem; color: var(--green-mid); font-weight: 600; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; letter-spacing: 0.04em; }
.form-group input {
  width: 100%; padding: 12px 16px; border: 2px solid var(--border);
  border-radius: var(--radius-sm); font-size: 0.92rem; color: var(--text);
  transition: var(--transition);
}
.form-group input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,149,10,0.12); }
.payment-methods-label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy); margin-bottom: 12px; }
.payment-options { display: flex; flex-direction: column; gap: 10px; }
.payment-option {
  border: 2px solid var(--border); border-radius: var(--radius-sm); cursor: pointer;
  transition: var(--transition); overflow: hidden;
}
.payment-option.active { border-color: var(--gold); background: var(--gold-pale); }
.payment-option-header {
  padding: 14px 18px; display: flex; align-items: center; gap: 12px; cursor: pointer;
}
.payment-option-header input[type="radio"] { width: 16px; height: 16px; accent-color: var(--gold); cursor: pointer; }
.payment-option-header .pay-logo { font-size: 1.4rem; }
.payment-option-header .pay-name { font-weight: 600; font-size: 0.9rem; color: var(--navy); }
.payment-option-header .pay-sub { font-size: 0.75rem; color: var(--text-light); margin-top: 1px; }
.payment-option-body {
  display: none; padding: 0 18px 16px;
  border-top: 1px solid var(--border);
}
.payment-option.active .payment-option-body { display: block; }
.payment-option-body p { font-size: 0.82rem; color: var(--text-mid); margin-top: 12px; line-height: 1.55; }
.payment-option-body .pay-btn {
  width: 100%; padding: 13px; border-radius: var(--radius-sm);
  font-weight: 700; font-size: 0.95rem; border: none; cursor: pointer;
  margin-top: 12px; transition: var(--transition);
}
.pay-btn.stripe-btn { background: #635BFF; color: white; }
.pay-btn.stripe-btn:hover { background: #4A43CC; }
.pay-btn.paypal-btn { background: #003087; color: white; }
.pay-btn.paypal-btn:hover { background: #001B52; }
.pay-btn.razorpay-btn { background: #2D6BE4; color: white; }
.pay-btn.razorpay-btn:hover { background: #1D4FB8; }
.upi-qr { text-align: center; margin-top: 12px; }
.upi-qr img { width: 150px; height: 150px; border: 2px solid var(--border); border-radius: var(--radius-sm); margin: 0 auto 8px; }
.upi-qr p { font-size: 0.78rem; color: var(--text-light); }
.upi-vpa { font-family: monospace; font-size: 0.88rem; background: var(--cream); padding: 6px 12px; border-radius: var(--radius-sm); color: var(--navy); margin-top: 4px; display: inline-block; }
.modal-footer { padding: 0 32px 28px; }
.modal-secure { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 0.73rem; color: var(--text-light); }
.modal-secure .lock { color: var(--green-mid); }
.modal-terms { font-size: 0.72rem; color: var(--text-light); text-align: center; margin-top: 10px; line-height: 1.5; }
.modal-terms a { color: var(--navy); text-decoration: underline; }

/* ── History Page ─────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 80px 0 64px;
}
.page-hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.page-hero h1 { color: white; margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 1rem; line-height: 1.7; }
.story-card {
  background: var(--white); border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--border); margin-bottom: 48px;
  transition: var(--transition);
}
.story-card:hover { box-shadow: var(--shadow-lg); }
.story-card-inner { display: grid; grid-template-columns: 1fr 1.2fr; }
.story-images { display: grid; grid-template-rows: 1fr 1fr; gap: 2px; }
.story-images img { width: 100%; height: 100%; object-fit: cover; }
.story-content { padding: 44px; }
.story-number { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.story-content h2 { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--navy); margin-bottom: 16px; line-height: 1.25; }
.story-content p { color: var(--text-mid); font-size: 0.9rem; line-height: 1.75; margin-bottom: 14px; }
.story-meta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.story-tag {
  display: inline-flex; align-items: center; gap: 6px; padding: 5px 14px;
  border-radius: 999px; font-size: 0.73rem; font-weight: 600; letter-spacing: 0.04em;
  background: var(--cream); color: var(--navy); border: 1px solid var(--border);
}
.story-tag.green { background: var(--green-pale); color: var(--green); border-color: rgba(27,67,50,0.2); }
.story-tag.gold { background: var(--gold-pale); color: var(--gold); border-color: rgba(200,149,10,0.25); }
.story-tag.navy { background: rgba(13,27,42,0.06); color: var(--navy); border-color: rgba(13,27,42,0.12); }

/* ── About Page ───────────────────────────────────────────────── */
.about-founder { background: var(--white); padding: 80px 0; }
.founder-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 56px; align-items: start; }
.founder-photos { display: flex; flex-direction: column; gap: 16px; }
.founder-photos img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); border: 3px solid var(--border); }
.founder-photos .photo-caption { text-align: center; font-size: 0.75rem; color: var(--text-light); padding: 0 8px; }
.founder-content h1 { font-family: 'Playfair Display', serif; font-size: 2.4rem; color: var(--navy); margin-bottom: 8px; }
.founder-content .founder-title { font-size: 0.85rem; color: var(--gold); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 20px; }
.founder-content p { color: var(--text-mid); font-size: 0.92rem; line-height: 1.8; margin-bottom: 14px; }
.awards-badges { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
.award-badge {
  background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 14px; display: flex; align-items: flex-start; gap: 10px;
}
.award-badge .ab-icon { font-size: 1.4rem; flex-shrink: 0; }
.award-badge .ab-text { font-size: 0.8rem; color: var(--text-mid); line-height: 1.4; }
.award-badge .ab-text strong { display: block; color: var(--navy); font-size: 0.82rem; margin-bottom: 2px; }
.about-history { background: var(--cream-dark); padding: 80px 0; }
.timeline { position: relative; padding-left: 32px; }
.timeline::before { content: ''; position: absolute; left: 10px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--gold), var(--green)); }
.tl-item { position: relative; margin-bottom: 36px; }
.tl-dot {
  position: absolute; left: -38px; top: 4px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--gold); border: 3px solid white; box-shadow: var(--shadow-sm);
}
.tl-item h4 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--navy); margin-bottom: 6px; }
.tl-item .tl-year { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.tl-item p { font-size: 0.86rem; color: var(--text-mid); line-height: 1.65; }
.about-stats-band { background: linear-gradient(135deg, var(--navy), var(--navy-mid)); padding: 64px 0; }
.stats-band-inner { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: rgba(255,255,255,0.1); border-radius: var(--radius); overflow: hidden; }
.stat-cell { background: rgba(13,27,42,0.8); padding: 36px 24px; text-align: center; }
.stat-cell .sc-num { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 700; color: var(--gold-light); }
.stat-cell .sc-lbl { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-top: 6px; }

/* ── Success Page ─────────────────────────────────────────────── */
.success-hero {
  min-height: 100vh; background: linear-gradient(135deg, var(--navy) 0%, var(--green) 100%);
  display: flex; align-items: center; padding: 80px 0;
}
.success-card {
  background: white; border-radius: var(--radius-xl); padding: 56px 48px;
  max-width: 680px; margin: 0 auto; text-align: center; box-shadow: var(--shadow-lg);
}
.success-icon { font-size: 4rem; margin-bottom: 20px; }
.success-card h1 { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--navy); margin-bottom: 12px; }
.success-card p { color: var(--text-mid); font-size: 0.95rem; line-height: 1.7; margin-bottom: 8px; }
.success-stamp-section { margin: 36px 0; }
.success-stamp-section h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: var(--navy); margin-bottom: 20px; }
.stamp-download-card {
  background: var(--cream); border: 2px solid var(--gold); border-radius: var(--radius-lg);
  padding: 32px; display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.stamp-download-card img { width: 200px; border-radius: 4px; box-shadow: var(--shadow); }
.download-actions { display: flex; flex-direction: column; gap: 10px; width: 100%; max-width: 320px; }
.reference-num { background: var(--gold-pale); border: 1px solid rgba(200,149,10,0.3); border-radius: var(--radius-sm); padding: 12px 20px; font-family: monospace; font-size: 0.85rem; color: var(--navy); text-align: center; }

/* ── Animations ───────────────────────────────────────────────── */
@keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
@keyframes countUp { from{opacity:0;transform:translateY(10px)} to{opacity:1;transform:translateY(0)} }
.animate-up { animation: fadeUp 0.65s cubic-bezier(0.4,0,0.2,1) both; }
.animate-in { animation: fadeIn 0.5s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* Intersection observer animation classes */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.4,0,0.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4, .impact-grid, .impact-donation-map { grid-template-columns: repeat(2,1fr); }
  .stats-band-inner { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-awards-inner { grid-template-columns: 1fr; }
  .trust-awards-inner .awards-photo { display: none; }
}
@media (max-width: 820px) {
  .hero-grid, .grid-2, .campaign-inner, .story-card-inner,
  .uc-panel.active, .founder-grid, .newsletter-inner, .page-hero-inner { grid-template-columns: 1fr; }
  .nav-links, .nav-donate-btn { display: none; }
  .hamburger { display: flex; }
  .hero-stats { grid-template-columns: repeat(3,1fr); }
  .grid-3, .trust-grid, .community-grid { grid-template-columns: 1fr 1fr; }
  .campaign-media { min-height: 220px; padding: 20px 16px; }
  .campaign-media-img { max-height: 240px; }
  .section { padding: 64px 0; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { text-align: center; }
}
@media (max-width: 560px) {
  .grid-3, .trust-grid, .community-grid, .grid-4, .impact-grid, .impact-donation-map, .hero-stats,
  .stats-band-inner, .footer-grid, .awards-badges { grid-template-columns: 1fr; }
  .container { padding: 0 16px; }
  .modal-box { border-radius: var(--radius); }
  .modal-header, .modal-body, .modal-footer { padding-left: 20px; padding-right: 20px; }
  .donation-tiers { grid-template-columns: repeat(3,1fr); }
  .campaign-content, .story-content, .success-card { padding: 24px 20px; }
  .stamp-spec-grid { grid-template-columns: 1fr; }
  .trust-awards { padding: 32px 24px; }
}
