/* ============================================================
   KAO Foundation — Chief Kayode Adesina Onimole Foundation
   ============================================================ */

:root {
  --navy:        #172747;
  --navy-mid:    #1F3560;
  --navy-light:  #2C4A80;
  --gold:        #C8993A;
  --gold-hover:  #B8871E;
  --gold-pale:   #F5E8CC;
  --cream:       #FAF9F6;
  --sand:        #F0EBE0;
  --sand-deep:   #DDD5C4;
  --ink:         #1A1E2A;
  --ink-soft:    #4A5268;
  --white:       #FFFFFF;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Inter', -apple-system, sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  --max-w: 1200px;
  --r:     10px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

/* ── skip link ── */
.skip-link {
  position: absolute; left: -9999px; top: 8px;
  background: var(--gold); color: var(--navy);
  padding: 10px 18px; border-radius: 4px; z-index: 9999;
  font-weight: 600; font-size: 14px;
}
.skip-link:focus { left: 8px; }
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--gold); outline-offset: 3px;
}

/* ════════════════════════════════
   HEADER
════════════════════════════════ */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid rgba(23,39,71,0.1);
  backdrop-filter: blur(8px);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 40px;
  max-width: var(--max-w); margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.brand-logo { height: 50px; width: auto; }
.brand-text { display: flex; flex-direction: column; gap: 2px; }
.brand-name {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 600; color: var(--navy); line-height: 1.1;
}
.brand-sub {
  font-family: var(--font-mono);
  font-size: 9px; letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--ink-soft);
}
.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav a {
  text-decoration: none; font-size: 14.5px; font-weight: 500;
  color: var(--ink); padding: 4px 0; position: relative; transition: color 0.15s;
}
.main-nav a:hover { color: var(--navy); }
.main-nav a.active { color: var(--navy); }
.main-nav a.active::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 2px; background: var(--gold);
}
.nav-cta {
  background: var(--navy) !important; color: var(--white) !important;
  padding: 9px 22px; border-radius: 999px; font-weight: 600 !important;
  transition: background 0.15s !important;
}
.nav-cta:hover { background: var(--navy-mid) !important; }
.menu-toggle {
  display: none; background: none; border: none;
  cursor: pointer; padding: 8px;
}
.menu-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--ink); margin: 5px 0; transition: all 0.2s;
}

/* ════════════════════════════════
   HERO — FULL BLEED PHOTO
════════════════════════════════ */
.hero-photo {
  position: relative;
  height: 92vh;
  min-height: 600px;
  max-height: 860px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* The photo itself */
.hero-photo__bg {
  position: absolute; inset: 0;
}
.hero-photo__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 62% center; /* focus on the testing scene, not far background */
}

/* Left-to-right dark gradient — text lives on the left third */
.hero-photo__overlay-left {
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10, 18, 40, 0.88) 0%,
    rgba(10, 18, 40, 0.72) 38%,
    rgba(10, 18, 40, 0.20) 62%,
    rgba(10, 18, 40, 0.05) 100%
  );
}

/* Bottom vignette — stat bar legibility */
.hero-photo__overlay-bottom {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 18, 40, 0.82) 0%,
    rgba(10, 18, 40, 0.0) 32%
  );
}

/* Content (headline + CTA) */
.hero-photo__content {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 120px; /* leave room for stat bar */
  display: flex; align-items: center;
}
.hero-photo__inner {
  max-width: var(--max-w); width: 100%;
  margin: 0 auto; padding: 0 40px;
}

.hero-photo__heading {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 600; line-height: 1.05;
  color: var(--white); letter-spacing: -0.02em;
  margin: 0 0 22px; max-width: 600px;
}
.hero-photo__heading em {
  font-style: italic; color: var(--gold);
}
.hero-photo__lede {
  font-size: clamp(15px, 1.6vw, 18px);
  color: rgba(255,255,255,0.86);
  max-width: 500px; margin-bottom: 36px; line-height: 1.6;
}
.hero-photo__actions {
  display: flex; gap: 14px; flex-wrap: wrap;
}

/* Stat bar */
.hero-photo__stats {
  position: relative; z-index: 2;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center;
  padding: 0 40px; height: 90px;
  gap: 0;
  max-width: 100%;
}
.hero-stat {
  display: flex; flex-direction: column; gap: 3px;
  padding: 0 40px 0 0; flex: 1;
}
.hero-stat:first-child { padding-left: 0; }
.hero-stat__num {
  font-family: var(--font-mono);
  font-size: 26px; font-weight: 700; color: var(--white); line-height: 1;
}
.hero-stat__plus { font-size: 18px; color: var(--gold); }
.hero-stat__label {
  font-size: 12px; color: rgba(255,255,255,0.68); line-height: 1.3;
}
.hero-stat__divider {
  width: 1px; height: 36px;
  background: rgba(255,255,255,0.2);
  margin-right: 40px; flex-shrink: 0;
}

/* ════════════════════════════════
   SHARED BUTTONS
════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 999px;
  font-weight: 600; font-size: 15px; text-decoration: none;
  border: 2px solid transparent; cursor: pointer;
  transition: transform 0.15s, background 0.15s, color 0.15s, border-color 0.15s;
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-primary:hover { background: var(--navy-mid); border-color: var(--navy-mid); }

.btn-gold { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-hover); border-color: var(--gold-hover); }

.btn-outline-white {
  background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

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

/* ════════════════════════════════
   EYEBROW
════════════════════════════════ */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold);
  display: flex; align-items: center; gap: 10px; margin-bottom: 18px;
}
.eyebrow::before {
  content: ''; width: 28px; height: 1px; background: var(--gold);
}
.eyebrow--light { color: var(--gold); }
.eyebrow--light::before { background: var(--gold); }

/* ════════════════════════════════
   THREAD DIVIDER
════════════════════════════════ */
.thread-divider { width: 100%; height: 48px; display: block; }

/* ════════════════════════════════
   MISSION STRIP
════════════════════════════════ */
.mission-strip {
  background: var(--navy); color: var(--white); padding: 72px 0;
}
.mission-strip .container {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
}
.mission-strip h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.8vw, 32px); font-weight: 600;
  margin-bottom: 18px; line-height: 1.2;
}
.mission-strip p { color: rgba(255,255,255,0.78); font-size: 16px; line-height: 1.7; }
.mission-list { list-style: none; display: grid; gap: 18px; }
.mission-list li {
  display: flex; gap: 14px; align-items: flex-start;
  font-size: 15px; color: rgba(255,255,255,0.88);
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold); margin-top: 7px; flex-shrink: 0;
}

/* ════════════════════════════════
   SECTION BASE
════════════════════════════════ */
.section { padding: 88px 0; }
.section-head { max-width: 640px; margin: 0 0 52px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 14px; }
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 36px); color: var(--navy);
  font-weight: 600; margin-bottom: 14px; letter-spacing: -0.01em;
}
.section-head p { color: var(--ink-soft); font-size: 16.5px; }

/* ════════════════════════════════
   PROGRAMS GRID
════════════════════════════════ */
.programs-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.program-card {
  background: var(--white);
  border: 1px solid rgba(23,39,71,0.1);
  border-radius: var(--r); padding: 30px 26px;
  transition: border-color 0.2s, transform 0.2s;
}
.program-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.program-icon { width: 44px; height: 44px; margin-bottom: 20px; }
.program-card h3 {
  font-family: var(--font-display); font-size: 19px;
  color: var(--navy); margin-bottom: 10px; font-weight: 600;
}
.program-card p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.6; }

.reports-strip {
  margin-top: 48px; padding-top: 40px;
  border-top: 1px solid rgba(23,39,71,0.1);
}
.reports-strip__label {
  font-family: var(--font-mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.09em; color: var(--gold);
  margin-bottom: 18px;
}
.reports-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.report-card {
  display: flex; gap: 16px; align-items: center;
  background: var(--white); border: 1px solid rgba(23,39,71,0.1);
  border-radius: var(--r); padding: 22px 24px; text-decoration: none;
  transition: border-color 0.2s, transform 0.2s;
}
.report-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.report-icon { flex-shrink: 0; width: 40px; height: 40px; }
.report-info { display: flex; flex-direction: column; gap: 5px; min-width: 0; flex: 1; }
.report-title {
  font-family: var(--font-display); font-size: 15px; color: var(--navy);
  font-weight: 600; line-height: 1.35;
}
.report-meta {
  font-family: var(--font-mono); font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--ink-soft);
}
.report-cta {
  flex-shrink: 0; display: flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--navy);
  padding-left: 16px; border-left: 1px solid rgba(23,39,71,0.12);
  transition: color 0.2s;
}
.report-cta svg { width: 15px; height: 15px; }
.report-card:hover .report-cta { color: var(--gold-hover); }

/* ════════════════════════════════
   PHOTO FEATURE — split layout
════════════════════════════════ */
.photo-feature {
  padding: 88px 0;
}
.photo-feature .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.photo-feature__image {
  position: relative; overflow: hidden;
}
.photo-feature__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 55% center;
  transition: transform 0.6s ease;
}
.photo-feature:hover .photo-feature__image img {
  transform: scale(1.03);
}
.photo-feature__caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(10,18,40,0.75), transparent);
  padding: 28px 24px 16px;
  display: flex; flex-direction: column; gap: 3px;
}
.photo-feature__tag {
  font-family: var(--font-mono);
  font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--gold);
}
.photo-feature__credit { font-size: 12px; color: rgba(255,255,255,0.7); }

.photo-feature__content {
  background: var(--sand);
  padding: 64px 56px;
  display: flex; flex-direction: column; justify-content: center;
}
.photo-feature__content h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 32px);
  color: var(--navy); font-weight: 600;
  margin-bottom: 20px; line-height: 1.2;
}
.photo-feature__content p {
  color: var(--ink-soft); font-size: 15.5px; line-height: 1.72;
  margin-bottom: 16px;
}
.photo-feature__content p:last-of-type { margin-bottom: 0; }

/* ════════════════════════════════
   GALLERY PREVIEW STRIP
════════════════════════════════ */
.gallery-preview { background: var(--sand); }
.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 14px;
}
.gallery-preview-grid a {
  display: block; overflow: hidden; border-radius: var(--r); position: relative;
}
.gallery-preview-grid img {
  width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease;
}
.gallery-preview-grid a:hover img { transform: scale(1.07); }
.gallery-preview-grid .tall { grid-row: span 2; }

.view-all-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 28px; font-weight: 600; font-size: 15px;
  color: var(--navy); text-decoration: none; transition: color 0.15s;
}
.view-all-link:hover { color: var(--gold); }

/* ════════════════════════════════
   CTA BAND
════════════════════════════════ */
.cta-band {
  background: var(--navy); color: var(--white);
  padding: 80px 0; text-align: center;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 600; margin-bottom: 16px; line-height: 1.25;
  max-width: 700px; margin-left: auto; margin-right: auto;
}
.cta-band p {
  font-size: 17px; color: rgba(255,255,255,0.82);
  max-width: 520px; margin: 0 auto 36px; line-height: 1.6;
}

/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
.site-footer {
  background: var(--ink); color: rgba(250,249,246,0.7); padding: 64px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 48px;
}
.footer-logo {
  height: 54px; width: auto;
  filter: brightness(0) invert(1); opacity: 0.88;
}
.footer-brand p {
  font-size: 14px; color: rgba(250,249,246,0.58); margin-top: 16px; max-width: 280px;
}
.footer-col h4 {
  font-family: var(--font-mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.09em;
  color: rgba(250,249,246,0.4); margin-bottom: 18px; font-weight: 500;
}
.footer-col ul { list-style: none; display: grid; gap: 12px; }
.footer-col a {
  text-decoration: none; font-size: 14.5px; color: rgba(250,249,246,0.75);
  transition: color 0.15s;
}
.footer-col a:hover { color: #E8B85A; }
.footer-col li:not(:has(a)) { font-size: 14.5px; }

.footer-bottom {
  border-top: 1px solid rgba(250,249,246,0.1);
  padding-top: 24px; display: flex;
  justify-content: space-between; align-items: center;
  font-size: 13px; flex-wrap: wrap; gap: 12px;
}
.social-row { display: flex; gap: 12px; }
.social-row a {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(250,249,246,0.2);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: border-color 0.15s;
}
.social-row a:hover { border-color: #E8B85A; }
.social-row svg { width: 16px; height: 16px; fill: rgba(250,249,246,0.8); }

/* ════════════════════════════════
   GALLERY PAGE
════════════════════════════════ */
.page-header {
  background: var(--navy); padding: 64px 0 52px; text-align: center;
}
.page-header .eyebrow {
  justify-content: center; color: var(--gold);
}
.page-header .eyebrow::before { display: none; }
.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 46px); color: var(--white);
  font-weight: 600; margin-bottom: 16px;
}
.page-header p {
  color: rgba(255,255,255,0.75); font-size: 17px;
  max-width: 560px; margin: 0 auto;
}

.gallery-filters {
  display: flex; justify-content: center; gap: 10px;
  flex-wrap: wrap; padding: 40px 0 0;
}
.filter-btn {
  font-family: var(--font-body);
  background: var(--white); border: 1px solid rgba(23,39,71,0.18);
  color: var(--ink); padding: 9px 20px; border-radius: 999px;
  font-size: 14px; font-weight: 500; cursor: pointer; transition: all 0.15s;
}
.filter-btn:hover { border-color: var(--navy); }
.filter-btn.is-active {
  background: var(--navy); border-color: var(--navy); color: var(--white);
}
.masonry-gallery {
  columns: 4 240px; column-gap: 18px; padding: 48px 0 16px;
}
.gallery-item {
  break-inside: avoid; margin-bottom: 18px; border-radius: var(--r);
  overflow: hidden; position: relative; cursor: pointer; background: var(--sand);
}
.gallery-item img { width: 100%; display: block; transition: transform 0.4s; }
.gallery-item:hover img { transform: scale(1.05); }

.gallery-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 32px 16px 14px;
  background: linear-gradient(to top, rgba(23,39,71,0.92), transparent);
  color: var(--white); opacity: 0; transition: opacity 0.2s;
}
.gallery-item:hover .gallery-caption,
.gallery-item:focus-within .gallery-caption { opacity: 1; }
.gallery-caption .cat {
  font-family: var(--font-mono); font-size: 10.5px;
  text-transform: uppercase; letter-spacing: 0.06em; color: #E8B85A;
  display: block; margin-bottom: 4px;
}
.gallery-caption .cap-title { font-size: 14px; font-weight: 600; }

.gallery-item button.expand-btn {
  position: absolute; inset: 0; width: 100%; height: 100%;
  background: transparent; border: none; padding: 0; cursor: pointer;
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(8,14,28,0.95);
  display: none; align-items: center; justify-content: center;
  z-index: 1000; padding: 40px;
}
.lightbox.is-open { display: flex; }
.lightbox-inner {
  max-width: 900px; width: 100%;
  background: var(--white); border-radius: var(--r); overflow: hidden;
}
.lightbox-inner img { width: 100%; max-height: 60vh; object-fit: cover; }
.lightbox-meta { padding: 22px 28px; }
.lightbox-meta .cat {
  font-family: var(--font-mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.06em; color: var(--gold);
}
.lightbox-meta h3 {
  font-family: var(--font-display); color: var(--navy);
  margin: 8px 0 6px; font-size: 21px;
}
.lightbox-meta p { color: var(--ink-soft); font-size: 14.5px; }
.lightbox-close {
  position: fixed; top: 28px; right: 36px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.3);
  color: var(--white); width: 44px; height: 44px; border-radius: 50%;
  font-size: 22px; cursor: pointer; line-height: 1; transition: background 0.15s;
}
.lightbox-close:hover { background: var(--gold); border-color: var(--gold); }

.image-note {
  background: var(--gold-pale); text-align: center;
  padding: 14px 24px; font-size: 13px; color: var(--ink-soft);
}
.image-note strong { color: var(--navy); }

/* ════════════════════════════════
   ABOUT — MISSION & VISION
════════════════════════════════ */
.mission-vision { background: var(--sand); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.mv-card {
  background: var(--white); border: 1px solid rgba(23,39,71,0.1);
  border-radius: var(--r); padding: 40px 36px;
}
.mv-label {
  display: block; font-family: var(--font-mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.09em; color: var(--gold);
  margin-bottom: 16px;
}
.mv-card p {
  font-family: var(--font-display); font-size: 19px; font-weight: 500;
  color: var(--navy); line-height: 1.55;
}

/* ════════════════════════════════
   ABOUT — LEADERSHIP
════════════════════════════════ */
.leader-block {
  display: grid; grid-template-columns: 280px 1fr; gap: 48px;
  padding: 56px 0; border-bottom: 1px solid rgba(23,39,71,0.08);
}
.leader-block:first-of-type { padding-top: 0; }
.leader-block:last-of-type { border-bottom: none; padding-bottom: 0; }
.leader-block--reverse { direction: rtl; }
.leader-block--reverse > * { direction: ltr; }
.leader-photo-wrap { position: sticky; top: 100px; align-self: start; }
.leader-avatar {
  width: 100%; aspect-ratio: 4 / 5; border-radius: var(--r);
  object-fit: cover; object-position: top center; display: block;
  box-shadow: 0 12px 28px rgba(23,39,71,0.16);
}
.leader-avatar.placeholder {
  background: var(--navy); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 52px; font-weight: 600;
}
.leader-bio { max-width: 640px; }
.leader-name {
  font-family: var(--font-display); font-size: 25px; color: var(--navy);
  font-weight: 600; margin-bottom: 6px; line-height: 1.25;
}
.leader-title {
  display: block; font-family: var(--font-mono); font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold);
  margin-bottom: 22px;
}
.leader-bio p { color: var(--ink-soft); font-size: 15.5px; line-height: 1.75; margin-bottom: 16px; }
.leader-bio p:last-child { margin-bottom: 0; }

/* ════════════════════════════════
   ABOUT — BOARD & SPONSORS
════════════════════════════════ */
.board-section { background: var(--sand); }
.board-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.board-card {
  background: var(--white); border: 1px solid rgba(23,39,71,0.1);
  border-radius: var(--r); padding: 30px 22px; text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.board-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.board-avatar {
  width: 56px; height: 56px; margin: 0 auto 16px; border-radius: 50%;
  background: var(--navy); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 600; font-size: 16px;
}
.board-card h3 {
  font-family: var(--font-display); font-size: 15.5px; color: var(--navy);
  font-weight: 600; margin-bottom: 6px; line-height: 1.35;
}
.board-role { font-size: 12.5px; color: var(--ink-soft); }

/* ════════════════════════════════
   ABOUT — PARTNERS
════════════════════════════════ */
.partners-section { background: var(--white); }
.partners-grid {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: nowrap; gap: 24px;
}
.partner-logo {
  flex: 1 1 0; min-width: 0; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  height: 48px;
  filter: grayscale(1); opacity: 0.6;
  transition: filter 0.2s, opacity 0.2s;
}
.partner-logo:hover { filter: grayscale(0); opacity: 1; }
.partner-logo img {
  max-width: 100%; max-height: 100%; width: auto; height: auto;
  object-fit: contain;
}

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */
@media (max-width: 1024px) {
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .photo-feature .container { grid-template-columns: 1fr; }
  .photo-feature__image { min-height: 360px; }
  .photo-feature__content { padding: 48px 40px; }
  .hero-photo__stats { padding: 0 24px; }
  .hero-stat { padding-right: 24px; }
  .hero-stat__divider { margin-right: 24px; }
  .leader-block, .leader-block--reverse { grid-template-columns: 1fr; direction: ltr; }
  .leader-photo-wrap { position: static; max-width: 220px; }
  .board-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .header-inner { padding: 12px 24px; }
  .main-nav { display: none; }
  .main-nav.is-open-mobile {
    display: flex; flex-direction: column; align-items: flex-start;
    position: fixed; top: 74px; left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid rgba(23,39,71,0.1);
    padding: 24px; gap: 18px; z-index: 199; box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  }
  .menu-toggle { display: block; }
  .hero-photo { height: 85vh; min-height: 520px; }
  .hero-photo__overlay-left {
    background: linear-gradient(180deg, rgba(10,18,40,0.78) 0%, rgba(10,18,40,0.55) 60%, rgba(10,18,40,0.2) 100%);
  }
  .hero-photo__content { bottom: 100px; }
  .hero-photo__heading { font-size: 36px; }
  .hero-photo__stats {
    flex-wrap: wrap; height: auto; padding: 16px 24px; gap: 14px;
  }
  .hero-stat { flex: 1 1 40%; padding: 0; }
  .hero-stat__divider { display: none; }
  .hero-stat__num { font-size: 22px; }
  .mission-strip .container { grid-template-columns: 1fr; gap: 36px; }
  .programs-grid { grid-template-columns: 1fr; }
  .gallery-preview-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .section { padding: 56px 0; }
  .masonry-gallery { columns: 1 100%; }
  .photo-feature__content { padding: 40px 24px; }
  .mv-grid { grid-template-columns: 1fr; }
  .board-grid { grid-template-columns: 1fr 1fr; }
  .reports-grid { grid-template-columns: 1fr; }
  .partners-grid { gap: 14px; }
  .partner-logo { height: 34px; }
}
