

/* ----------------------------------------------------------------
   1. RESET & BASE
---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body { height: 100%; }

body {
  font-family: Arial, Outfit, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #374151;
  background: #ff98001a;
  -webkit-font-smoothing: antialiased;
}

img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }

/* ----------------------------------------------------------------
   2. DESIGN TOKENS
---------------------------------------------------------------- */
:root {
  /* Brand */
  --orange:        #f86505;
  --orange-lt:     #ff8c38;
  --orange-dk:     #ea580c;
  --orange-pale:   #ff98001a;

  /* Dynamic brand fallbacks used by header/footer buttons */
  --site-primary-color: var(--orange);
  --site-secondary-color: var(--orange-dk);
  --footer-primary-color: var(--orange);
  --footer-secondary-color: var(--orange-dk);

  /* Neutrals */
  --dark:          #0d1117;
  --charcoal:      #1a1a2e;
  --body-text:     #374151;
  --mid:           #4b5563;
  --muted:         #6b7280;
  --muted-lt:      #9ca3af;
  --light:         #f8fafc;
  --cream:         #faf8f5;
  --white:         #ffffff;
  --border:        #e5e7eb;
  --border-lt:     rgba(0,0,0,.07);

  /* Shadows */
  --shadow-xs:     0 1px 4px rgba(0,0,0,.06);
  --shadow-sm:     0 2px 10px rgba(0,0,0,.08);
  --shadow-md:     0 8px 26px rgba(0,0,0,.08);
  --shadow-lg:     0 20px 54px rgba(0,0,0,.14);
  --shadow-xl:     0 28px 70px rgba(0,0,0,.18);

  /* Radii */
  --r-sm:  8px;
  --r-md:  12px;
  --r-lg:  16px;
  --r-xl:  20px;
  --r-pill:999px;

  /* Motion */
  --ease:  cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(0,0,.2,1);

  /* Typography */
  --ff: Arial, Helvetica, sans-serif;
}

/* ----------------------------------------------------------------
   3. LAYOUT UTILITIES
---------------------------------------------------------------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Wider content wrappers used across pages */
.ar-wrap, .nl-wrap, .bl-wrap, .tm-wrap,
.fa-wrap, .imp-wrap, .opp-container {
  width: min(1180px, 92vw);
  margin-inline: auto;
}
.od-container { width: min(900px, 92vw); margin-inline: auto; }

.text-center { text-align: center; }

/* ----------------------------------------------------------------
   4. HEADER & NAVIGATION
---------------------------------------------------------------- */
.site-header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 900;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo img        { height: 50px; width: auto; }
.logo-text h1    { font-size: 22px; color: var(--orange); font-weight: 700; line-height: 1.2; }
.logo-text p     { font-size: 11px; color: var(--muted); margin-top: 2px; }

/* Mobile toggle */
.mobile-menu-toggle {
  display: none;
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 10px 14px;
  border-radius: var(--r-sm);
  font-size: 18px;
  cursor: pointer;
  transition: background .2s;
}
.mobile-menu-toggle:hover { background: var(--orange-lt); }

/* Nav */
.main-nav { flex: 1; display: flex; justify-content: flex-end; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-menu > li { position: relative; }

.nav-menu > li > a,
.nav-menu > li > button {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 16px;
  color: var(--mid);
  font-size: 14px;
  font-weight: 500;
  font-family: var(--ff);
  border-radius: var(--r-sm);
  background: none;
  border: none;
  cursor: pointer;
  transition: color .18s, background .18s;
  white-space: nowrap;
}
.nav-menu > li > a:hover,
.nav-menu > li > button:hover  { color: var(--orange); background: #ff98001a; }
.nav-menu > li > a.active,
.nav-menu > li > button.active { color: var(--orange); background: #ffedd5; font-weight: 600; }

/* Donate CTA pill */
.btn-donate {
  background: var(--orange) !important;
  color: #fff !important;
  padding: 9px 20px !important;
  border-radius: var(--r-sm) !important;
}
.btn-donate:hover { background: var(--orange-dk) !important; }

/* Dropdown chevron */
.dropdown-toggle::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 10px;
  margin-left: 4px;
  transition: transform .2s;
}
.dropdown.active .dropdown-toggle::after { transform: rotate(180deg); }

/* Standard dropdown */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  min-width: 210px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .25s, transform .25s, visibility .25s;
  z-index: 500;
}
.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  color: var(--mid);
  border-radius: var(--r-sm);
  font-size: 14px;
  transition: background .18s, color .18s, padding-left .18s;
}
.dropdown-menu a:hover { background: #f3f4f6; color: var(--orange); padding-left: 18px; }

/* Mega menu */
.mega-menu-item .mega-menu-dropdown {
  position: absolute;
  left: 50%;
  top: calc(100% + 10px);
  transform: translateX(-50%) translateY(-8px);
  width: min(1200px, calc(100vw - 40px));
  background: var(--white);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
  opacity: 0;
  visibility: hidden;
  transition: opacity .28s, transform .28s, visibility .28s;
  z-index: 500;
  overflow: hidden;
}
.mega-menu-item:hover .mega-menu-dropdown,
.mega-menu-item.active .mega-menu-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-menu-container { padding: 30px 26px; }

.mega-menu-title {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mid);
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.mega-menu-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  overflow: hidden;
  height: 100%;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
}
.mega-menu-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(0,0,0,.12);
  border-color: var(--orange);
}

.mega-card-image {
  width: 100%;
  height: 120px;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mega-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.mega-menu-card:hover .mega-card-image img { transform: scale(1.07); }

.mega-card-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #ff98001a, #ffedd5);
}
.mega-card-placeholder i { font-size: 42px; color: var(--orange); opacity: .7; }

.mega-card-content {
  padding: 16px 14px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.mega-card-title       { font-size: 15px; font-weight: 700; margin-bottom: 8px; color: var(--dark); line-height: 1.3; }
.mega-card-description { font-size: 12px; color: var(--muted); line-height: 1.6; flex: 1; margin-bottom: 12px; }
.mega-card-link {
  font-size: 12px;
  color: var(--orange);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}
.mega-card-link::after {
  content: '\f061';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 10px;
  transition: transform .2s;
}
.mega-menu-card:hover .mega-card-link::after { transform: translateX(4px); }

/* Mobile overlay */
.mobile-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 800; }
.mobile-overlay.active { display: block; }
.mobile-menu-close { display: none !important; }

/* ----------------------------------------------------------------
   5. BUTTONS
---------------------------------------------------------------- */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--r-sm);
  font-weight: 600;
  font-size: 15px;
  transition: all .22s;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  line-height: 1.4;
}
.btn-primary         { background: var(--orange); color: #fff; }
.btn-primary:hover   { background: var(--orange-dk); }
.btn-outline         { background: #ff9800; color: #fff; border-color: #fff; }
.btn-outline:hover   { background: #fff; color: var(--orange); }
.btn-sm              { padding: 8px 18px; font-size: 13px; }
.btn-lg              { padding: 15px 38px; font-size: 17px; }
.btn-block           { width: 100%; display: inline-flex; justify-content: center; }

/* Home-page witu buttons */
.witu-btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: var(--r-sm);
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  transition: background .2s, color .2s, border-color .2s;
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
}
.witu-btn-primary         { background: var(--orange);   color: #fff; }
.witu-btn-primary:hover   { background: var(--orange-dk); }
.witu-btn-outline         { border-color: #fff; color: #fff; background: transparent; }
.witu-btn-outline:hover   { background: rgba(255,255,255,.15); }
.witu-btn-white           { background: #fff; color: var(--orange-dk); }
.witu-btn-white:hover     { background: #fff7ed; }
.witu-btn-outline-white   { border-color: rgba(255,255,255,.65); color: #fff; background: transparent; }
.witu-btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,.12); }
.witu-btn-sm              { padding: 8px 16px; font-size: 13px; }

/* ----------------------------------------------------------------
   6. SECTIONS — GENERIC
---------------------------------------------------------------- */
.section,
.ar-section, .nl-section, .bl-section,
.tm-content, .fa-content,
.imp-intro, .imp-stats,
.opp-section {
  padding: 80px 0;
}
.ar-section, .nl-section { padding: 76px 0 100px; }
.bl-section              { padding: 72px 0 100px; }
.tm-content              { padding: 80px 0 100px; }
.fa-content              { padding: 72px 0 40px; }
.od-body                 { padding: 72px 0 96px; }
.opp-section             { padding: 70px 0; }

.section.bg-light,
.opp-section.bg-light    { background: var(--light); }
.imp-intro               { background: var(--cream); padding: 80px 0 72px; }
.imp-stats               { background: var(--white); }
.opp-framework           { background: var(--cream); padding: 100px 0 116px; position: relative; overflow: hidden; }

/* Section title */
.section-header          { text-align: center; margin-bottom: 50px; }
.section-header h2       { font-size: 36px; color: var(--dark); margin-bottom: 10px; font-weight: 900; }
.section-header p        { font-size: 17px; color: var(--muted); }

/* Witu home section title */
.witu-section            { padding: 86px 0; }
.witu-bg-light           { background: var(--light); }
.witu-bg-cream           { background: var(--orange-pale); }

.witu-section-title      { text-align: center; margin-bottom: 48px; }
.witu-section-title h2   { font-size: 36px; margin-bottom: 10px; color: var(--dark); font-weight: 900; line-height: 1.15; }
.witu-section-title p    { color: var(--muted); max-width: 720px; margin: 0 auto; font-size: 16px; line-height: 1.7; }

.witu-link-arrow         { font-size: 13px; font-weight: 600; color: var(--orange); display: inline-flex; align-items: center; gap: 5px; margin-top: 10px; }
.witu-link-arrow:hover   { color: var(--orange-dk); gap: 9px; }

/* Section kickers (eyebrow labels) */
.imp-section-kicker,
.opp-section-kicker,
.fa-programs-kicker,
.tm-section-kicker,
.od-section-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.imp-section-kicker::before,
.opp-section-kicker::before,
.fa-programs-kicker::before,
.tm-section-kicker::before,
.od-section-label::before {
  content: '';
  display: block;
  width: 26px;
  height: 2px;
  background: var(--orange);
}

.bl-section-head,
.tm-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.tm-section-head         { text-align: center; display: block; }
.bl-section-head h2      { font-size: 1.45rem; font-weight: 900; color: var(--dark); }
.tm-section-head h2      { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 900; color: var(--dark); margin-bottom: 8px; }
.tm-section-head p       { font-size: .94rem; color: var(--muted); max-width: 520px; margin: 0 auto; line-height: 1.65; }
.bl-count                { font-size: .84rem; color: var(--muted); }

/* ----------------------------------------------------------------
   7. HERO SECTIONS
---------------------------------------------------------------- */

/* -- Cinematic hero base (used across inner pages) -- */
.ar-hero, .nl-hero, .bl-hero,
.tm-hero, .fa-hero, .imp-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: center;
  background: var(--charcoal);
  overflow: hidden;
}
.tm-hero, .fa-hero { min-height: 56vh; }

.ar-hero-bg, .nl-hero-bg, .bl-hero-bg,
.tm-hero-bg, .imp-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(.32) saturate(.5);
  transform: scale(1.04);
  animation: heroZoom 10s var(--ease) forwards;
}
.fa-hero.has-img .fa-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(.32) saturate(.5);
  transform: scale(1.04);
  animation: heroZoom 10s var(--ease) forwards;
}

/* Diagonal slash accent */
.ar-hero-slash, .nl-hero-slash, .bl-hero-slash,
.tm-hero-slash, .fa-hero-slash, .imp-hero-slash {
  position: absolute;
  right: -60px; top: 0; bottom: 0;
  width: 36vw;
  background: var(--orange);
  opacity: .07;
  clip-path: polygon(28% 0, 100% 0, 100% 100%, 0% 100%);
  pointer-events: none;
}

/* Grain overlay */
.ar-hero-grain, .nl-hero-grain, .bl-hero-grain,
.tm-hero-grain, .fa-hero-grain, .imp-hero-grain {
  position: absolute;
  inset: 0;
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* Hero inner content */
.ar-hero-inner, .nl-hero-inner,
.bl-hero-inner, .imp-hero-inner {
  position: relative;
  z-index: 2;
  padding: 88px 0 78px;
}
.tm-hero-inner, .fa-hero-inner {
  position: relative;
  z-index: 2;
  padding: 90px 0 80px;
  text-align: center;
}

/* Eyebrow kickers */
.ar-eyebrow, .nl-eyebrow, .bl-eyebrow,
.tm-eyebrow, .fa-eyebrow, .imp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
  opacity: 0;
  animation: fadeUp .65s var(--ease) .1s forwards;
}
.ar-eyebrow::before, .nl-eyebrow::before, .bl-eyebrow::before,
.tm-eyebrow::before, .fa-eyebrow::before, .imp-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--orange);
}

/* Focus area hero icon */
.fa-hero-icon {
  width: 76px; height: 76px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(248,101,5,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--orange);
  opacity: 0;
  animation: fadeUp .65s var(--ease) .1s forwards;
}

/* Hero titles */
.ar-hero h1, .nl-hero h1, .bl-hero h1,
.tm-hero h1, .fa-hero h1, .imp-hero h1 {
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  opacity: 0;
  animation: fadeUp .8s var(--ease) .22s forwards;
}
.tm-hero h1, .fa-hero h1 { max-width: 720px; margin: 0 auto 18px; }

/* Hero subtitles */
.ar-hero-sub, .nl-hero-sub, .bl-hero-sub,
.tm-hero-sub, .fa-hero-sub, .imp-hero-sub {
  margin-top: 18px;
  font-size: 1.05rem;
  color: rgba(255,255,255,.7);
  max-width: 520px;
  line-height: 1.72;
  opacity: 0;
  animation: fadeUp .8s var(--ease) .36s forwards;
}
.tm-hero-sub, .fa-hero-sub { max-width: 540px; margin: 0 auto; }

/* -- Opportunities hero (tall, unique) -- */
.opp-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: var(--charcoal);
  overflow: hidden;
}
.opp-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(.35) saturate(.55);
  transform: scale(1.05);
  animation: heroZoom 10s var(--ease) forwards;
}
.opp-hero-slash {
  position: absolute;
  right: -60px; top: 0; bottom: 0;
  width: 38vw;
  background: var(--orange);
  opacity: .06;
  clip-path: polygon(28% 0, 100% 0, 100% 100%, 0% 100%);
  pointer-events: none;
}
.opp-grain {
  position: absolute;
  inset: 0;
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.opp-hero-inner { position: relative; z-index: 2; padding: 120px 0 110px; }
.opp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp .7s var(--ease) .1s forwards;
}
.opp-eyebrow::before { content: ''; display: block; width: 30px; height: 2px; background: var(--orange); }
.opp-hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.8rem);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  max-width: 840px;
  opacity: 0;
  animation: fadeUp .9s var(--ease) .25s forwards;
}
.opp-hero h1 em { font-style: normal; color: var(--orange); }
.opp-hero-intro {
  margin-top: 28px;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.72;
  color: rgba(255,255,255,.7);
  max-width: 560px;
  opacity: 0;
  animation: fadeUp .9s var(--ease) .42s forwards;
}
.opp-hero-cta {
  margin-top: 46px;
  opacity: 0;
  animation: fadeUp .9s var(--ease) .58s forwards;
}
.opp-hero-cta a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: #fff;
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .05em;
  padding: 16px 36px;
  border-radius: 4px;
  transition: background .22s, transform .22s;
}
.opp-hero-cta a:hover { background: var(--orange-lt); transform: translateY(-2px); }

.opp-scroll-hint {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.3);
  font-size: 9.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  z-index: 3;
  animation: floatY 2.8s ease-in-out infinite;
}
.opp-scroll-hint i {
  display: block;
  width: 1px;
  height: 46px;
  background: linear-gradient(to bottom, rgba(255,255,255,.3), transparent);
}

/* -- Opportunity detail hero -- */
.od-hero {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
  padding: 72px 0 64px;
}
.od-hero::after {
  content: '';
  position: absolute;
  right: -40px; top: 0; bottom: 0;
  width: 34vw;
  background: var(--orange);
  opacity: .06;
  clip-path: polygon(28% 0, 100% 0, 100% 100%, 0% 100%);
  pointer-events: none;
}
.od-hero-inner { position: relative; z-index: 2; }
.od-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp .65s var(--ease) .05s forwards;
}
.od-hero-kicker::before { content: ''; display: block; width: 26px; height: 2px; background: var(--orange); }
.od-hero h1 {
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.12;
  max-width: 700px;
  opacity: 0;
  animation: fadeUp .75s var(--ease) .18s forwards;
}

/* -- Home hero slider -- */
.hero-wrap   { position: relative; overflow: hidden; background: #f86505; color: #fff; }
.hero-slider { position: relative; height: 560px; }
.hero-slide  {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .6s ease;
  background-size: cover;
  background-position: center;
}
.hero-slide.active { opacity: 1; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.68), rgba(0,0,0,.25)); }
.hero-inner  { position: relative; z-index: 2; height: 560px; display: flex; align-items: center; }
.hero-text   { max-width: 820px; }
.hero-text h1 { font-size: 48px; line-height: 1.12; margin: 0 0 12px; font-weight: 900; letter-spacing: -.02em; }
.hero-text p  { font-size: 18px; opacity: .95; margin: 0 0 18px; line-height: 1.6; }
.hero-buttons .btn { margin-right: 10px; }
.hero-mini-card {
  margin-top: 18px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--r-lg);
  padding: 14px 16px;
  max-width: 600px;
}
.hero-mini-card h3 { margin: 0 0 6px; font-size: 22px; }
.hero-mini-card p  { margin: 0 0 10px; opacity: .92; }

.slider-dots { position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 3; }
.slider-dot  { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.45); border: 1px solid rgba(255,255,255,.5); cursor: pointer; transition: background .2s; }
.slider-dot.active { background: #fff; }

/* -- Witu home hero (new full-bleed version) -- */

/*
 * FULL-BLEED BREAKOUT
 * If header.php wraps page content in a .container or any max-width div,
 * this ensures the hero escapes it and spans 100vw.
 */
.witu-hero {
  position: relative;
  display: block;
  /* Break out of any parent container */
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  left: 0;
  right: 0;
}

.witu-hero-slider {
  position: relative;
  width: 100%;
  min-height: 600px;
  overflow: hidden;
  background: #f86505;
}

/* Slides stack via absolute, active one is the sizing reference */
.witu-hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transition: opacity .7s ease;
  pointer-events: none;
}
.witu-hero-slide.active {
  opacity: 1;
  position: relative;        /* first active slide sets the height */
  min-height: 600px;
  pointer-events: auto;
}

.witu-hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

/* Inner uses .container to re-constrain the text */
.witu-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 20px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.witu-hero-text              { flex: 1; color: #fff; max-width: 780px; }
.witu-hero-text h1           { font-size: clamp(32px, 5vw, 68px); line-height: 1.05; margin-bottom: 18px; font-weight: 900; letter-spacing: -.02em; }
.witu-hero-text p            { font-size: clamp(15px, 1.8vw, 19px); color: rgba(255,255,255,.9); margin-bottom: 30px; line-height: 1.65; max-width: 680px; }
.witu-hero-btns              { display: flex; flex-wrap: wrap; gap: 14px; }

.witu-hero-mini-card {
  flex-shrink: 0;
  width: 260px;
  background: rgba(255,255,255,.13);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--r-lg);
  padding: 22px;
  color: #fff;
  align-self: center;
}
.witu-hero-mini-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; line-height: 1.3; }
.witu-hero-mini-card p  { font-size: 13px; color: rgba(255,255,255,.82); margin-bottom: 14px; line-height: 1.55; }

/* Slider dots — anchored to slider, not slide */
.witu-slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.witu-slider-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .25s, transform .25s;
}
.witu-slider-dot.active,
.witu-slider-dot:hover { background: #fff; transform: scale(1.3); }

/* ----------------------------------------------------------------
   8. BREADCRUMBS
---------------------------------------------------------------- */
.fa-breadcrumb, .od-breadcrumb {
  background: var(--cream);
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
}
.fa-breadcrumb-inner, .od-breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
}
.od-breadcrumb-inner        { color: var(--muted); }
.fa-breadcrumb a, .od-breadcrumb a { color: var(--muted); transition: color .18s; }
.fa-breadcrumb a:hover, .od-breadcrumb a:hover { color: var(--orange); }
.fa-breadcrumb span         { color: var(--mid); font-weight: 600; }
.fa-breadcrumb i            { color: var(--muted); font-size: 10px; }
.od-breadcrumb-sep          { font-size: .7rem; color: #ccc; }
.od-breadcrumb-current      { color: var(--dark); font-weight: 700; }

/* ----------------------------------------------------------------
   9. FILTER BAR (blog, resources)
---------------------------------------------------------------- */
.bl-filters {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 40;
}
.bl-filters-inner { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.bl-search        { flex: 1; min-width: 190px; position: relative; }
.bl-search input {
  width: 100%;
  padding: 10px 14px 10px 36px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: var(--ff);
  font-size: .9rem;
  background: #fff;
  outline: none;
  transition: border-color .2s;
}
.bl-search input:focus { border-color: var(--orange); }
.bl-search-icon {
  position: absolute;
  left: 12px; top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 12px;
  pointer-events: none;
}
.bl-search-btn {
  padding: 10px 18px;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-family: var(--ff);
  font-size: .88rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
  flex-shrink: 0;
}
.bl-search-btn:hover { background: var(--orange-lt); }

.bl-chips  { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.bl-chip {
  display: inline-block;
  padding: 5px 14px;
  border-radius: var(--r-pill);
  font-size: .78rem;
  font-weight: 700;
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--mid);
  transition: border-color .2s, color .2s, background .2s;
}
.bl-chip:hover,
.bl-chip.active { border-color: var(--orange); color: var(--orange); background: rgba(248,101,5,.06); }
.bl-chip.clear  { border-color: #ef4444; color: #ef4444; }
.bl-chip.clear:hover { background: rgba(239,68,68,.06); }

/* ----------------------------------------------------------------
   10. GRIDS & CARDS
---------------------------------------------------------------- */

/* Grid layouts */
.ar-grid, .nl-grid       { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.bl-grid                 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.tm-grid                 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 26px; }
.fa-grid                 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 26px; }
.imp-grid                { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.opp-grid                { display: grid; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); gap: 22px; }

/* Home grids */
.focus-grid              { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.t-grid                  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.witu-focus-grid         { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.witu-program-grid       { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.witu-agency-grid        { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 28px; }
.witu-journey-grid       { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.witu-story-grid         { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.witu-partner-grid       { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; align-items: center; }
.witu-impact-grid        { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

/* -- Base animated card -- */
.ar-card, .nl-card, .bl-card,
.tm-card, .fa-card, .imp-card {
  background: var(--white);
  border: 1px solid var(--border-lt);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  opacity: 0;
  transform: translateY(20px);
}
.ar-card, .nl-card { box-shadow: 0 4px 16px rgba(0,0,0,.06); }
.bl-card, .tm-card,
.fa-card           { box-shadow: 0 4px 16px rgba(0,0,0,.05); }
.imp-card          { padding: 30px 20px 26px; text-align: center; box-shadow: 0 4px 18px rgba(0,0,0,.05); transform: translateY(22px); }

.ar-card.in-view, .nl-card.in-view, .bl-card.in-view,
.tm-card.in-view,  .fa-card.in-view, .imp-card.in-view {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .55s var(--ease), transform .55s var(--ease), box-shadow .25s var(--ease);
}

.ar-card:hover       { transform: translateY(-6px); box-shadow: 0 18px 44px rgba(0,0,0,.13); }
.nl-card:hover       { transform: translateY(-6px); box-shadow: 0 18px 44px rgba(0,0,0,.12); }
.bl-card:hover       { transform: translateY(-6px); box-shadow: 0 18px 44px rgba(0,0,0,.11); }
.tm-card:hover,
.fa-card:hover       { transform: translateY(-5px); box-shadow: 0 18px 44px rgba(0,0,0,.10); }
.imp-card:hover      { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(0,0,0,.10); }

/* Orange top-rule sweep */
.ar-card::before, .nl-card::before, .bl-card::before,
.tm-card::before,  .fa-card::before, .imp-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ease);
  z-index: 1;
}
.ar-card.in-view::before, .ar-card:hover::before,
.nl-card.in-view::before, .nl-card:hover::before,
.bl-card.in-view::before, .bl-card:hover::before,
.tm-card.in-view::before, .tm-card:hover::before,
.fa-card.in-view::before, .fa-card:hover::before,
.imp-card.in-view::before,.imp-card:hover::before { transform: scaleX(1); }

/* -- Card covers -- */
.ar-cover, .nl-cover {
  height: 260px;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--charcoal), var(--mid));
  position: relative;
}
.nl-cover { background: var(--charcoal); }
.ar-cover img, .nl-cover img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .4s var(--ease);
}
.ar-card:hover .ar-cover img,
.nl-card:hover .nl-cover img { transform: scale(1.06); }

.ar-cover-placeholder, .nl-cover-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--charcoal), #2d2d2d);
}
.ar-cover-placeholder i { font-size: 52px; color: var(--orange); opacity: .8; }
.nl-cover-placeholder i { font-size: 48px; color: var(--orange); opacity: .8; }
.ar-cover-placeholder span { font-size: 2.2rem; font-weight: 900; color: #fff; opacity: .9; }
.nl-cover-placeholder span { font-size: 1rem; font-weight: 700; color: rgba(255,255,255,.75); text-align: center; padding: 0 16px; }

/* Blog thumbnail */
.bl-thumb {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--charcoal);
  flex-shrink: 0;
  display: block;
}
.bl-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s var(--ease); }
.bl-card:hover .bl-thumb img { transform: scale(1.05); }
.bl-thumb-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--charcoal), #2d2d2d);
}
.bl-thumb-placeholder i { font-size: 44px; color: var(--orange); opacity: .7; }
.bl-cat-pill {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(0,0,0,.65);
  color: #fff;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}

/* Focus area card thumb */
.fa-card-thumb { height: 200px; overflow: hidden; flex-shrink: 0; }
.fa-card-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s var(--ease); }
.fa-card:hover .fa-card-thumb img { transform: scale(1.05); }
.fa-card-thumb-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--charcoal), #2d2d2d);
}
.fa-card-thumb-placeholder i { font-size: 48px; color: var(--orange); opacity: .8; }

/* Team photo */
.tm-photo-wrap { height: 260px; overflow: hidden; flex-shrink: 0; background: #f3f4f6; }
.tm-photo { width: 100%; height: 100%; object-fit: cover; display: block; filter: grayscale(.1); transition: filter .4s var(--ease), transform .4s var(--ease); }
.tm-card:hover .tm-photo { filter: grayscale(0); transform: scale(1.04); }
.tm-photo-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #e5e7eb, #f3f4f6); }
.tm-photo-placeholder i { font-size: 44px; color: #9ca3af; }

/* Card bodies */
.ar-card-body, .nl-card-body { padding: 22px 20px 20px; flex: 1; display: flex; flex-direction: column; }
.bl-card-body, .fa-card-body  { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.tm-card-body                 { padding: 22px 20px 20px; text-align: center; flex: 1; display: flex; flex-direction: column; }

/* Badges */
.ar-year-badge, .nl-date-badge {
  display: inline-block;
  background: rgba(248,101,5,.1);
  color: var(--orange);
  padding: 3px 12px;
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  margin-bottom: 10px;
}

/* Card titles */
.ar-card-title, .nl-card-title { font-size: 1rem; font-weight: 900; color: var(--dark); line-height: 1.3; margin-bottom: 8px; }
.bl-card-title { font-size: 1.05rem; font-weight: 900; line-height: 1.3; margin-bottom: 10px; }
.bl-card-title a { color: var(--dark); transition: color .18s; }
.bl-card-title a:hover { color: var(--orange); }
.tm-card-name     { font-size: 1.05rem; font-weight: 900; color: var(--dark); line-height: 1.25; margin-bottom: 6px; }
.tm-card-position { font-size: .88rem; font-weight: 700; color: var(--orange); margin-bottom: 16px; line-height: 1.4; }
.fa-card-title    { font-size: 1.05rem; font-weight: 900; color: var(--dark); line-height: 1.3; margin-bottom: 10px; display: flex; align-items: center; gap: 9px; }
.fa-card-title i  { color: var(--orange); font-size: .95rem; }

/* Card descriptions */
.ar-card-desc, .nl-card-desc,
.bl-card-excerpt, .fa-card-desc {
  font-size: .84rem;
  line-height: 1.62;
  color: var(--mid);
  flex: 1;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.bl-card-excerpt { font-size: .88rem; line-height: 1.68; margin-bottom: 18px; }
.fa-card-desc    { font-size: .88rem; line-height: 1.68; margin-bottom: 18px; }

.bl-card-date { font-size: .78rem; color: var(--muted); display: flex; align-items: center; gap: 6px; margin-bottom: 10px; }
.bl-card-date i { color: var(--orange); font-size: 11px; }

/* Meta rows */
.ar-meta, .nl-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
  font-size: .78rem;
  color: var(--muted);
}
.ar-meta span, .nl-meta span { display: flex; align-items: center; gap: 5px; }
.ar-meta i, .nl-meta i       { font-size: 11px; }

/* Card actions */
.ar-actions, .nl-actions { display: flex; gap: 10px; }
.ar-btn, .nl-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 11px 10px;
  border-radius: 6px;
  font-family: var(--ff);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: background .2s, transform .18s;
}
.ar-btn:hover, .nl-btn:hover { transform: translateY(-1px); }
.ar-btn-view, .nl-btn-view   { background: var(--orange); color: #fff; }
.ar-btn-view:hover, .nl-btn-view:hover { background: var(--orange-lt); }
.ar-btn-dl, .nl-btn-dl       { background: var(--dark); color: #fff; }
.ar-btn-dl:hover, .nl-btn-dl:hover { background: var(--mid); }

.bl-read-more, .fa-card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--orange);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: gap .2s;
}
.bl-read-more:hover, .fa-card-link:hover { gap: 11px; }

/* Team social */
.tm-social { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: auto; padding-top: 8px; }
.tm-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(248,101,5,.08);
  color: var(--orange);
  font-size: 16px;
  transition: background .2s, transform .2s;
}
.tm-social a:hover { background: var(--orange); color: #fff; transform: scale(1.1); }

/* Impact stat cards */
.imp-card-value { font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 900; line-height: 1; margin-bottom: 10px; color: var(--dark); }
.imp-card-label { font-size: .88rem; line-height: 1.6; color: var(--mid); }

/* Opportunity cards */
.opp-card {
  background: var(--white);
  border-radius: 6px;
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .65s var(--ease), transform .65s var(--ease), box-shadow .28s var(--ease);
}
.opp-card.in-view { opacity: 1; transform: translateY(0); }
.opp-card:hover   { box-shadow: 0 22px 54px rgba(0,0,0,.09); transform: translateY(-5px); }
.opp-card.in-view:hover { transform: translateY(-5px); }

.opp-card-line {
  height: 3px;
  background: var(--orange);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform .5s var(--ease);
  flex-shrink: 0;
}
.opp-card.in-view .opp-card-line,
.opp-card:hover .opp-card-line { transform: scaleX(1); }

.opp-card-img   { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; filter: grayscale(.15); transition: filter .4s; }
.opp-card:hover .opp-card-img { filter: grayscale(0); }

.opp-card-body  { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.opp-card-num   { font-size: 10.5px; font-weight: 700; letter-spacing: .2em; color: var(--orange); text-transform: uppercase; margin-bottom: 10px; }
.opp-card-body h3 { font-size: 1.3rem; font-weight: 700; color: var(--dark); line-height: 1.25; margin-bottom: 12px; }
.opp-card-body .subtext { font-size: .94rem; font-weight: 300; line-height: 1.76; color: var(--mid); }
.opp-card-body .subtext + .subtext { margin-top: 10px; }

.opp-card-footer { padding: 0 28px 26px; flex-shrink: 0; }
.opp-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--orange);
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 4px;
  transition: background .2s, transform .2s;
}
.opp-learn-more:hover { background: var(--orange-lt); transform: translateY(-2px); }

/* Empty states */
.ar-empty, .nl-empty,
.bl-empty, .tm-empty { text-align: center; padding: 80px 20px; color: var(--muted); }
.imp-empty { text-align: center; padding: 48px 20px; color: var(--muted); border: 1px dashed var(--border); border-radius: var(--r-md); grid-column: 1 / -1; }
.ar-empty i, .nl-empty i,
.bl-empty i, .tm-empty i { font-size: 54px; color: #d1d5db; display: block; margin-bottom: 20px; }
.imp-empty i { font-size: 34px; color: #d1d5db; display: block; margin-bottom: 12px; }
.ar-empty h3, .nl-empty h3,
.bl-empty h3, .tm-empty h3 { font-size: 1.4rem; font-weight: 900; color: var(--dark); margin-bottom: 10px; }
.bl-empty a { color: var(--orange); font-weight: 700; }
.bl-empty a:hover { text-decoration: underline; }

/* ----------------------------------------------------------------
   11. HOME PAGE — IMPACT STRIP
---------------------------------------------------------------- */
.witu-impact       { padding: 52px 0; }
.witu-impact-card  {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 18px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(15,23,42,.06);
}
.witu-impact-card strong {
  display: block;
  font-size: 32px;
  font-weight: 900;
  color: var(--orange);
  margin-bottom: 8px;
  line-height: 1;
}

/* ----------------------------------------------------------------
   12. HOME PAGE — FOCUS AREAS
---------------------------------------------------------------- */
.witu-focus-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: 0 10px 26px rgba(15,23,42,.06);
  display: flex;
  flex-direction: column;
  transition: box-shadow .22s, transform .22s;
}
.witu-focus-card:hover { box-shadow: 0 18px 40px rgba(15,23,42,.12); transform: translateY(-3px); }

.witu-focus-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--orange-pale);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  color: var(--orange);
  font-size: 22px;
}
.witu-focus-img              { border-radius: 10px; overflow: hidden; margin-bottom: 16px; height: 160px; }
.witu-focus-img img          { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.witu-focus-card:hover .witu-focus-img img { transform: scale(1.05); }
.witu-focus-card h3          { font-size: 18px; margin-bottom: 8px; color: var(--dark); font-weight: 700; }
.witu-focus-card p           { font-size: 14px; color: var(--muted); line-height: 1.6; flex: 1; }

/* Focus areas (legacy home) */
.focus-card        { background: var(--white); border-radius: var(--r-lg); padding: 18px; box-shadow: var(--shadow-md); border: 1px solid #eef2f7; }
.focus-icon        { width: 46px; height: 46px; border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; background: #f2f5ff; margin-bottom: 10px; }
.focus-card h3     { margin: 6px 0; font-size: 18px; font-weight: 900; }
.focus-card p      { margin: 0 0 12px; color: var(--mid); line-height: 1.6; }
.focus-image       { width: 100%; height: 220px; overflow: hidden; border-radius: var(--r-lg); margin-bottom: 15px; }
.focus-image img   { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; }
.focus-card:hover .focus-image img { transform: scale(1.05); }

/* ----------------------------------------------------------------
   13. HOME PAGE — PROGRAMS
---------------------------------------------------------------- */
.witu-program-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(15,23,42,.08);
}
.witu-program-img  { height: 250px; background-size: cover; background-position: center; }
.witu-program-body { padding: 32px; }
.witu-program-body h3  { font-size: 26px; margin-bottom: 12px; color: var(--dark); font-weight: 700; }
.witu-program-body p   { font-size: 15px; color: var(--muted); line-height: 1.7; }
.witu-program-list     { margin: 18px 0 24px 20px; color: var(--muted); font-size: 14px; }
.witu-program-list li  { margin-bottom: 6px; }

/* Legacy programs grid */
.programs-grid     { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-bottom: 40px; }
.program-card      { background: var(--white); border-radius: var(--r-sm); overflow: hidden; box-shadow: 0 4px 6px rgba(0,0,0,.10); transition: transform .3s, box-shadow .3s; }
.program-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,.15); }
.program-card img  { width: 100%; height: 200px; object-fit: cover; }
.program-content   { padding: 25px; }
.program-content h3 { font-size: 22px; margin-bottom: 10px; color: var(--dark); }
.program-content p  { color: var(--muted); margin-bottom: 15px; }

/* ----------------------------------------------------------------
   14. HOME PAGE — AGENCY / PATHWAYS
---------------------------------------------------------------- */
.witu-agency-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: 0 10px 28px rgba(15,23,42,.06);
}
.witu-agency-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--orange-pale);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  color: var(--orange);
  font-size: 20px;
}
.witu-agency-card h3 { font-size: 22px; color: var(--orange-dk); margin-bottom: 10px; font-weight: 700; }
.witu-agency-card p  { font-size: 14px; color: var(--muted); line-height: 1.65; }

.witu-opportunity-callout {
  background: var(--white);
  border-left: 6px solid var(--orange);
  border-radius: var(--r-xl);
  padding: 32px 36px;
  box-shadow: 0 14px 34px rgba(15,23,42,.08);
}
.witu-opportunity-callout h3 { font-size: 24px; color: var(--orange-dk); margin-bottom: 12px; font-weight: 700; }
.witu-opportunity-callout p  { font-size: 15px; color: var(--muted); line-height: 1.75; max-width: 960px; }

/* ----------------------------------------------------------------
   15. HOME PAGE — PARTICIPANT JOURNEY
---------------------------------------------------------------- */
.witu-journey      { background: var(--white); }
.witu-journey-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 30px;
  box-shadow: 0 10px 28px rgba(15,23,42,.06);
}
.witu-step {
  width: 48px; height: 48px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 18px;
}
.witu-journey-card h3  { font-size: 18px; margin-bottom: 10px; color: var(--dark); font-weight: 700; }
.witu-journey-card p   { font-size: 14px; color: var(--muted); line-height: 1.65; }
.witu-journey-stat     { display: inline-block; margin-top: 12px; font-weight: 700; font-size: 22px; color: var(--orange); }

.witu-support-box {
  max-width: 820px;
  margin: 40px auto 0;
  background: var(--white);
  border-left: 6px solid var(--orange);
  border-radius: var(--r-xl);
  padding: 30px 34px;
  box-shadow: 0 10px 28px rgba(15,23,42,.08);
}
.witu-support-box h3 { font-size: 20px; color: var(--orange-dk); margin-bottom: 10px; font-weight: 700; }
.witu-support-box p  { font-size: 14px; color: var(--muted); line-height: 1.75; }

/* Legacy journey viz */
.journey-viz-section          { padding-bottom: 90px; }
.journey-viz-header           { text-align: center; margin-bottom: 26px; }
.journey-viz-header h2        { font-size: 40px; margin: 0 0 10px; font-weight: 900; }
.journey-viz-sub              { max-width: 880px; margin: 0 auto; color: var(--mid); line-height: 1.6; }
.journey-viz-topline          { position: relative; height: 22px; max-width: 980px; margin: 26px auto 14px; }
.journey-viz-topline .j-line  { position: absolute; left: 70px; right: 70px; top: 50%; height: 2px; transform: translateY(-50%); background: linear-gradient(90deg,#7cc7c9,#2e6f8a 48%,#b6d1a6); }
.journey-viz-topline .j-dot   { position: absolute; top: 50%; transform: translateY(-50%); width: 8px; height: 8px; border-radius: 999px; background: #94a3b8; }
.journey-viz-topline .j-dot.left  { left: 70px;  background: #6fbfc1; }
.journey-viz-topline .j-dot.mid   { left: 50%; transform: translate(-50%,-50%); background: #2e6f8a; }
.journey-viz-topline .j-dot.right { right: 70px; background: #b6d1a6; }
.journey-viz-grid             { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; align-items: start; max-width: 1100px; margin: 0 auto; }
.journey-step-card            { position: relative; text-align: left; padding-top: 26px; }
.journey-step-number          { width: 64px; height: 64px; border-radius: 999px; display: flex; align-items: center; justify-content: center; font-size: 24px; font-weight: 900; color: #fff; margin: 0 auto 12px; box-shadow: var(--shadow-md); }
.journey-step-card.theme-1 .journey-step-number { background: #66c2c4; }
.journey-step-card.theme-2 .journey-step-number { background: #2e6f8a; }
.journey-step-card.theme-3 .journey-step-number { background: #b6d1a6; color: #163f2a; }
.journey-step-title-pill      { margin: 0 auto 12px; width: fit-content; padding: 14px 26px; font-weight: 900; font-size: 18px; background: var(--white); border: 2px solid var(--border); clip-path: polygon(6% 0, 94% 0, 100% 50%, 94% 100%, 6% 100%, 0 50%); }
.journey-step-card.theme-1 .journey-step-title-pill { border-color: rgba(102,194,196,.55); color: #0b5e60; }
.journey-step-card.theme-2 .journey-step-title-pill { border-color: rgba(46,111,138,.55); color: #0b2c3a; }
.journey-step-card.theme-3 .journey-step-title-pill { border-color: rgba(182,209,166,.7); color: #1f3a2b; }
.journey-step-body            { color: var(--body-text); line-height: 1.6; font-size: 14.8px; max-width: 320px; margin: 0 auto; }
.journey-step-stat            { margin-top: 10px; padding-top: 8px; border-top: 1px dashed #cbd5e1; font-weight: 700; color: var(--dark); }
.journey-step-down            { position: absolute; left: 50%; bottom: -20px; width: 2px; height: 36px; transform: translateX(-50%); background: rgba(148,163,184,.8); }
.journey-step-down.dashed     { background: transparent; border-left: 2px dashed rgba(148,163,184,.9); }
.journey-viz-bottom           { position: relative; max-width: 1100px; margin: 42px auto 0; padding-top: 40px; }
.journey-loop                 { position: absolute; left: 0; right: 0; top: 0; height: 210px; width: 100%; pointer-events: none; opacity: .95; }
.journey-loop .loop-outer     { fill: none; stroke: rgba(111,191,193,.22); stroke-width: 20; stroke-linecap: round; }
.journey-loop .loop-dashed    { fill: none; stroke: rgba(46,111,138,.55); stroke-width: 2; stroke-dasharray: 7 8; stroke-linecap: round; }
.journey-loop .loop-arrow     { fill: none; stroke: rgba(46,111,138,.55); stroke-width: 2; stroke-linecap: round; }
.journey-support-card         { position: relative; z-index: 2; display: grid; grid-template-columns: 56px 1fr; gap: 14px; align-items: start; background: var(--white); border: 1px solid var(--border); box-shadow: 0 12px 30px rgba(0,0,0,.06); border-radius: var(--r-lg); padding: 18px; max-width: 760px; margin: 0 auto; }
.journey-support-icon         { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; background: rgba(102,194,196,.15); color: #0b5e60; font-size: 22px; }
.journey-support-content h3   { margin: 0 0 6px; font-size: 18px; font-weight: 900; color: #0b2c3a; }
.journey-support-text         { color: var(--body-text); line-height: 1.6; font-size: 14.6px; }

/* ----------------------------------------------------------------
   16. HOME PAGE — TESTIMONIALS & PARTNERS
---------------------------------------------------------------- */
.witu-t-wrap     { position: relative; }
.witu-t-carousel { overflow: hidden; }
.witu-t-track    { display: flex; transition: transform .45s cubic-bezier(.4,0,.2,1); }
.witu-t-slide    { min-width: calc(100% / 3); padding: 0 10px; }
.witu-t-card     { background: #ff98001a; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 24px; height: 100%; box-shadow: 0 8px 22px rgba(15,23,42,.06); display: flex; flex-direction: column; }
.witu-t-top      { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.witu-t-photo    { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.witu-t-photo-placeholder { background: var(--border); flex-shrink: 0; }
.witu-t-meta strong { display: block; font-size: 14px; color: var(--dark); }
.witu-t-meta small  { font-size: 12px; color: var(--muted); }
.witu-t-quote    { font-size: 14px; color: var(--body-text); font-style: italic; line-height: 1.7; flex: 1; }
.witu-t-more     { font-size: 12px; font-weight: 600; color: var(--orange); margin-top: 10px; display: inline-block; }
.witu-t-more:hover { color: var(--orange-dk); }

.witu-t-dots     { display: flex; justify-content: center; gap: 8px; margin-top: 28px; }
.witu-t-dot      { width: 9px; height: 9px; border-radius: 50%; background: var(--border); border: none; cursor: pointer; padding: 0; transition: background .2s, transform .2s; }
.witu-t-dot.active,
.witu-t-dot:hover { background: var(--orange); transform: scale(1.3); }

/* Story placeholder grid */
.witu-story-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 28px; box-shadow: 0 10px 28px rgba(15,23,42,.06); }
.witu-story-card img    { width: 58px; height: 58px; border-radius: 50%; object-fit: cover; margin-bottom: 14px; display: block; }
.witu-story-card h3     { font-size: 17px; margin-bottom: 8px; color: var(--dark); font-weight: 700; }
.witu-story-card p      { color: var(--muted); font-size: 14px; margin-bottom: 10px; line-height: 1.6; }
.witu-story-card strong { font-size: 13px; color: var(--orange-dk); }

/* Legacy testimonials */
.t-carousel-wrap { position: relative; }
.t-carousel      { overflow: hidden; }
.t-track         { display: flex; gap: 18px; transition: transform .55s ease; will-change: transform; }
.t-slide         { flex: 0 0 33.3333%; }
.t-dots          { display: flex; justify-content: center; gap: 8px; margin-top: 18px; }
.t-dot           { width: 10px; height: 10px; border-radius: 50%; background: rgba(17,24,39,.22); border: 1px solid rgba(17,24,39,.25); cursor: pointer; }
.t-dot.active    { background: var(--orange); border-color: var(--orange); }
.t-readmore      { display: inline-block; margin-top: 10px; font-weight: 800; color: var(--orange); }
.t-readmore:hover { text-decoration: underline; }
.t-card          { background: var(--white); border-radius: var(--r-lg); padding: 18px; box-shadow: var(--shadow-md); border: 1px solid #eef2f7; }
.t-top           { display: flex; gap: 12px; align-items: center; margin-bottom: 10px; }
.t-photo         { width: 46px; height: 46px; border-radius: 999px; object-fit: cover; border: 2px solid var(--border); background: #f3f4f6; flex-shrink: 0; }
.t-meta strong   { display: block; }
.t-meta small    { color: var(--muted); }
.t-quote         { color: var(--body-text); line-height: 1.6; margin: 0; }

/* Partners */
.witu-partner {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  min-height: 74px;
  display: grid;
  place-items: center;
  padding: 10px;
  transition: box-shadow .2s, transform .2s;
}
.witu-partner:hover     { box-shadow: 0 6px 18px rgba(15,23,42,.1); transform: translateY(-2px); }
.witu-partner img       { max-height: 46px; max-width: 100%; object-fit: contain; }
.witu-partner-text      { font-weight: 700; font-size: 12px; color: var(--muted); text-align: center; }

.partner-row     { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.partner-logo    { width: 160px; height: 80px; background: var(--white); border: 1px solid #eef2f7; border-radius: 7px; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-md); }
.partner-logo img { max-width: 120px; max-height: 50px; object-fit: contain; }

/* ----------------------------------------------------------------
   17. HOME PAGE — GET INVOLVED CTA
---------------------------------------------------------------- */
.witu-cta {
  background: linear-gradient(135deg, var(--orange) 0%, #fb923c 100%);
  color: #fff;
  padding: 90px 0;
  text-align: center;
}
.witu-cta h2    { font-size: 42px; font-weight: 900; margin-bottom: 14px; }
.witu-cta p     { max-width: 680px; margin: 0 auto 34px; color: #fff7ed; font-size: 17px; line-height: 1.65; }
.witu-cta-btns  { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }

/* ----------------------------------------------------------------
   18. CTA SECTIONS (inner pages)
---------------------------------------------------------------- */
.cta-section {
  background: linear-gradient(135deg, var(--orange), var(--orange-lt));
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section h2 { font-size: 40px; margin-bottom: 15px; font-weight: 900; }
.cta-section p  { font-size: 20px; margin-bottom: 30px; opacity: .95; }
.cta-buttons    { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

.imp-cta, .opp-cta {
  background: var(--charcoal);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.opp-cta { padding: 96px 0; }

.imp-cta::before, .opp-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 65% 55% at 50% 130%, rgba(248,101,5,.18), transparent);
}
.imp-cta-inner { position: relative; z-index: 1; }

.imp-cta h3, .opp-cta h2 {
  position: relative;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 14px;
}
.opp-cta h2 { font-size: clamp(2rem, 4vw, 3.4rem); margin-bottom: 20px; }
.imp-cta h3 em, .opp-cta h2 em { font-style: normal; color: var(--orange); }

.imp-cta p, .opp-cta p { position: relative; font-size: 1rem; color: rgba(255,255,255,.62); max-width: 600px; margin: 0 auto 34px; line-height: 1.72; }

.imp-cta-btn, .opp-cta-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1.5px solid var(--orange);
  color: var(--orange);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: 4px;
  transition: background .22s, color .22s, transform .22s;
}
.imp-cta-btn:hover, .opp-cta-btn:hover { background: var(--orange); color: #fff; transform: translateY(-2px); }

/* Opportunity band */
.opp-band               { background: var(--orange); overflow: hidden; }
.opp-band-inner         { display: flex; align-items: stretch; }
.opp-band-text          { padding: 54px 48px 54px 0; flex: 1; }
.opp-band-kicker        { font-size: 10px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-bottom: 14px; }
.opp-band-text h2       { font-size: clamp(1.5rem, 2.6vw, 2.4rem); font-weight: 700; color: #fff; line-height: 1.2; }
.opp-band-text p        { margin-top: 14px; font-size: .98rem; font-weight: 300; color: rgba(255,255,255,.82); line-height: 1.68; max-width: 540px; }
.opp-band-icon          { flex-shrink: 0; width: 160px; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,.08); }
.opp-band-icon svg      { opacity: .22; }

/* ----------------------------------------------------------------
   19. OPPORTUNITY DETAIL LAYOUT
---------------------------------------------------------------- */
.od-layout              { display: grid; grid-template-columns: 1fr; gap: 48px; }
.od-image-wrap          { position: sticky; top: 28px; }
.od-image-wrap img      { width: 100%; border-radius: 8px; display: block; border: 1px solid var(--border); box-shadow: 0 18px 50px rgba(0,0,0,.09); }
.od-content             { font-size: 1.04rem; line-height: 1.82; color: var(--mid); }
.od-content p           { margin-bottom: 1.4em; }
.od-content p:last-child { margin-bottom: 0; }
.od-divider             { height: 1px; background: var(--border); margin: 52px 0; }

.od-nav                 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.od-nav-card {
  display: flex;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px 22px;
  transition: border-color .2s, box-shadow .2s, transform .2s;
  background: var(--cream);
}
.od-nav-card:hover      { border-color: var(--orange); box-shadow: 0 8px 28px rgba(248,101,5,.1); transform: translateY(-2px); }
.od-nav-card.next       { text-align: right; }
.od-nav-dir             { font-size: 9.5px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--orange); display: flex; align-items: center; gap: 6px; }
.od-nav-card.next .od-nav-dir { justify-content: flex-end; }
.od-nav-title           { font-size: .95rem; font-weight: 700; color: var(--dark); line-height: 1.3; }

.od-back-wrap           { margin-top: 40px; text-align: center; }
.od-back                { display: inline-flex; align-items: center; gap: 8px; border: 1.5px solid var(--border); color: var(--muted); font-size: .85rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 12px 28px; border-radius: 4px; transition: border-color .2s, color .2s, transform .2s; }
.od-back:hover          { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }

/* ----------------------------------------------------------------
   20. FOCUS AREA & PROGRAMS ARTICLE
---------------------------------------------------------------- */
.fa-article             { max-width: 820px; margin: 0 auto 72px; font-size: 1rem; line-height: 1.78; color: var(--mid); }
.fa-article h2          { font-size: clamp(1.5rem, 3vw, 1.9rem); font-weight: 900; color: var(--dark); margin: 42px 0 18px; line-height: 1.25; }
.fa-article h3          { font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-weight: 700; color: var(--dark); margin: 32px 0 14px; }
.fa-article p           { margin: 16px 0; }
.fa-article ul,
.fa-article ol          { margin: 20px 0; padding-left: 30px; }
.fa-article li          { margin: 10px 0; line-height: 1.7; }

.fa-programs            { margin-top: 80px; padding-top: 80px; border-top: 1px solid var(--border); }
.fa-programs-head       { text-align: center; margin-bottom: 48px; }
.fa-programs-head h2    { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 900; color: var(--dark); margin-bottom: 10px; }
.fa-programs-head p     { font-size: .95rem; color: var(--muted); max-width: 540px; margin: 0 auto; line-height: 1.65; }

/* ----------------------------------------------------------------
   21. IMPACT PAGE
---------------------------------------------------------------- */
.imp-intro-center       { max-width: 820px; margin: 0 auto; text-align: center; }
.imp-intro-center h2    { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 900; color: var(--dark); line-height: 1.15; margin-bottom: 32px; }
.imp-intro-paras        { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px; text-align: left; }
.imp-intro-para         { font-size: .96rem; line-height: 1.78; color: var(--mid); background: var(--white); border-left: 3px solid var(--orange); padding: 16px 20px; border-radius: 0 8px 8px 0; }
.imp-block-head         { margin-bottom: 32px; }
.imp-block-head h2      { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 900; color: var(--dark); margin-bottom: 8px; }
.imp-block-head p       { font-size: .95rem; color: var(--muted); max-width: 580px; line-height: 1.65; }

.imp-divider            { display: flex; align-items: center; gap: 16px; margin: 64px 0 48px; }
.imp-divider::before,
.imp-divider::after     { content: ''; flex: 1; height: 1px; background: var(--border); }
.imp-divider-label      { font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }

.opp-intro              { text-align: center; max-width: 920px; margin: 0 auto 34px; }
.opp-intro h2           { font-size: 34px; margin: 0 0 10px; font-weight: 900; }
.opp-intro p            { margin: 0; color: var(--muted); line-height: 1.7; font-size: 17px; }
.opp-fw-head            { margin-bottom: 68px; }
.opp-fw-head h2         { font-size: clamp(2rem, 3.8vw, 3.3rem); font-weight: 900; color: var(--dark); line-height: 1.1; max-width: 580px; margin-bottom: 16px; }
.opp-fw-head p          { font-size: 1.02rem; font-weight: 300; color: var(--muted); max-width: 500px; line-height: 1.72; }
.opp-fw-bignumber       { position: absolute; top: 10px; right: 3vw; font-size: clamp(110px, 20vw, 260px); font-weight: 900; color: rgba(0,0,0,.028); line-height: 1; pointer-events: none; user-select: none; }

/* ----------------------------------------------------------------
   22. FORMS & ALERTS
---------------------------------------------------------------- */
.contact-form           { max-width: 600px; margin: 0 auto; }
.form-group             { margin-bottom: 20px; }
.form-group label       { display: block; margin-bottom: 6px; font-weight: 700; font-size: 12px; color: var(--body-text); }
.form-group input,
.form-group textarea,
.form-group select      { width: 100%; padding: 12px; border: 1px solid var(--border); border-radius: var(--r-sm); font-size: 14px; font-family: var(--ff); outline: none; transition: border-color .2s; }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--orange); }
.form-group textarea    { min-height: 150px; resize: vertical; }

.alert                  { padding: 14px; border-radius: var(--r-md); margin-bottom: 14px; }
.alert-success          { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
.alert-error            { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }

/* ----------------------------------------------------------------
   23. DONATE PAGE
---------------------------------------------------------------- */
.donate-hero            { color: #fff; padding: 90px 0; text-align: center; position: relative; }
.donate-hero h1         { font-size: 48px; margin: 0 0 10px; font-weight: 900; letter-spacing: -.02em; }
.donate-hero p          { font-size: 18px; margin: 0 auto; max-width: 820px; opacity: .95; line-height: 1.7; }
.donate-wrap            { padding: 70px 0; }
.donate-grid            { display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: start; }
.panel                  { background: var(--white); border: 1px solid #eef2f7; border-radius: var(--r-lg); box-shadow: var(--shadow-md); padding: 22px; }
.panel h2               { margin: 0 0 12px; font-size: 24px; font-weight: 900; color: var(--dark); }
.panel p.lead           { margin: 0 0 18px; color: var(--muted); line-height: 1.7; }
.amount-grid            { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 12px; }
.amount-btn             { width: 100%; background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md); padding: 10px; font-weight: 800; cursor: pointer; transition: .2s; }
.amount-btn:hover       { border-color: var(--orange); color: var(--orange); }
.amount-btn.selected    { background: var(--orange); color: #fff; border-color: var(--orange); }
.why-stack              { display: flex; flex-direction: column; gap: 16px; }
.why-card               { border-radius: var(--r-md); border: 1px solid var(--border-lt); padding: 18px; box-shadow: 0 10px 24px rgba(0,0,0,.04); }
.why-card h3            { margin: 0 0 8px; font-size: 18px; font-weight: 900; }
.why-card p             { margin: 0; color: var(--body-text); line-height: 1.7; }
.other-ways             { margin-top: 18px; padding: 18px; border-radius: var(--r-md); background: #fef3c7; border-left: 4px solid #f59e0b; }
.other-ways h4          { margin: 0 0 10px; font-size: 16px; font-weight: 900; color: var(--dark); }
.other-ways ul          { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.other-ways li          { color: var(--body-text); display: flex; gap: 10px; align-items: center; }

/* ----------------------------------------------------------------
   24. MODALS
---------------------------------------------------------------- */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.55);
  z-index: 9000;
  padding: 18px;
}
.modal-content          { width: min(760px, 100%); background: var(--white); border-radius: var(--r-lg); box-shadow: var(--shadow-xl); overflow: hidden; }
.modal-header           { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 18px; border-bottom: 1px solid var(--border); }
.modal-header h3        { font-size: 18px; font-weight: 900; color: var(--dark); }
.modal-close            { background: none; border: none; font-size: 26px; cursor: pointer; color: var(--muted); line-height: 1; }
.modal-close:hover      { color: var(--dark); }
.modal-body             { padding: 18px; }
.modal-footer           { padding: 14px 18px; border-top: 1px solid var(--border); display: flex; justify-content: flex-end; gap: 10px; }

/* Testimonial modal */
.witu-modal             { position: fixed; inset: 0; background: rgba(0,0,0,.55); display: flex; align-items: center; justify-content: center; z-index: 9000; padding: 20px; }
.witu-modal-box         { background: var(--white); border-radius: var(--r-lg); width: 100%; max-height: 90vh; overflow-y: auto; box-shadow: 0 24px 64px rgba(0,0,0,.2); }
.witu-modal-head        { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; border-bottom: 1px solid var(--border); }
.witu-modal-head h3     { margin: 0; font-size: 17px; color: var(--dark); }
.witu-modal-close       { background: none; border: none; font-size: 24px; cursor: pointer; color: var(--muted); line-height: 1; padding: 0 4px; }
.witu-modal-close:hover { color: var(--dark); }
.witu-modal-body        { padding: 22px 24px; }
.witu-modal-foot        { padding: 14px 22px; border-top: 1px solid var(--border); text-align: right; }

/* ----------------------------------------------------------------
   25. LEGACY MISC
---------------------------------------------------------------- */
.page-header            { background: var(--light); padding: 60px 20px; text-align: center; }
.page-header h1         { font-size: 42px; color: var(--dark); margin-bottom: 15px; }
.page-content           { padding: 60px 20px; }
.page-content img       { max-width: 100%; height: auto; border-radius: 10px; margin: 20px 0; }

.jobs-list              { display: flex; flex-direction: column; gap: 25px; }
.job-card               { background: var(--white); padding: 30px; border-radius: 10px; box-shadow: var(--shadow-xs); }
.job-card h3            { font-size: 24px; color: var(--dark); margin-bottom: 10px; }
.job-meta               { display: flex; gap: 20px; margin-bottom: 15px; color: var(--muted); flex-wrap: wrap; }
.job-meta span          { display: flex; align-items: center; gap: 5px; }

/* Legacy hero */
.hero                   { background: linear-gradient(135deg, var(--orange), var(--orange-lt)); color: #fff; padding: 100px 20px; text-align: center; }
.hero-content h2        { font-size: 48px; margin-bottom: 20px; }
.hero-content p         { font-size: 20px; margin-bottom: 30px; opacity: .95; }
.hero-buttons           { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

/* ----------------------------------------------------------------
   26. FOOTER
---------------------------------------------------------------- */
.site-footer {
  background: var(--dark);
  color: #fff;
  padding: 64px 20px 22px;
}

.site-footer .container {
  max-width: 1200px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: 34px;
  align-items: start;
  margin-bottom: 38px;
}

.footer-col h4,
.site-footer .footer-social h4 {
  margin-bottom: 16px;
  font-size: 17px;
  font-weight: 800;
  color: #ffffff;
}

.footer-col p {
  color: #d1d5db;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.7;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }

.footer-col a {
  color: #d1d5db;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color .22s ease, transform .22s ease;
}

.footer-col a:hover {
  color: var(--footer-secondary-color);
  transform: translateX(2px);
}

.site-footer .footer-donate-btn,
.footer-donate-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  margin-top: 12px;
  padding: 12px 20px;
  border-radius: var(--r-pill);
  background: var(--footer-secondary-color);
  color: #ffffff !important;
  font-weight: 800;
  font-size: 14px;
  line-height: 1;
  text-decoration: none !important;
  border: 2px solid var(--footer-secondary-color);
  box-shadow: 0 10px 24px rgba(0,0,0,.24);
  transition: background .22s ease, border-color .22s ease, transform .22s ease, box-shadow .22s ease;
}

.site-footer .footer-donate-btn:hover,
.footer-donate-btn:hover {
  background: var(--footer-primary-color);
  border-color: var(--footer-primary-color);
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0,0,0,.3);
}

.site-footer .footer-social {
  margin-top: 22px;
}

.site-footer .footer-social-icons,
.footer-social-icons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.site-footer .footer-social-icon,
.footer-social-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: #ffffff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  font-size: 17px;
  transition: background .22s ease, color .22s ease, transform .22s ease;
}

.site-footer .footer-social-icon:hover,
.footer-social-icon:hover {
  background: var(--footer-secondary-color);
  color: #ffffff !important;
  transform: translateY(-3px);
}

.site-footer .footer-social-icon i,
.footer-social-icon i {
  color: #ffffff !important;
  line-height: 1;
}

.footer-bottom {
  text-align: center;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.13);
  color: #9ca3af;
  font-size: 13px;
}

/* Back to top button */
.back-to-top,
.scroll-top,
#backToTop,
#scrollTopBtn,
.site-scroll-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 0;
  background: var(--footer-secondary-color) !important;
  color: #ffffff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  cursor: pointer;
  z-index: 99999;
  box-shadow: 0 10px 26px rgba(0,0,0,.28);
  opacity: 1;
  visibility: visible;
  transition: background .24s ease, transform .24s ease, box-shadow .24s ease, opacity .24s ease;
}

.back-to-top:hover,
.scroll-top:hover,
#backToTop:hover,
#scrollTopBtn:hover,
.site-scroll-top:hover {
  background: var(--footer-primary-color) !important;
  color: #ffffff !important;
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(0,0,0,.34);
}

.back-to-top i,
.scroll-top i,
#backToTop i,
#scrollTopBtn i,
.site-scroll-top i {
  color: #ffffff !important;
  font-size: 20px;
  line-height: 1;
}

/* ----------------------------------------------------------------
   27. ANIMATIONS
---------------------------------------------------------------- */
@keyframes heroZoom  { to { transform: scale(1); } }
@keyframes fadeUp    { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes floatY    { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(9px); } }

/* ----------------------------------------------------------------
   28. RESPONSIVE
---------------------------------------------------------------- */

/* = 1200px */
@media (max-width: 1200px) {
  .mega-menu-grid             { grid-template-columns: repeat(3,1fr); gap: 18px; }
  .mega-menu-item .mega-menu-dropdown { width: min(1000px, calc(100vw - 40px)); }
  .ar-grid, .nl-grid          { grid-template-columns: repeat(3, 1fr); }
}

/* = 1100px */
@media (max-width: 1100px) {
  .imp-grid                   { grid-template-columns: repeat(2, 1fr); }
}

/* = 1024px */
@media (max-width: 1024px) {
  .bl-grid                    { grid-template-columns: repeat(2, 1fr); }
  .witu-focus-grid            { grid-template-columns: repeat(2,1fr); }
  .witu-partner-grid          { grid-template-columns: repeat(4,1fr); }
}

/* = 968px — mobile nav triggers */
@media (max-width: 968px) {
  .mobile-menu-toggle         { display: block; }
  .footer-grid                { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
  .mobile-menu-close          { display: inline-flex !important; }

  .nav-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 320px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 80px 20px 20px;
    box-shadow: -5px 0 15px rgba(0,0,0,.1);
    transition: right .3s ease;
    overflow-y: auto;
    gap: 0;
    align-items: stretch;
    z-index: 1001;
  }
  .nav-menu.active            { right: 0; }
  .nav-menu > li              { width: 100%; }
  .nav-menu > li > a,
  .nav-menu > li > button     { width: 100%; justify-content: space-between; padding: 15px; border-radius: 10px; }

  .dropdown-menu              { position: static; box-shadow: none; margin: 0; padding: 0; opacity: 1; visibility: visible; transform: none; background: transparent; max-height: 0; overflow: hidden; transition: max-height .3s ease; }
  .dropdown.active .dropdown-menu { max-height: 650px; padding: 8px 0 8px 10px; }

  .mega-menu-item .mega-menu-dropdown { position: static; width: 100%; transform: none; left: auto; box-shadow: none; margin: 0; border-radius: 0; opacity: 1; visibility: visible; max-height: 0; overflow: hidden; transition: max-height .4s ease; background: transparent; }
  .mega-menu-item.active .mega-menu-dropdown { max-height: 3000px; }
  .mega-menu-container        { padding: 12px 0 12px 10px; }
  .mega-menu-grid             { grid-template-columns: 1fr; gap: 16px; }
  .mega-card-image            { height: 140px; }
}

/* = 992px */
@media (max-width: 992px) {
  .hero-slider, .hero-inner   { height: 640px; }
  .hero-text h1               { font-size: 38px; }
  .focus-grid, .t-grid        { grid-template-columns: 1fr; }
  .t-slide                    { flex: 0 0 100%; }
  .donate-hero h1             { font-size: 34px; }
  .donate-grid                { grid-template-columns: 1fr; gap: 22px; }
  .amount-grid                { grid-template-columns: repeat(2, 1fr); }
  .imp-grid                   { grid-template-columns: repeat(2, 1fr); }
  .journey-viz-header h2      { font-size: 32px; }
  .journey-viz-grid           { grid-template-columns: 1fr; gap: 22px; }
  .journey-step-body          { max-width: 600px; }
  .journey-viz-topline,
  .journey-step-down,
  .journey-loop               { display: none; }
  .journey-viz-bottom         { padding-top: 10px; }
  .opp-grid                   { grid-template-columns: 1fr; }
}

/* = 900px */
@media (max-width: 900px) {
  .ar-grid, .nl-grid          { grid-template-columns: repeat(2, 1fr); }
  .witu-hero-slider           { min-height: 480px; }
  .witu-hero-slide.active     { min-height: 480px; }
  .witu-hero-inner            { flex-direction: column; gap: 20px; padding: 44px 20px; }
  .witu-hero-mini-card        { width: 100%; max-width: 420px; }
  .witu-hero-text h1          { font-size: 30px; }
  .witu-hero-text p           { font-size: 15px; }
  .witu-impact-grid           { grid-template-columns: repeat(2,1fr); }
  .witu-focus-grid,
  .witu-program-grid,
  .witu-agency-grid,
  .witu-journey-grid,
  .witu-story-grid            { grid-template-columns: 1fr; }
  .witu-partner-grid          { grid-template-columns: repeat(3,1fr); }
  .witu-t-slide               { min-width: 100%; }
  .witu-cta h2                { font-size: 30px; }
}

/* = 768px */
@media (max-width: 768px) {
  .hero-content h2            { font-size: 32px; }
  .hero-content p             { font-size: 16px; }
  .section-header h2          { font-size: 28px; }
  .programs-grid, .footer-grid { grid-template-columns: 1fr; }
  .site-footer                { padding: 48px 18px 20px; }
  .site-footer .footer-donate-btn, .footer-donate-btn { width: 100%; }
  .site-footer .footer-social-icons, .footer-social-icons { justify-content: flex-start; }
  .back-to-top, .scroll-top, #backToTop, #scrollTopBtn, .site-scroll-top { right: 16px; bottom: 16px; width: 48px; height: 48px; }
  .mega-menu-grid             { grid-template-columns: repeat(2,1fr); }
  .mega-card-image            { height: 120px; }
  .mega-card-title            { font-size: 15px; }
  .mega-card-description      { font-size: 12px; }
  .ar-hero-inner, .nl-hero-inner,
  .bl-hero-inner, .imp-hero-inner { padding: 70px 0 60px; }
  .tm-hero-inner, .fa-hero-inner  { padding: 72px 0 64px; }
  .fa-hero                    { min-height: 50vh; }
  .opp-hero-inner             { padding: 88px 0 78px; }
  .opp-band-inner             { flex-direction: column; }
  .opp-band-text              { padding: 38px 0; }
  .opp-band-icon              { display: none; }
  .opp-framework              { padding: 64px 0 80px; }
  .opp-cta                    { padding: 70px 0; }
}

/* = 640px */
@media (max-width: 640px) {
  .logo-text h1               { font-size: 19px; }
  .logo-text p                { display: none; }
  .mega-menu-grid             { grid-template-columns: 1fr; }
  .bl-grid                    { grid-template-columns: 1fr; }
}

/* = 600px */
@media (max-width: 600px) {
  .imp-grid                   { grid-template-columns: 1fr; }
  .imp-intro, .imp-stats      { padding: 60px 0; }
  .imp-card-value             { font-size: 30px; }
}

/* = 580px */
@media (max-width: 580px) {
  .witu-section               { padding: 56px 0; }
  .witu-section-title h2      { font-size: 26px; }
  .witu-impact-grid           { grid-template-columns: 1fr 1fr; }
  .witu-partner-grid          { grid-template-columns: repeat(2,1fr); }
  .witu-hero-btns             { flex-direction: column; align-items: flex-start; }
  .witu-cta-btns              { flex-direction: column; align-items: center; }
  .witu-cta-btns .witu-btn    { width: 260px; text-align: center; }
  .witu-opportunity-callout   { padding: 22px; }
  .witu-support-box           { padding: 22px; }
}

/* = 560px */
@media (max-width: 560px) {
  .ar-grid, .nl-grid,
  .tm-grid, .fa-grid          { grid-template-columns: 1fr; }
}

/* = 540px */
@media (max-width: 540px) {
  .od-nav                     { grid-template-columns: 1fr; }
}

/* ================================================================
   29. PROGRAMMES PAGE
================================================================ */

/* -- Hero -- */
.prog-hero {
  position: relative;
  min-height: 54vh;
  display: flex;
  align-items: center;
  background: var(--charcoal);
  overflow: hidden;
}
.prog-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(.28) saturate(.45);
  transform: scale(1.04);
  animation: heroZoom 10s var(--ease) forwards;
}
.prog-hero-slash {
  position: absolute;
  right: -60px; top: 0; bottom: 0;
  width: 36vw;
  background: var(--orange);
  opacity: .07;
  clip-path: polygon(28% 0, 100% 0, 100% 100%, 0% 100%);
  pointer-events: none;
}
.prog-hero-grain {
  position: absolute;
  inset: 0;
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.prog-hero-inner {
  position: relative;
  z-index: 2;
  padding: 90px 0 80px;
}
.prog-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
  opacity: 0;
  animation: fadeUp .65s var(--ease) .1s forwards;
}
.prog-hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--orange);
}
.prog-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.08;
  color: #fff;
  max-width: 720px;
  margin-bottom: 18px;
  opacity: 0;
  animation: fadeUp .8s var(--ease) .22s forwards;
}
.prog-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.7);
  max-width: 540px;
  line-height: 1.72;
  opacity: 0;
  animation: fadeUp .8s var(--ease) .36s forwards;
}
.prog-hero-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 26px;
  opacity: 0;
  animation: fadeUp .8s var(--ease) .48s forwards;
  flex-wrap: wrap;
}
.prog-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(248,101,5,.18);
  border: 1px solid rgba(248,101,5,.35);
  color: #ffb37a;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 6px 14px;
  border-radius: var(--r-pill);
}

/* -- Programmes listing section -- */
.prog-section {
  padding: 80px 0 100px;
  background: var(--light);
}

/* count + sort bar */
.prog-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.prog-bar-count {
  font-size: .88rem;
  color: var(--muted);
}
.prog-bar-count strong {
  color: var(--dark);
  font-weight: 700;
}

/* -- Grid -- */
.prog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* -- Card -- */
.prog-card {
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 8px 28px rgba(15,23,42,.07);
  display: flex;
  flex-direction: column;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
  position: relative;
}
.prog-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ease);
  z-index: 2;
}
.prog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 52px rgba(15,23,42,.13);
}
.prog-card:hover::before { transform: scaleX(1); }

/* card image */
.prog-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--charcoal), #2a2a3e);
}
.prog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s var(--ease);
}
.prog-card:hover .prog-card-img img { transform: scale(1.06); }

.prog-card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--orange) 0%, #fb923c 100%);
}
.prog-card-img-placeholder i {
  font-size: 56px;
  color: rgba(255,255,255,.55);
}

/* card body */
.prog-card-body {
  padding: 26px 26px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.prog-card-title {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1.28;
  margin-bottom: 12px;
}
.prog-card-desc {
  font-size: .9rem;
  line-height: 1.68;
  color: var(--mid);
  flex: 1;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.prog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--dark);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color .2s, gap .2s;
  margin-top: auto;
}
.prog-card-link i {
  font-size: 14px;
  transition: transform .2s;
}
.prog-card-link:hover { color: var(--orange); gap: 12px; }
.prog-card-link:hover i { transform: translateX(3px); }

/* -- Empty state -- */
.prog-empty {
  text-align: center;
  padding: 90px 20px;
  color: var(--muted);
  grid-column: 1 / -1;
}
.prog-empty i {
  font-size: 52px;
  color: #d1d5db;
  display: block;
  margin-bottom: 18px;
}
.prog-empty h3 {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 10px;
}

/* -- CTA band -- */
.prog-cta {
  background: var(--charcoal);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.prog-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 65% 55% at 50% 130%, rgba(248,101,5,.2), transparent);
}
.prog-cta-inner { position: relative; z-index: 1; }
.prog-cta h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.15;
}
.prog-cta h2 em { font-style: normal; color: var(--orange); }
.prog-cta p {
  font-size: 1rem;
  color: rgba(255,255,255,.62);
  max-width: 560px;
  margin: 0 auto 34px;
  line-height: 1.72;
}
.prog-cta-btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}
.prog-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--orange);
  color: #fff;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .05em;
  padding: 14px 32px;
  border-radius: var(--r-sm);
  transition: background .22s, transform .22s;
}
.prog-cta-btn:hover { background: var(--orange-lt); transform: translateY(-2px); }
.prog-cta-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1.5px solid rgba(255,255,255,.4);
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .05em;
  padding: 14px 32px;
  border-radius: var(--r-sm);
  transition: border-color .22s, color .22s, transform .22s;
}
.prog-cta-btn-outline:hover { border-color: #fff; color: #fff; transform: translateY(-2px); }

/* -- Responsive -- */
@media (max-width: 1024px) {
  .prog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .prog-hero-inner { padding: 72px 0 62px; }
  .prog-hero h1    { font-size: 2rem; }
}
@media (max-width: 600px) {
  .prog-grid       { grid-template-columns: 1fr; gap: 20px; }
  .prog-section    { padding: 56px 0 72px; }
  .prog-cta        { padding: 60px 0; }
}

/* ================================================================
   30. PROGRAMME DETAIL PAGE
================================================================ */

/* Breadcrumb inside hero */
.prog-detail-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 6px;
}
.prog-detail-breadcrumb a       { color: rgba(255,255,255,.55); transition: color .18s; }
.prog-detail-breadcrumb a:hover { color: #fff; }
.prog-detail-breadcrumb i       { font-size: 9px; }
.prog-detail-breadcrumb span    { color: rgba(255,255,255,.85); font-weight: 600; }

/* -- Detail section -- */
.prog-detail-section {
  padding: 72px 0 96px;
  background: var(--light);
}

/* two-column layout */
.prog-detail-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 52px;
  align-items: start;
}

/* body */
.prog-detail-body {}

.prog-detail-content {
  font-size: 1.02rem;
  line-height: 1.82;
  color: var(--mid);
}
.prog-detail-content h2 {
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
  font-weight: 900;
  color: var(--dark);
  margin: 38px 0 16px;
  line-height: 1.2;
}
.prog-detail-content h3 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: var(--dark);
  margin: 28px 0 12px;
}
.prog-detail-content p       { margin: 0 0 1.3em; }
.prog-detail-content ul,
.prog-detail-content ol      { margin: 16px 0; padding-left: 28px; }
.prog-detail-content li      { margin: 8px 0; line-height: 1.72; }
.prog-detail-content strong  { color: var(--dark); font-weight: 700; }
.prog-detail-content a       { color: var(--orange); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.prog-detail-content a:hover { color: var(--orange-dk); }
.prog-detail-content blockquote {
  border-left: 4px solid var(--orange);
  padding: 14px 22px;
  margin: 24px 0;
  background: var(--orange-pale);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-style: italic;
  color: var(--dark);
}
.prog-detail-content img {
  width: 100%;
  border-radius: var(--r-md);
  margin: 24px 0;
  box-shadow: var(--shadow-md);
}

.prog-detail-placeholder {
  font-size: 1rem;
  color: var(--muted);
  padding: 32px 0;
}
.prog-detail-placeholder a { color: var(--orange); }

/* action row */
.prog-detail-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.prog-detail-back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-left: auto;
  transition: color .18s;
}
.prog-detail-back:hover { color: var(--orange); }

/* -- Sidebar cards -- */
.prog-sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px 24px;
  box-shadow: var(--shadow-md);
  margin-bottom: 20px;
  position: sticky;
  top: 88px;
}
.prog-sidebar-card h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.prog-sidebar-card h4 i { color: var(--orange); }

.prog-sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.prog-sidebar-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
}
.prog-sidebar-list li > i {
  color: var(--orange);
  font-size: 13px;
  margin-top: 2px;
  flex-shrink: 0;
  width: 16px;
}
.prog-sidebar-list li span { color: var(--mid); line-height: 1.55; }
.prog-sidebar-list li span strong {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted-lt);
  margin-bottom: 2px;
}

/* Share buttons */
.prog-sidebar-share    { margin-top: 0; }
.prog-share-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.prog-share-btns a {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  background: var(--light);
  border: 1px solid var(--border);
  color: var(--mid);
  transition: background .2s, color .2s, transform .2s;
}
.prog-share-btns a:hover { background: var(--orange); color: #fff; border-color: var(--orange); transform: scale(1.1); }

/* -- Related programmes -- */
.prog-related {
  padding: 80px 0;
  background: var(--white);
}
.prog-related-head {
  margin-bottom: 36px;
}
.prog-related-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--dark);
  margin: 0;
}

/* -- Responsive -- */
@media (max-width: 1024px) {
  .prog-detail-layout { grid-template-columns: 1fr 280px; gap: 36px; }
}
@media (max-width: 768px) {
  .prog-detail-layout { grid-template-columns: 1fr; }
  .prog-sidebar-card  { position: static; }
  .prog-detail-back   { margin-left: 0; }
}
@media (max-width: 600px) {
  .prog-detail-section { padding: 52px 0 72px; }
  .prog-detail-actions { flex-direction: column; align-items: flex-start; }
  .prog-related        { padding: 56px 0; }
}

/* ================================================================
   29. PROGRAMMES PAGE
   Covers: hero, intro strip, grid cards, CTA band
================================================================ */

/* -- Hero -- */
.pg-hero {
  position: relative;
  min-height: 54vh;
  display: flex;
  align-items: center;
  background: var(--charcoal);
  overflow: hidden;
}

.pg-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  filter: brightness(.3) saturate(.5);
  transform: scale(1.04);
  animation: heroZoom 10s var(--ease) forwards;
}

.pg-hero-slash {
  position: absolute;
  right: -60px; top: 0; bottom: 0;
  width: 36vw;
  background: var(--orange);
  opacity: .07;
  clip-path: polygon(28% 0, 100% 0, 100% 100%, 0% 100%);
  pointer-events: none;
}

.pg-hero-grain {
  position: absolute;
  inset: 0;
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.pg-hero-inner {
  position: relative;
  z-index: 2;
  padding: 100px 20px 90px;
}

.pg-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
  opacity: 0;
  animation: fadeUp .65s var(--ease) .1s forwards;
}
.pg-eyebrow::before {
  content: '';
  display: block;
  width: 26px;
  height: 2px;
  background: var(--orange);
}
.pg-eyebrow i { font-size: 11px; }

.pg-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.08;
  color: #fff;
  max-width: 680px;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp .8s var(--ease) .22s forwards;
}

.pg-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.72);
  max-width: 580px;
  line-height: 1.72;
  opacity: 0;
  animation: fadeUp .8s var(--ease) .36s forwards;
}

/* -- Intro stat strip -- */
.pg-intro-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.pg-intro-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.pg-intro-stat {
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pg-intro-stat:last-child { border-right: none; }

.pg-intro-stat strong {
  font-size: 2rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  display: block;
}
.pg-intro-stat span {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.45;
}

/* -- Section -- */
.pg-section { padding: 84px 0 100px; }

.pg-section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}
.pg-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.pg-kicker::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--orange);
}
.pg-section-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.12;
  margin-bottom: 14px;
}
.pg-section-head p {
  font-size: .96rem;
  color: var(--muted);
  line-height: 1.72;
}

/* -- Grid -- */
.pg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* -- Card -- */
.pg-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 6px 22px rgba(0,0,0,.06);
  display: flex;
  flex-direction: column;
  position: relative;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s var(--ease), transform .55s var(--ease),
              box-shadow .25s var(--ease);
}
.pg-card.in-view {
  opacity: 1;
  transform: translateY(0);
}
.pg-card:hover {
  box-shadow: 0 20px 50px rgba(0,0,0,.12);
  transform: translateY(-5px);
}
.pg-card.in-view:hover { transform: translateY(-5px); }

/* top accent bar */
.pg-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--card-accent, var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ease);
  z-index: 2;
}
.pg-card.in-view::before,
.pg-card:hover::before { transform: scaleX(1); }

/* thumbnail */
.pg-card-thumb {
  display: block;
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--charcoal);
  text-decoration: none;
  flex-shrink: 0;
}
.pg-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s var(--ease);
}
.pg-card:hover .pg-card-thumb img { transform: scale(1.06); }

.pg-card-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.35) 0%, transparent 55%);
  pointer-events: none;
}

.pg-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--card-accent, var(--orange)) 0%,
              color-mix(in srgb, var(--card-accent, var(--orange)) 60%, #000) 100%);
}
/* fallback for browsers without color-mix */
.pg-card-placeholder {
  background: linear-gradient(135deg,
    var(--card-accent, var(--orange)),
    rgba(0,0,0,.35));
}
.pg-card-placeholder i {
  font-size: 56px;
  color: #fff;
  opacity: .65;
}

/* card body */
.pg-card-body {
  padding: 24px 22px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pg-card-num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--card-accent, var(--orange));
  margin-bottom: 10px;
}

.pg-card-title {
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 12px;
  color: var(--dark);
}
.pg-card-title a {
  color: inherit;
  transition: color .18s;
}
.pg-card-title a:hover { color: var(--card-accent, var(--orange)); }

.pg-card-desc {
  font-size: .88rem;
  line-height: 1.7;
  color: var(--mid);
  flex: 1;
  margin-bottom: 20px;
  /* clamp to 4 lines */
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pg-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--card-accent, var(--orange));
  text-decoration: none;
  margin-top: auto;
  transition: gap .2s;
}
.pg-card-cta:hover { gap: 11px; }
.pg-card-cta svg   { transition: transform .2s; }
.pg-card-cta:hover svg { transform: translateX(3px); }

/* -- Empty state -- */
.pg-empty {
  text-align: center;
  padding: 80px 20px;
  color: var(--muted);
}
.pg-empty i  { font-size: 52px; color: #d1d5db; display: block; margin-bottom: 20px; }
.pg-empty h3 { font-size: 1.4rem; font-weight: 900; color: var(--dark); margin-bottom: 10px; }
.pg-empty p  { font-size: .96rem; }

/* -- Bottom CTA band -- */
.pg-cta {
  background: linear-gradient(135deg, #f86505 0%, #fb923c 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.pg-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 120%,
              rgba(248,101,5,.18), transparent);
}
.pg-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.pg-cta-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 10px;
}
.pg-cta-text p {
  font-size: .96rem;
  color: #fff;
  max-width: 500px;
  line-height: 1.7;
}
.pg-cta-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* -- Responsive -- */
@media (max-width: 1100px) {
  .pg-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; }
}

@media (max-width: 900px) {
  .pg-grid        { grid-template-columns: repeat(2, 1fr); }
  .pg-intro-grid  { grid-template-columns: repeat(2, 1fr); }
  .pg-intro-stat  { border-bottom: 1px solid var(--border); }
  .pg-intro-stat:nth-child(2) { border-right: none; }
  .pg-intro-stat:nth-child(3),
  .pg-intro-stat:nth-child(4) { border-bottom: none; }
  .pg-cta-inner   { flex-direction: column; text-align: center; }
  .pg-cta-text p  { margin: 0 auto; }
  .pg-cta-btns    { justify-content: center; }
}

@media (max-width: 640px) {
  .pg-grid        { grid-template-columns: 1fr; }
  .pg-intro-grid  { grid-template-columns: 1fr 1fr; }
  .pg-hero h1     { font-size: 2rem; }
  .pg-hero-sub    { font-size: .95rem; }
  .pg-hero-inner  { padding: 72px 20px 64px; }
}

@media (max-width: 420px) {
  .pg-intro-grid  { grid-template-columns: 1fr; }
  .pg-intro-stat  { border-right: none; border-bottom: 1px solid var(--border); }
  .pg-intro-stat:last-child { border-bottom: none; }
}

/* ================================================================
   30. PROGRAMME DETAIL PAGE  (.pd-*)
================================================================ */

/* -- Breadcrumb -- */
.pd-breadcrumb {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 13px 0;
}
.pd-breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  flex-wrap: wrap;
}
.pd-breadcrumb-inner a {
  color: var(--muted);
  transition: color .18s;
}
.pd-breadcrumb-inner a:hover { color: var(--orange); }
.pd-breadcrumb-inner span    { color: var(--dark); font-weight: 600; }
.pd-bc-sep { font-size: 9px; color: #ccc; }

/* -- Hero -- */
.pd-hero {
  position: relative;
  min-height: 56vh;
  display: flex;
  align-items: flex-end;          /* text sits near bottom of image */
  overflow: hidden;
  background: var(--charcoal);
}

/* photo version */
.pd-hero.has-photo .pd-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  filter: brightness(.35) saturate(.55);
  transform: scale(1.04);
  animation: heroZoom 10s var(--ease) forwards;
}
/* no-photo: gradient background */
.pd-hero.no-photo {
  background: linear-gradient(135deg, #f86505 0%, #1a3a6e 100%);
  align-items: center;
}

.pd-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.75) 0%,
    rgba(0,0,0,.35) 55%,
    rgba(0,0,0,.15) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.pd-hero-slash {
  position: absolute;
  right: -60px; top: 0; bottom: 0;
  width: 36vw;
  background: var(--orange);
  opacity: .06;
  clip-path: polygon(28% 0, 100% 0, 100% 100%, 0% 100%);
  pointer-events: none;
  z-index: 1;
}

.pd-hero-inner {
  position: relative;
  z-index: 2;
  padding: 90px 20px 72px;
  max-width: 860px;
}

/* icon bubble */
.pd-hero-icon-wrap {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(248,101,5,.18);
  border: 2px solid rgba(248,101,5,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--orange);
  margin-bottom: 18px;
  opacity: 0;
  animation: fadeUp .6s var(--ease) .05s forwards;
}

/* eyebrow */
.pd-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
  opacity: 0;
  animation: fadeUp .6s var(--ease) .15s forwards;
}
.pd-eyebrow::before {
  content: '';
  display: block;
  width: 26px;
  height: 2px;
  background: var(--orange);
}

/* h1 */
.pd-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp .75s var(--ease) .25s forwards;
}

/* subtitle */
.pd-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.78);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp .75s var(--ease) .38s forwards;
}

/* hero action buttons */
.pd-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  opacity: 0;
  animation: fadeUp .75s var(--ease) .5s forwards;
}

/* -- Body layout -- */
.pd-body {
  background: var(--light);
  padding: 64px 0 80px;
}

.pd-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

/* -- Main content -- */
.pd-main { min-width: 0; }

/* lead block (description) */
.pd-lead-block {
  position: relative;
  background: var(--white);
  border-left: 5px solid var(--orange);
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
  padding: 26px 28px 26px 36px;
  margin-bottom: 36px;
  box-shadow: var(--shadow-md);
  font-size: 1.06rem;
  line-height: 1.78;
  color: var(--mid);
}
.pd-lead-icon {
  position: absolute;
  top: -12px;
  left: 18px;
  font-size: 28px;
  color: var(--orange);
  opacity: .2;
}

/* rich content area */
.pd-content {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 40px 44px;
  box-shadow: var(--shadow-md);
  font-size: 1rem;
  line-height: 1.82;
  color: var(--mid);
}

/* typography inside pd-content */
.pd-content h2 {
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
  font-weight: 900;
  color: var(--dark);
  margin: 40px 0 16px;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pd-content h2:first-child { margin-top: 0; }
.pd-content h2::before {
  content: '';
  display: block;
  width: 4px;
  height: 1.1em;
  background: var(--orange);
  border-radius: 2px;
  flex-shrink: 0;
}

.pd-content h3 {
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  font-weight: 700;
  color: var(--dark);
  margin: 30px 0 12px;
}

.pd-content p  { margin-bottom: 1.4em; }
.pd-content p:last-child { margin-bottom: 0; }

.pd-content ul,
.pd-content ol {
  margin: 18px 0 18px 24px;
}
.pd-content li {
  margin-bottom: 9px;
  line-height: 1.72;
}
.pd-content ul li::marker { color: var(--orange); font-weight: 700; }

.pd-content a {
  color: var(--orange);
  text-decoration: none;
  text-underline-offset: 3px;
}
.pd-content a:hover { color: var(--orange-dk); }

.pd-content blockquote {
  border-left: 4px solid var(--orange);
  margin: 28px 0;
  padding: 16px 22px;
  background: var(--orange-pale);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-style: italic;
  color: var(--mid);
}

.pd-content img {
  max-width: 100%;
  border-radius: var(--r-md);
  margin: 24px 0;
  box-shadow: var(--shadow-md);
}

.pd-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: .9rem;
}
.pd-content th {
  background: var(--orange);
  color: #fff;
  padding: 11px 14px;
  text-align: left;
  font-weight: 700;
}
.pd-content td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--mid);
}
.pd-content tr:last-child td { border-bottom: none; }
.pd-content tr:nth-child(even) td { background: var(--light); }

/* -- Sidebar -- */
.pd-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 88px;           /* clears sticky header */
}

/* apply card */
.pd-apply-card {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-lt) 100%);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  text-align: center;
  color: #fff;
  box-shadow: 0 12px 32px rgba(248,101,5,.35);
}
.pd-apply-icon {
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 16px;
}
.pd-apply-card h3 {
  font-size: 1.35rem;
  font-weight: 900;
  margin-bottom: 10px;
  color: #fff;
}
.pd-apply-card p  {
  font-size: .9rem;
  color: rgba(255,255,255,.88);
  line-height: 1.6;
  margin-bottom: 20px;
}
.pd-apply-btn {
  background: #fff !important;
  color: var(--orange-dk) !important;
  border-color: transparent !important;
  width: 100%;
  justify-content: center;
  display: flex;
  font-weight: 700;
}
.pd-apply-btn:hover {
  background: #fff7ed !important;
  transform: translateY(-2px);
}

/* info card */
.pd-info-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 26px 24px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.pd-info-title {
  font-size: .95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pd-info-title i { color: var(--orange); }

.pd-info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pd-info-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: .88rem;
}
.pd-info-list li > i {
  color: var(--orange);
  font-size: 13px;
  margin-top: 3px;
  flex-shrink: 0;
  width: 16px;
  text-align: center;
}
.pd-info-list li > div { display: flex; flex-direction: column; gap: 2px; }
.pd-info-list li strong { font-size: .78rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.pd-info-list li span  { color: var(--mid); font-size: .9rem; line-height: 1.45; }

.pd-status-pill {
  display: inline-block !important;
  background: #d1fae5;
  color: #065f46;
  font-size: .75rem !important;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--r-pill);
}

.pd-back-link {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .84rem;
  font-weight: 700;
  color: var(--muted);
  padding-top: 16px;
  border-top: 1px solid var(--border);
  transition: color .18s;
}
.pd-back-link:hover { color: var(--orange); }

/* share card */
.pd-share-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 20px 24px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.pd-share-btns {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}
.pd-share-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #fff;
  transition: transform .2s, opacity .2s;
  flex-shrink: 0;
}
.pd-share-btn:hover       { transform: translateY(-3px); opacity: .88; }
.pd-share-btn.twitter     { background: #000; }
.pd-share-btn.facebook    { background: #1877f2; }
.pd-share-btn.linkedin    { background: #0a66c2; }
.pd-share-btn.whatsapp    { background: #25d366; }

/* -- Related programmes -- */
.pd-related {
  padding: 80px 0 96px;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.pd-related-head {
  text-align: center;
  margin-bottom: 44px;
}
.pd-related-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--dark);
}

.pd-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.pd-rel-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 18px rgba(0,0,0,.06);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  position: relative;
}
.pd-rel-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--rel-accent, var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
  z-index: 2;
}
.pd-rel-card:hover             { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,.11); }
.pd-rel-card:hover::before     { transform: scaleX(1); }

.pd-rel-thumb {
  display: block;
  height: 190px;
  overflow: hidden;
  background: var(--charcoal);
  flex-shrink: 0;
}
.pd-rel-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s var(--ease);
}
.pd-rel-card:hover .pd-rel-thumb img { transform: scale(1.06); }

.pd-rel-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg,
    var(--rel-accent, var(--orange)),
    rgba(0,0,0,.35));
}
.pd-rel-placeholder i { font-size: 52px; color: #fff; opacity: .6; }

.pd-rel-body { padding: 22px 20px 26px; flex: 1; display: flex; flex-direction: column; }
.pd-rel-body h3 {
  font-size: 1.05rem;
  font-weight: 900;
  margin-bottom: 8px;
  line-height: 1.3;
  color: var(--dark);
}
.pd-rel-body h3 a  { color: inherit; transition: color .18s; }
.pd-rel-body h3 a:hover { color: var(--rel-accent, var(--orange)); }
.pd-rel-body p {
  font-size: .86rem;
  color: var(--mid);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pd-rel-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--rel-accent, var(--orange));
  margin-top: auto;
  transition: gap .2s;
}
.pd-rel-link:hover { gap: 11px; }

/* -- Responsive -- */
@media (max-width: 1100px) {
  .pd-layout { grid-template-columns: 1fr 300px; gap: 32px; }
}

@media (max-width: 900px) {
  .pd-layout {
    grid-template-columns: 1fr;
  }
  .pd-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .pd-apply-card  { grid-column: 1 / -1; }
  .pd-related-grid { grid-template-columns: repeat(2, 1fr); }
  .pd-hero        { min-height: 50vh; align-items: center; }
  .pd-hero-inner  { padding: 72px 20px 60px; }
  .pd-content     { padding: 28px 24px; }
  .pd-lead-block  { padding: 20px 22px 20px 30px; }
}

@media (max-width: 640px) {
  .pd-related-grid { grid-template-columns: 1fr; }
  .pd-sidebar      { grid-template-columns: 1fr; }
  .pd-hero h1      { font-size: 1.85rem; }
  .pd-hero-sub     { font-size: .95rem; }
  .pd-hero-actions { flex-direction: column; align-items: flex-start; }
  .pd-content      { padding: 22px 18px; }
  .pd-content h2   { font-size: 1.3rem; }
}

/* ================================================================
   31. FOCUS AREAS — LISTING PAGE  (.fal-*)
================================================================ */

/* -- Hero -- */
.fal-hero {
  position: relative;
  min-height: 56vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #f86505 0%, #fb923c 100%);
  overflow: hidden;
}
.fal-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(.28) saturate(.45);
  transform: scale(1.04);
  animation: heroZoom 10s var(--ease) forwards;
}
.fal-hero-slash {
  position: absolute;
  right: -60px; top: 0; bottom: 0;
  width: 38vw;
  background: var(--orange);
  opacity: .07;
  clip-path: polygon(28% 0, 100% 0, 100% 100%, 0% 100%);
  pointer-events: none;
}
.fal-hero-grain {
  position: absolute;
  inset: 0;
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.fal-hero-inner {
  position: relative;
  z-index: 2;
  padding: 100px 20px 88px;
}
.fal-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
  opacity: 0;
  animation: fadeUp .6s var(--ease) .1s forwards;
}
.fal-eyebrow::before {
  content: '';
  display: block;
  width: 26px;
  height: 2px;
  background: var(--orange);
}
.fal-eyebrow i { font-size: 11px; }
.fal-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.08;
  color: #fff;
  max-width: 660px;
  margin-bottom: 18px;
  opacity: 0;
  animation: fadeUp .78s var(--ease) .22s forwards;
}
.fal-hero-sub {
  font-size: 1.06rem;
  color: rgba(255,255,255,.72);
  max-width: 580px;
  line-height: 1.72;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp .78s var(--ease) .36s forwards;
}
.fal-hero-scroll {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
  opacity: 0;
  animation: fadeUp .6s var(--ease) .52s forwards;
}
.fal-hero-scroll i { animation: floatY 2.4s ease-in-out infinite; }

/* -- Intro -- */
.fal-intro {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 60px 0;
}
.fal-intro-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}
.fal-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.fal-kicker::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--orange);
}
.fal-kicker i { font-size: 11px; }
.fal-intro-text h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 12px;
}
.fal-intro-text p {
  font-size: .96rem;
  color: var(--muted);
  line-height: 1.72;
  max-width: 540px;
}
.fal-intro-stats {
  display: flex;
  gap: 32px;
  flex-shrink: 0;
}
.fal-istat { text-align: center; }
.fal-istat strong {
  display: block;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 5px;
}
.fal-istat span {
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.4;
  max-width: 80px;
  display: block;
}

/* -- Section -- */
.fal-section { padding: 80px 0 100px; background: var(--light); }

/* -- Grid -- */
.fal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* -- Card -- */
.fal-card {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 4px 18px rgba(0,0,0,.06);
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .5s var(--ease), transform .5s var(--ease),
              box-shadow .25s var(--ease);
}
.fal-card.in-view {
  opacity: 1;
  transform: translateY(0);
}
.fal-card:hover {
  box-shadow: 0 18px 48px rgba(0,0,0,.12);
  transform: translateY(-5px);
}
.fal-card.in-view:hover { transform: translateY(-5px); }

/* stagger delay via data-idx */
.fal-card[data-idx="1"] { transition-delay: .08s; }
.fal-card[data-idx="2"] { transition-delay: .16s; }
.fal-card[data-idx="3"] { transition-delay: .06s; }
.fal-card[data-idx="4"] { transition-delay: .12s; }
.fal-card[data-idx="5"] { transition-delay: .18s; }

/* accent bar */
.fal-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--fal-accent, var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .42s var(--ease);
  z-index: 2;
}
.fal-card.in-view::before,
.fal-card:hover::before { transform: scaleX(1); }

/* thumbnail */
.fal-card-thumb {
  display: block;
  height: 210px;
  overflow: hidden;
  background: var(--charcoal);
  flex-shrink: 0;
  position: relative;
}
.fal-card-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s var(--ease);
}
.fal-card:hover .fal-card-thumb img { transform: scale(1.06); }

.fal-card-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg,
    var(--fal-accent, var(--orange)),
    rgba(0,0,0,.3));
}
.fal-card-placeholder i { font-size: 56px; color: #fff; opacity: .6; }

.fal-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.3) 0%, transparent 50%);
  pointer-events: none;
}

/* body */
.fal-card-body { padding: 22px 20px 28px; flex: 1; display: flex; flex-direction: column; }

.fal-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.fal-card-icon-wrap {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--fal-accent, var(--orange)) 12%, transparent);
  background: rgba(248,101,5,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fal-accent, var(--orange));
  font-size: 17px;
  flex-shrink: 0;
}
.fal-sub-badge {
  font-size: .72rem;
  font-weight: 700;
  color: var(--fal-accent, var(--orange));
  background: rgba(248,101,5,.1);
  padding: 3px 10px;
  border-radius: var(--r-pill);
}

.fal-card-title {
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 10px;
  color: var(--dark);
}
.fal-card-title a { color: inherit; transition: color .18s; }
.fal-card-title a:hover { color: var(--fal-accent, var(--orange)); }

.fal-card-desc {
  font-size: .88rem;
  color: var(--mid);
  line-height: 1.68;
  flex: 1;
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.fal-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--fal-accent, var(--orange));
  margin-top: auto;
  transition: gap .2s;
}
.fal-card-cta:hover { gap: 11px; }

/* -- How we work strip -- */
.fal-how {
  background: var(--white);
  padding: 80px 0;
  border-top: 1px solid var(--border);
}
.fal-how-head {
  text-align: center;
  margin-bottom: 44px;
}
.fal-how-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--dark);
  margin-top: 8px;
}
.fal-how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.fal-how-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: box-shadow .22s, transform .22s;
}
.fal-how-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.fal-how-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--orange-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 20px;
  margin-bottom: 16px;
}
.fal-how-card h4 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.fal-how-card p  { font-size: .86rem; color: var(--muted); line-height: 1.65; }

/* -- Empty -- */
.fal-empty {
  text-align: center;
  padding: 80px 20px;
  color: var(--muted);
}
.fal-empty i  { font-size: 52px; color: #d1d5db; display: block; margin-bottom: 20px; }
.fal-empty h3 { font-size: 1.4rem; font-weight: 900; color: var(--dark); margin-bottom: 10px; }

/* -- Responsive -- */
@media (max-width: 1100px) {
  .fal-grid     { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .fal-how-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .fal-grid         { grid-template-columns: repeat(2, 1fr); }
  .fal-intro-grid   { grid-template-columns: 1fr; gap: 32px; }
  .fal-intro-stats  { justify-content: flex-start; }
  .fal-hero h1      { font-size: 2.4rem; }
}
@media (max-width: 640px) {
  .fal-grid     { grid-template-columns: 1fr; }
  .fal-how-grid { grid-template-columns: 1fr 1fr; }
  .fal-hero h1  { font-size: 2rem; }
}
@media (max-width: 420px) {
  .fal-how-grid    { grid-template-columns: 1fr; }
  .fal-intro-stats { flex-wrap: wrap; gap: 20px; }
}

/* ================================================================
   32. FOCUS AREA — DETAIL PAGE  (.fad-*)
================================================================ */

/* -- Breadcrumb -- */
.fad-breadcrumb { background: var(--cream); border-bottom: 1px solid var(--border); padding: 13px 0; }
.fad-breadcrumb-inner {
  display: flex; align-items: center; gap: 8px;
  font-size: .82rem; flex-wrap: wrap; color: var(--muted);
}
.fad-breadcrumb-inner a { color: var(--muted); transition: color .18s; }
.fad-breadcrumb-inner a:hover { color: var(--orange); }
.fad-breadcrumb-inner span { color: var(--dark); font-weight: 600; }
.fad-bc-sep { font-size: 9px; color: #ccc; }

/* -- Hero -- */
.fad-hero {
  position: relative;
  min-height: 58vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--charcoal);
}
.fad-hero.no-photo {
  background: linear-gradient(135deg, #f86505 0%, #132d5e 100%);
  align-items: center;
}
.fad-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 30%;
  filter: brightness(.3) saturate(.5);
  transform: scale(1.04);
  animation: heroZoom 10s var(--ease) forwards;
}
.fad-hero-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(to top,
    rgba(0,0,0,.78) 0%, rgba(0,0,0,.4) 50%, rgba(0,0,0,.12) 100%);
}
.fad-hero-slash {
  position: absolute; right: -60px; top: 0; bottom: 0;
  width: 36vw; background: var(--orange); opacity: .06;
  clip-path: polygon(28% 0, 100% 0, 100% 100%, 0% 100%);
  pointer-events: none; z-index: 1;
}
.fad-hero-grain {
  position: absolute; inset: 0; opacity: .04; z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.fad-hero-inner { position: relative; z-index: 2; padding: 96px 20px 72px; max-width: 840px; }
.fad-hero-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(248,101,5,.16);
  border: 2px solid rgba(248,101,5,.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: var(--orange);
  margin-bottom: 18px;
  opacity: 0; animation: fadeUp .6s var(--ease) .05s forwards;
}
.fad-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10px; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 14px;
  opacity: 0; animation: fadeUp .6s var(--ease) .15s forwards;
}
.fad-eyebrow::before {
  content: ''; display: block; width: 26px; height: 2px; background: var(--orange);
}
.fad-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 900; line-height: 1.1; color: #fff;
  margin-bottom: 16px;
  opacity: 0; animation: fadeUp .75s var(--ease) .25s forwards;
}
.fad-hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,.75);
  max-width: 640px; line-height: 1.7;
  opacity: 0; animation: fadeUp .75s var(--ease) .38s forwards;
}

/* -- Body -- */
.fad-body { background: #ff98001a; padding: 60px 0 80px; }
.fad-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 38px;
  align-items: start;
}

/* -- Main -- */
.fad-main { min-width: 0; }

/* rich content */
.fad-content {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 40px 44px;
  box-shadow: var(--shadow-md);
  font-size: 1rem;
  line-height: 1.82;
  color: var(--mid);
  margin-bottom: 48px;
}
.fad-content h2 {
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
  font-weight: 900; color: var(--dark);
  margin: 38px 0 16px; line-height: 1.2;
  display: flex; align-items: center; gap: 10px;
}
.fad-content h2:first-child { margin-top: 0; }
.fad-content h2::before {
  content: ''; display: block; width: 4px; height: 1.1em;
  background: var(--orange); border-radius: 2px; flex-shrink: 0;
}
.fad-content h3 {
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  font-weight: 700; color: var(--dark); margin: 28px 0 12px;
}
.fad-content p        { margin-bottom: 1.4em; }
.fad-content p:last-child { margin-bottom: 0; }
.fad-content ul, .fad-content ol { margin: 16px 0 16px 24px; }
.fad-content li { margin-bottom: 8px; line-height: 1.72; }
.fad-content ul li::marker { color: var(--orange); font-weight: 700; }
.fad-content a { color: var(--orange); text-decoration: underline; text-underline-offset: 3px; }
.fad-content a:hover { color: var(--orange-dk); }
.fad-content blockquote {
  border-left: 4px solid var(--orange);
  margin: 26px 0; padding: 14px 20px;
  background: var(--orange-pale);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-style: italic; color: var(--mid);
}
.fad-content img { max-width: 100%; border-radius: var(--r-md); margin: 22px 0; box-shadow: var(--shadow-md); }
.fad-content table { width: 100%; border-collapse: collapse; margin: 22px 0; font-size: .9rem; }
.fad-content th { background: var(--orange); color: #fff; padding: 10px 14px; text-align: left; font-weight: 700; }
.fad-content td { padding: 10px 14px; border-bottom: 1px solid var(--border); color: var(--mid); }
.fad-content tr:last-child td { border-bottom: none; }
.fad-content tr:nth-child(even) td { background: var(--light); }

/* sub-areas */
.fad-children { margin-bottom: 48px; }
.fad-children-head, .fad-programmes-head {
  margin-bottom: 32px;
}
.fad-children-head h2, .fad-programmes-head h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 900; color: var(--dark); margin-bottom: 8px;
}
.fad-children-head p, .fad-programmes-head p {
  font-size: .95rem; color: var(--muted); line-height: 1.65;
}
.fad-children-grid { grid-template-columns: repeat(2, 1fr) !important; }

/* related programmes */
.fad-programmes { margin-bottom: 0; }
.fad-prog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 28px;
}
.fad-prog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  position: relative;
}
.fad-prog-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--fad-prog-accent, var(--orange));
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease); z-index: 2;
}
.fad-prog-card:hover { transform: translateY(-4px); box-shadow: 0 14px 38px rgba(0,0,0,.10); }
.fad-prog-card:hover::before { transform: scaleX(1); }

.fad-prog-thumb {
  display: block; height: 160px; overflow: hidden;
  background: var(--charcoal); flex-shrink: 0;
}
.fad-prog-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; transition: transform .4s var(--ease);
}
.fad-prog-card:hover .fad-prog-thumb img { transform: scale(1.06); }
.fad-prog-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg,
    var(--fad-prog-accent, var(--orange)), rgba(0,0,0,.3));
}
.fad-prog-placeholder i { font-size: 46px; color: #fff; opacity: .6; }

.fad-prog-body { padding: 18px 16px 22px; flex: 1; display: flex; flex-direction: column; }
.fad-prog-body h4 { font-size: .98rem; font-weight: 900; color: var(--dark); margin-bottom: 8px; line-height: 1.3; }
.fad-prog-body h4 a { color: inherit; transition: color .18s; }
.fad-prog-body h4 a:hover { color: var(--fad-prog-accent, var(--orange)); }
.fad-prog-body p {
  font-size: .84rem; color: var(--mid); line-height: 1.65; flex: 1;
  margin-bottom: 14px;
  display: -webkit-box; -webkit-line-clamp: 3;
  -webkit-box-orient: vertical; overflow: hidden;
}
.fad-prog-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .78rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--fad-prog-accent, var(--orange));
  margin-top: auto; transition: gap .2s;
}
.fad-prog-link:hover { gap: 10px; }
.fad-prog-more { text-align: center; margin-top: 10px; }

/* -- Sidebar -- */
.fad-sidebar {
  display: flex; flex-direction: column; gap: 18px;
  position: sticky; top: 88px;
}

/* get-involved card */
.fad-cta-card {
  background: linear-gradient(135deg, #000000 0%, #222222 100%);
  border-radius: var(--r-xl);
  padding: 28px 24px;
  color: #fff;
}
.fad-cta-icon {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: rgba(248,101,5,.18);
  border: 2px solid rgba(248,101,5,.35);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--orange);
  margin-bottom: 14px;
}
.fad-cta-card h3 { font-size: 1.25rem; font-weight: 900; margin-bottom: 8px; color: #fff; }
.fad-cta-card p  { font-size: .88rem; color: rgba(255,255,255,.7); line-height: 1.6; margin-bottom: 18px; }
.fad-cta-btns    { display: flex; flex-direction: column; gap: 10px; }
.fad-cta-full    { width: 100%; justify-content: center; display: flex; }

/* nav card */
.fad-nav-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 20px 22px;
  box-shadow: var(--shadow-md);
}
.fad-nav-title {
  font-size: .9rem; font-weight: 700; color: var(--dark);
  margin-bottom: 14px; padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 8px;
}
.fad-nav-title i { color: var(--orange); }
.fad-nav-list    { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 4px; }
.fad-nav-list li a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 10px;
  border-radius: var(--r-sm);
  font-size: .88rem; color: var(--mid);
  transition: background .16s, color .16s, padding-left .16s;
}
.fad-nav-list li a:hover {
  background: var(--orange-pale); color: var(--orange); padding-left: 14px;
}
.fad-nav-list li a i { color: var(--orange); font-size: 13px; flex-shrink: 0; width: 16px; text-align: center; }

/* share card */
.fad-share-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 18px 22px; box-shadow: var(--shadow-md);
}

/* -- Responsive -- */
@media (max-width: 1100px) {
  .fad-layout { grid-template-columns: 1fr 280px; gap: 28px; }
}
@media (max-width: 900px) {
  .fad-layout        { grid-template-columns: 1fr; }
  .fad-sidebar       { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .fad-cta-card      { grid-column: 1 / -1; }
  .fad-children-grid { grid-template-columns: 1fr 1fr !important; }
  .fad-prog-grid     { grid-template-columns: repeat(2, 1fr); }
  .fad-hero          { min-height: 50vh; }
  .fad-hero-inner    { padding: 72px 20px 56px; }
  .fad-content       { padding: 28px 24px; }
}
@media (max-width: 640px) {
  .fad-children-grid { grid-template-columns: 1fr !important; }
  .fad-prog-grid     { grid-template-columns: 1fr; }
  .fad-sidebar       { grid-template-columns: 1fr; }
  .fad-hero h1       { font-size: 1.9rem; }
  .fad-hero-sub      { font-size: .96rem; }
  .fad-content       { padding: 20px 16px; }
  .fad-content h2    { font-size: 1.25rem; }
}

       .nav-menu .support-cause-link {
      display: inline-flex !important;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background: var(--site-secondary-color) !important;
      color: #ffffff !important;
      padding: 11px 18px !important;
      border-radius: 999px;
      font-weight: 800;
      font-size: 14px;
      line-height: 1;
      text-decoration: none !important;
      border: 2px solid var(--site-secondary-color);
      box-shadow: 0 8px 20px rgba(0, 0, 0, .18);
      white-space: nowrap;
      transition: all .25s ease;
    }

    .nav-menu .support-cause-link:hover,
    .nav-menu .support-cause-link:focus {
      background: var(--site-primary-color) !important;
      border-color: var(--site-primary-color);
      color: #ffffff !important;
      transform: translateY(-2px);
      box-shadow: 0 12px 28px rgba(0, 0, 0, .24);
    }

    .nav-menu .support-cause-link i {
      color: #ffffff !important;
      font-size: 13px;
    }

    @media (max-width: 968px) {
      .nav-menu .support-cause-item {
        width: 100%;
        padding: 10px 18px;
      }

      .nav-menu .support-cause-link {
        width: 100%;
        border-radius: 10px;
        padding: 14px 18px !important;
      }
    }

.ct-container {
  width: min(1180px, 92vw);
  margin-inline: auto;
}

.ct-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: center;
  background: var(--charcoal);
  overflow: hidden;
}

.ct-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(.32) saturate(.5);
  transform: scale(1.04);
  animation: ctZoom 10s var(--ease) forwards;
}

@keyframes ctZoom {
  to { transform: scale(1); }
}

.ct-hero-slash {
  position: absolute;
  right: -60px;
  top: 0;
  bottom: 0;
  width: 36vw;
  background: var(--orange);
  opacity: .07;
  clip-path: polygon(28% 0, 100% 0, 100% 100%, 0% 100%);
  pointer-events: none;
}

.ct-hero-grain {
  position: absolute;
  inset: 0;
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.ct-hero-inner {
  position: relative;
  z-index: 2;
  padding: 90px 0 80px;
}

.ct-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
  opacity: 0;
  animation: ctFadeUp .65s var(--ease) .1s forwards;
}

.ct-hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--orange);
}

.ct-hero h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  max-width: 680px;
  opacity: 0;
  animation: ctFadeUp .8s var(--ease) .22s forwards;
}

.ct-hero-sub {
  margin-top: 18px;
  font-size: 1.05rem;
  color: rgba(255,255,255,.68);
  max-width: 480px;
  line-height: 1.7;
  opacity: 0;
  animation: ctFadeUp .8s var(--ease) .36s forwards;
}

.ct-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  padding: 72px 0 96px;
}

.ct-form-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 40px;
  box-shadow: 0 8px 30px rgba(0,0,0,.07);
}

.ct-form-panel h2,
.ct-info-col h2 {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 6px;
}

.ct-form-panel > p {
  font-size: .95rem;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.6;
}

.ct-alert {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 10px;
  margin-bottom: 24px;
  animation: ctFadeUp .35s var(--ease) forwards;
}

.ct-alert.success {
  background: #d1fae5;
  border-left: 4px solid var(--green);
}

.ct-alert.error {
  background: #fee2e2;
  border-left: 4px solid #ef4444;
}

.ct-alert i {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.ct-alert.success i { color: var(--green); }
.ct-alert.error i { color: #ef4444; }

.ct-alert strong {
  display: block;
  margin-bottom: 2px;
  font-size: .92rem;
}

.ct-alert span {
  font-size: .84rem;
}

.ct-alert.success strong { color: #065f46; }
.ct-alert.success span { color: #047857; }
.ct-alert.error strong { color: #991b1b; }
.ct-alert.error span { color: #b91c1c; }

.ct-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.ct-form-group {
  margin-bottom: 16px;
}

.ct-form-group label {
  display: block;
  margin-bottom: 7px;
  font-size: .84rem;
  font-weight: 700;
  color: #374151;
}

.ct-form-group label span {
  color: #ef4444;
}

.ct-form-group input,
.ct-form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  font-family: var(--ff);
  font-size: .9rem;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  background: #fff;
  color: var(--dark);
}

.ct-form-group input:focus,
.ct-form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(248,101,5,.1);
}

.ct-form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.ct-field-hint {
  font-size: .75rem;
  color: var(--muted);
  margin-top: 4px;
}

.ct-submit {
  width: 100%;
  padding: 14px;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: var(--ff);
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, transform .2s, box-shadow .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.ct-submit:hover {
  background: var(--orange-lt);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(248,101,5,.25);
}

.ct-send-another {
  text-align: center;
  padding-top: 8px;
}

.ct-send-another p {
  color: var(--muted);
  font-size: .88rem;
  margin-bottom: 14px;
}

.ct-send-another a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--orange);
  color: #fff;
  text-decoration: none;
  padding: 11px 28px;
  border-radius: 8px;
  font-size: .88rem;
  font-weight: 700;
}

.ct-info-col h2 {
  margin-bottom: 28px;
}

.ct-hours {
  background: var(--cream);
  border-left: 4px solid var(--orange);
  border-radius: 0 12px 12px 0;
  padding: 22px 24px;
  margin-bottom: 24px;
}

.ct-hours h3 {
  font-size: 1rem;
  font-weight: 900;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 18px 0 8px;
}

.ct-hours h3:first-child {
  margin-top: 0;
}

.ct-hours h3 i {
  color: var(--orange);
}

.ct-hours p {
  font-size: .9rem;
  color: var(--mid);
  line-height: 1.85;
}

.ct-map-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: 0 2px 10px rgba(0,0,0,.05);
}

.ct-map-header {
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
}

.ct-map-header h3 {
  font-size: 1rem;
  font-weight: 900;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 6px;
}

.ct-map-header h3 i {
  color: var(--orange);
}

.ct-map-header p {
  font-size: .86rem;
  color: var(--muted);
  line-height: 1.6;
}

.ct-map-frame {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

.ct-map-actions {
  padding: 16px 22px 20px;
}

.ct-map-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  text-decoration: none;
  padding: 11px 18px;
  border-radius: 8px;
  font-size: .88rem;
  font-weight: 700;
  transition: background .2s, transform .2s;
}

.ct-map-actions a:hover {
  background: var(--orange-lt);
  transform: translateY(-2px);
}

@keyframes ctFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ctSlideDown {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .ct-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .ct-form-row {
    grid-template-columns: 1fr;
  }

  .ct-hero-inner {
    padding: 70px 0 60px;
  }

  .ct-form-panel {
    padding: 28px 22px;
  }

  .ct-map-frame {
    height: 260px;
  }
}


.pg-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:32px;
    align-items:stretch;
    max-width:1100px;
    margin:0 auto;
}

.pg-card{
    height:100%;
}

@media (max-width: 992px){
    .pg-grid{
        grid-template-columns:1fr;
        max-width:700px;
    }
}
.pg-card-children {
    margin-top: 22px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(248, 101, 5, 0.06);
    border: 1px solid rgba(248, 101, 5, 0.16);
}

.pg-card-children-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 14px;
    font-size: 0.88rem;
    font-weight: 800;
    color: #9a3412;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.pg-child-list {
    display: grid;
    gap: 10px;
}

.pg-child-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px;
    border-radius: 5px;
    background: #fff;
    border: 1px solid rgba(229, 231, 235, 0.9);
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pg-child-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.pg-child-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: var(--card-accent, #f86505);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.pg-child-content strong {
    display: block;
    font-size: 0.95rem;
    color: #111827;
    margin-bottom: 4px;
}

.pg-child-content span {
    display: block;
    font-size: 0.82rem;
    line-height: 1.5;
    color: #6b7280;
}

.pg-child-arrow {
    margin-left: auto;
    color: var(--card-accent, #f86505);
    padding-top: 5px;
}

.pg-card-has-children .pg-card-body {
    padding-bottom: 24px;
}