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

:root {
  --teal:    #00a99d;
  --teal-dk: #007f76;
  --magenta: #c2185b;
  --red:     #e53935;
  --yellow:  #f5c500;
  --white:   #ffffff;
  --cream:   #f5f0eb;
  --light:   #f4f4f4;
  --dark:    #3d3d3d;
  --darker:  #1a1a1a;
  --gray:    #666;
  --font:    'Segoe UI', Arial, sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--dark); }
img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }

/* ── Top Bar ───────────────────────────────────────────────── */
.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  background: var(--white);
  height: 80px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
}

.logo { display: flex; align-items: center; gap: .75rem; }
.logo-icon { height: 56px; width: auto; max-width: 220px; object-fit: contain; flex-shrink: 0; }
.logo-text .org  { font-size: .88rem; font-weight: 800; text-transform: uppercase; letter-spacing: .03em; line-height: 1.2; color: var(--darker); }
.logo-text .tag  { font-size: .65rem; color: var(--gray); letter-spacing: .06em; margin-top: .1rem; }

.top-actions { display: flex; align-items: center; gap: .8rem; }

.btn-donate {
  background: var(--yellow);
  color: var(--darker);
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .1em;
  padding: .6rem 1.2rem;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  transition: filter .2s;
  text-transform: uppercase;
}
.btn-donate:hover { filter: brightness(.92); }

.top-select {
  border: none;
  font-weight: 700;
  font-size: .78rem;
  cursor: pointer;
  padding: .5rem .5rem .5rem .7rem;
  appearance: none;
  background-repeat: no-repeat;
  background-position: right .3rem center;
  padding-right: 1.3rem;
  letter-spacing: .05em;
}
.top-select.hub  {
  background-color: transparent;
  color: var(--darker);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23333' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
}
.top-select.lang {
  background-color: var(--magenta);
  color: white;
  border-radius: 3px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23fff' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  padding: .5rem 1.3rem .5rem .7rem;
}

/* ── Nav Bar ───────────────────────────────────────────────── */
.navbar {
  background: var(--teal);
  position: sticky;
  top: 80px;
  z-index: 999;
}

.nav-inner {
  display: flex;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.nav-inner a {
  display: block;
  color: white;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: .9rem 1rem;
  white-space: nowrap;
  transition: background .2s;
}
.nav-inner a:hover { background: var(--teal-dk); }

.nav-search {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: .35rem;
}

/* Dropdowns */
.dd { position: relative; }
.dd-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 200px;
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
  border-top: 3px solid var(--magenta);
  z-index: 100;
}
.dd-menu a { color: var(--dark); font-size: .82rem; font-weight: 500; padding: .6rem 1.1rem; }
.dd-menu a:hover { background: var(--light); color: var(--teal); }
.dd:hover .dd-menu { display: block; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: .5rem 1rem; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: white; margin: 4px 0; }

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  z-index: 0;
  opacity: .35;
}

.hero-panels {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.hero-panels div { background-size: cover; background-position: center; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  padding: 3.5rem 2rem;
  max-width: 820px;
}
.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .03em;
  line-height: 1.08;
  margin-bottom: 2rem;
  text-shadow: 0 2px 10px rgba(0,0,0,.2);
}

/* ── Shared Buttons ────────────────────────────────────────── */
.btn-magenta {
  display: inline-block;
  background: var(--magenta);
  color: white;
  font-weight: 800;
  font-size: .85rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .9rem 2.8rem;
  border-radius: 4px;
  transition: background .2s;
  border: none;
  cursor: pointer;
}
.btn-magenta:hover { background: #a0144c; }

.btn-teal {
  display: inline-block;
  background: var(--teal);
  color: white;
  font-weight: 800;
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .85rem 2rem;
  border-radius: 4px;
  transition: background .2s;
}
.btn-teal:hover { background: var(--teal-dk); }

.btn-red {
  display: inline-block;
  background: var(--red);
  color: white;
  font-weight: 800;
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .85rem 2rem;
  border-radius: 4px;
  transition: background .2s;
}
.btn-red:hover { background: #c62828; }

/* ── Section 2: PARTNER WITH US stats ─────────────────────── */
.stats-section { background: white; }

.stats-heading {
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--dark);
  padding: 2.5rem 2rem 0;
}

.stats-body {
  background: var(--teal);
  padding: 3rem 2rem;
  margin-top: 2rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.stat-icon {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 2.4rem;
}
.stat-icon.red     { background: #e53935; }
.stat-icon.magenta { background: var(--magenta); }
.stat-icon.teal-dk { background: var(--teal-dk); }
.stat-icon.gray    { background: #757575; }

.stat-text .num  { font-size: 2.8rem; font-weight: 900; color: var(--darker); line-height: 1; }
.stat-text .lbl  { font-size: 1rem; color: var(--dark); line-height: 1.3; margin-top: .3rem; font-weight: 500; }

/* ── Benefits Strip ────────────────────────────────────────── */
.benefits-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 2rem auto 0;
  padding: 0 2rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: white;
  border-radius: 8px;
  padding: 1.4rem 1.2rem;
  border-left: 4px solid var(--magenta);
  box-shadow: 0 2px 10px rgba(0,0,0,.07);
}

.benefit-icon { font-size: 1.8rem; flex-shrink: 0; }

.benefit-text { display: flex; flex-direction: column; gap: .3rem; }
.benefit-text strong { font-size: .95rem; font-weight: 800; color: var(--darker); }
.benefit-text span   { font-size: .8rem; color: var(--gray); line-height: 1.5; }

.partner-logos h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--darker);
  text-align: center;
  margin-bottom: 1.2rem;
}

@media (max-width: 960px) { .benefits-strip { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .benefits-strip { grid-template-columns: 1fr; } }

/* ── Section 3: Testimonial ────────────────────────────────── */
.testimonial-section {
  background: var(--teal);
  padding: 3.5rem 2rem;
  text-align: center;
}
.testimonial-section blockquote {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 500;
  color: white;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto 1rem;
  font-style: normal;
}
.testimonial-section .attribution {
  color: white;
  font-style: italic;
  font-size: .95rem;
  opacity: .9;
}

/* ── Section 4: WHO WE ARE ─────────────────────────────────── */
.who-section {
  background: #f0ede8;
  padding: 4rem 2rem;
}
.who-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.who-photo {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}
.who-photo img { width: 100%; height: 420px; object-fit: cover; display: block; }
.who-photo-placeholder {
  width: 100%; height: 420px;
  background: var(--teal);
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700;
}
.who-photo::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 6px;
  background: var(--teal);
}
.who-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--darker);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.who-text p {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 2rem;
}
.who-text .btn-magenta { margin-top: .5rem; }

/* ── Section 5: Programme Cards ────────────────────────────── */
.programmes-section {
  background: white;
  padding: 4rem 2rem;
}
.programmes-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.prog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.prog-card {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  transition: transform .25s, box-shadow .25s;
  text-align: center;
}
.prog-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.13); }

.prog-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.prog-img img { width: 100%; height: 100%; object-fit: cover; }
.prog-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; }
.prog-accent {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 6px;
}
.prog-accent.magenta { background: var(--magenta); }
.prog-accent.teal    { background: var(--teal); }
.prog-accent.red     { background: var(--red); }

.prog-body { padding: 1.4rem 1.2rem 1.8rem; }
.prog-body h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--darker);
  margin-bottom: .7rem;
  line-height: 1.3;
}
.prog-body h3 a { color: inherit; }
.prog-body h3 a:hover { color: var(--teal); text-decoration: underline; }
.prog-body p { font-size: .88rem; color: var(--gray); line-height: 1.6; }

/* ── Section 6: Support next gen ───────────────────────────── */
.support-section {
  background: var(--cream);
  padding: 4rem 2rem;
  text-align: center;
}
.support-inner { max-width: 1100px; margin: 0 auto; }
.support-section h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--darker);
  margin-bottom: 2rem;
  line-height: 1.2;
}

.support-image-wrap {
  margin: 2rem auto;
  max-width: 1100px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
}
.support-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.filmstrip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 12px solid #111;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 2.5rem;
  position: relative;
}
.filmstrip::before, .filmstrip::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 18px;
  background: repeating-linear-gradient(to right, #111 0, #111 10px, transparent 10px, transparent 22px);
  z-index: 1;
}
.filmstrip::before { top: 0; }
.filmstrip::after  { bottom: 0; }

.filmstrip-img { height: 260px; background-size: cover; background-position: center; background-color: #555; }

.support-quote {
  font-size: 1rem;
  font-style: italic;
  color: var(--dark);
  line-height: 1.7;
  margin-bottom: 1.2rem;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.support-subtext {
  font-size: .88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--darker);
  margin-bottom: 2rem;
}

.benefit-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  justify-content: center;
  margin-top: 1rem;
}
.benefit-pill {
  background: white;
  border: 2px solid var(--teal);
  color: var(--darker);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .03em;
  padding: .6rem 1.3rem;
  border-radius: 50px;
  white-space: nowrap;
}

/* ── Section 7: Partnership ─────────────────────────────────── */
.partnership-section {
  background: white;
  padding: 4rem 2rem;
}
.partnership-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto 3rem;
}
.partnership-quote {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--dark);
  line-height: 1.75;
  margin-bottom: 2rem;
}
.partnership-video {
  border-radius: 6px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.partnership-video img { width: 100%; height: 100%; object-fit: cover; }
.play-overlay {
  position: absolute;
  width: 60px; height: 60px;
  background: rgba(255,0,0,.85);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.play-overlay svg { margin-left: 4px; }

.partner-logos {
  border-top: 1px solid #eee;
  padding-top: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.partner-logos p {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 1.2rem;
  text-align: center;
}
.logos-row {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.logo-badge {
  background: var(--light);
  border-radius: 6px;
  padding: .7rem 1.4rem;
  font-weight: 700;
  font-size: .8rem;
  color: var(--gray);
  border: 1px solid #ddd;
  letter-spacing: .03em;
}

/* ── Section 8: FIND OUT MORE ───────────────────────────────── */
.findout-section {
  background: #f2ede8;
  padding: 4rem 2rem;
  text-align: center;
}
.findout-section h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--darker);
  margin-bottom: 2.5rem;
}
.findout-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.findout-card {
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform .25s;
}
.findout-card:hover { transform: translateY(-4px); }
.findout-card img { width: 100%; height: 340px; object-fit: cover; display: block; }
.findout-img-placeholder { width: 100%; height: 340px; display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 1rem; }
.findout-label {
  padding: 1.1rem;
  font-weight: 800;
  font-size: .95rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: white;
  text-align: center;
}
.findout-label.magenta { background: var(--magenta); }
.findout-label.teal    { background: var(--teal); }
.findout-label.red     { background: var(--red); }
.findout-label a { color: white; text-decoration: underline; }

/* ── Section 9: Latest News ─────────────────────────────────── */
.news-section {
  background: white;
  padding: 4rem 2rem;
}
.news-inner { max-width: 1200px; margin: 0 auto; }
.news-section h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--darker);
  margin-bottom: .8rem;
  text-align: center;
}
.news-section .news-sub {
  text-align: center;
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.6;
  max-width: 760px;
  margin: 0 auto 2.5rem;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.news-card {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
  transition: transform .25s, box-shadow .25s;
}
.news-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.13); }
.news-card-img {
  position: relative;
  height: 200px;
}
.news-card-img img { width: 100%; height: 100%; object-fit: cover; }
.news-card-img .img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; }
.news-card-img .news-accent {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 5px;
}
.news-accent.magenta { background: var(--magenta); }
.news-accent.teal    { background: var(--teal); }
.news-accent.red     { background: var(--red); }

.news-card-body { padding: 1.2rem; }
.news-card-body h3 { font-size: .95rem; font-weight: 800; color: var(--darker); margin-bottom: .6rem; line-height: 1.35; }
.news-card-body p  { font-size: .83rem; color: var(--gray); line-height: 1.6; }
.news-card-body a.read-more { display: inline-block; margin-top: .8rem; font-size: .8rem; font-weight: 700; color: var(--teal); }
.news-card-body a.read-more:hover { text-decoration: underline; }

/* ── Partners Logo Wall ─────────────────────────────────────── */
.logos-image-wrap {
  margin-top: 1.5rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
}
.logos-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.logos-wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.logo-tile {
  background: white;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 1.2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 90px;
  transition: box-shadow .2s, transform .2s;
  gap: .3rem;
}
.logo-tile:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,.1);
  transform: translateY(-2px);
}
.logo-tile span {
  font-weight: 800;
  font-size: .95rem;
  line-height: 1.3;
  display: block;
}
.logo-tile small {
  font-size: .65rem;
  color: var(--gray);
  line-height: 1.3;
}

/* Brand colours */
.lt-idc     { color: #003087; font-size: 1.4rem !important; }
.lt-sfb     { color: #ff6b35; font-style: italic; }
.lt-digi    { color: #333; font-size: 1.1rem !important; }
.lt-distell { color: #b8860b; letter-spacing: .1em; }
.lt-pp      { color: #2c2c2c; letter-spacing: .05em; font-size: .8rem !important; }
.lt-osisa   { color: #00a651; font-size: 1rem !important; }
.lt-iwisa   { color: #cc0000; font-size: 1.1rem !important; }
.lt-airbnb  { color: #ff5a5f; font-size: 1.3rem !important; font-style: italic; }
.lt-gp      { color: #4a235a; letter-spacing: .06em; font-size: .85rem !important; }
.lt-csa     { color: #0077c8; font-size: .8rem !important; }
.lt-nhh     { color: #003087; font-size: 1.6rem !important; letter-spacing: .1em; }
.lt-wnuas   { color: #0050a0; font-size: .75rem !important; }
.lt-edmeca  { color: #4a7c59; font-size: 1rem !important; }
.lt-sec     { color: #c2185b; font-size: .78rem !important; }
.lt-af      { color: #e67e22; font-size: .9rem !important; }
.lt-flm     { color: #1a5c1a; font-size: .8rem !important; letter-spacing: .04em; }
.lt-nf      { color: #1a3a6e; font-size: .9rem !important; }
.lt-sun     { color: #8b1a1a; font-size: .8rem !important; }
.lt-bc      { color: #0052a5; font-size: .85rem !important; letter-spacing: .04em; }
.lt-cn      { color: #00897b; font-size: .9rem !important; }

@media (max-width: 960px) { .logos-wall { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .logos-wall { grid-template-columns: repeat(2, 1fr); } }

/* ── Newsletter ─────────────────────────────────────────────── */
.newsletter {
  background: var(--magenta);
  padding: 3.5rem 2rem;
  text-align: center;
  color: white;
}
.newsletter h2  { font-size: 1.7rem; font-weight: 800; margin-bottom: .5rem; }
.newsletter p   { opacity: .9; margin-bottom: 1.5rem; }
.nl-form        { display: flex; gap: .6rem; justify-content: center; flex-wrap: wrap; }
.nl-form input  { padding: .75rem 1.2rem; border: none; border-radius: 4px; font-size: .9rem; min-width: 260px; outline: none; }
.nl-form button { background: var(--yellow); color: var(--darker); font-weight: 800; font-size: .85rem; letter-spacing: .08em; padding: .75rem 1.6rem; border: none; border-radius: 4px; cursor: pointer; }
.nl-form button:hover { filter: brightness(.92); }

/* ── Footer ─────────────────────────────────────────────────── */
footer { background: #1a1a2e; color: rgba(255,255,255,.72); padding: 3rem 2rem 1.5rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto 2rem;
}
.footer-brand .org { color: white; font-weight: 800; font-size: .95rem; }
.footer-brand p    { font-size: .82rem; margin-top: .6rem; line-height: 1.65; }
.footer-col h4     { color: white; font-size: .85rem; font-weight: 700; margin-bottom: 1rem; letter-spacing: .05em; }
.footer-col li + li { margin-top: .45rem; }
.footer-col a { font-size: .82rem; transition: color .2s; }
.footer-col a:hover { color: var(--teal); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.2rem;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .76rem;
  flex-wrap: wrap;
  gap: .5rem;
}
.social-row { display: flex; gap: .7rem; }
.social-row a {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: .78rem; font-weight: 700;
  transition: background .2s;
}
.social-row a:hover { background: var(--teal); }

/* ── Search bar ─────────────────────────────────────────────── */
#search-bar { display: none; background: var(--teal-dk); padding: .5rem 2rem; }
#search-bar input { width: 100%; max-width: 500px; padding: .55rem 1rem; border-radius: 4px; border: none; font-size: .9rem; outline: none; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 960px) {
  .prog-grid, .findout-grid, .news-grid { grid-template-columns: 1fr 1fr; }
  .who-inner, .partnership-inner       { grid-template-columns: 1fr; }
  .stats-grid                          { grid-template-columns: 1fr; }
  .footer-grid                         { grid-template-columns: 1fr 1fr; }
  .filmstrip                           { grid-template-columns: 1fr; }
  .filmstrip-img:not(:first-child)     { display: none; }
}
@media (max-width: 600px) {
  .top-bar { padding: 0 1rem; }
  .navbar .nav-inner { flex-direction: column; align-items: flex-start; display: none; }
  .navbar .nav-inner.open { display: flex; }
  .nav-toggle { display: block; }
  .prog-grid, .findout-grid, .news-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
