/* ============================================================
   HopeGive — donate.css
   Brand: Deep Ebony + Ceremonial Gold
   Themes: [data-theme="dark"] (default) | [data-theme="light"]
   Fonts: Playfair Display (display) + Plus Jakarta Sans (body)
   ============================================================ */

/* ── THEME TOKENS ────────────────────────────────────────────── */
:root,
[data-theme="dark"] {
  --gold:         #C9A84C;
  --gold-light:   #E8C96A;
  --gold-dark:    #9B7D35;
  --gold-glow:    rgba(201,168,76,0.18);

  --bg:           #0d0d0d;
  --bg-2:         #141414;
  --bg-3:         #1c1c1c;
  --bg-4:         #252525;
  --bg-5:         #2e2e2e;

  --surface:      #161616;
  --surface-2:    #1e1e1e;
  --surface-3:    #272727;

  --border:       rgba(255,255,255,0.07);
  --border-2:     rgba(255,255,255,0.12);

  --text:         #F5F4F0;
  --text-2:       #C8C5BC;
  --text-muted:   #7A7670;
  --text-faint:   #3E3C38;

  --green:        #22c55e;
  --red:          #ef4444;
  --teal:         #14b8a6;

  --nav-bg:       rgba(13,13,13,0.85);
  --modal-bg:     #161616;
  --card-bg:      #181818;
  --card-border:  rgba(255,255,255,0.06);
  --input-bg:     #1e1e1e;
  --input-border: #2e2e2e;
  --section-alt:  #111111;
  --section-dark: #0a0a0a;
  --trust-bg:     #0f0f0f;
  --footer-bg:    #080808;
  --step-bg:      #141414;
  --donor-bg:     rgba(255,255,255,0.04);
  --filter-border:#2e2e2e;
  --filter-active-bg: rgba(201,168,76,0.12);
}

[data-theme="light"] {
  --bg:           #FAFAF8;
  --bg-2:         #F5F4F0;
  --bg-3:         #EDECEA;
  --bg-4:         #E4E2DE;
  --bg-5:         #D8D5CF;

  --surface:      #FFFFFF;
  --surface-2:    #F8F7F4;
  --surface-3:    #F0EEE9;

  --border:       rgba(0,0,0,0.07);
  --border-2:     rgba(0,0,0,0.13);

  --text:         #1a1812;
  --text-2:       #4a4540;
  --text-muted:   #8a8580;
  --text-faint:   #C8C5BC;

  --nav-bg:       rgba(250,250,248,0.90);
  --modal-bg:     #FFFFFF;
  --card-bg:      #FFFFFF;
  --card-border:  rgba(0,0,0,0.07);
  --input-bg:     #F5F4F0;
  --input-border: #DDDBD6;
  --section-alt:  #F2F1ED;
  --section-dark: #1a1812;
  --trust-bg:     #0f0f0f;
  --footer-bg:    #0d0d0d;
  --step-bg:      #0a0a0a;
  --donor-bg:     rgba(0,0,0,0.04);
  --filter-border:#DDDBD6;
  --filter-active-bg: rgba(201,168,76,0.14);
}

/* ── RESET & BASE ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  transition: background 0.3s ease, color 0.3s ease;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── NAV ─────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  background: var(--nav-bg);
  backdrop-filter: blur(18px) saturate(1.5);
  -webkit-backdrop-filter: blur(18px) saturate(1.5);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  height: 66px;
  display: flex; align-items: center;
  padding: 0 24px; gap: 32px;
}

/* Brand */
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0; text-decoration: none;
}
.nav-brand-logo {
  height: 38px; width: auto; max-width: 180px;
  object-fit: contain; display: block;
}

/* Desktop nav links */
.nav-links {
  display: flex; align-items: center; gap: 4px;
  flex: 1;
}
.nav-link {
  font-size: 13px; font-weight: 500;
  color: var(--text-2);
  padding: 7px 13px; border-radius: 7px;
  transition: all 0.18s ease; cursor: pointer;
  background: none; border: none; font-family: inherit;
  display: flex; align-items: center; gap: 5px;
  white-space: nowrap;
}
.nav-link:hover { color: var(--text); background: var(--bg-3); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger { cursor: pointer; }
.nav-chevron { width: 12px; height: 12px; transition: transform 0.2s ease; }
.nav-dropdown.open .nav-chevron { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  width: 280px;
  background: var(--modal-bg);
  border: 1px solid var(--border-2);
  border-radius: 14px;
  padding: 8px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
  opacity: 0; pointer-events: none;
  transition: all 0.2s cubic-bezier(0.4,0,0.2,1);
  z-index: 100;
}
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-header {
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-muted);
  padding: 6px 12px 8px;
}
.nav-dropdown-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px; border-radius: 9px;
  color: var(--text-2); font-size: 13px;
  transition: all 0.15s ease;
  cursor: pointer;
}
.nav-dropdown-item:hover { background: var(--bg-3); color: var(--text); }
.nav-dropdown-icon {
  width: 34px; height: 34px; border-radius: 8px;
  background: var(--gold-glow);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 14px; flex-shrink: 0;
}
.nav-dropdown-label { font-weight: 600; font-size: 13px; color: var(--text); }
.nav-dropdown-desc  { font-size: 11px; color: var(--text-muted); margin-top: 1px; }
.nav-dropdown-divider { height: 1px; background: var(--border); margin: 6px 0; }

/* Nav right controls */
.nav-controls { display: flex; align-items: center; gap: 10px; margin-left: auto; flex-shrink: 0; }

/* ── THEME SWITCH ────────────────────────────────────────────── */
.theme-switch {
  background: none; border: none; cursor: pointer;
  padding: 0; display: flex; align-items: center;
}
.theme-track {
  width: 48px; height: 26px;
  background: var(--bg-4);
  border: 1.5px solid var(--border-2);
  border-radius: 13px;
  display: flex; align-items: center;
  padding: 2px;
  transition: background 0.3s ease, border-color 0.3s ease;
  position: relative;
}
[data-theme="light"] .theme-track {
  background: rgba(201,168,76,0.15);
  border-color: rgba(201,168,76,0.3);
}
.theme-thumb {
  width: 20px; height: 20px;
  background: var(--bg-2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.28s cubic-bezier(0.4,0,0.2,1), background 0.3s ease;
  box-shadow: 0 1px 4px rgba(0,0,0,0.3);
  position: relative; overflow: hidden;
}
[data-theme="light"] .theme-thumb {
  transform: translateX(22px);
  background: var(--gold);
}
/* Sun/Moon icons inside thumb */
.t-icon {
  width: 11px; height: 11px;
  position: absolute; transition: opacity 0.2s ease, transform 0.2s ease;
}
.t-sun  { color: var(--gold-light); opacity: 1; transform: scale(1); }
.t-moon { color: var(--text-2); opacity: 0; transform: scale(0.6); }

[data-theme="light"] .t-sun  { opacity: 0; transform: scale(0.6); }
[data-theme="light"] .t-moon { opacity: 1; transform: scale(1); color: #0d0d0d; }

/* Nav donate button */
.nav-donate-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 18px; border-radius: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #0d0d0d; font-size: 13px; font-weight: 600;
  border: none; cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.nav-donate-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(201,168,76,0.35); }

/* Hamburger */
.nav-ham {
  display: none; flex-direction: column; gap: 4.5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.nav-ham span {
  display: block; width: 20px; height: 2px;
  background: var(--text-2); border-radius: 2px;
  transition: all 0.2s ease;
}
.nav-ham.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-ham.open span:nth-child(2) { opacity: 0; }
.nav-ham.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
  display: none; flex-direction: column;
  background: var(--modal-bg);
  border-top: 1px solid var(--border);
  padding: 8px 16px 16px;
}
.nav-mobile.open { display: flex; }
.nav-m-link {
  padding: 12px 8px; font-size: 15px; font-weight: 500;
  color: var(--text-2); border-bottom: 1px solid var(--border);
  transition: color 0.15s;
}
.nav-m-link:hover { color: var(--gold); }
.nav-m-hr { border: none; border-top: 1px solid var(--border-2); margin: 6px 0; }

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 9px;
  font-family: inherit; font-size: 14px; font-weight: 600;
  cursor: pointer; border: none;
  transition: all 0.2s ease; white-space: nowrap;
  text-decoration: none;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #0d0d0d;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,168,76,0.38); }
.btn-ghost {
  background: rgba(255,255,255,0.07);
  color: var(--text-2);
  border: 1.5px solid var(--border-2);
}
[data-theme="light"] .btn-ghost { background: rgba(0,0,0,0.04); border-color: var(--border-2); }
.btn-ghost:hover { background: rgba(255,255,255,0.12); color: var(--text); }
[data-theme="light"] .btn-ghost:hover { background: rgba(0,0,0,0.07); }
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover { background: var(--gold-glow); }
.btn-lg  { padding: 15px 32px; font-size: 16px; border-radius: 11px; }
.btn-block { width: 100%; justify-content: center; padding: 15px; font-size: 15px; border-radius: 10px; }
.btn:disabled { opacity: 0.45; cursor: not-allowed; transform: none !important; box-shadow: none !important; }

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center; overflow: hidden;
  padding: 100px 24px 110px;
}
.hero-bg-wrap { position: absolute; inset: 0; }
.hero-bg {
  position: absolute; inset: 0;
  background: var(--bg) url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?w=1600&q=80') center/cover no-repeat;
  transform: scale(1.04); transition: transform 9s ease-out;
}
.hero-bg.panned { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(8,8,8,0.70) 0%,
    rgba(8,8,8,0.82) 50%,
    rgba(8,8,8,0.97) 100%);
}
.hero-noise {
  position: absolute; inset: 0; opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-body { position: relative; z-index: 2; max-width: 820px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.10);
  border: 1px solid rgba(201,168,76,0.28);
  color: var(--gold); padding: 6px 18px; border-radius: 100px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(34,197,94,0.5);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
  70%  { box-shadow: 0 0 0 7px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(52px, 9vw, 102px);
  font-weight: 800; line-height: 0.95;
  color: #FAFAF8; margin-bottom: 22px;
}
.hero-title em { font-style: italic; font-weight: 500; color: var(--text-2); }
.hero-accent { color: var(--gold); display: block; }

.hero-desc {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(200,197,188,0.85); line-height: 1.75;
  max-width: 640px; margin: 0 auto 28px;
}

.hero-live {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 100px; padding: 9px 22px;
  font-size: 13px; color: var(--text-2);
  margin-bottom: 36px; font-family: 'JetBrains Mono', monospace;
}
.live-dot-wrap { display: flex; align-items: center; }
.live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green); animation: pulse 2s infinite;
}
.live-badge {
  font-size: 9px; font-weight: 700; letter-spacing: 0.14em;
  color: var(--green); background: rgba(34,197,94,0.12);
  padding: 2px 7px; border-radius: 100px;
}
.live-num { color: var(--gold); font-weight: 700; }

.hero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Hero ticker */
.hero-ticker-wrap {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(201,168,76,0.08);
  border-top: 1px solid rgba(201,168,76,0.18);
  overflow: hidden; height: 40px;
  display: flex; align-items: center;
}
.ticker-inner {
  display: flex; gap: 56px; white-space: nowrap;
  animation: ticker 32s linear infinite;
}
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker-item {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 500; color: var(--gold-light);
}
.ticker-item i { font-size: 10px; }

/* ── TRUST STRIP ─────────────────────────────────────────────── */
.trust-strip {
  background: var(--trust-bg);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex; justify-content: center; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 7px;
  padding: 12px 24px;
  font-size: 11.5px; font-weight: 600;
  color: rgba(200,197,188,0.5);
  letter-spacing: 0.06em; text-transform: uppercase;
  border-right: 1px solid rgba(255,255,255,0.04);
}
.trust-item i { color: var(--gold); font-size: 12px; }

/* ── SECTIONS ────────────────────────────────────────────────── */
.section { padding: 90px 24px; }
.section-alt  { background: var(--section-alt); }
.section-dark { background: var(--section-dark); }
.section-gold { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%); }
.container { max-width: 1200px; margin: 0 auto; }
.section-head { text-align: center; margin-bottom: 52px; }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 700; line-height: 1.08;
  color: var(--text); margin-bottom: 14px;
}
.section-dark .section-title { color: #FAFAF8; }
.section-sub { font-size: 16px; color: var(--text-muted); max-width: 540px; margin: 0 auto; }
.section-dark .section-sub { color: rgba(200,197,188,0.6); }
.eyebrow {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}

/* ── ABOUT ───────────────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.about-lead {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 500; font-style: italic;
  color: var(--text-2); line-height: 1.55; margin-bottom: 20px;
}
.about-body { font-size: 15px; color: var(--text-muted); line-height: 1.78; margin-bottom: 14px; }
.about-values { display: flex; flex-direction: column; gap: 18px; margin-top: 28px; }
.about-value {
  display: flex; gap: 14px;
  padding: 16px 20px; border-radius: 12px;
  background: var(--surface); border: 1px solid var(--border);
}
.about-val-icon {
  width: 38px; height: 38px; border-radius: 9px; flex-shrink: 0;
  background: var(--gold-glow);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 15px;
}
.about-value strong { display: block; font-size: 14px; color: var(--text); margin-bottom: 4px; }
.about-value p { font-size: 13px; color: var(--text-muted); line-height: 1.55; }

.about-photo-card {
  border-radius: 16px; overflow: hidden; position: relative;
  aspect-ratio: 4/5; background: var(--surface-3);
  margin-bottom: 20px;
}
.about-photo { width: 100%; height: 100%; object-fit: cover; }
.about-photo-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, transparent 100%);
  padding: 24px 20px;
  display: flex; align-items: center; gap: 10px;
  color: #fff; font-size: 13px;
}
.about-photo-overlay i { color: var(--gold); font-size: 16px; }
.about-stat-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
.about-stat {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; padding: 16px;
  text-align: center; display: flex; flex-direction: column; gap: 4px;
}
.about-stat-n {
  font-family: 'JetBrains Mono', monospace;
  font-size: 22px; font-weight: 700; color: var(--gold);
}
.about-stat-l { font-size: 11px; color: var(--text-muted); letter-spacing: 0.05em; }

/* ── CAMPAIGN FILTERS ────────────────────────────────────────── */
.filters { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 36px; }
.filter-btn {
  padding: 8px 20px; border-radius: 100px;
  border: 1.5px solid var(--filter-border);
  background: transparent;
  font-size: 13px; font-weight: 500; color: var(--text-muted);
  cursor: pointer; transition: all 0.18s ease;
  font-family: inherit;
}
.filter-btn:hover { border-color: var(--gold); color: var(--gold); }
.filter-btn.active {
  background: var(--filter-active-bg);
  border-color: var(--gold); color: var(--gold);
}

/* ── CAMPAIGNS GRID ──────────────────────────────────────────── */
.campaigns-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 24px;
}
.skeleton {
  height: 380px; border-radius: 16px;
  background: linear-gradient(90deg, var(--surface) 25%, var(--surface-2) 50%, var(--surface) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.6s infinite;
}
@keyframes shimmer { 0% { background-position:200% 0; } 100% { background-position:-200% 0; } }

/* ── CAMPAIGN CARD ───────────────────────────────────────────── */
.camp-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.1);
  cursor: pointer; transition: all 0.22s ease;
  display: flex; flex-direction: column;
}
.camp-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.18); }

.camp-card-img { width: 100%; height: 195px; object-fit: cover; background: var(--surface-3); }
.camp-card-img-ph {
  width: 100%; height: 195px;
  background: linear-gradient(135deg, var(--surface-2), var(--surface-3));
  display: flex; align-items: center; justify-content: center;
  font-size: 36px; color: var(--gold);
}

.camp-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.camp-card-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 10px; }
.camp-tag {
  font-size: 10px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 100px;
}
.camp-tag-urgent   { background: rgba(239,68,68,0.1);   color: #f87171; border: 1px solid rgba(239,68,68,0.2); }
.camp-tag-verified { background: rgba(34,197,94,0.1);   color: #4ade80; border: 1px solid rgba(34,197,94,0.2); }
.camp-tag-cat      { background: var(--gold-glow);       color: var(--gold-dark); border: 1px solid rgba(201,168,76,0.2); }
.camp-tag-special  { background: rgba(20,184,166,0.1);  color: #2dd4bf; border: 1px solid rgba(20,184,166,0.2); }

.camp-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 700; line-height: 1.25;
  color: var(--text); margin-bottom: 7px;
}
.camp-card-sub { font-size: 13px; color: var(--text-muted); flex: 1; margin-bottom: 14px; line-height: 1.55; }

/* Standard campaign progress */
.camp-progress { width: 100%; height: 5px; border-radius: 3px; background: var(--bg-3); margin-bottom: 9px; overflow: hidden; }
.camp-progress-fill { height: 100%; border-radius: 3px; background: linear-gradient(90deg, var(--gold-dark), var(--gold)); transition: width 1s ease; }
.camp-card-meta { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 14px; }
.camp-raised { font-family: 'JetBrains Mono', monospace; font-size: 16px; font-weight: 700; color: var(--gold); }
.camp-goal   { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.camp-pct    { font-size: 20px; font-weight: 800; color: var(--green); font-family: 'JetBrains Mono', monospace; }

.camp-card-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 12px; border-top: 1px solid var(--border);
  font-size: 12px; color: var(--text-muted);
}
.camp-days { color: #f59e0b; font-weight: 500; }
.camp-share-row {
  display: flex; align-items: center; gap: 8px;
  margin-top: 10px; padding-top: 10px;
  border-top: 1px solid var(--border);
}
.camp-share-btn {
  display: inline-flex; align-items: center; gap: 5px;
  background: none; border: 1px solid var(--border);
  color: var(--text-muted); font-size: 11px; font-weight: 600;
  padding: 4px 10px; border-radius: 6px; cursor: pointer;
  transition: all 0.2s; white-space: nowrap; flex-shrink: 0;
  letter-spacing: 0.03em; text-transform: uppercase;
}
.camp-share-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.05); }
.camp-share-url {
  font-size: 10.5px; color: var(--text-muted); font-family: 'JetBrains Mono', monospace;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap; min-width: 0;
  opacity: 0.65;
}

/* ── SPECIAL "FOUNDATION FUND" CARD ─────────────────────────── */
.camp-card-special {
  border-color: rgba(201,168,76,0.2);
  background: linear-gradient(160deg, var(--card-bg) 60%, rgba(201,168,76,0.04) 100%);
}
.camp-card-special::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.camp-card-special { position: relative; overflow: hidden; }

/* Names feed on special card */
.special-names-feed {
  margin-top: 10px;
  background: var(--bg-3); border-radius: 10px;
  overflow: hidden; height: 110px;
  border: 1px solid var(--border);
}
.special-names-inner {
  padding: 6px 0;
  animation: namesFeed 20s linear infinite;
}
.special-name-row {
  display: flex; align-items: center; gap: 10px;
  padding: 7px 14px; font-size: 13px;
}
.special-name-row i { color: var(--gold); font-size: 11px; }
.special-name-text { color: var(--text-2); font-weight: 500; }
.special-name-time { margin-left: auto; font-size: 11px; color: var(--text-muted); }
@keyframes namesFeed {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

/* ── HOW IT WORKS ────────────────────────────────────────────── */
.steps-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.step-card {
  background: var(--step-bg);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 14px; padding: 28px 24px;
  text-align: center; position: relative;
}
.step-num-badge {
  font-family: 'Playfair Display', serif;
  font-size: 56px; font-weight: 800;
  color: rgba(201,168,76,0.08); line-height: 1;
  position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  pointer-events: none; user-select: none;
}
.step-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(201,168,76,0.1);
  border: 1.5px solid rgba(201,168,76,0.22);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--gold);
  margin: 32px auto 18px;
  position: relative; z-index: 1;
}
.step-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 19px; color: #FAFAF8; margin-bottom: 8px;
}
.step-card p { font-size: 14px; color: rgba(200,197,188,0.6); line-height: 1.65; }

/* ── DONORS FEED ─────────────────────────────────────────────── */
.donors-feed { display: flex; flex-direction: column; gap: 10px; max-width: 680px; margin: 0 auto; }
.donor-card {
  display: flex; align-items: center; gap: 14px;
  background: rgba(13,13,13,0.07);
  border-radius: 12px; padding: 14px 18px;
  animation: fadeUp 0.35s ease forwards;
}
@keyframes fadeUp { from { opacity:0; transform:translateY(7px); } to { opacity:1; transform:none; } }
.donor-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(13,13,13,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: #0d0d0d; flex-shrink: 0;
}
.donor-name  { font-weight: 600; font-size: 14px; color: #0d0d0d; }
.donor-sub   { font-size: 12px; color: rgba(13,13,13,0.5); margin-top: 2px; }
.donor-amount { margin-left: auto; font-family: 'JetBrains Mono', monospace; font-size: 14px; font-weight: 700; color: #0d0d0d; }
.donor-skel  { height: 72px; border-radius: 12px; background: rgba(13,13,13,0.08); animation: shimmer 1.5s infinite; background-size:200% 100%; }

/* ── MODALS ──────────────────────────────────────────────────── */
.backdrop {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(7px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.22s ease;
}
.backdrop.open { opacity: 1; pointer-events: all; }

.modal {
  position: fixed; z-index: 1001;
  top: 50%; left: 50%;
  transform: translate(-50%, -48%) scale(0.96);
  opacity: 0; pointer-events: none;
  width: min(540px, 95vw); max-height: 92svh;
  overflow-y: auto;
  background: var(--modal-bg);
  border: 1px solid var(--border-2);
  border-radius: 18px;
  box-shadow: 0 28px 80px rgba(0,0,0,0.4);
  padding: 36px 32px;
  transition: all 0.24s cubic-bezier(0.4,0,0.2,1);
}
.modal.open { transform: translate(-50%,-50%) scale(1); opacity: 1; pointer-events: all; }
.modal-wide { width: min(820px, 95vw); }

.modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 34px; height: 34px; border-radius: 50%;
  border: none; background: var(--surface-2);
  color: var(--text-muted); cursor: pointer; font-size: 15px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.15s ease;
}
.modal-close:hover { background: var(--surface-3); color: var(--text); }

.modal-header { text-align: center; margin-bottom: 24px; }
.modal-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: #0d0d0d; margin: 0 auto 14px;
}
.modal-icon-teal { background: linear-gradient(135deg, var(--teal), #67e8f9); }
.modal-title { font-family: 'Playfair Display', serif; font-size: 27px; font-weight: 700; color: var(--text); }
.modal-sub   { font-size: 13px; color: var(--text-muted); margin-top: 5px; }

/* Form elements */
.form-group  { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: 11px; font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 7px;
}
.form-input, .form-select {
  width: 100%; padding: 11px 14px;
  background: var(--input-bg); border: 1.5px solid var(--input-border);
  border-radius: 9px; color: var(--text);
  font-family: inherit; font-size: 14px;
  outline: none; transition: all 0.18s ease;
}
.form-input:focus, .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.form-select option { background: var(--modal-bg); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.amount-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 10px;
}
.amount-btn {
  padding: 10px 8px; border-radius: 8px;
  border: 1.5px solid var(--input-border);
  background: var(--input-bg); color: var(--text-muted);
  font-family: 'JetBrains Mono', monospace; font-size: 13px; font-weight: 500;
  cursor: pointer; transition: all 0.15s ease;
}
.amount-btn:hover, .amount-btn.active {
  border-color: var(--gold); background: var(--gold-glow); color: var(--gold);
}

.method-grid { display: flex; gap: 8px; flex-wrap: wrap; }
.method-opt  { flex: 1; min-width: 110px; }
.method-opt input { display: none; }
.method-opt span {
  display: flex; align-items: center; gap: 7px; justify-content: center;
  padding: 11px 14px; border-radius: 8px;
  border: 1.5px solid var(--input-border); background: var(--input-bg);
  font-size: 13px; font-weight: 500; color: var(--text-muted);
  cursor: pointer; transition: all 0.15s ease;
}
.method-opt input:checked + span { border-color: var(--gold); background: var(--gold-glow); color: var(--gold); }

.amount-summary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 10px; padding: 13px 18px;
  font-family: 'Playfair Display', serif; font-size: 20px;
  color: #0d0d0d; text-align: center; font-weight: 600; margin-bottom: 18px;
}
.back-link {
  font-size: 13px; font-weight: 500; color: var(--text-muted);
  cursor: pointer; display: inline-flex; align-items: center; gap: 6px;
  margin-bottom: 18px; transition: color 0.15s;
}
.back-link:hover { color: var(--gold); }
.checkbox-label {
  display: flex; align-items: center; gap: 9px;
  font-size: 13px; color: var(--text-muted); cursor: pointer; margin-bottom: 16px;
}
.bank-box {
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: 10px; padding: 16px 18px; margin-bottom: 16px;
}
.bank-box h4 { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.bank-row {
  display: flex; justify-content: space-between;
  font-size: 13px; padding: 7px 0;
  border-bottom: 1px solid var(--border);
}
.bank-row:last-of-type { border: none; }
.bank-row span { color: var(--text-muted); }
.bank-row strong { color: var(--text); }
.bank-note { font-size: 12px; color: #f59e0b; margin-top: 10px; display: flex; gap: 6px; align-items: flex-start; line-height: 1.5; }
.modal-legal { font-size: 12px; color: var(--text-muted); text-align: center; margin-top: 12px; }
.modal-legal a { color: var(--gold); }

/* Success state */
.success-wrap {
  width: 88px; height: 88px; position: relative; margin: 0 auto 22px;
}
.success-ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 2.5px solid var(--gold);
  animation: ringIn 0.55s cubic-bezier(0.4,0,0.2,1) forwards;
}
@keyframes ringIn { from { transform:scale(0); opacity:0; } to { transform:scale(1); opacity:1; } }
.success-heart {
  position: absolute; inset: 0; width: 40px; height: 36px;
  margin: auto;
  animation: heartIn 0.4s 0.3s both;
}
@keyframes heartIn { from { opacity:0; transform:scale(0.5); } to { opacity:1; transform:scale(1); } }
.success-title {
  font-family: 'Playfair Display', serif; font-size: 30px; font-weight: 700;
  text-align: center; color: var(--text); margin-bottom: 10px;
}
.success-msg { font-size: 15px; color: var(--text-muted); text-align: center; margin-bottom: 22px; }

/* ── CONTACT MODAL ───────────────────────────────────────────── */
.contact-opts { display: flex; flex-direction: column; gap: 10px; margin-top: 22px; }
.contact-opt {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px; border-radius: 12px;
  background: var(--surface); border: 1px solid var(--border);
  color: var(--text); transition: all 0.18s ease; cursor: pointer;
}
.contact-opt:hover { border-color: var(--gold); background: var(--gold-glow); }
.contact-whatsapp:hover { border-color: #25D366; background: rgba(37,211,102,0.07); }
.contact-opt-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--gold-glow);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--gold); flex-shrink: 0;
}
.contact-whatsapp .contact-opt-icon { background: rgba(37,211,102,0.12); color: #25D366; }
.contact-opt-body { flex: 1; }
.contact-opt-label { font-weight: 600; font-size: 14px; }
.contact-opt-val   { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.contact-opt-arr   { color: var(--text-muted); font-size: 12px; }

/* ── DETAIL MODAL ────────────────────────────────────────────── */
.detail-hero { width: 100%; height: 260px; object-fit: cover; border-radius: 12px; margin-bottom: 22px; }
.detail-title { font-family: 'Playfair Display', serif; font-size: 30px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.detail-sub   { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; }
.detail-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 20px; }
.detail-stat  { background: var(--surface); border-radius: 10px; padding: 14px; text-align: center; }
.detail-stat-v { font-family: 'JetBrains Mono', monospace; font-size: 18px; font-weight: 700; color: var(--gold); }
.detail-stat-l { font-size: 11px; color: var(--text-muted); margin-top: 3px; text-transform: uppercase; letter-spacing: 0.05em; }
.detail-story  { font-size: 14px; color: var(--text-muted); line-height: 1.75; margin-bottom: 22px; }
.detail-personal { background: var(--surface); border-radius: 12px; padding: 18px; margin-bottom: 20px; }
.detail-personal h4 { font-family: 'Playfair Display', serif; font-size: 18px; color: var(--text); margin-bottom: 12px; }
.detail-bill-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 13px; }
.detail-upd-item { padding: 13px 0; border-bottom: 1px solid var(--border); }
.detail-upd-date  { font-size: 11px; color: var(--text-muted); margin-bottom: 4px; }
.detail-upd-title { font-weight: 600; color: var(--text); margin-bottom: 5px; }
.detail-upd-body  { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer-main { background: var(--footer-bg); padding: 64px 24px 40px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
}
.footer-logo-wrap { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo-icon {
  width: 34px; height: 34px; border-radius: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  color: #0d0d0d; flex-shrink: 0;
}
.footer-logo-icon svg { width: 18px; height: 18px; }
.footer-logo-name { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700; color: var(--gold); }
.footer-logo-sub  { font-size: 10px; color: rgba(200,197,188,0.4); margin-top: 2px; }
.footer-tagline { font-size: 13px; color: rgba(200,197,188,0.45); line-height: 1.7; max-width: 260px; margin-bottom: 18px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 34px; height: 34px; border-radius: 8px;
  background: rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; color: rgba(200,197,188,0.45);
  transition: all 0.18s ease;
}
.footer-socials a:hover { background: var(--gold-glow); color: var(--gold); }
.footer-col-h { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.footer-ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-ul a { font-size: 13px; color: rgba(200,197,188,0.45); transition: color 0.15s; }
.footer-ul a:hover { color: var(--gold); }
.footer-bottom { background: rgba(0,0,0,0.4); border-top: 1px solid rgba(255,255,255,0.04); padding: 18px 24px; }
.footer-btm-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-btm-inner p { font-size: 12px; color: rgba(200,197,188,0.3); }
.footer-secure-badges { display: flex; align-items: center; gap: 12px; }
.footer-secure-badges span { font-size: 11px; color: rgba(200,197,188,0.3); display: flex; align-items: center; gap: 5px; }
.footer-adm { color: rgba(255,255,255,0.12); font-size: 15px; transition: color 0.15s; }
.footer-adm:hover { color: var(--gold); }

/* ── MONO ────────────────────────────────────────────────────── */
.mono { font-family: 'JetBrains Mono', monospace; }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid  { grid-template-columns: 1fr; gap: 40px; }
  .about-right { max-width: 480px; }
}
@media (max-width: 768px) {
  .nav-links    { display: none; }
  .nav-ham      { display: flex; }
  .form-row     { grid-template-columns: 1fr; }
  .detail-stats { grid-template-columns: 1fr 1fr; }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
  .hero-cta     { flex-direction: column; align-items: center; }
  .section { padding: 64px 20px; }
}
@media (max-width: 520px) {
  .campaigns-grid { grid-template-columns: 1fr; }
  .steps-grid     { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr; }
  .about-stat-row { grid-template-columns: repeat(3,1fr); }
  .modal { padding: 24px 18px; }
  .amount-grid { grid-template-columns: 1fr 1fr; }
  .trust-item  { padding: 10px 14px; font-size: 10.5px; }
}
