/* ============================================================
   WE DESERVE BETTER FOUNDATION — v3
   Black · White · Teal #417082 · CTA Yellow #f8be14
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* ── BRAND TOKENS ─────────────────────────────────────────── */
:root {
  --white:       #FFFFFF;
  --black:       #000000;
  --ink:         #1A1A1A;
  --ink-mid:     #3D3D3D;
  --ink-light:   #6B6B6B;
  --off-white:   #F4F6F7;
  --border:      #D8E2E6;

  --teal:        #417082;
  --teal-dark:   #2f5364;
  --teal-light:  #5a8fa3;
  --teal-pale:   #e8f0f4;
  --teal-mid:    rgba(65,112,130,.12);

  --yellow:      #f8be14;
  --yellow-dark: #d9a50e;
  --yellow-pale: #fef9e7;

  --nav-h:       88px;
  --container:   1200px;
  --r-sm:        4px;
  --r:           10px;
  --r-lg:        18px;
  --shadow:      0 4px 24px rgba(65,112,130,.12);
  --shadow-lg:   0 12px 48px rgba(65,112,130,.2);
}

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
h1,h2,h3,h4 { font-family:'Playfair Display',Georgia,serif; line-height:1.14; color:var(--ink); }
h1 { font-size:clamp(2.6rem,6vw,5rem);  font-weight:900; }
h2 { font-size:clamp(2rem,4vw,3.2rem);  font-weight:700; }
h3 { font-size:clamp(1.1rem,2vw,1.35rem); font-weight:700; }
h4 { font-size:.78rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; }
p  { color:var(--ink-mid); max-width:68ch; line-height:1.72; }
em { font-style:italic; }
strong { font-weight:600; color:var(--ink); }

.label {
  display:inline-block;
  font-size:.7rem; font-weight:700; letter-spacing:.15em; text-transform:uppercase;
  color:var(--teal); margin-bottom:.7rem;
}
.label-yellow { color:var(--yellow); }

/* ── LAYOUT ───────────────────────────────────────────────── */
.container { max-width:var(--container); margin:0 auto; padding:0 clamp(1.25rem,5vw,3rem); }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display:inline-flex; align-items:center; gap:.45rem;
  padding:.88rem 2rem;
  border-radius:var(--r-sm);
  font-family:'DM Sans',sans-serif; font-size:.88rem; font-weight:700;
  letter-spacing:.05em; text-transform:uppercase;
  border:2px solid transparent; cursor:pointer;
  transition:all .2s ease; white-space:nowrap; line-height:1;
}
.btn:focus-visible { outline:3px solid var(--yellow); outline-offset:3px; }

.btn-primary  { background:var(--yellow); color:var(--ink); border-color:var(--yellow); }
.btn-primary:hover { background:var(--yellow-dark); border-color:var(--yellow-dark); transform:translateY(-2px); box-shadow:0 6px 20px rgba(248,190,20,.4); }

.btn-teal     { background:var(--teal); color:var(--white); border-color:var(--teal); }
.btn-teal:hover { background:var(--teal-dark); transform:translateY(-2px); }

.btn-ghost    { background:transparent; color:var(--white); border-color:rgba(255,255,255,.5); }
.btn-ghost:hover { background:rgba(255,255,255,.1); border-color:var(--white); }

.btn-outline  { background:transparent; color:var(--teal); border-color:var(--teal); }
.btn-outline:hover { background:var(--teal); color:var(--white); }

.btn-outline-ig { background:transparent; color:rgba(255,255,255,.7); border-color:rgba(255,255,255,.25); }
.btn-outline-ig:hover { color:var(--white); border-color:var(--teal); background:var(--teal); }
.btn-outline-ig svg { flex-shrink:0; }

.btn-large { padding:1.1rem 2.75rem; font-size:.95rem; }

/* ── NAV ──────────────────────────────────────────────────── */
#nav {
  position:fixed; top:0; left:0; right:0; z-index:1000;
  height:var(--nav-h);
  background:rgba(255,255,255,.97);
  backdrop-filter:blur(16px); -webkit-backdrop-filter:blur(16px);
  border-bottom:1px solid transparent;
  transition:border-color .3s, box-shadow .3s;
}
#nav.scrolled { border-bottom-color:var(--border); box-shadow:0 2px 20px rgba(65,112,130,.09); }

.nav-inner {
  max-width:var(--container); margin:0 auto; height:100%;
  padding:0 clamp(1.25rem,5vw,3rem);
  display:flex; align-items:center; justify-content:space-between; gap:1.5rem;
}
.nav-logo { display:flex; align-items:center; }
.nav-logo img {
  height: 72px;
  width: auto;
  /* Allow logo to visually overflow below nav line for bold presence */
  margin-bottom: -8px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.08));
}

.nav-links { display:flex; align-items:center; gap:.05rem; }
.nav-links li a {
  display:block; padding:.42rem .65rem;
  font-size:.8rem; font-weight:600; letter-spacing:.02em;
  color:var(--ink-mid); border-radius:var(--r-sm);
  transition:color .18s, background .18s;
}
.nav-links li a:hover { color:var(--teal); background:var(--teal-pale); }
.nav-links li a.nav-cta {
  background:var(--yellow); color:var(--ink);
  padding:.5rem 1.15rem; margin-left:.5rem; border-radius:var(--r-sm);
}
.nav-links li a.nav-cta:hover { background:var(--yellow-dark); }

.nav-toggle { display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:6px; }
.nav-toggle span { display:block; width:24px; height:2px; background:var(--ink); border-radius:2px; transition:all .3s; }
.nav-toggle.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity:0; }
.nav-toggle.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

/* ── HERO ─────────────────────────────────────────────────── */
.hero { position:relative; min-height:100vh; display:flex; align-items:center; padding-top:var(--nav-h); overflow:hidden; }
.hero-media { position:absolute; inset:0; }
.hero-bg { width:100%; height:100%; object-fit:cover; object-position:center 30%; animation:heroZoom 14s ease-out forwards; }
@keyframes heroZoom { from{transform:scale(1.07)} to{transform:scale(1)} }
.hero-overlay {
  position:absolute; inset:0;
  background:linear-gradient(135deg, rgba(10,18,22,.9) 0%, rgba(65,112,130,.4) 60%, rgba(10,18,22,.25) 100%);
}
.hero-content {
  position:relative; z-index:2;
  max-width:var(--container); width:100%; margin:0 auto;
  padding:clamp(3rem,8vw,7rem) clamp(1.25rem,5vw,3rem);
  animation:heroFade .9s ease-out .15s both;
}
@keyframes heroFade { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:none} }
.hero-eyebrow { font-size:.7rem; font-weight:700; letter-spacing:.22em; text-transform:uppercase; color:var(--yellow); margin-bottom:1.25rem; }
.hero h1 { color:var(--white); max-width:13ch; margin-bottom:1.5rem; text-shadow:0 2px 24px rgba(0,0,0,.4); }
.hero h1 em { color:var(--yellow); }
.hero-sub { font-size:clamp(.95rem,1.6vw,1.1rem); color:rgba(255,255,255,.85); max-width:52ch; margin-bottom:2.5rem; }
.hero-actions { display:flex; flex-wrap:wrap; gap:1rem; }
.hero-scroll {
  position:absolute; bottom:2.5rem; left:50%; transform:translateX(-50%); z-index:2;
  color:rgba(255,255,255,.45); display:flex; align-items:center; justify-content:center;
  animation:bounce 2.4s ease-in-out infinite;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(9px)} }

/* ── MISSION ──────────────────────────────────────────────── */
.mission-strip { padding:clamp(5rem,9vw,8rem) 0; background:var(--white); }
.mission-grid { display:grid; grid-template-columns:1.1fr 1fr; gap:clamp(3rem,6vw,6rem); align-items:start; }
.mission-text h2 { margin-bottom:1.25rem; }
.mission-text p  { margin-bottom:1rem; }
.mission-text .btn { margin-top:1.5rem; }

.mission-pillars { display:flex; flex-direction:column; gap:1.5rem; padding-top:.5rem; }
.pillar {
  display:flex; gap:1.25rem; align-items:flex-start;
  padding:1.4rem 1.5rem;
  background:var(--teal-pale); border-radius:var(--r); border-left:3px solid var(--teal);
  transition:box-shadow .2s;
}
.pillar:hover { box-shadow:var(--shadow); }
.pillar-icon { font-size:1.4rem; line-height:1; flex-shrink:0; color:var(--teal); margin-top:.1rem; }
.pillar h3 { font-size:.95rem; margin-bottom:.25rem; color:var(--teal-dark); }
.pillar p  { font-size:.85rem; max-width:none; color:var(--ink-mid); }

/* ── REGION COMMON ────────────────────────────────────────── */
.region-section { padding-bottom:clamp(4rem,8vw,7rem); }
.lebanon-section { background:var(--white); }
.nigeria-section  { background:var(--off-white); }

.region-hero { position:relative; height:clamp(340px,52vw,560px); overflow:hidden; margin-bottom:clamp(3rem,5vw,4.5rem); }
.region-hero img { width:100%; height:100%; object-fit:cover; transition:transform 10s ease-out; }
.region-section:hover .region-hero img { transform:scale(1.04); }
.region-hero-overlay {
  position:absolute; inset:0; display:flex; flex-direction:column; justify-content:flex-end;
  padding:clamp(1.5rem,4vw,3.5rem);
  background:linear-gradient(to top, rgba(5,15,20,.88) 0%, rgba(65,112,130,.2) 55%, transparent 100%);
}
.region-tag {
  display:inline-block; background:var(--yellow); color:var(--ink);
  font-size:.68rem; font-weight:800; letter-spacing:.12em; text-transform:uppercase;
  padding:.28rem .8rem; border-radius:100px; margin-bottom:.9rem; width:fit-content;
}
.region-hero-overlay h2 { color:var(--white); font-size:clamp(2rem,5vw,4rem); text-shadow:0 2px 20px rgba(0,0,0,.5); }

.region-intro { margin-bottom:clamp(2rem,4vw,3rem); }
.region-lead { font-size:clamp(1rem,1.8vw,1.12rem); color:var(--ink-mid); max-width:72ch; border-left:4px solid var(--teal); padding-left:1.25rem; }

.card-tag {
  display:inline-block; font-size:.64rem; font-weight:800; letter-spacing:.1em; text-transform:uppercase;
  padding:.24rem .7rem; border-radius:100px; margin-bottom:.8rem;
  background:var(--teal-pale); color:var(--teal-dark);
}
.card-tag.urgent { background:#fff3cd; color:#7d6000; }

.region-cta-box {
  border-radius:var(--r); padding:clamp(2.5rem,5vw,4rem); text-align:center;
  max-width:680px; margin:0 auto; background:var(--teal);
}
.region-cta-box p { font-size:clamp(.95rem,1.5vw,1.08rem); margin:0 auto 1.75rem; max-width:58ch; color:rgba(255,255,255,.88); }
.region-cta-box em { color:var(--yellow); }

/* Stylized quote lines in CTA boxes */
.cta-quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.2rem, 2.5vw, 1.75rem);
  font-weight: 400;
  color: rgba(255,255,255,.92);
  max-width: none;
  line-height: 1.4;
  margin-bottom: .5rem !important;
}
.cta-quote-em {
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 2rem !important;
}
.cta-quote-em em { color: var(--yellow); font-style: italic; }

/* ── LEBANON PROGRAMS (alternating) ──────────────────────── */
.lebanon-programs { display:flex; flex-direction:column; gap:clamp(3rem,5vw,5rem); margin-bottom:3.5rem; }

.lp-item {
  display:grid; grid-template-columns:1fr 1fr; gap:clamp(2rem,4vw,4rem); align-items:center;
}
.lp-item-reverse { direction:rtl; }
.lp-item-reverse > * { direction:ltr; }

.lp-img { border-radius:var(--r-lg); overflow:hidden; height:clamp(280px,35vw,420px); }
.lp-img img { width:100%; height:100%; object-fit:cover; transition:transform .6s ease; }
.lp-item:hover .lp-img img { transform:scale(1.04); }

.lp-body h3 { margin-bottom:.75rem; }
.lp-body .card-tag { margin-bottom:.9rem; }
.lp-body p { font-size:.92rem; max-width:none; margin-bottom:.75rem; }
.lp-body p:last-child { margin-bottom:0; }

/* ── NIGERIA 2×2 ──────────────────────────────────────────── */
.nigeria-grid { display:grid; grid-template-columns:1fr 1fr; gap:1.75rem; margin-bottom:3.5rem; }

.ng-card { background:var(--white); border:1px solid var(--border); border-radius:var(--r); overflow:hidden; transition:box-shadow .25s, transform .25s; }
.ng-card:hover { box-shadow:var(--shadow-lg); transform:translateY(-4px); }
.ng-card-img { height:220px; overflow:hidden; }
.ng-card-img img { width:100%; height:100%; object-fit:cover; transition:transform .5s ease; }
.ng-card:hover .ng-card-img img { transform:scale(1.06); }
.ng-card-body { padding:1.5rem; }
.ng-card-body h3 { font-size:1.1rem; margin-bottom:.55rem; }
.ng-card-body p  { font-size:.88rem; max-width:none; }

/* ── IMPACT ───────────────────────────────────────────────── */
.impact-section { position:relative; padding:clamp(5rem,10vw,9rem) 0; text-align:center; overflow:hidden; }
.impact-bg { position:absolute; inset:0; }
.impact-bg img { width:100%; height:100%; object-fit:cover; object-position:center 40%; }
.impact-overlay { position:absolute; inset:0; background:rgba(10,20,26,.83); }
.impact-section .container { position:relative; z-index:2; }
.impact-heading { color:var(--white); margin-bottom:clamp(3rem,5vw,4.5rem); }
.impact-stats { display:grid; grid-template-columns:repeat(4,1fr); gap:2.5rem 2rem; margin-bottom:2rem; }
.stat-num {
  display:block; font-family:'Playfair Display',serif; font-weight:900;
  font-size:clamp(2.5rem,5vw,4rem); color:var(--yellow); line-height:1; margin-bottom:.5rem;
}
.stat-label { display:block; font-size:.78rem; font-weight:600; color:rgba(255,255,255,.68); letter-spacing:.05em; text-transform:uppercase; }
.impact-note { font-size:.7rem; color:rgba(255,255,255,.32); max-width:70ch; margin:0 auto; }

/* ── GALLERY ──────────────────────────────────────────────── */
.gallery-section { padding:clamp(4rem,8vw,7rem) 0; background:var(--black); }
.gallery-header { margin-bottom:2.5rem; }
.gallery-header .label { color:var(--yellow); }
.gallery-header h2 { color:var(--white); margin-top:.35rem; }

.gallery-grid { display:grid; grid-template-columns:repeat(4,1fr); grid-auto-rows:210px; gap:4px; }
.gallery-item { overflow:hidden; background:#111c22; }
.gallery-item img { width:100%; height:100%; object-fit:cover; transition:transform .55s ease, filter .4s ease; filter:saturate(.8) brightness(.92); }
.gallery-item:hover img { transform:scale(1.08); filter:saturate(1.12) brightness(1.04); }
.gallery-tall { grid-row:span 2; }
.gallery-wide { grid-column:span 2; }

.gallery-ig { text-align:center; margin-top:2.5rem; display:flex; flex-direction:column; align-items:center; gap:1rem; }
.gallery-ig p { font-size:.85rem; color:rgba(255,255,255,.45); }

/* ── PARTNERSHIPS ─────────────────────────────────────────── */
.partners-section { padding:clamp(4rem,8vw,7rem) 0; background:var(--white); }
.partners-sub { font-size:1rem; color:var(--ink-mid); margin-bottom:clamp(2.5rem,4vw,3.5rem); max-width:62ch; }

.partners-grid { display:grid; grid-template-columns:1fr 1fr; gap:2rem; }

.partner-card {
  border:1px solid var(--border); border-radius:var(--r-lg);
  overflow:hidden; display:flex; flex-direction:column;
  transition:box-shadow .25s, transform .25s;
}
.partner-card:hover { box-shadow:var(--shadow-lg); transform:translateY(-4px); }

.partner-logo-wrap {
  background:var(--off-white);
  display:flex; align-items:center; justify-content:center;
  padding:2.5rem 3rem; min-height:140px; border-bottom:1px solid var(--border);
}
.partner-logo-wrap img { max-height:80px; width:auto; max-width:220px; object-fit:contain; }
.partner-logo-dark  { background: #0a0a0a; border-bottom-color: #1a1a1a; }
.partner-logo-light { background: #ffffff; border-bottom-color: var(--border); }
.partner-logo-fallback {
  font-family:'Playfair Display',serif; font-size:1.4rem; font-weight:700;
  color:var(--teal); text-align:center;
}

.partner-body { padding:2rem; flex:1; display:flex; flex-direction:column; gap:.75rem; }
.partner-body h3 { font-size:1.25rem; margin-bottom:0; }
.partner-type { font-size:.72rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--teal); }
.partner-body p { font-size:.9rem; max-width:none; }
.partner-link {
  display:inline-flex; align-items:center; gap:.4rem; margin-top:.5rem;
  font-size:.82rem; font-weight:700; color:var(--teal); letter-spacing:.02em;
  border-bottom:1px solid var(--teal-pale); padding-bottom:2px;
  transition:color .2s, border-color .2s;
}
.partner-link:hover { color:var(--teal-dark); border-color:var(--teal); }

/* ── FOUNDERS ─────────────────────────────────────────────── */
.team-section { padding:clamp(4rem,8vw,7rem) 0; background:var(--off-white); }
.team-sub { color:var(--ink-light); margin-bottom:clamp(2.5rem,4vw,3.5rem); font-size:.95rem; max-width:52ch; }
.team-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:2rem; }
.team-member { text-align:center; }
.team-img-wrap {
  width:158px; height:158px; border-radius:50%; overflow:hidden;
  margin:0 auto 1.1rem; border:3px solid var(--border);
  transition:border-color .25s, box-shadow .25s;
}
.team-member:hover .team-img-wrap { border-color:var(--teal); box-shadow:0 0 0 4px var(--teal-pale); }
.team-img-wrap img { width:100%; height:100%; object-fit:cover; object-position:top center; }
.team-member h3 { font-family:'DM Sans',sans-serif; font-size:.95rem; font-weight:700; color:var(--ink); margin-bottom:.25rem; }
.team-title { font-size:.7rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--teal); }

/* ── STORIES ──────────────────────────────────────────────── */
.stories-section { padding:clamp(4rem,8vw,7rem) 0; background:var(--teal); }
.stories-section .label { color:var(--yellow); }
.stories-section h2 { color:var(--white); margin-bottom:clamp(2.5rem,4vw,3.5rem); }
.stories-grid { display:grid; grid-template-columns:1fr 1fr; gap:2rem; }
.story-card {
  display:flex; gap:2rem; align-items:flex-start;
  background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.14);
  border-radius:var(--r-lg); padding:2rem;
  transition:background .25s;
}
.story-card:hover { background:rgba(255,255,255,.16); }
.story-card-reverse { flex-direction:row-reverse; }
.story-img-wrap {
  flex-shrink:0; width:96px; height:96px; border-radius:50%; overflow:hidden;
  border:3px solid var(--yellow);
}
.story-img-wrap img { width:100%; height:100%; object-fit:cover; }
.story-body h3 { font-size:1.15rem; margin-bottom:.55rem; color:var(--white); }
.story-body p  { font-size:.88rem; max-width:none; color:rgba(255,255,255,.82); }

/* ── GET INVOLVED ─────────────────────────────────────────── */
.help-section { padding:clamp(4rem,8vw,7rem) 0; background:var(--white); }
.help-section > .container > h2 { margin-bottom:clamp(2.5rem,4vw,4rem); }
.help-grid { display:grid; grid-template-columns:1fr 1.1fr 1fr; gap:1.5rem; align-items:stretch; margin-bottom:4rem; }
.help-card {
  background:var(--white); border:1px solid var(--border); border-radius:var(--r-lg);
  padding:2.5rem 2rem; text-align:center;
  display:flex; flex-direction:column; align-items:center; gap:1rem;
  transition:box-shadow .25s, transform .25s;
}
.help-card:hover { box-shadow:var(--shadow); transform:translateY(-4px); }
.help-card-featured { background:var(--teal); border-color:var(--teal); transform:scale(1.04); }
.help-card-featured:hover { transform:scale(1.04) translateY(-4px); }
.help-card-featured h3  { color:var(--white); }
.help-card-featured p   { color:rgba(255,255,255,.82); }
.help-icon { height:54px; display:flex; align-items:center; justify-content:center; }
.help-icon img { height:42px; width:auto; }
.help-icon svg { color:var(--yellow); }
.help-card h3 { font-size:1.2rem; }
.help-card p  { font-size:.9rem; flex:1; }

/* ── WHISH BOX ────────────────────────────────────────────── */
.whish-box {
  background:var(--off-white);
  border:1px solid var(--border);
  border-radius:var(--r-lg);
  overflow:hidden;
}
.whish-inner {
  display:grid; grid-template-columns:1fr auto;
  gap:2rem; align-items:center;
  padding:clamp(2rem,4vw,3rem);
}
.whish-badge {
  display:inline-block; margin-bottom:1rem;
  background:var(--teal-pale); color:var(--teal);
  font-size:.72rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase;
  padding:.3rem .9rem; border-radius:100px; border:1px solid var(--border);
}
.whish-text h3 { font-size:1.5rem; margin-bottom:.75rem; }
.whish-text p  { font-size:.9rem; max-width:none; margin-bottom:1rem; }
.whish-number {
  display:inline-flex; flex-direction:column; gap:.3rem;
  background:var(--white); border:2px solid var(--teal); border-radius:var(--r);
  padding:.9rem 1.5rem; margin-bottom:1rem;
}
.whish-label { font-size:.65rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:var(--teal); }
.whish-num   { font-size:1.5rem; font-weight:700; color:var(--ink); letter-spacing:.05em; font-family:'Playfair Display',serif; }
.whish-note  { font-size:.82rem; color:var(--ink-light); margin-bottom:0 !important; }
.whish-note a { color:var(--teal); text-decoration:underline; }

.whish-qr-side {
  display:flex; flex-direction:column; align-items:center; gap:1rem;
  padding-left:2rem; border-left:1px solid var(--border);
  text-align:center;
}
.whish-icon-wrap { flex-shrink:0; display:flex; align-items:center; justify-content:center; }
.whish-icon-wrap img { width:120px; height:auto; }
.whish-open { font-size:.78rem; color:var(--ink-light); max-width:14ch; line-height:1.4; }

/* ── CTA BAND ─────────────────────────────────────────────── */
.cta-band { position:relative; padding:clamp(5rem,10vw,9rem) 0; overflow:hidden; text-align:center; }
.cta-band-bg { position:absolute; inset:0; }
.cta-band-bg img { width:100%; height:100%; object-fit:cover; object-position:center 55%; }
.cta-band-overlay { position:absolute; inset:0; background:linear-gradient(135deg,rgba(65,112,130,.97),rgba(10,28,36,.95)); }
.cta-band-content { position:relative; z-index:2; }
.cta-band h2 { color:var(--white); margin-bottom:1.25rem; font-size:clamp(1.8rem,4vw,3rem); }
.cta-band h2 em { color:var(--yellow); }
.cta-band p { color:rgba(255,255,255,.82); font-size:1.05rem; margin:0 auto 2.5rem; max-width:56ch; }

/* ── FOOTER ───────────────────────────────────────────────── */
.site-footer { background:var(--black); color:rgba(255,255,255,.6); padding:clamp(3rem,6vw,5rem) 0 0; }
.footer-inner { display:grid; grid-template-columns:1.8fr 1fr 1.4fr; gap:3rem; padding-bottom:3rem; border-bottom:1px solid rgba(255,255,255,.07); }
.footer-logo {
  height: 72px;
  width: auto;
  margin-bottom: 1.5rem;
}
.footer-brand p { font-size:.88rem; max-width:36ch; margin-bottom:1.5rem; color:rgba(255,255,255,.82); }

.footer-social { display:flex; gap:.75rem; }
.footer-social a {
  display:flex; align-items:center; justify-content:center;
  width:40px; height:40px;
  border-radius:50%;
  transition:transform .2s, opacity .2s;
  opacity:.9;
}
.footer-social a:hover { transform:scale(1.1); opacity:1; }
/* Instagram — official gradient via background */
.footer-social a.social-ig {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  color: #fff;
}
/* Facebook — official blue */
.footer-social a.social-fb {
  background: #1877F2;
  color: #fff;
}
/* WhatsApp — official green */
.footer-social a.social-wa {
  background: #25D366;
  color: #fff;
}

.footer-nav h4, .footer-donate h4 { color:var(--white); font-size:.7rem; letter-spacing:.12em; margin-bottom:1.1rem; }
.footer-nav ul li { margin-bottom:.55rem; }
.footer-nav ul li a { font-size:.9rem; color:rgba(255,255,255,.75); transition:color .2s; }
.footer-nav ul li a:hover { color:var(--yellow); }
.footer-donate p { font-size:.9rem; margin-bottom:1.25rem; max-width:none; color:rgba(255,255,255,.82); }
.footer-donate .btn { margin-bottom:1.25rem; }
.footer-whish { border-top:1px solid rgba(255,255,255,.08); padding-top:1rem; margin-top:.5rem; margin-bottom:1rem; }
.footer-whish-label { font-size:.68rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--teal-light); margin-bottom:.35rem; }
.footer-whish-num { font-size:1.1rem; font-weight:700; color:var(--yellow); letter-spacing:.04em; }
.footer-contact a { color:var(--teal-light); font-size:.82rem; text-decoration:underline; }
.footer-bottom { padding:1.25rem 0; }
.footer-bottom p { font-size:.76rem; color:rgba(255,255,255,.28); }

/* ── SCROLL REVEAL ────────────────────────────────────────── */
.reveal { opacity:0; transform:translateY(26px); transition:opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity:1; transform:none; }

/* ── MERCH / SHOP ─────────────────────────────────────────── */
.merch-section {
  position: relative;
  padding: clamp(5rem, 10vw, 9rem) 0;
  overflow: hidden;
}
.merch-bg { position: absolute; inset: 0; }
.merch-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.merch-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(5, 10, 12, 0.78) 0%,
    rgba(5, 10, 12, 0.62) 55%,
    rgba(5, 10, 12, 0.35) 100%
  );
}
.merch-content {
  position: relative;
  z-index: 2;
  /* Narrower than full container */
  max-width: 960px;
}
.merch-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}
.merch-text h2 { color: var(--white); margin-bottom: 1.25rem; }
.merch-text p  { color: rgba(255,255,255,.85); max-width: 48ch; margin-bottom: 1rem; }
.merch-text strong { color: var(--white); }
.merch-tagline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--yellow);
  line-height: 1.5;
  margin-bottom: 2rem !important;
}
.merch-tagline em { font-style: italic; }
.merch-text .btn { margin-top: .5rem; }

.merch-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.merch-item {
  background: rgba(255,255,255,.92);
  border-radius: var(--r);
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s;
  cursor: pointer;
}
.merch-item:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.25); }
.merch-item-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--off-white);
}
.merch-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .45s ease;
}
.merch-item:hover .merch-item-img img { transform: scale(1.06); }
.merch-item span {
  display: block;
  padding: .6rem .5rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--white);
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width:1024px) {
  .team-grid { grid-template-columns:repeat(2,1fr); gap:2.5rem 2rem; }
  .impact-stats { grid-template-columns:repeat(4,1fr); }
}
@media (max-width:900px) {
  .nav-toggle { display:flex; }
  .nav-links {
    display:none; position:fixed; top:var(--nav-h); left:0; right:0;
    background:var(--white); flex-direction:column; align-items:stretch;
    padding:1rem 1.25rem; border-bottom:2px solid var(--teal);
    box-shadow:0 8px 32px rgba(0,0,0,.14); gap:.2rem;
  }
  .nav-links.open { display:flex; }
  .nav-links li a { padding:.7rem 1rem; font-size:.88rem; }
  .nav-links li a.nav-cta { text-align:center; margin:.5rem 0 0; padding:.8rem 1rem; }

  .mission-grid    { grid-template-columns:1fr; }
  .lp-item         { grid-template-columns:1fr; }
  .lp-item-reverse { direction:ltr; }
  .nigeria-grid    { grid-template-columns:1fr; }
  .partners-grid   { grid-template-columns:1fr; }
  .stories-grid    { grid-template-columns:1fr; }
  .story-card-reverse { flex-direction:row; }
  .help-grid       { grid-template-columns:1fr; }
  .help-card-featured { transform:none; }
  .help-card-featured:hover { transform:translateY(-4px); }
  .whish-inner     { grid-template-columns:1fr; }
  .merch-inner     { grid-template-columns:1fr; }
  .merch-items     { grid-template-columns:repeat(4,1fr); }
  .whish-qr-side   { border-left:none; border-top:1px solid var(--border); padding-left:0; padding-top:1.5rem; flex-direction:row; justify-content:flex-start; }
  .footer-inner    { grid-template-columns:1fr; gap:2.5rem; }
  .gallery-grid    { grid-template-columns:repeat(2,1fr); grid-auto-rows:170px; }
  .gallery-tall    { grid-row:span 1; }
  .gallery-wide    { grid-column:span 2; }
}
@media (max-width:640px) {
  .impact-stats    { grid-template-columns:repeat(2,1fr); gap:1.5rem; }  .story-card      { flex-direction:column; align-items:center; text-align:center; }
  .story-card-reverse { flex-direction:column; }
  .team-grid       { grid-template-columns:repeat(2,1fr); }
  .gallery-grid    { grid-template-columns:repeat(2,1fr); grid-auto-rows:145px; }
  .gallery-wide    { grid-column:span 2; }
  .gallery-tall    { grid-row:span 1; }
  .lp-img          { height:220px; }
}
