/* ============================================================
   EQUAL STEPS INITIATIVE — EAA-Inspired Design System
   InnoBytes Lab 2026
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=DM+Serif+Display:ital@0;1&display=swap');

/* ── CSS Variables ─────────────────────────────────────── */
:root {
  --navy:        #1A2744;
  --navy-dark:   #111b30;
  --navy-light:  #243358;
  --orange:      #E85D04;
  --orange-dark: #c44e03;
  --orange-light:#FF7722;
  --off-white:   #F7F5F0;
  --light-grey:  #E8E6E1;
  --text-dark:   #1C1C1C;
  --text-mid:    #4A4A4A;
  --text-light:  #7a7a7a;
  --green:       #2D6A4F;
  --alert-red:   #C1121F;
  --white:       #ffffff;
  --serif:       'DM Serif Display', Georgia, serif;
  --sans:        'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ── Reset & Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  margin: 0;
}

img { max-width: 100%; height: auto; }

a { color: var(--orange); text-decoration: none; transition: color .2s; }
a:hover { color: var(--orange-dark); }

/* ── Typography ────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
}

/* EAA-style serif section titles */
.section-title-serif {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 400;
  color: var(--orange);
  line-height: 1.15;
  margin: 0 0 1rem;
}

.section-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--orange);
}

.section-divider {
  width: 48px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
  margin: .9rem 0 1.2rem;
}
.section-divider.centered { margin: .9rem auto 1.2rem; }

/* Max-width container */
.section-max-width {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Utility Colours ───────────────────────────────────── */
.bg-navy      { background-color: var(--navy) !important; }
.bg-navy-dark { background-color: var(--navy-dark) !important; }
.bg-orange    { background-color: var(--orange) !important; }
.bg-off-white { background-color: var(--off-white) !important; }
.text-navy    { color: var(--navy) !important; }
.text-orange  { color: var(--orange) !important; }
.text-white   { color: var(--white) !important; }
.text-mid     { color: var(--text-mid) !important; }

/* ── Buttons ────────────────────────────────────────────── */
.btn-es-primary {
  background: var(--orange);
  color: var(--white);
  border: 2px solid var(--orange);
  padding: .75rem 1.75rem;
  font-weight: 700;
  font-size: .95rem;
  border-radius: 4px;
  transition: background .2s, border-color .2s, transform .15s;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  letter-spacing: .01em;
  cursor: pointer;
}
.btn-es-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-es-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.7);
  padding: .75rem 1.75rem;
  font-weight: 700;
  font-size: .95rem;
  border-radius: 4px;
  transition: all .2s;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  cursor: pointer;
}
.btn-es-outline:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
  color: var(--white);
}

.btn-es-navy {
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--navy);
  padding: .75rem 1.75rem;
  font-weight: 700;
  font-size: .95rem;
  border-radius: 4px;
  transition: all .2s;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  cursor: pointer;
}
.btn-es-navy:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  color: var(--white);
  transform: translateY(-1px);
}

/* ══════════════════════════════════════════════════════════
   ANIMATED PRELOADER — Exact EAA Style Splash Screen
   ══════════════════════════════════════════════════════════ */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: visibility 0.8s ease;
}

.loader-curtain {
  position: absolute;
  inset: 0;
  background: var(--orange);
  z-index: 1;
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
  transform: translateY(0);
}

.page-loader.loaded .loader-curtain {
  transform: translateY(-100%);
}

.page-loader.loaded .loader-container {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.page-loader.loaded {
  visibility: hidden;
  pointer-events: none;
  transition-delay: 0.8s;
}

.loader-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.loader-logo-card {
  position: relative;
  padding: 1.5rem 2.2rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.loader-border-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.border-path {
  fill: none;
  stroke: var(--white);
  stroke-width: 3px;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawBorder 2.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes drawBorder {
  to {
    stroke-dashoffset: 0;
  }
}

.loader-brand-content {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.loader-logo-box {
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-logo-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  animation: logoPop 0.8s ease-out forwards;
}

@keyframes logoPop {
  0% { transform: scale(0.6); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.loader-brand-divider {
  width: 2px;
  height: 60px;
  background: rgba(255, 255, 255, 0.8);
}

.loader-brand-text {
  display: flex;
  flex-direction: column;
  color: var(--white);
  text-align: left;
}

.loader-arabic {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.95);
  direction: rtl;
  margin-bottom: 2px;
}

.loader-title {
  font-family: var(--sans);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1;
}

.loader-subtext {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 4px;
}

.loader-progress {
  width: 200px;
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  margin-top: 2rem;
  overflow: hidden;
}

.loader-progress-line {
  height: 100%;
  width: 0%;
  background: var(--white);
  border-radius: 3px;
  animation: progressFill 2.4s ease-in-out forwards;
}

@keyframes progressFill {
  0% { width: 0%; }
  60% { width: 70%; }
  100% { width: 100%; }
}

/* ══════════════════════════════════════════════════════════
   NAVIGATION — EAA-style minimal sticky bar
   ══════════════════════════════════════════════════════════ */
#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1040;
  background: var(--navy);
  height: 70px;
  transition: background .3s, box-shadow .3s;
}
#main-nav.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 100%;
  padding: 0;
}

/* Logo block — colored background like EAA */
.nav-logo-block {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  padding: 0 1.5rem;
  background: var(--orange);
  transition: background .2s;
}
.nav-logo-block:hover { background: var(--orange-dark); }
.nav-logo-img {
  height: 46px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* Nav controls (right side) */
.nav-controls {
  display: flex;
  align-items: center;
  gap: 0;
  height: 100%;
}

.nav-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border: none;
  background: transparent;
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  transition: background .2s;
  position: relative;
}
.nav-icon-btn:hover { background: rgba(255,255,255,.1); }

/* Volunteer nav button */
.nav-volunteer-btn {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .5rem 1rem;
  margin-right: .4rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white) !important;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background .2s, border-color .2s, transform .15s;
}
.nav-volunteer-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: var(--white);
  transform: translateY(-1px);
  color: var(--white);
}
.nav-volunteer-btn i { font-size: .85rem; color: var(--orange); }

/* Donate floating button */
.nav-donate-btn {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1.2rem;
  margin-right: .5rem;
  background: var(--orange);
  color: var(--white) !important;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background .2s, transform .15s;
}
.nav-donate-btn:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  color: var(--white);
}
.nav-donate-btn i { font-size: .9rem; }

/* Hamburger icon */
.nav-hamburger {
  flex-direction: column;
  gap: 5px;
  width: 70px;
}
.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: transform .3s, opacity .3s;
  border-radius: 2px;
}
.nav-hamburger.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translateY(5px) translateX(5px);
}
.nav-hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translateY(-5px) translateX(5px);
}

/* ── Full-Screen Overlay Menu ──────────────────────────── */
.overlay-menu {
  position: fixed;
  inset: 0;
  z-index: 1035;
  background: var(--navy-dark);
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s ease, visibility .4s;
  overflow-y: auto;
}
.overlay-menu.active {
  opacity: 1;
  visibility: visible;
}

.overlay-menu-inner {
  padding-top: 90px;
  min-height: 100vh;
}

.overlay-menu-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: start;
}

.overlay-nav-link {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: var(--white) !important;
  transition: all .2s;
  text-decoration: none;
}
.overlay-nav-link:hover {
  padding-left: 1rem;
  color: var(--orange) !important;
}
.overlay-nav-link.active { color: var(--orange) !important; }

.overlay-nav-num {
  font-size: .7rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: .1em;
  min-width: 24px;
}
.overlay-nav-text {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 400;
  line-height: 1.2;
}

.overlay-nav-secondary {
  padding-top: 1rem;
}
.overlay-info-block {
  margin-bottom: 2rem;
}
.overlay-info-block h4 {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .8rem;
}
.overlay-info-block p {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  margin-bottom: .4rem;
}
.overlay-social {
  display: flex;
  gap: .5rem;
}
.overlay-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.7) !important;
  font-size: .95rem;
  transition: background .2s, color .2s;
}
.overlay-social a:hover {
  background: var(--orange);
  color: var(--white) !important;
}
.overlay-cta { margin-top: 2rem; }

/* ── Search Overlay ────────────────────────────────────── */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  background: var(--navy-dark);
  height: 0;
  overflow: hidden;
  transition: height .3s ease;
}
.search-overlay.active {
  height: 120px;
}
.search-overlay-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  height: 100%;
  display: flex;
  align-items: center;
}
.search-form {
  display: flex;
  width: 100%;
  gap: 1rem;
  align-items: center;
}
.search-input {
  flex: 1;
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(255,255,255,.3);
  color: var(--white);
  font-size: 1.5rem;
  font-family: var(--serif);
  padding: .5rem 0;
  outline: none;
  transition: border-color .2s;
}
.search-input:focus { border-bottom-color: var(--orange); }
.search-input::placeholder { color: rgba(255,255,255,.3); }
.search-close-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,.6);
  font-size: 1.3rem;
  cursor: pointer;
  transition: color .2s;
}
.search-close-btn:hover { color: var(--white); }

/* ══════════════════════════════════════════════════════════
   HERO — Full-screen slideshow with animated text
   ══════════════════════════════════════════════════════════ */
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: var(--navy-dark);
}

.hero-slideshow {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  transform: scale(1.05);
  animation: heroZoom 12s ease-in-out infinite alternate;
}
.hero-slide.active {
  opacity: 1;
}
@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(17,27,48,.45) 0%,
    rgba(17,27,48,.55) 50%,
    rgba(17,27,48,.7) 100%
  );
  z-index: 1;
}

.hero-content-wrap {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.hero-animated-text {
  text-align: center;
  max-width: 900px;
}

.hero-word {
  display: inline-block;
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  opacity: 0;
  transform: translateY(30px);
  animation: wordReveal .6s ease forwards;
  margin: 0 .15em;
}
.hero-word-accent {
  color: var(--orange);
  font-style: italic;
}

/* Stagger word animations */
.hero-word:nth-child(1) { animation-delay: .3s; }
.hero-word:nth-child(2) { animation-delay: .5s; }
.hero-word:nth-child(3) { animation-delay: .7s; }
.hero-word:nth-child(4) { animation-delay: .9s; }
.hero-word:nth-child(5) { animation-delay: 1.2s; }
.hero-word:nth-child(6) { animation-delay: 1.4s; }
.hero-word:nth-child(7) { animation-delay: 1.6s; }

@keyframes wordReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll chevrons (EAA style) */
.hero-scroll-chevrons {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.chevron {
  width: 24px;
  height: 8px;
  opacity: 0;
  transform: scale(0.3);
  animation: chevronMove 2s ease-out infinite;
}
.chevron:nth-child(1) { animation-delay: 0s; }
.chevron:nth-child(2) { animation-delay: .2s; }
.chevron:nth-child(3) { animation-delay: .4s; }

.chevron::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 51%;
  background: rgba(255,255,255,.7);
  transform: skewY(30deg);
}
.chevron::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 51%;
  background: rgba(255,255,255,.7);
  transform: skewY(-30deg);
}

@keyframes chevronMove {
  25% { opacity: 1; }
  33% { opacity: 1; transform: translateY(10px); }
  67% { opacity: 1; transform: translateY(20px); }
  100% { opacity: 0; transform: translateY(30px) scale(0.5); }
}

/* ══════════════════════════════════════════════════════════
   IMPACT SECTION — Colored stat blocks (EAA style)
   ══════════════════════════════════════════════════════════ */
#impact-section {
  padding: 6rem 0;
  background: var(--off-white);
  border-top: 4px solid var(--orange);
}
.impact-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.impact-title {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--orange);
  margin-bottom: 2.5rem;
}

.impact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.impact-block {
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  min-height: 200px;
  display: flex;
  align-items: flex-end;
  transition: transform .3s;
}
.impact-block:hover { transform: scale(1.02); }

.impact-block-orange { background: var(--orange); }
.impact-block-orange-dark { background: var(--orange-dark); }
.impact-block-navy { background: var(--navy); }
.impact-block-navy-dark { background: var(--navy-dark); }
.impact-block-green { background: var(--green); }

.impact-block-image {
  background-size: cover;
  background-position: center;
  min-height: 280px;
  grid-row: span 2;
}

.impact-block-content {
  position: relative;
  z-index: 1;
  width: 100%;
}

.impact-num {
  display: block;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.03em;
}
.impact-num-text {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1;
}
.impact-label {
  display: block;
  font-size: .9rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  margin-top: .5rem;
  letter-spacing: .02em;
}
.impact-block-link {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  color: rgba(255,255,255,.6) !important;
  font-size: 1.6rem;
  transition: color .2s, transform .2s;
}
.impact-block-link:hover {
  color: var(--white) !important;
  transform: scale(1.15);
}

/* ══════════════════════════════════════════════════════════
   PROGRAMME PILLARS
   ══════════════════════════════════════════════════════════ */
#programmes {
  padding: 6rem 0;
  background: var(--white);
}
.section-header-center {
  text-align: center;
  margin-bottom: 3.5rem;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.pillar-card {
  background: var(--off-white);
  border-radius: 8px;
  padding: 2rem 1.75rem;
  height: 100%;
  border-bottom: 3px solid transparent;
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.pillar-card:hover {
  border-bottom-color: var(--orange);
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  transform: translateY(-4px);
}
.pillar-icon {
  width: 54px;
  height: 54px;
  border-radius: 8px;
  background: rgba(232,93,4,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.4rem;
  color: var(--orange);
  transition: background .25s;
}
.pillar-card:hover .pillar-icon { background: var(--orange); color: var(--white); }
.pillar-card h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: .6rem;
}
.pillar-card p {
  font-size: .88rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.pillar-link {
  font-size: .82rem;
  font-weight: 700;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  transition: gap .2s;
}
.pillar-card:hover .pillar-link { gap: .55rem; }

/* ══════════════════════════════════════════════════════════
   FEATURE / QUOTE SPLIT
   ══════════════════════════════════════════════════════════ */
#programme-feature {
  padding: 6rem 0;
  background: var(--off-white);
}
.feature-split {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 4rem;
  align-items: center;
}
.feature-left {}
.feature-right {}

.quote-block {
  border-left: 4px solid var(--orange);
  padding: 1.75rem 2rem;
  background: var(--white);
  border-radius: 0 8px 8px 0;
  margin-bottom: 2rem;
}
.quote-block blockquote {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.5;
  font-style: italic;
  margin: 0;
}

.reason-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}
.reason-list li {
  font-size: .9rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: .6rem;
  display: flex;
  align-items: flex-start;
  gap: .5rem;
}
.reason-list li i {
  color: var(--orange);
  margin-top: .2rem;
  min-width: 16px;
}

.feature-image-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
.feature-image {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}
.feature-image-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--navy);
  border-radius: 8px;
  padding: .85rem 1.25rem;
  max-width: 260px;
}
.badge-label {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--orange);
  margin-bottom: .35rem;
}
.badge-text {
  font-size: .85rem;
  color: rgba(255,255,255,.85);
}
.badge-text strong { color: white; }

/* ══════════════════════════════════════════════════════════
   APPEAL / DONATION
   ══════════════════════════════════════════════════════════ */
#appeal {
  padding: 6rem 0;
  background: var(--navy);
}
.appeal-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.donation-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  padding: 2rem;
}
.donation-heading {
  color: rgba(255,255,255,.85);
  font-weight: 700;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 1rem;
}
.donation-amounts {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.amount-btn {
  padding: .65rem 1.25rem;
  border: 2px solid rgba(255,255,255,.25);
  border-radius: 4px;
  color: rgba(255,255,255,.8);
  font-weight: 700;
  font-size: .9rem;
  background: transparent;
  cursor: pointer;
  transition: all .2s;
}
.amount-btn:hover,
.amount-btn.active {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--white);
}
.amount-impact {
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  margin-top: .75rem;
  font-style: italic;
}
.custom-amount {
  background: rgba(255,255,255,.08);
  border: 2px solid rgba(255,255,255,.2);
  color: var(--white);
  border-radius: 4px;
  padding: .65rem 1rem;
  font-size: .9rem;
  font-weight: 600;
  width: 100%;
  transition: border-color .2s;
}
.custom-amount:focus {
  outline: none;
  border-color: var(--orange);
  background: rgba(255,255,255,.12);
}
.custom-amount::placeholder { color: rgba(255,255,255,.35); }
.donation-secure {
  font-size: .72rem;
  color: rgba(255,255,255,.3);
  text-align: center;
  margin-top: .85rem;
  margin-bottom: 0;
}

/* ══════════════════════════════════════════════════════════
   NEWS — "What's New" section (EAA style)
   ══════════════════════════════════════════════════════════ */
#news {
  padding: 6rem 0;
  background: var(--white);
  border-top: 3px solid var(--orange);
}
.section-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.news-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem 0;
}
.news-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow .3s, transform .3s;
}
.news-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,.12);
  transform: translateY(-5px);
}
.news-card-image {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.news-card-placeholder {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.news-body { padding: 1.5rem; }
.news-cat {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--orange);
  margin-bottom: .5rem;
}
.news-card h5 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 1rem;
}
.news-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--light-grey);
}
.news-date {
  font-size: .75rem;
  color: var(--text-light);
  font-weight: 500;
}
.news-read-link {
  font-size: .78rem;
  font-weight: 700;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  transition: gap .2s;
}
.news-read-link:hover { gap: .5rem; }

/* ══════════════════════════════════════════════════════════
   STORIES
   ══════════════════════════════════════════════════════════ */
#stories {
  padding: 6rem 0;
  background: var(--off-white);
}
.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.story-card {
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  transition: box-shadow .3s, transform .3s;
  height: 100%;
}
.story-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,.12);
  transform: translateY(-5px);
}
.story-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}
.story-img-placeholder {
  height: 240px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}
.story-body { padding: 1.5rem; }
.story-tag {
  display: inline-block;
  background: rgba(232,93,4,.1);
  color: var(--orange);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: .25rem .65rem;
  border-radius: 50px;
  margin-bottom: .85rem;
}
.story-card h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: .65rem;
}
.story-card p {
  font-size: .855rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.story-read-link {
  font-size: .82rem;
  font-weight: 700;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  transition: gap .2s;
}
.story-card:hover .story-read-link { gap: .5rem; }

/* ══════════════════════════════════════════════════════════
   WHERE WE WORK
   ══════════════════════════════════════════════════════════ */
#where-we-work {
  padding: 6rem 0;
  background: var(--white);
}
.lga-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.lga-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--orange);
  color: var(--white);
  font-size: .78rem;
  font-weight: 700;
  padding: .35rem .8rem;
  border-radius: 50px;
}
.lga-badge i { font-size: .7rem; }

/* ══════════════════════════════════════════════════════════
   PARTNERS — Swiper Interactive Logo Carousel
   ══════════════════════════════════════════════════════════ */
#partners {
  padding: 4rem 0 4.5rem;
  background: var(--off-white);
  border-top: 1px solid var(--light-grey);
  position: relative;
}

.partners-swiper {
  padding: 0.5rem 0.5rem 3.5rem !important;
}

.partners-swiper .swiper-slide {
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.partner-logo-card {
  width: 100%;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 1.6rem;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-logo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.partner-logo-card img {
  max-height: 60px;
  max-width: 82%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: none !important;
  opacity: 0.95;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.partner-logo-card:hover img {
  opacity: 1;
  transform: scale(1.04);
}

/* Custom Swiper Controls for Partners */
.partners-prev,
.partners-next {
  width: 46px;
  height: 46px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.14);
  color: var(--navy) !important;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  top: 45% !important;
  margin-top: 0 !important;
}

.partners-prev::after,
.partners-next::after {
  font-size: 1.1rem !important;
  font-weight: 900;
}

.partners-prev:hover,
.partners-next:hover {
  background: var(--orange);
  color: var(--white) !important;
  transform: scale(1.1);
}

.partners-prev { left: -10px !important; }
.partners-next { right: -10px !important; }

.partners-pagination {
  bottom: 0.5rem !important;
}

.partners-pagination .swiper-pagination-bullet {
  background: var(--navy);
  opacity: 0.25;
  width: 9px;
  height: 9px;
  transition: all 0.3s ease;
}

.partners-pagination .swiper-pagination-bullet-active {
  background: var(--orange);
  opacity: 1;
  width: 24px;
  border-radius: 6px;
}

/* ══════════════════════════════════════════════════════════
   NEWSLETTER
   ══════════════════════════════════════════════════════════ */
#newsletter { padding: 4rem 0; background: var(--navy-dark); }
.newsletter-input {
  background: rgba(255,255,255,.08);
  border: 2px solid rgba(255,255,255,.2);
  color: var(--white);
  padding: .75rem 1.25rem;
  font-size: .9rem;
  border-radius: 4px 0 0 4px;
  flex: 1;
  transition: border-color .2s;
}
.newsletter-input:focus {
  outline: none;
  border-color: var(--orange);
  background: rgba(255,255,255,.12);
}
.newsletter-input::placeholder { color: rgba(255,255,255,.35); }
.newsletter-btn {
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: .75rem 1.5rem;
  font-weight: 700;
  font-size: .9rem;
  border-radius: 0 4px 4px 0;
  transition: background .2s;
  cursor: pointer;
  white-space: nowrap;
}
.newsletter-btn:hover { background: var(--orange-dark); }
.newsletter-form { display: flex; max-width: 480px; }
.section-heading-white {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
}

/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
#footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.75);
  padding: 5rem 0 0;
  border-top: 3px solid var(--orange);
}
.footer-mission {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.footer-contact-item {
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  margin-bottom: .5rem;
}
.footer-contact-item i {
  color: var(--orange);
  margin-top: .1rem;
  min-width: 14px;
}
.footer-heading {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-link {
  color: rgba(255,255,255,.55);
  font-size: .85rem;
  font-weight: 500;
  display: block;
  padding: .28rem 0;
  transition: color .2s, padding-left .15s;
}
.footer-link:hover {
  color: var(--orange-light);
  padding-left: .35rem;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  transition: background .2s, color .2s, transform .15s;
  margin-right: .4rem;
}
.footer-social a:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}
.footer-bottom {
  margin-top: 3.5rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .78rem;
  color: rgba(255,255,255,.35);
}
.footer-bottom a {
  color: rgba(255,255,255,.45);
  transition: color .2s;
}
.footer-bottom a:hover { color: var(--orange); }

/* ══════════════════════════════════════════════════════════
   WHATSAPP FLOAT
   ══════════════════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  background: #25D366;
  color: var(--white);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform .2s, box-shadow .2s;
  animation: wa-pulse 3s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.6);
  color: var(--white);
}
@keyframes wa-pulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.45); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,.7); }
}
.whatsapp-float-label {
  position: fixed;
  bottom: 2.95rem;
  right: 6rem;
  z-index: 9998;
  background: var(--navy);
  color: var(--white);
  font-size: .78rem;
  font-weight: 600;
  padding: .35rem .85rem;
  border-radius: 50px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity .2s, transform .2s;
  pointer-events: none;
}
.whatsapp-float:hover + .whatsapp-float-label {
  opacity: 1;
  transform: translateX(0);
}

/* ══════════════════════════════════════════════════════════
   PAGE BANNERS (inner pages)
   ══════════════════════════════════════════════════════════ */
.page-banner {
  background: linear-gradient(105deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 8rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.025' fill-rule='evenodd'%3E%3Cpath d='M0 0h40v40H0V0zm40 40h40v40H40V40zm0-40h2l-2 2V0zm0 4l4-4h2l-6 6V4zm0 4l8-8h2L40 10V8zm0 4L52 0h2L40 14v-2zm0 4L56 0h2L40 18v-2zm0 4L60 0h2L40 22v-2zm0 4L64 0h2L40 26v-2zm0 4L68 0h2L40 30v-2zm0 4L72 0h2L40 34v-2zm0 4L76 0h2L40 38v-2zm0 4L80 0v2L42 40h-2zm4 0L80 4v2L46 40h-2zm4 0L80 8v2L50 40h-2zm4 0L80 12v2L54 40h-2zm4 0L80 16v2L58 40h-2zm4 0L80 20v2L62 40h-2zm4 0L80 24v2L66 40h-2zm4 0L80 28v2L70 40h-2zm4 0L80 32v2L74 40h-2zm4 0L80 36v2L78 40h-2zm4 0L80 40v2L82 40h-2z'/%3E%3C/g%3E%3C/svg%3E");
}
.page-banner h1 {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: .75rem;
}
.page-banner .breadcrumb { background: none; padding: 0; margin: 0; }
.page-banner .breadcrumb-item { font-size: .82rem; color: rgba(255,255,255,.5); }
.page-banner .breadcrumb-item.active { color: rgba(255,255,255,.8); }
.page-banner .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.3); }
.page-banner .breadcrumb-item a { color: var(--orange-light); }
.page-banner-img {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 45%;
  object-fit: cover;
  opacity: .2;
}

/* ══════════════════════════════════════════════════════════
   ABOUT PAGE
   ══════════════════════════════════════════════════════════ */
.value-card {
  background: var(--white);
  border-radius: 8px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  height: 100%;
  transition: transform .25s, box-shadow .25s;
  border-top: 3px solid transparent;
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0,0,0,.1);
  border-top-color: var(--orange);
}
.value-icon { font-size: 2rem; color: var(--orange); margin-bottom: 1rem; }

.timeline { position: relative; padding: 1rem 0; }
.timeline::before {
  content: '';
  position: absolute;
  left: 1.25rem;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--light-grey);
}
.timeline-item { display: flex; gap: 1.5rem; padding-bottom: 2rem; position: relative; }
.timeline-dot {
  width: 2.5rem; height: 2.5rem; min-width: 2.5rem;
  border-radius: 50%;
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: .8rem; font-weight: 700;
  position: relative; z-index: 1;
  box-shadow: 0 0 0 4px rgba(232,93,4,.15);
}
.timeline-content { padding-top: .2rem; }
.timeline-year {
  font-size: .7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--orange); margin-bottom: .25rem;
}
.timeline-content h5 { font-size: .95rem; font-weight: 800; color: var(--navy); margin-bottom: .35rem; }
.timeline-content p { font-size: .85rem; color: var(--text-mid); margin: 0; }

.team-card {
  text-align: center;
  background: var(--white);
  border-radius: 8px;
  padding: 1.75rem 1.25rem;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
  transition: transform .25s, box-shadow .25s;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0,0,0,.1);
}
.team-avatar {
  width: 90px; height: 90px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; margin: 0 auto 1rem; color: var(--white); font-weight: 900;
}
.team-card h5 { font-size: .95rem; font-weight: 800; color: var(--navy); margin-bottom: .2rem; }
.team-role { font-size: .78rem; color: var(--orange); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }

/* ── Programmes Page ───────────────────────────────────── */
.pillar-tab-btn {
  background: var(--white); border: 2px solid var(--light-grey);
  color: var(--navy); font-weight: 700; font-size: .85rem;
  padding: .75rem 1.25rem; border-radius: 8px; cursor: pointer;
  transition: all .2s; display: flex; align-items: center; gap: .6rem;
  width: 100%; text-align: left;
}
.pillar-tab-btn:hover { border-color: var(--orange); color: var(--orange); }
.pillar-tab-btn.active {
  background: var(--orange); border-color: var(--orange); color: var(--white);
}
.pillar-tab-btn i { font-size: 1.1rem; }

/* ── Impact Page ───────────────────────────────────────── */
.impact-counter-card {
  background: var(--white); border-radius: 8px; padding: 2rem;
  text-align: center; box-shadow: 0 2px 12px rgba(0,0,0,.06);
  border-bottom: 3px solid var(--orange);
}
.impact-counter-num {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 900;
  color: var(--orange); display: block;
}
.impact-counter-label {
  font-size: .82rem; font-weight: 600; color: var(--text-mid);
  text-transform: uppercase; letter-spacing: .08em; margin-top: .4rem;
}

/* ── Contact Page ──────────────────────────────────────── */
.contact-form-card {
  background: var(--white); border-radius: 10px; padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
}
.form-label-es {
  font-size: .82rem; font-weight: 700; color: var(--navy);
  margin-bottom: .35rem; text-transform: uppercase; letter-spacing: .06em;
}
.form-control-es {
  border: 2px solid var(--light-grey); border-radius: 4px;
  padding: .7rem 1rem; font-size: .9rem; transition: border-color .2s; color: var(--text-dark);
}
.form-control-es:focus {
  border-color: var(--orange); box-shadow: 0 0 0 3px rgba(232,93,4,.1); outline: none;
}
.contact-info-item {
  display: flex; align-items: flex-start; gap: 1rem; padding: 1.25rem;
  background: var(--white); border-radius: 8px; margin-bottom: .85rem;
  box-shadow: 0 2px 8px rgba(0,0,0,.05); transition: box-shadow .2s;
}
.contact-info-item:hover { box-shadow: 0 6px 20px rgba(0,0,0,.1); }
.contact-info-icon {
  width: 44px; height: 44px; min-width: 44px; border-radius: 8px;
  background: rgba(232,93,4,.1); display: flex; align-items: center;
  justify-content: center; font-size: 1.1rem; color: var(--orange);
}
.contact-info-text strong {
  display: block; font-size: .8rem; text-transform: uppercase;
  letter-spacing: .08em; color: var(--navy); margin-bottom: .2rem;
}
.contact-info-text span { font-size: .88rem; color: var(--text-mid); }

/* ── Get Involved Cards ────────────────────────────────── */
.involve-card {
  background: var(--white); border-radius: 10px; padding: 2.5rem 2rem;
  text-align: center; height: 100%;
  box-shadow: 0 2px 12px rgba(0,0,0,.06); transition: transform .25s, box-shadow .25s;
  border-top: 4px solid transparent;
}
.involve-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,.12);
}
.involve-card.primary-card { border-top-color: var(--orange); }
.involve-card.secondary-card { border-top-color: var(--navy); }
.involve-icon {
  width: 72px; height: 72px; border-radius: 50%;
  margin: 0 auto 1.5rem; display: flex; align-items: center;
  justify-content: center; font-size: 1.8rem;
}
.involve-icon.orange { background: rgba(232,93,4,.1); color: var(--orange); }
.involve-icon.navy { background: rgba(26,39,68,.1); color: var(--navy); }
.involve-card h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: .75rem; }
.involve-card p { font-size: .88rem; color: var(--text-mid); line-height: 1.7; }

/* Legacy compat: section-heading for other pages */
.section-heading {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */
@media (max-width: 991px) {
  .overlay-menu-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .appeal-split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .impact-grid {
    grid-template-columns: 1fr 1fr;
  }
  .nav-donate-btn span { display: none; }
  .nav-donate-btn { padding: .5rem; border-radius: 50%; width: 40px; height: 40px; justify-content: center; }
}

@media (max-width: 767px) {
  #hero { min-height: 80vh; }
  .hero-word {
    font-size: clamp(2rem, 8vw, 3.5rem);
  }
  .pillars-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .stories-grid { grid-template-columns: 1fr; }
  .impact-grid { grid-template-columns: 1fr; }
  .impact-block-image { min-height: 200px; grid-row: auto; }
  .newsletter-form { flex-direction: column; }
  .newsletter-input { border-radius: 4px; }
  .newsletter-btn { border-radius: 4px; margin-top: .5rem; }
  .contact-form-card { padding: 1.5rem; }
  .page-banner { padding: 7rem 0 2.5rem; }
  .page-banner-img { display: none; }
  .section-max-width { padding: 0 1rem; }
  .impact-inner { padding: 0 1rem; }
}

/* ══════════════════════════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════════════════════════ */
.fade-in-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-up.delay-1 { transition-delay: .15s; }
.fade-in-up.delay-2 { transition-delay: .3s; }
.fade-in-up.delay-3 { transition-delay: .45s; }
.fade-in-up.delay-4 { transition-delay: .6s; }

/* ── Misc ──────────────────────────────────────────────── */
.section-separator { height: 1px; background: var(--light-grey); margin: 0; }
.text-orange-hover:hover { color: var(--orange) !important; }
.rounded-es { border-radius: 8px; }
.shadow-es { box-shadow: 0 4px 20px rgba(0,0,0,.1); }
.w-100 { width: 100%; }
.text-center { text-align: center; }
.mt-3 { margin-top: 1rem; }
.mt-5 { margin-top: 3rem; }
.mb-2 { margin-bottom: .5rem; }
.mb-4 { margin-bottom: 1.5rem; }
.ms-1 { margin-left: .25rem; }
.me-1 { margin-right: .25rem; }
.me-2 { margin-right: .5rem; }
