/* ═══════════════════════════════════════════════════════════════════
   SAVE GAZA KIDS — Design System
   ═══════════════════════════════════════════════════════════════════ */

:root {
  --ink:          #0B0C10;
  --ink-2:        #16181F;
  --ink-3:        #23262F;
  --white:        #FFFFFF;
  --parchment:    #F7F3ED;
  --parchment-2:  #EDE8E0;
  --red:          #B91C1C;
  --red-dark:     #7F1D1D;
  --red-light:    #FEF2F2;
  --gold:         #92600A;
  --olive:        #3D5A2E;
  --blue:         #1E3A5F;
  --muted:        #6B7280;
  --muted-light:  #9CA3AF;
  --border:       #E5E0D8;
  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'DM Sans', system-ui, sans-serif;
  --font-arabic:  'Cairo', sans-serif;
  --section-py:   96px;
  --container:    1200px;
  --radius:       2px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-sans); color: var(--ink); background: var(--white); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
html[lang="ar"] body { font-family: var(--font-arabic); }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
strong { font-weight: 700; }
em { font-style: italic; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.section { padding: var(--section-py) 0; }
.section--white { background: var(--white); }
.section--parchment { background: var(--parchment); }
.section--dark { background: var(--ink-2); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: inherit; font-weight: 600; font-size: .9rem;
  cursor: pointer; border: none; border-radius: var(--radius);
  transition: all .22s ease; white-space: nowrap; text-decoration: none;
  padding: 13px 28px;
}
.btn-lg { font-size: 1rem; padding: 16px 36px; }

.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(185,28,28,.35); }

.btn-ghost-white { background: rgba(255,255,255,.1); color: #fff; border: 1.5px solid rgba(255,255,255,.4); }
.btn-ghost-white:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.7); }

.btn-outline-dark { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn-outline-dark:hover { background: var(--ink); color: #fff; }

.btn-white-red { background: #fff; color: var(--red); font-weight: 700; }
.btn-white-red:hover { background: #f5f5f5; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.18); }

.btn-donate { width: 100%; justify-content: center; padding: 16px; font-size: 1rem; font-weight: 700; margin-top: 6px; }

/* ── Language Bar ── */
#lang-bar {
  background: var(--ink); border-bottom: 1px solid rgba(255,255,255,.06);
  position: sticky; top: 0; z-index: 1002;
}
.lang-bar-inner { display: flex; align-items: center; gap: 14px; height: 42px; }
.lang-bar-label { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,.4); font-size: .75rem; letter-spacing: .06em; text-transform: uppercase; flex-shrink: 0; font-weight: 500; }
.lang-scroll-track { display: flex; gap: 4px; overflow-x: auto; scrollbar-width: none; flex: 1; padding: 5px 0; }
.lang-scroll-track::-webkit-scrollbar { display: none; }
.lang-btn { flex-shrink: 0; background: transparent; border: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.5); font-family: inherit; font-size: .75rem; font-weight: 500; padding: 4px 11px; cursor: pointer; transition: all .18s; white-space: nowrap; border-radius: 1px; }
.lang-btn:hover { border-color: rgba(255,255,255,.3); color: rgba(255,255,255,.8); }
.lang-btn.active { background: var(--red); border-color: var(--red); color: #fff; font-weight: 700; }
.lang-btn--soon { opacity: .3; cursor: not-allowed; }
.lang-btn--soon::after { content: ' +'; font-size: .68em; }

/* ── HARM TICKER ── */
.harm-ticker {
  background: var(--red-dark); color: #fecaca;
  position: sticky; top: 42px; z-index: 1001;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.harm-ticker-inner {
  display: flex; align-items: center; gap: 20px;
  height: 38px; flex-wrap: wrap;
}
.harm-ticker-left { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.harm-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #f87171; flex-shrink: 0;
  animation: hd-pulse 1.4s ease-in-out infinite;
}
@keyframes hd-pulse { 0%,100% { opacity:1; box-shadow: 0 0 0 0 rgba(248,113,113,.7); } 50% { opacity:.7; box-shadow: 0 0 0 5px rgba(248,113,113,0); } }
.harm-label { font-size: .68rem; font-weight: 800; letter-spacing: .12em; color: #fff; }
.harm-ticker-center { font-size: .82rem; flex: 1; text-align: center; }
.harm-countdown { color: #fff; font-weight: 800; font-size: 1rem; font-variant-numeric: tabular-nums; margin-left: 4px; }
.harm-ticker-right { font-size: .78rem; flex-shrink: 0; }
.harm-ticker-right strong { color: #fff; }

/* ── Navigation ── */
#nav {
  background: var(--ink); /* always dark */
  position: sticky; top: 80px; /* lang bar + ticker */
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
#nav.solid { box-shadow: 0 2px 20px rgba(0,0,0,.3); }

.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { display: flex; align-items: center; gap: 10px; color: #fff; }
.logo-mark { width: 26px; height: 26px; color: rgba(255,255,255,.8); }
.logo-text { font-family: var(--font-serif); font-size: 1.05rem; font-weight: 700; color: #fff; letter-spacing: -.01em; }

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: rgba(255,255,255,.7); font-size: .85rem; font-weight: 500; transition: color .18s; }
.nav-links a:hover { color: #fff; }
.nav-cta { background: var(--red) !important; color: #fff !important; padding: 8px 20px; border-radius: 1px; font-weight: 700 !important; }
.nav-cta:hover { background: var(--red-dark) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: #fff; transition: all .3s; }

/* Inner page: nav is always sticky at the top */
.inner-page #nav { top: 80px; position: fixed; left: 0; right: 0; }

/* ── HERO ── */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: space-between;
  overflow: hidden; padding-top: 64px; /* nav */
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; filter: brightness(.38) saturate(.7); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(160deg, rgba(11,12,16,.85) 0%, rgba(11,12,16,.55) 55%, rgba(127,29,29,.25) 100%); }
.hero-content { position: relative; z-index: 1; color: #fff; padding: 72px 32px 48px; }
.hero-eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 24px; }
.hero-live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); flex-shrink: 0; animation: hd-pulse 1.4s ease-in-out infinite; }
.hero-eyebrow span:last-child { font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.55); }
.hero-title { font-family: var(--font-serif); font-size: clamp(3.2rem, 6.5vw, 6.5rem); font-weight: 700; line-height: 1.06; letter-spacing: -.02em; margin-bottom: 24px; }
.hero-title em { color: rgba(255,255,255,.32); display: block; font-style: italic; }
html[lang="ar"] .hero-title { letter-spacing: 0; }
.hero-sub { font-size: clamp(.95rem, 1.6vw, 1.1rem); color: rgba(255,255,255,.7); line-height: 1.75; max-width: 580px; margin-bottom: 36px; }
.hero-sub strong { color: #fff; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero stats */
.hero-stats-bar { position: relative; z-index: 1; background: rgba(11,12,16,.8); backdrop-filter: blur(12px); border-top: 1px solid rgba(255,255,255,.07); }
.hero-stats-grid { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; align-items: center; padding: 24px 0; }
.hero-stat { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 20px; }
.hero-stat-num { font-family: var(--font-serif); font-size: clamp(1.6rem, 2.8vw, 2.5rem); font-weight: 700; color: #fff; line-height: 1; letter-spacing: -.02em; }
.hero-stat-label { font-size: .72rem; color: rgba(255,255,255,.45); margin-top: 5px; max-width: 120px; line-height: 1.4; }
.hero-stat-div { width: 1px; height: 36px; background: rgba(255,255,255,.08); }

/* ── Video section ── */
.video-section { background: var(--ink); padding: 80px 0; }
.video-section-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: center; }
.video-section-text h2 { font-family: var(--font-serif); font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 700; color: #fff; letter-spacing: -.02em; margin-bottom: 16px; line-height: 1.15; }
.video-section-text p { color: rgba(255,255,255,.6); font-size: .95rem; line-height: 1.8; }
.video-embed-wrap { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; }
.video-embed-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }

/* ── Partners Strip ── */
.partners-strip { background: #fff; padding: 48px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.partners-strip-label { text-align: center; font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-light); margin-bottom: 32px; }
.partners-logos-row { display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.partner-logo-item {
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); background: #fff;
  padding: 10px 16px; height: 60px; min-width: 130px;
  transition: all .2s; text-decoration: none;
  filter: grayscale(40%); opacity: .75;
}
.partner-logo-item:hover { opacity: 1; filter: grayscale(0%); border-color: #bbb; box-shadow: 0 2px 12px rgba(0,0,0,.08); }
.partner-logo-item svg { width: 130px; height: 44px; }
.partner-logo-item--text { font-size: .75rem; font-weight: 700; color: var(--muted); text-align: center; line-height: 1.3; letter-spacing: .04em; text-transform: uppercase; }
.gov-partners { border-top: 1px solid var(--border); padding-top: 24px; text-align: center; }
.gov-partners-label { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-light); margin-bottom: 14px; }
.gov-flags-row { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; }
.gov-flag-item { display: flex; flex-direction: column; align-items: center; gap: 5px; }
.gov-flag-item img { border-radius: 1px; box-shadow: 0 1px 4px rgba(0,0,0,.12); }
.gov-flag-item span { font-size: .7rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }

/* ── Section Headers ── */
.section-header { text-align: center; margin-bottom: 64px; max-width: 700px; margin-left: auto; margin-right: auto; }
.section-header h2 { font-family: var(--font-serif); font-size: clamp(2rem, 4.5vw, 3.5rem); font-weight: 700; letter-spacing: -.02em; line-height: 1.1; color: var(--ink); margin-bottom: 18px; }
.section-header--light h2 { color: #fff; }
.section-header p { font-size: .95rem; color: var(--muted); line-height: 1.8; }
.section-kicker { display: inline-block; font-size: .68rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; margin-bottom: 12px; }
.section-kicker--red { color: var(--red); }
.section-kicker--dim { color: rgba(255,255,255,.4); }
.section-kicker--light-sm { color: rgba(255,255,255,.5); font-size: .7rem; letter-spacing: .14em; font-weight: 700; text-transform: uppercase; display: block; margin-bottom: 14px; }

/* ── Crisis Cards ── */
/* ══════════════════════════════════════════════════════
   THE REALITY — Editorial Data-Journalism Style
   ══════════════════════════════════════════════════════ */
.reality-section { background: #0B0C10; }
.reality-header { padding: 72px 0 40px; text-align: center; }
.reality-header h2 { font-family: var(--font-serif); font-size: clamp(2rem,4vw,3.2rem); font-weight: 700; color: #fff; letter-spacing: -.02em; margin-bottom: 12px; }
.reality-header p { color: rgba(255,255,255,.4); font-size: .88rem; }
.reality-header .section-kicker--red { color: var(--red); }

/* Lead stats strip */
.reality-lead-strip { background: var(--red-dark); border-top: 1px solid rgba(255,255,255,.06); border-bottom: 1px solid rgba(255,255,255,.06); }
.reality-lead-grid { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; align-items: center; padding: 36px 0; }
.rls-div { width: 1px; height: 52px; background: rgba(255,255,255,.18); }
.rls-item { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 20px; gap: 5px; }
.rls-item--red .rls-num { color: #fca5a5; }
.rls-num { font-family: var(--font-serif); font-size: clamp(1.8rem,3vw,2.8rem); font-weight: 800; color: #fff; line-height: 1; letter-spacing: -.03em; }
.rls-label { font-size: .74rem; color: rgba(255,255,255,.6); line-height: 1.45; max-width: 150px; }
.rls-src { font-size: .6rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.28); }

/* Chapters */
.reality-chapters { display: flex; flex-direction: column; }
.reality-chapter { border-bottom: 1px solid rgba(255,255,255,.05); }
.reality-chapter--amber { background: #0e0d07; }
.reality-chapter--red   { background: #0e0707; }
.reality-chapter--blue  { background: #070810; }
.reality-chapter--olive { background: #060d06; }

/* Background images — darkly layered behind each chapter */
.reality-header { position: relative; overflow: hidden; }
.reality-header::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../img/new2.jpg') center 35% / cover no-repeat;
  filter: brightness(.08) saturate(.2) grayscale(.3);
  z-index: 0;
}
.reality-header > .container { position: relative; z-index: 1; }

.reality-chapter { position: relative; overflow: hidden; }
.reality-chapter-inner { position: relative; z-index: 1; }

.reality-chapter--amber::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../img/new3.jpg') center 40% / cover no-repeat;
  filter: brightness(.09) saturate(.25) grayscale(.25);
}
.reality-chapter--red::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../img/new4.jpg') center 30% / cover no-repeat;
  filter: brightness(.09) saturate(.25) grayscale(.25);
}
.reality-chapter--blue::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../img/new2.jpg') center 25% / cover no-repeat;
  filter: brightness(.09) saturate(.2) grayscale(.35);
}
.reality-chapter--olive::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../img/new1.jpg') center 50% / cover no-repeat;
  filter: brightness(.09) saturate(.2) grayscale(.3);
}

.reality-chapter-inner { display: grid; grid-template-columns: 320px 1fr; min-height: 300px; }
.rc-left { padding: 48px 36px 48px 0; display: flex; flex-direction: column; border-right: 1px solid rgba(255,255,255,.06); }
.rc-category-bar { width: 32px; height: 3px; margin-bottom: 20px; }
.rc-bar--amber { background: #D97706; } .rc-bar--red { background: var(--red); } .rc-bar--blue { background: #3B82F6; } .rc-bar--olive { background: #4D7C0F; }
.rc-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; flex-wrap: wrap; }
.rc-source-badge { display: inline-flex; align-items: center; gap: 5px; font-size: .63rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; padding: 4px 9px; }
.rc-badge--amber { background: rgba(217,119,6,.12); color: #D97706; }
.rc-badge--red   { background: rgba(185,28,28,.18); color: #F87171; }
.rc-badge--blue  { background: rgba(59,130,246,.12); color: #60A5FA; }
.rc-badge--olive { background: rgba(77,124,15,.12); color: #86EFAC; }
.rc-source-link { font-size: .67rem; color: rgba(255,255,255,.25); transition: color .2s; }
.rc-source-link:hover { color: rgba(255,255,255,.65); }
.rc-big-stat { margin-bottom: 18px; }
.rc-big-num { font-family: var(--font-serif); font-size: clamp(2.8rem,4.5vw,4.5rem); font-weight: 800; color: #fff; line-height: .9; letter-spacing: -.04em; display: block; }
.rc-big-label { font-size: .72rem; color: rgba(255,255,255,.35); margin-top: 8px; line-height: 1.45; display: block; }
.rc-title { font-family: var(--font-serif); font-size: clamp(1.2rem,1.8vw,1.6rem); font-weight: 700; color: #fff; letter-spacing: -.01em; line-height: 1.2; margin-bottom: 14px; }
.rc-headline { font-size: .82rem; color: rgba(255,255,255,.45); line-height: 1.72; margin-top: auto; }
.rc-headline strong { color: rgba(255,255,255,.78); }
.rc-right { padding: 48px 0 48px 44px; }
.rc-stat-list { list-style: none; }
.rc-stat-list > li { display: grid; grid-template-columns: 76px 1fr; gap: 16px; align-items: start; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.04); }
.rc-stat-list > li:last-child { border-bottom: none; }
.rc-stat-num { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 800; line-height: 1.1; padding-top: 3px; }
.rc-num--amber { color: #D97706; } .rc-num--red { color: #F87171; } .rc-num--blue { color: #60A5FA; } .rc-num--olive { color: #86EFAC; }
.rc-stat-text { font-size: .84rem; color: rgba(255,255,255,.55); line-height: 1.65; }
/* Note item — override the 2-col grid, span full width */
.rc-stat-list-note {
  display: block !important;
  grid-template-columns: none !important;
  font-size: .77rem; color: rgba(255,255,255,.28);
  line-height: 1.72; font-style: italic;
  padding: 14px 0 0 !important;
  border-bottom: none !important;
  border-top: 1px dashed rgba(255,255,255,.07);
  margin-top: 4px;
}
.reality-wck { background: #090a0d; border-top: 1px solid rgba(255,255,255,.06); }
.reality-wck-inner { display: flex; align-items: center; gap: 24px; padding: 28px 0; flex-wrap: wrap; }
.reality-wck-logo { display: flex; align-items: center; gap: 8px; flex-shrink: 0; color: rgba(255,255,255,.35); font-size: .78rem; }
.reality-wck-logo a { color: rgba(255,255,255,.65); font-weight: 700; }
.reality-wck-inner p { font-size: .82rem; color: rgba(255,255,255,.42); line-height: 1.7; flex: 1; min-width: 240px; }
.reality-wck-inner p strong { color: rgba(255,255,255,.7); }
.btn-sm { padding: 9px 20px; font-size: .82rem; flex-shrink: 0; }
.btn-outline-dark { color: rgba(255,255,255,.55); border-color: rgba(255,255,255,.18); background: transparent; }
.btn-outline-dark:hover { background: rgba(255,255,255,.07); color: #fff; border-color: rgba(255,255,255,.45); }

/* ══════════════════════════════════════════════════════
   STICKY DONATE WIDGET
   ══════════════════════════════════════════════════════ */
.sticky-donate {
  position: fixed;
  right: 28px;
  top: 50%;
  transform: translateY(-50%) translateX(calc(100% + 40px));
  width: 288px;
  z-index: 890;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.55s cubic-bezier(0.34, 1.46, 0.64, 1),
              opacity 0.4s ease;
  will-change: transform, opacity;
}
.sticky-donate.sd-visible {
  transform: translateY(-50%) translateX(0);
  opacity: 1;
  pointer-events: auto;
}
/* Fly-to-donate animation: shrinks toward the donate panel */
.sticky-donate.sd-merging {
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.8, 1),
              opacity 0.45s ease,
              scale 0.55s ease;
  transform: translateY(60vh) translateX(0) scale(0.7);
  opacity: 0;
  pointer-events: none;
}
/* After donate section is scrolled past upward again */
.sticky-donate.sd-hidden {
  transform: translateY(-50%) translateX(calc(100% + 40px));
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s ease, opacity 0.3s ease;
}

.sticky-donate-inner {
  background: rgba(10,11,15,.93);
  border: 1px solid rgba(185,28,28,.35);
  border-top: 3px solid var(--red);
  box-shadow: 0 24px 64px rgba(0,0,0,.7),
              0 0 0 1px rgba(255,255,255,.04) inset;
  backdrop-filter: blur(18px);
  padding: 20px;
  position: relative;
  overflow: hidden;
}
.sticky-donate-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 80px;
  background: linear-gradient(180deg, rgba(185,28,28,.12) 0%, transparent 100%);
  pointer-events: none;
}

.sticky-donate-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.sticky-live-row {
  display: flex;
  align-items: center;
  gap: 7px;
}
.sticky-live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 3px rgba(185,28,28,.3);
  animation: sdPulse 1.6s ease-in-out infinite;
}
@keyframes sdPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(185,28,28,.3); }
  50%       { box-shadow: 0 0 0 6px rgba(185,28,28,.08); }
}
.sticky-live-label {
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--red);
  text-transform: uppercase;
}
.sticky-close-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.4);
  cursor: pointer;
  border-radius: 2px;
  transition: all .15s;
  flex-shrink: 0;
}
.sticky-close-btn:hover {
  color: #fff;
  border-color: rgba(255,255,255,.3);
  background: rgba(255,255,255,.1);
}

.sticky-headline {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  line-height: 1.25;
  color: rgba(255,255,255,.85);
  margin-bottom: 16px;
  font-weight: 600;
}
.sticky-headline strong { color: #fff; font-weight: 700; }

.sticky-amounts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  margin-bottom: 10px;
}
.sticky-amt {
  border: 1.5px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.65);
  font-family: inherit;
  font-weight: 700;
  font-size: .82rem;
  padding: 8px 4px;
  cursor: pointer;
  transition: all .15s;
  border-radius: 1px;
}
.sticky-amt:hover {
  border-color: var(--red);
  color: #f87171;
  background: rgba(185,28,28,.12);
}
.sticky-amt.active {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

.sticky-impact {
  font-size: .72rem;
  color: rgba(255,255,255,.38);
  margin-bottom: 14px;
  font-style: italic;
  min-height: 1em;
  transition: opacity .2s;
}

.sticky-donate-cta {
  width: 100%;
  justify-content: center;
  padding: 13px;
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: .01em;
}

.sticky-progress { }
.sticky-prog-track {
  height: 3px;
  background: rgba(255,255,255,.1);
  margin-bottom: 6px;
  overflow: hidden;
}
.sticky-prog-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--red-dark), var(--red));
  transition: width .4s ease;
}
.sticky-prog-label {
  font-size: .66rem;
  color: rgba(255,255,255,.3);
  letter-spacing: .02em;
}

/* Hide on very small screens */
@media (max-width: 768px) {
  .sticky-donate { display: none; }
}

/* ══════════════════════════════════════════════════════
   HARM POPUP
   ══════════════════════════════════════════════════════ */
.harm-popup { position: fixed; inset: 0; z-index: 9000; display: flex; align-items: center; justify-content: center; padding: 20px; }
.harm-popup[hidden] { display: none; }
.harm-popup-backdrop { position: absolute; inset: 0; background: rgba(80,5,5,.8); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.harm-popup-panel { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1.15fr; max-width: 820px; width: 100%; max-height: 90vh; box-shadow: 0 40px 120px rgba(0,0,0,.9); animation: popupIn .4s cubic-bezier(0.16,1,0.3,1); }
@keyframes popupIn { from { opacity:0; transform:scale(.9) translateY(32px); } to { opacity:1; transform:scale(1) translateY(0); } }
.harm-popup-img-col { position: relative; overflow: hidden; min-height: 340px; }
.harm-popup-photo { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; display: block; filter: brightness(.65) saturate(.7); }
.harm-popup-img-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, transparent 50%, rgba(26,4,4,.7) 100%), linear-gradient(to top, rgba(0,0,0,.4) 0%, transparent 50%); }
.harm-popup-content { background: #1a0404; padding: 40px 36px; display: flex; flex-direction: column; gap: 14px; overflow-y: auto; }
.harm-popup-live-row { display: flex; align-items: center; gap: 8px; }
.harm-popup-dot { width: 9px; height: 9px; border-radius: 50%; background: #f87171; animation: hd-pulse 1.2s ease-in-out infinite; flex-shrink: 0; }
.harm-popup-live-label { font-size: .62rem; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; color: #f87171; }
.harm-popup-title { font-family: var(--font-serif); font-size: clamp(1.15rem,2vw,1.6rem); font-weight: 700; color: #fff; line-height: 1.25; letter-spacing: -.01em; }
.harm-popup-body { font-size: .83rem; color: rgba(255,255,255,.55); line-height: 1.75; }
.harm-popup-body strong { color: #fff; }
.harm-popup-body--em { border-left: 3px solid rgba(248,113,113,.3); padding-left: 12px; font-size: .78rem; color: rgba(255,255,255,.35); line-height: 1.65; }
.harm-popup-body--em em { color: rgba(255,255,255,.25); font-style: italic; }
.harm-popup-cta { justify-content: center; }
.harm-popup-dismiss { background: none; border: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.3); font-family: inherit; font-size: .73rem; cursor: pointer; padding: 10px; width: 100%; transition: all .2s; }
.harm-popup-dismiss:hover { border-color: rgba(255,255,255,.28); color: rgba(255,255,255,.6); }
.harm-popup-auto-close { text-align: center; font-size: .66rem; color: rgba(255,255,255,.18); }
@media (max-width: 600px) { .harm-popup-panel { grid-template-columns: 1fr; } .harm-popup-img-col { min-height: 160px; max-height: 180px; } .harm-popup-content { padding: 24px 20px; } }

/* Responsive for reality section */
@media (max-width: 900px) {
  .reality-chapter-inner { grid-template-columns: 1fr; }
  .rc-left { border-right: none; border-bottom: 1px solid rgba(255,255,255,.06); padding: 36px 0 28px; }
  .rc-right { padding: 28px 0 36px; }
  .reality-lead-grid { grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,.08); }
  .rls-div { display: none; }
  .rls-item { background: var(--red-dark); padding: 20px; }
}
@media (max-width: 540px) {
  .reality-lead-grid { grid-template-columns: 1fr; }
  .rc-stat-list > li { grid-template-columns: 60px 1fr; gap: 12px; }
}

/* ── Urgent Callout ── */
.urgent-callout { position: relative; padding: 80px 0; overflow: hidden; }
.urgent-callout-bg { position: absolute; inset: 0; }
.urgent-callout-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; filter: brightness(.28) saturate(.5) sepia(.1); }
/* Subtle Palestinian flag colour bands — black stripe top, white mid, green lower, red accent */
.urgent-callout-flag-wash {
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,.35)        0%,
    rgba(0,0,0,.15)       18%,
    rgba(255,255,255,.03) 36%,
    rgba(0,106,53,.08)    60%,
    rgba(206,17,38,.18)   100%
  );
}
.urgent-callout-overlay { position: absolute; inset: 0; background: linear-gradient(125deg, rgba(110,15,15,.88) 0%, rgba(11,12,16,.82) 60%, rgba(20,8,8,.9) 100%); }
.urgent-callout-content { position: relative; z-index: 1; display: flex; gap: 48px; align-items: center; flex-wrap: wrap; }
.urgent-callout-stats { display: flex; gap: 40px; flex-wrap: wrap; flex: 1; }
.uc-stat { display: flex; flex-direction: column; }
.uc-num { font-family: var(--font-serif); font-size: clamp(2.2rem, 4vw, 3.5rem); font-weight: 700; color: #fff; line-height: 1; letter-spacing: -.02em; }
.uc-label { font-size: .75rem; color: rgba(255,255,255,.55); margin-top: 6px; line-height: 1.5; max-width: 120px; }
.urgent-callout-cta { flex-shrink: 0; text-align: center; }
.uc-cta-text { font-family: var(--font-serif); font-size: clamp(1.1rem, 2vw, 1.4rem); font-style: italic; color: rgba(255,255,255,.85); margin-bottom: 20px; line-height: 1.5; }
.uc-source { margin-top: 10px; font-size: .72rem; }
.uc-source a { color: rgba(255,255,255,.35); transition: color .2s; }
.uc-source a:hover { color: rgba(255,255,255,.7); }

/* ── Donate Landing ── */
.donate-landing { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.donate-landing-left h2 { font-family: var(--font-serif); font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; letter-spacing: -.02em; line-height: 1.15; color: var(--ink); margin-bottom: 16px; margin-top: 10px; }
.donate-landing-left p { font-size: .92rem; color: var(--muted); line-height: 1.8; margin-bottom: 24px; }
.donate-impact-quick { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 24px; }
.diq-item { background: var(--parchment); border: 1px solid var(--border); padding: 12px 16px; }
.diq-item strong { display: block; font-family: var(--font-serif); font-size: 1.4rem; color: var(--red); font-weight: 700; margin-bottom: 3px; }
.diq-item span { font-size: .78rem; color: var(--muted); line-height: 1.4; }
.donate-trust-row { display: flex; flex-direction: column; gap: 9px; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: .82rem; color: var(--muted); }
.trust-item svg { color: #166534; flex-shrink: 0; }

/* ── Donate Panel ── */
.donate-panel { border: 1.5px solid var(--border); background: var(--white); box-shadow: 0 16px 56px rgba(0,0,0,.1); }
.donate-tabs { display: flex; border-bottom: 1.5px solid var(--border); }
.donate-tab { flex: 1; display: flex; align-items: center; justify-content: center; gap: 7px; padding: 15px; border: none; background: var(--parchment); cursor: pointer; font-family: inherit; font-weight: 600; font-size: .84rem; color: var(--muted); transition: all .18s; border-bottom: 2px solid transparent; }
.donate-tab.active { background: #fff; color: var(--red); border-bottom-color: var(--red); }
.donate-tab:hover:not(.active) { background: #fff; color: var(--ink); }
.tab-pane { display: none; padding: 24px; }
.tab-pane.active { display: block; }
.picker-label { font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-light); margin-bottom: 9px; }
.amount-picker { margin-bottom: 16px; }
.amount-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 6px; }
.amount-btn { border: 1.5px solid var(--border); background: #fff; color: var(--ink); font-family: inherit; font-weight: 700; font-size: .84rem; padding: 9px 4px; cursor: pointer; transition: all .16s; border-radius: 1px; }
.amount-btn:hover { border-color: var(--red); color: var(--red); }
.amount-btn.active { border-color: var(--red); background: var(--red); color: #fff; }
.amount-btn--custom { font-size: .72rem; font-weight: 600; }
.custom-amount-row { display: none; align-items: center; margin-top: 7px; border: 1.5px solid var(--red); }
.custom-amount-row.visible { display: flex; }
.custom-prefix { padding: 0 12px; background: var(--red-light); color: var(--red); font-weight: 800; font-size: 1rem; border-right: 1.5px solid var(--red); height: 100%; display: flex; align-items: center; align-self: stretch; }
.custom-amount-row input { border: none; outline: none; padding: 11px 13px; font-family: inherit; font-size: .9rem; font-weight: 700; width: 100%; color: var(--ink); }
.frequency-picker { display: flex; gap: 8px; margin-bottom: 18px; }
.freq-opt { flex: 1; display: flex; align-items: center; justify-content: center; gap: 7px; border: 1.5px solid var(--border); padding: 9px; cursor: pointer; font-size: .83rem; font-weight: 600; color: var(--muted); transition: all .16s; border-radius: 1px; }
.freq-opt input { display: none; }
.freq-opt:has(input:checked) { border-color: var(--ink); color: var(--ink); background: var(--parchment); }
.card-form { display: flex; flex-direction: column; gap: 12px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.form-group { display: flex; flex-direction: column; gap: 4px; }
.form-group label { font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.form-group input { border: 1.5px solid var(--border); background: #fff; color: var(--ink); font-family: inherit; font-size: .88rem; padding: 10px 12px; outline: none; transition: border-color .16s; border-radius: 1px; }
.form-group input:focus { border-color: var(--red); }
.card-field-wrap { position: relative; }
.card-field-wrap input { width: 100%; padding-right: 68px; }
.card-logos { position: absolute; right: 10px; top: 50%; transform: translateY(-50%); display: flex; gap: 5px; align-items: center; }
.card-logos img { height: 15px; width: auto; object-fit: contain; }
.gateway-notice { display: flex; align-items: flex-start; gap: 7px; background: #EFF6FF; border-left: 3px solid #1E3A5F; padding: 10px 12px; font-size: .76rem; color: #1E3A5F; line-height: 1.5; }
.secure-note { display: flex; align-items: center; justify-content: center; gap: 4px; font-size: .7rem; color: var(--muted-light); margin-top: 7px; }
.crypto-intro { font-size: .87rem; color: var(--muted); margin-bottom: 18px; line-height: 1.65; }
.crypto-intro strong { color: var(--ink); }
.coin-picker { margin-bottom: 18px; }
.coin-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.coin-btn { display: flex; align-items: center; justify-content: center; border: 1.5px solid var(--border); padding: 8px 10px; cursor: pointer; font-size: .76rem; font-weight: 600; color: var(--ink); transition: all .16s; border-radius: 1px; text-align: center; }
.coin-btn input { display: none; }
.coin-btn:has(input:checked) { border-color: var(--red); background: var(--red-light); color: var(--red); }
.nowpayments-block { background: var(--parchment); border: 1.5px dashed var(--border); padding: 18px; }
.nowpayments-brand { display: flex; align-items: center; gap: 7px; font-size: .73rem; color: var(--muted); margin-bottom: 14px; font-weight: 500; }
.nowpayments-brand strong { color: var(--ink); }
.nowpayments-mock { text-align: center; padding: 10px 0 16px; }
.mock-note { font-size: .7rem; color: var(--muted-light); margin-top: 6px; }
.mock-wallet { display: block; margin-top: 8px; font-size: .7rem; color: var(--muted); word-break: break-all; background: #fff; border: 1px solid var(--border); padding: 7px 10px; }
.donate-raised-bar { border-top: 1.5px solid var(--border); padding: 18px 24px; }
.raised-top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 9px; }
.raised-amount { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700; color: var(--ink); letter-spacing: -.01em; }
.raised-goal { font-size: .78rem; color: var(--muted); }
.raised-track { background: var(--parchment-2); height: 5px; overflow: hidden; margin-bottom: 7px; }
.raised-fill { height: 100%; background: var(--red); }
.raised-sub { font-size: .72rem; color: var(--muted-light); }
.raised-sub a { color: var(--red); }

/* ── DARK DONATE SECTION ── */
.section--donate-dark {
  position: relative;
  overflow: hidden;
  background: #070809;
}
.donate-dark-bg {
  position: absolute;
  inset: 0;
}
.donate-dark-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  filter: brightness(.12) saturate(.25) sepia(.1);
}
.donate-dark-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(90,8,8,.96)   0%,
    rgba(10,11,14,.93) 45%,
    rgba(8,9,12,.97)   100%
  );
}
.section--donate-dark .donate-landing { position: relative; z-index: 1; }

/* Left column — light text on dark */
.section--donate-dark .donate-landing-left h2 {
  color: #fff;
  text-shadow: 0 2px 24px rgba(0,0,0,.6);
}
.section--donate-dark .donate-landing-left p { color: rgba(255,255,255,.58); }

.section--donate-dark .diq-item {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-left: 3px solid var(--red);
}
.section--donate-dark .diq-item span { color: rgba(255,255,255,.45); }

.section--donate-dark .trust-item { color: rgba(255,255,255,.48); }
.section--donate-dark .trust-item svg { color: #4ade80; }

/* Panel */
.section--donate-dark .donate-panel {
  background: rgba(10,11,15,.82);
  border: 1px solid rgba(255,255,255,.09);
  box-shadow: 0 32px 80px rgba(0,0,0,.7), inset 0 1px 0 rgba(255,255,255,.06);
  backdrop-filter: blur(16px);
}
.section--donate-dark .donate-tabs { border-bottom: 1px solid rgba(255,255,255,.08); }
.section--donate-dark .donate-tab {
  background: rgba(255,255,255,.03);
  color: rgba(255,255,255,.38);
  border-bottom: 2px solid transparent;
}
.section--donate-dark .donate-tab.active {
  background: rgba(185,28,28,.12);
  color: #f87171;
  border-bottom-color: var(--red);
}
.section--donate-dark .donate-tab:hover:not(.active) {
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.65);
}

/* Pickers */
.section--donate-dark .picker-label { color: rgba(255,255,255,.28); }
.section--donate-dark .amount-btn {
  background: rgba(255,255,255,.05);
  border: 1.5px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.75);
}
.section--donate-dark .amount-btn:hover {
  border-color: var(--red);
  color: #f87171;
  background: rgba(185,28,28,.12);
}
.section--donate-dark .amount-btn.active {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}
.section--donate-dark .custom-amount-row {
  border-color: var(--red);
  background: rgba(255,255,255,.05);
}
.section--donate-dark .custom-prefix {
  background: rgba(185,28,28,.25);
  border-right-color: rgba(185,28,28,.4);
}
.section--donate-dark .custom-amount-row input {
  background: transparent;
  color: #fff;
}
.section--donate-dark .custom-amount-row input::placeholder { color: rgba(255,255,255,.25); }

/* Frequency */
.section--donate-dark .freq-opt {
  border-color: rgba(255,255,255,.1);
  color: rgba(255,255,255,.42);
  background: transparent;
}
.section--donate-dark .freq-opt:has(input:checked) {
  border-color: rgba(255,255,255,.35);
  color: #fff;
  background: rgba(255,255,255,.07);
}

/* Form */
.section--donate-dark .form-group label { color: rgba(255,255,255,.35); }
.section--donate-dark .form-group input {
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.1);
  color: #fff;
}
.section--donate-dark .form-group input::placeholder { color: rgba(255,255,255,.22); }
.section--donate-dark .form-group input:focus {
  border-color: var(--red);
  background: rgba(255,255,255,.09);
  outline: none;
}
.section--donate-dark .gateway-notice {
  background: rgba(20,30,60,.55);
  border-left-color: rgba(100,140,220,.45);
  color: rgba(160,190,255,.65);
}
.section--donate-dark .secure-note { color: rgba(255,255,255,.28); }

/* Crypto */
.section--donate-dark .crypto-intro { color: rgba(255,255,255,.55); }
.section--donate-dark .crypto-intro strong { color: rgba(255,255,255,.82); }
.section--donate-dark .coin-btn {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.1);
  color: rgba(255,255,255,.65);
}
.section--donate-dark .coin-btn:has(input:checked) {
  border-color: var(--red);
  background: rgba(185,28,28,.18);
  color: #f87171;
}
.section--donate-dark .nowpayments-block {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.08);
}
.section--donate-dark .nowpayments-brand { color: rgba(255,255,255,.35); }
.section--donate-dark .nowpayments-brand strong { color: rgba(255,255,255,.6); }
.section--donate-dark .mock-note { color: rgba(255,255,255,.3); }
.section--donate-dark .mock-wallet {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.07);
  color: rgba(255,255,255,.35);
}

/* Raised bar */
.section--donate-dark .donate-raised-bar { border-top: 1px solid rgba(255,255,255,.08); }
.section--donate-dark .raised-amount { color: #fff; }
.section--donate-dark .raised-goal { color: rgba(255,255,255,.38); }
.section--donate-dark .raised-track { background: rgba(255,255,255,.08); }
.section--donate-dark .raised-fill { background: var(--red); }
.section--donate-dark .raised-sub { color: rgba(255,255,255,.28); }
.section--donate-dark .raised-sub a { color: #f87171; }

/* ── PAGE HERO (inner pages) ── */
.page-hero { position: relative; padding: 140px 0 80px; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.35) saturate(.6); }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(160deg, rgba(11,12,16,.85) 0%, rgba(11,12,16,.6) 100%); }
.page-hero-content { position: relative; z-index: 1; color: #fff; max-width: 760px; }
.page-hero-content h1 { font-family: var(--font-serif); font-size: clamp(2.2rem, 4.5vw, 4rem); font-weight: 700; line-height: 1.1; letter-spacing: -.02em; margin-bottom: 18px; }
.page-hero-content h1 em { font-style: italic; color: rgba(255,255,255,.45); display: block; }
.page-hero-content p { font-size: .95rem; color: rgba(255,255,255,.65); line-height: 1.75; max-width: 560px; }

/* ── Voices ── */
.voices-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-bottom: 24px; }
.voice-card { background: var(--ink-3); padding: 40px; display: flex; flex-direction: column; position: relative; transition: background .2s; }
.voice-card:hover { background: #2a2d3a; }
.voice-card--wide { grid-column: span 2; display: grid; grid-template-columns: 1fr; gap: 0; }
.voice-card--child { background: #1a1c24; border-left: 4px solid rgba(255,255,255,.15); }
.voice-quote-mark { font-family: var(--font-serif); font-size: 4.5rem; line-height: .75; color: var(--red); font-weight: 700; margin-bottom: 6px; }
.voice-text { font-family: var(--font-serif); font-size: clamp(1rem, 1.6vw, 1.2rem); line-height: 1.65; color: rgba(255,255,255,.82); font-style: italic; font-weight: 600; flex: 1; }
.voice-card--wide .voice-text { font-size: clamp(1.05rem, 1.8vw, 1.3rem); }
.voice-attr { margin-top: 28px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.08); }
.voice-person { display: flex; align-items: flex-start; gap: 14px; }
.voice-avatar {
  width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 800; letter-spacing: .03em; flex-shrink: 0;
  background: rgba(185,28,28,.3); color: rgba(255,255,255,.7); border: 1.5px solid rgba(255,255,255,.12);
}
.voice-avatar--unicef { background: rgba(0,122,204,.25); }
.voice-avatar--un { background: rgba(0,150,130,.25); }
.voice-avatar--child { background: rgba(255,255,255,.08); font-size: .7rem; }
.voice-info { display: flex; flex-direction: column; gap: 3px; }
.voice-name { font-size: .92rem; font-weight: 700; color: #fff; }
.voice-title { font-size: .76rem; color: rgba(255,255,255,.45); line-height: 1.4; }
.voice-source-link { display: inline-flex; align-items: center; gap: 4px; font-size: .7rem; color: var(--red); font-weight: 600; margin-top: 5px; transition: opacity .18s; }
.voice-source-link:hover { opacity: .8; }
.unrwa-note { display: flex; align-items: flex-start; gap: 10px; padding: 16px 20px; border: 1px solid rgba(255,255,255,.07); background: rgba(255,255,255,.03); color: rgba(255,255,255,.45); font-size: .8rem; line-height: 1.7; }
.unrwa-note svg { flex-shrink: 0; margin-top: 2px; opacity: .5; }

/* ── Stories ── */
.story { display: grid; grid-template-columns: 5fr 6fr; gap: 64px; align-items: start; padding: 56px 0; }
.story--right { grid-template-columns: 6fr 5fr; }
.story-image-col { display: flex; flex-direction: column; gap: 10px; }
.story-image-wrap { position: relative; overflow: hidden; aspect-ratio: 4/5; background: var(--parchment-2); }
.story-image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; filter: brightness(.9) saturate(.8); }
.story-image-wrap:hover img { transform: scale(1.04); }
.story-image-wrap--memorial img { filter: brightness(.65) saturate(.2) sepia(.2); }
.story-image-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.55) 0%, transparent 50%); display: flex; align-items: flex-end; padding: 18px; }
.story-age-tag { background: var(--red); color: #fff; font-size: .68rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; padding: 5px 11px; }
.story-memorial-band { position: absolute; top: 0; left: 0; right: 0; background: rgba(127,29,29,.85); color: #fecaca; font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; text-align: center; padding: 8px; }
.story-source-tag { display: flex; align-items: center; gap: 5px; font-size: .7rem; color: var(--muted-light); font-style: italic; transition: color .18s; }
.story-source-tag:hover { color: var(--red); }
.story-text-col { padding-top: 6px; }
.story-location { display: flex; align-items: center; gap: 5px; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted-light); margin-bottom: 12px; }
.story-location svg { color: var(--red); }
.story-name { font-family: var(--font-serif); font-size: clamp(1.7rem, 2.8vw, 2.5rem); font-weight: 700; letter-spacing: -.02em; color: var(--ink); margin-bottom: 12px; line-height: 1.1; }
.story-status { display: inline-block; font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 5px 12px; margin-bottom: 22px; }
.story-status--critical  { background: var(--red-light); color: var(--red); }
.story-status--recovering{ background: #F0FDF4; color: #166534; }
.story-status--memorial  { background: #F5F3FF; color: #5B21B6; }
.story-text-col p { font-size: .9rem; line-height: 1.85; color: var(--muted); margin-bottom: 14px; }
.story-text-col p:last-child { margin-bottom: 0; }
.story-text-col p strong { color: var(--ink); }
.story-text-col p em { color: var(--ink-3); font-style: italic; }
.story-divider { height: 1px; background: var(--border); }

/* ── Future Impact ── */
.future-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-bottom: 32px; }
.future-col-header { display: flex; align-items: center; gap: 14px; margin-bottom: 32px; padding-bottom: 20px; border-bottom: 2px solid var(--border); }
.future-icon { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.future-icon svg { width: 24px; height: 24px; }
.future-icon--blue { color: var(--blue); }
.future-icon--red  { color: var(--red); }
.future-col-header h3 { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 700; letter-spacing: -.01em; color: var(--ink); line-height: 1.2; }
.future-timeline { display: flex; flex-direction: column; }
.future-timeline-item { display: grid; grid-template-columns: 72px 1fr; gap: 20px; padding-bottom: 28px; position: relative; }
.future-timeline-item:not(:last-child)::before { content: ''; position: absolute; left: 35px; top: 30px; bottom: 0; width: 1px; background: var(--border); }
.future-timeline-item--hope::before { background: linear-gradient(to bottom, var(--border), transparent); }
.future-tm { display: flex; align-items: center; justify-content: center; width: 72px; height: 30px; font-size: .64rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; flex-shrink: 0; position: relative; z-index: 1; }
.future-tm--now  { background: var(--red-light); color: var(--red); }
.future-tm--1yr  { background: #FFFBEB; color: var(--gold); }
.future-tm--5yr  { background: var(--parchment-2); color: var(--ink-3); }
.future-tm--hope { background: #F0FDF4; color: #166534; }
.future-tc h4 { font-size: .9rem; font-weight: 700; color: var(--ink); margin-bottom: 7px; padding-top: 4px; }
.future-tc p { font-size: .84rem; line-height: 1.75; color: var(--muted); }
.future-tc a { color: var(--red); }
.future-citations { display: flex; align-items: flex-start; gap: 9px; padding: 14px 18px; border: 1px solid var(--border); font-size: .74rem; color: var(--muted-light); line-height: 1.65; flex-wrap: wrap; }
.future-citations svg { flex-shrink: 0; opacity: .5; margin-top: 1px; }
.future-citations a { color: var(--muted); text-decoration: underline; }
.future-citations a:hover { color: var(--red); }

/* ── Video lazy-load (click-to-play thumbnail) ── */
.video-embed-wrap, .video-single-wrap {
  position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;
  background: #000; box-shadow: 0 16px 56px rgba(0,0,0,.2);
}
.video-single-wrap { max-width: 860px; margin: 0 auto; }
.video-embed-wrap iframe, .video-single-wrap iframe {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none;
}
/* Lazy thumbnail state */
.video-lazy .video-thumb {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; cursor: pointer; transition: filter .3s;
}
.video-lazy:hover .video-thumb { filter: brightness(.85); }
.video-play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  background: none; border: none; cursor: pointer; z-index: 2;
  transition: transform .2s, opacity .2s;
}
.video-lazy:hover .video-play-btn { transform: translate(-50%,-50%) scale(1.12); }
.video-credit {
  position: absolute; bottom: 10px; left: 14px;
  font-size: .7rem; color: rgba(255,255,255,.65); background: rgba(0,0,0,.5);
  padding: 4px 8px; pointer-events: none;
}
/* After click — hide thumbnail, show iframe */
.video-lazy.loaded .video-thumb,
.video-lazy.loaded .video-play-btn,
.video-lazy.loaded .video-credit { display: none; }

/* ── Donate CTA section ── */
.donate-cta-section { padding: 72px 0; }
.donate-cta-inner { display: flex; gap: 48px; align-items: center; justify-content: space-between; flex-wrap: wrap; }

/* ── What We Do — Dark Photo Grid ── */
.wwd-section { background: #08080a; }
.wwd-header { padding: 72px 0 52px; text-align: center; }
.wwd-header h2 { font-family: var(--font-serif); font-size: clamp(2rem,4vw,3.2rem); font-weight: 700; color: #fff; letter-spacing: -.02em; margin-bottom: 12px; line-height: 1.15; }
.wwd-header p { color: rgba(255,255,255,.42); font-size: .9rem; line-height: 1.75; max-width: 560px; margin: 0 auto; }

/* Grid layout: 3 cols, 2 rows */
.wwd-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 2px;
  background: #000;
}
/* Wide card spans 2 cols */
.wwd-card--wide { grid-column: span 2; }
/* Second wide card aligned to right */

/* Each card */
.wwd-card {
  position: relative; overflow: hidden;
  min-height: 460px; cursor: default;
}
.wwd-card:hover .wwd-bg img { transform: scale(1.06); }

/* Background image */
.wwd-bg { position: absolute; inset: 0; }
.wwd-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: brightness(.45) saturate(.55); transition: transform .7s ease, filter .4s; }
.wwd-card:hover .wwd-bg img { filter: brightness(.55) saturate(.65); }
.wwd-overlay { position: absolute; inset: 0; }
.wwd-overlay--amber  { background: linear-gradient(to top, rgba(120,53,15,.92) 0%, rgba(0,0,0,.35) 55%, transparent 100%); }
.wwd-overlay--red    { background: linear-gradient(to top, rgba(90,10,10,.95) 0%, rgba(0,0,0,.35) 55%, transparent 100%); }
.wwd-overlay--blue   { background: linear-gradient(to top, rgba(10,20,70,.95) 0%, rgba(0,0,0,.35) 55%, transparent 100%); }
.wwd-overlay--olive  { background: linear-gradient(to top, rgba(15,40,15,.95) 0%, rgba(0,0,0,.35) 55%, transparent 100%); }
.wwd-overlay--purple { background: linear-gradient(to top, rgba(50,10,60,.95) 0%, rgba(0,0,0,.35) 55%, transparent 100%); }

/* Body — overlaid on image */
.wwd-body {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
}

/* Thin colored top bar */
.wwd-top-bar { position: absolute; top: 0; left: 0; right: 0; height: 3px; }
.wwd-bar--amber  { background: #D97706; }
.wwd-bar--red    { background: #B91C1C; }
.wwd-bar--blue   { background: #2563EB; }
.wwd-bar--olive  { background: #4D7C0F; }
.wwd-bar--purple { background: #7C3AED; }

.wwd-cat { font-size: .63rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 8px; display: block; }
.wwd-body h3 { font-family: var(--font-serif); font-size: clamp(1.1rem,1.8vw,1.45rem); font-weight: 700; color: #fff; letter-spacing: -.01em; line-height: 1.2; margin-bottom: 10px; }
.wwd-body p { font-size: .82rem; color: rgba(255,255,255,.55); line-height: 1.7; margin-bottom: 20px; flex: none; }
.wwd-card--wide .wwd-body p { max-width: 520px; }

.wwd-cost { display: flex; align-items: center; gap: 14px; border-top: 1px solid rgba(255,255,255,.12); padding-top: 16px; }
.wwd-cost-num { font-family: var(--font-serif); font-size: 2.2rem; font-weight: 800; color: #fff; line-height: 1; letter-spacing: -.02em; }
.wwd-cost-desc { font-size: .74rem; color: rgba(255,255,255,.45); line-height: 1.45; }

.wwd-footer-bar { background: #0f0f11; border-top: 1px solid rgba(255,255,255,.06); }
.wwd-footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 24px 0; flex-wrap: wrap; }
.wwd-footer-text { display: flex; align-items: flex-start; gap: 10px; color: rgba(255,255,255,.38); font-size: .82rem; line-height: 1.7; flex: 1; }
.wwd-footer-text svg { flex-shrink: 0; margin-top: 2px; color: rgba(255,255,255,.3); }
.wwd-footer-text strong { color: rgba(255,255,255,.7); }
@media (max-width: 900px) {
  .wwd-grid { grid-template-columns: 1fr 1fr; }
  .wwd-card--wide { grid-column: span 2; }
  .wwd-card { min-height: 380px; }
}
@media (max-width: 600px) {
  .wwd-grid { grid-template-columns: 1fr; }
  .wwd-card--wide { grid-column: span 1; }
  .wwd-card { min-height: 320px; }
  .wwd-footer-inner { flex-direction: column; }
}

/* ── FAQ ── */
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 1px; background: var(--border); }
.faq-item { background: #fff; }
.faq-item summary { padding: 18px 22px; cursor: pointer; font-weight: 600; font-size: .9rem; color: var(--ink); list-style: none; display: flex; justify-content: space-between; align-items: center; user-select: none; transition: background .14s; }
.faq-item summary:hover { background: var(--parchment); }
.faq-item[open] summary { background: var(--parchment); color: var(--red); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.3rem; font-weight: 300; color: var(--muted-light); transition: transform .25s; flex-shrink: 0; }
.faq-item[open] summary::after { transform: rotate(45deg); color: var(--red); }
.faq-item p { padding: 0 22px 18px; font-size: .875rem; color: var(--muted); line-height: 1.8; }

/* ── Footer ── */
.footer { background: var(--ink); }
.footer-main { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding: 64px 32px 48px; }
.footer-brand .logo { margin-bottom: 14px; }
.footer-brand p { font-size: .83rem; color: rgba(255,255,255,.38); line-height: 1.75; max-width: 260px; }
.footer-col h4 { font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col li a { font-size: .83rem; color: rgba(255,255,255,.42); transition: color .18s; }
.footer-col li a:hover { color: rgba(255,255,255,.8); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding: 18px 32px; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { font-size: .73rem; color: rgba(255,255,255,.22); max-width: 660px; line-height: 1.6; }
.footer-legal-links { display: flex; gap: 14px; flex-shrink: 0; }
.footer-legal-links a { font-size: .73rem; color: rgba(255,255,255,.28); transition: color .18s; }
.footer-legal-links a:hover { color: rgba(255,255,255,.65); }

/* ── RTL ── */
html[dir="rtl"] .crisis-list li { padding-left: 0; padding-right: 18px; }
html[dir="rtl"] .crisis-list li::before { left: auto; right: 0; }
html[dir="rtl"] .story { direction: rtl; }
html[dir="rtl"] .future-timeline-item::before { left: auto; right: 35px; }
html[dir="rtl"] .donate-trust-row .trust-item { flex-direction: row-reverse; }
html[dir="rtl"] .footer-bottom-inner { flex-direction: row-reverse; }
html[dir="rtl"] .harm-ticker-inner { flex-direction: row-reverse; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  :root { --section-py: 72px; }
  .crisis-grid { grid-template-columns: 1fr; }
  .future-grid { grid-template-columns: 1fr; gap: 40px; }
  .voices-grid { grid-template-columns: 1fr; }
  .voice-card--wide { grid-column: 1; }
  .donate-landing { grid-template-columns: 1fr; gap: 40px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .video-section-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-stats-grid { grid-template-columns: 1fr 1fr; gap: 1px; }
  .hero-stat-div { display: none; }
  .hero-stat { background: rgba(255,255,255,.03); padding: 18px; }
}
@media (max-width: 768px) {
  :root { --section-py: 56px; }
  .container { padding: 0 18px; }
  .nav-links { display: none; position: fixed; inset: 0; top: 80px; background: rgba(11,12,16,.98); z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 28px; font-size: 1.1rem; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; z-index: 1001; }
  .harm-ticker-right { display: none; }
  .story { grid-template-columns: 1fr; gap: 24px; padding: 40px 0; }
  .story--right { grid-template-columns: 1fr; }
  .story--right .story-text-col { order: -1; }
  .story-image-wrap { aspect-ratio: 3/2; }
  .amount-grid { grid-template-columns: repeat(3, 1fr); }
  .form-row-2 { grid-template-columns: 1fr; }
  .coin-grid { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .urgent-callout-content { flex-direction: column; }
  .donate-cta-inner { flex-direction: column; }
  .hero-stats-grid { grid-template-columns: 1fr 1fr; }
  .partners-logos-row { gap: 20px; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 2.8rem; }
  .hero-actions { flex-direction: column; }
  .btn-lg { width: 100%; justify-content: center; }
  .amount-grid { grid-template-columns: repeat(3, 1fr); }
  .donate-impact-quick { grid-template-columns: 1fr; }
  .harm-ticker-inner { flex-direction: column; height: auto; padding: 8px 0; gap: 4px; }
}
