/* ═══════════════════════════════════════════
   Ramrod Ujuzi Centre — Pratham-inspired design
   ═══════════════════════════════════════════ */

/* ─── TOKENS ─── */
:root {
  --yellow:    #FFBE00;
  --yellow-d:  #d9a000;
  --dark:      #222222;
  --body:      #555555;
  --light-bg:  #f7f7f7;
  --border:    #e5e5e5;
  --container: 1140px;
  --nav-h:     68px;
  --radius:    4px;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--body);
  background: #fff;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── CONTAINER ─── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── SECTION COMMON ─── */
.section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--dark);
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.2;
}
.section-intro {
  font-size: 17px;
  text-align: center;
  color: var(--body);
  max-width: 680px;
  margin: 0 auto 48px;
  line-height: 1.7;
}
.eyebrow-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yellow-d);
  margin-bottom: 6px;
  display: inline-block;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  font-family: inherit;
  transition: background .2s, color .2s;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-yellow { background: var(--yellow); color: var(--dark); }
.btn-yellow:hover { background: var(--yellow-d); }
.btn-dark { background: var(--dark); color: #fff; }
.btn-dark:hover { background: #000; }
.btn-outline-white { background: transparent; border-color: #fff; color: #fff; }
.btn-outline-white:hover { background: #fff; color: var(--dark); }
.btn-large { padding: 14px 32px; font-size: 15px; }

/* ══════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: 0 2px 12px rgba(0,0,0,.1); }

.site-nav {
  display: flex;
  align-items: center;
  height: var(--nav-h);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 4px;
}
.nav-logo-text {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .4px;
  color: var(--dark);
  text-transform: uppercase;
  line-height: 1.2;
  max-width: 110px;
}

.nav-menu {
  display: flex;
  align-items: center;
  margin: 0 auto;
  padding: 0;
  height: 100%;
}
.nav-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  white-space: nowrap;
  transition: color .2s;
  height: 100%;
}
.nav-link:hover { color: var(--yellow-d); }
.chevron { transition: transform .2s; flex-shrink: 0; }
.nav-item:hover .chevron { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-top: 2px solid var(--yellow);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 8px 28px rgba(0,0,0,.12);
  min-width: 230px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .2s, visibility .2s, transform .2s;
  z-index: 200;
}
.nav-item:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-inner { padding: 6px 0; }
.nav-dropdown-link {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  color: var(--dark);
  transition: background .15s, color .15s;
}
.nav-dropdown-link:hover { background: #fffbe6; color: var(--yellow-d); }
.nav-dropdown-link strong { display: block; font-size: 13px; font-weight: 600; }
.nav-dropdown-link small { display: block; font-size: 11px; color: #999; margin-top: 1px; }
.nav-dropdown-wide { min-width: 380px; }
.nav-dropdown-cols { display: grid; grid-template-columns: 1fr 1fr; }
.nav-dropdown-col { padding: 8px 0; }
.nav-dropdown-col-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #bbb;
  padding: 6px 20px;
  display: block;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-social-icons { display: flex; align-items: center; gap: 6px; }
.nav-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: #888;
  transition: color .2s;
}
.nav-social-link:hover { color: var(--dark); }
.nav-social-link svg { width: 15px; height: 15px; }
.nav-search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: #888;
  background: none;
  border: none;
  cursor: pointer;
  transition: color .2s;
}
.nav-search-btn:hover { color: var(--dark); }
.nav-enrol-btn {
  background: var(--yellow);
  color: var(--dark);
  font-size: 13px;
  font-weight: 700;
  font-family: inherit;
  padding: 8px 18px;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: background .2s;
  display: inline-block;
}
.nav-enrol-btn:hover { background: var(--yellow-d); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
}
.hamburger .bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger.open .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open .bar:nth-child(2) { opacity: 0; }
.hamburger.open .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════
   MOBILE DRAWER
══════════════════════════════════════════ */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 1001;
  opacity: 0;
  transition: opacity .3s;
}
.mobile-overlay.visible { opacity: 1; }
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100%;
  background: #fff;
  z-index: 1002;
  overflow-y: auto;
  transition: right .3s ease;
  padding-bottom: 40px;
}
.mobile-drawer.open { right: 0; }
.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}
.mobile-close {
  font-size: 26px;
  color: var(--dark);
  line-height: 1;
  background: none;
  border: none;
  cursor: pointer;
}
.mobile-nav-links { padding: 4px 0; }
.mobile-accordion { border-bottom: 1px solid var(--border); }
.mobile-accordion summary {
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-accordion summary::-webkit-details-marker { display: none; }
.mobile-accordion summary::after { content: '+'; font-size: 18px; color: #aaa; }
.mobile-accordion[open] summary::after { content: '−'; }
.mobile-accordion a {
  display: block;
  padding: 10px 20px 10px 32px;
  font-size: 13px;
  color: var(--body);
  border-bottom: 1px solid #f5f5f5;
}
.mobile-accordion a:hover { color: var(--yellow-d); background: #fffbe6; }
.mobile-link-plain {
  display: block;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  border-bottom: 1px solid var(--border);
}
.mobile-link-plain:hover { color: var(--yellow-d); }
.mobile-enrol-btn {
  display: block;
  margin: 20px;
  padding: 14px;
  background: var(--yellow);
  color: var(--dark);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  border-radius: var(--radius);
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  position: relative;
  height: 82vh;
  min-height: 500px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,.78) 0%,
    rgba(0,0,0,.55) 28%,
    rgba(0,0,0,.15) 55%,
    transparent 72%
  );
  pointer-events: none;
}
.hero-text {
  position: absolute;
  bottom: 80px;
  left: 0;
  z-index: 2;
  max-width: 500px;
  padding: 0 0 0 60px;
}
.hero-title {
  font-size: 34px;
  font-weight: 700;
  color: var(--yellow);
  line-height: 1.25;
  margin-bottom: 14px;
}
.hero-body {
  font-size: 17px;
  color: #fff;
  line-height: 1.65;
  margin-bottom: 20px;
  max-width: 400px;
}
.hero-readmore {
  font-size: 18px;
  font-style: italic;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.6);
  padding-bottom: 2px;
  display: inline-block;
  transition: border-color .2s;
}
.hero-readmore:hover { border-color: #fff; }

/* ══════════════════════════════════════════
   ABOUT US
══════════════════════════════════════════ */
.about-section { padding: 80px 0; background: #fff; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 48px;
}
.about-media img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius);
}
.about-content p { font-size: 16px; line-height: 1.85; color: var(--body); margin-bottom: 14px; }
.about-readmore {
  display: inline-block;
  font-style: italic;
  font-size: 17px;
  color: var(--yellow-d);
  border-bottom: 1px solid var(--yellow-d);
  padding-bottom: 2px;
  margin-top: 8px;
  transition: opacity .2s;
}
.about-readmore:hover { opacity: .7; }

/* ══════════════════════════════════════════
   STATS BAND
══════════════════════════════════════════ */
.stats-band { background: var(--yellow); padding: 44px 0; }
.stats-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}
.stat-item { text-align: center; flex: 1; min-width: 140px; }
.stat-num {
  display: block;
  font-size: 44px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 12px;
  font-weight: 700;
  color: rgba(0,0,0,.65);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ══════════════════════════════════════════
   NEWS CARDS  (3-col)
══════════════════════════════════════════ */
.news-section { padding: 80px 0; background: var(--light-bg); }
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.news-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow .25s, transform .25s;
}
.news-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,.1); transform: translateY(-4px); }
.news-card-img { position: relative; height: 210px; overflow: hidden; }
.news-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.news-card:hover .news-card-img img { transform: scale(1.04); }
.news-card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--yellow);
  color: var(--dark);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 2px;
}
.news-card-body { padding: 20px; }
.news-card-body h3 { font-size: 15px; font-weight: 700; color: var(--dark); line-height: 1.4; margin-bottom: 8px; }
.news-card-body p { font-size: 13px; color: var(--body); line-height: 1.6; margin-bottom: 14px; }
.news-card-link { font-size: 13px; font-style: italic; color: var(--yellow-d); border-bottom: 1px solid var(--yellow-d); padding-bottom: 1px; }
.news-card-link:hover { opacity: .7; }

/* ══════════════════════════════════════════
   CAROUSEL
══════════════════════════════════════════ */
.carousel-section { padding: 80px 0; background: #fff; overflow: hidden; }
.carousel-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
}
.carousel-controls { display: flex; gap: 8px; }
.carousel-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--dark);
  cursor: pointer;
  transition: background .2s, border-color .2s;
}
.carousel-btn:hover { background: var(--yellow); border-color: var(--yellow); }
.carousel-wrapper { overflow: hidden; }
.carousel-track {
  display: flex;
  gap: 24px;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.story-card {
  flex: 0 0 360px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .25s;
}
.story-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,.1); }
.story-card-img { position: relative; height: 200px; overflow: hidden; }
.story-card-img img { width: 100%; height: 100%; object-fit: cover; }
.story-card-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--yellow);
  color: var(--dark);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 2px;
}
.story-card-body { padding: 18px; }
.story-card-body h3 { font-size: 14px; font-weight: 700; color: var(--dark); line-height: 1.4; margin-bottom: 6px; }
.story-card-body p { font-size: 13px; color: var(--body); line-height: 1.6; margin-bottom: 12px; }
.story-read-link { font-size: 13px; font-style: italic; color: var(--yellow-d); border-bottom: 1px solid var(--yellow-d); padding-bottom: 1px; }
.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 28px; }
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ddd;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.dot.active { background: var(--yellow-d); transform: scale(1.3); }

/* ══════════════════════════════════════════
   PROGRAMS GRID
══════════════════════════════════════════ */
.programs-section { padding: 80px 0; background: var(--light-bg); }
.programs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.program-card {
  position: relative;
  height: 220px;
  border-radius: var(--radius);
  overflow: hidden;
}
.program-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
  display: block;
}
.program-card:hover .program-card-img { transform: scale(1.06); }
.program-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.78) 0%, rgba(0,0,0,.08) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px 14px;
}
.program-card-icon { font-size: 22px; margin-bottom: 5px; }
.program-card-overlay strong { font-size: 14px; font-weight: 700; color: #fff; display: block; }
.program-card-overlay small { font-size: 11px; color: rgba(255,255,255,.75); display: block; margin-top: 2px; }
.program-card-more {
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  text-align: center;
  padding: 20px;
}
.program-card-more strong { color: #fff; font-size: 14px; display: block; }
.program-card-more small { color: rgba(255,255,255,.6); font-size: 11px; display: block; }

/* ══════════════════════════════════════════
   PULL QUOTE
══════════════════════════════════════════ */
.quote-section { padding: 64px 0; background: var(--yellow); }
.pull-quote { max-width: 820px; margin: 0 auto; text-align: center; }
.pull-quote blockquote {
  font-size: 21px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 16px;
}
.pull-quote figcaption { font-size: 14px; color: rgba(0,0,0,.65); font-weight: 600; }

/* ══════════════════════════════════════════
   OUR STORY TABS
══════════════════════════════════════════ */
.story-section { padding: 80px 0; background: #fff; }
.story-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  border-bottom: 2px solid var(--border);
  margin-bottom: 40px;
}
.story-tab {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--body);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: color .2s, border-color .2s;
  font-family: inherit;
}
.story-tab:hover { color: var(--dark); }
.story-tab.active { color: var(--yellow-d); border-bottom-color: var(--yellow-d); }
.story-panel { display: none; }
.story-panel.active { display: block; }
.launch-photos {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 20px;
  max-width: 780px;
  margin: 0 auto 32px;
}
.launch-photos img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--radius);
}
.launch-speech {
  max-width: 700px;
  margin: 0 auto;
  background: var(--light-bg);
  border-left: 4px solid var(--yellow);
  padding: 32px 36px;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.launch-speech p { font-size: 16px; line-height: 1.85; color: var(--body); margin-bottom: 16px; }
.launch-speech cite { font-size: 14px; font-style: italic; color: #888; }
.journey-timeline { max-width: 680px; margin: 0 auto; }
.journey-item { display: flex; gap: 20px; margin-bottom: 32px; }
.journey-dot {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--yellow);
  margin-top: 5px;
  position: relative;
}
.journey-dot::after {
  content: '';
  position: absolute;
  top: 14px;
  left: 6px;
  width: 2px;
  height: calc(100% + 20px);
  background: var(--yellow);
  opacity: .3;
}
.journey-item:last-child .journey-dot::after { display: none; }
.journey-year {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--yellow-d);
  display: block;
  margin-bottom: 4px;
}
.journey-content h4 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.journey-content p { font-size: 14px; color: var(--body); line-height: 1.6; }
.voices-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}
.voice-card {
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 28px;
  border-left: 3px solid var(--yellow);
}
.voice-card blockquote { font-size: 15px; font-style: italic; color: var(--dark); line-height: 1.7; margin-bottom: 10px; }
.voice-card cite { font-size: 12px; color: #999; }

/* ══════════════════════════════════════════
   PHILOSOPHY
══════════════════════════════════════════ */
.philosophy-section { padding: 80px 0; background: var(--light-bg); }
.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.philosophy-img { position: relative; }
.philosophy-img > img { width: 100%; height: 400px; object-fit: cover; border-radius: var(--radius); }
.philosophy-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--dark);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 12px;
}
.philosophy-badge strong { display: block; font-size: 13px; }
.philosophy-badge small { display: block; color: rgba(255,255,255,.65); font-size: 11px; margin-top: 2px; }
.philosophy-text h2 { font-size: 28px; font-weight: 700; color: var(--dark); line-height: 1.35; margin-bottom: 16px; margin-top: 8px; }
.philosophy-text p { font-size: 15px; color: var(--body); line-height: 1.85; margin-bottom: 14px; }
.check-list { margin: 20px 0; }
.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--dark);
  margin-bottom: 10px;
}
.check-list li::before {
  content: '✓';
  width: 22px;
  height: 22px;
  background: rgba(255,190,0,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--yellow-d);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════ */
.how-section { padding: 80px 0; background: #fff; }
.steps-grid { display: flex; align-items: flex-start; justify-content: center; margin-top: 48px; }
.step-card {
  flex: 1;
  max-width: 290px;
  padding: 36px 24px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-align: center;
}
.step-icon { font-size: 36px; margin-bottom: 12px; }
.step-number { font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--yellow-d); margin-bottom: 8px; }
.step-card h3 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.step-card p { font-size: 13px; color: var(--body); line-height: 1.6; }
.step-arrow { display: flex; align-items: center; justify-content: center; padding: 0 12px; color: #ccc; flex-shrink: 0; margin-top: 80px; }

/* ══════════════════════════════════════════
   TEAM / LEADERS TEASER
══════════════════════════════════════════ */
.team-section { padding: 80px 0; background: var(--light-bg); }
.team-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 40px; gap: 20px; }
.team-header-text h2 { font-size: 30px; font-weight: 700; color: var(--dark); line-height: 1.3; margin-top: 6px; margin-bottom: 8px; }
.team-header-text p { font-size: 15px; color: var(--body); max-width: 480px; line-height: 1.6; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow .25s, transform .25s;
  display: block;
}
.team-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.1); transform: translateY(-4px); }
.team-card-img { height: 260px; overflow: hidden; }
.team-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform .4s; }
.team-card:hover .team-card-img img { transform: scale(1.04); }
.team-card-body { padding: 20px; }
.team-card-body h3 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.team-card-role { display: block; font-size: 11px; color: var(--yellow-d); font-weight: 700; margin-bottom: 8px; text-transform: uppercase; letter-spacing: .5px; }
.team-card-body p { font-size: 13px; color: var(--body); line-height: 1.6; margin-bottom: 12px; }
.team-card-link { font-size: 13px; font-style: italic; color: var(--yellow-d); border-bottom: 1px solid var(--yellow-d); padding-bottom: 1px; }
.team-cta { text-align: center; margin-top: 40px; }

/* ══════════════════════════════════════════
   COURSES
══════════════════════════════════════════ */
.courses-section { padding: 80px 0; background: #fff; }
.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.course-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  transition: box-shadow .2s, transform .2s;
}
.course-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,.08); transform: translateY(-2px); }
.course-icon { font-size: 30px; margin-bottom: 12px; }
.course-card h3 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.course-card p { font-size: 13px; color: var(--body); line-height: 1.6; }

/* ══════════════════════════════════════════
   COMING SOON
══════════════════════════════════════════ */
.coming-section { padding: 80px 0; background: var(--dark); }
.coming-section .section-title { color: #fff; }
.coming-section .section-intro { color: rgba(255,255,255,.65); }
.coming-grid { display: flex; align-items: flex-start; justify-content: center; margin-top: 48px; }
.coming-card {
  flex: 1;
  max-width: 290px;
  padding: 36px 24px;
  background: rgba(255,255,255,.07);
  border-radius: var(--radius);
  text-align: center;
}
.coming-card .step-icon { font-size: 36px; margin-bottom: 12px; }
.coming-card h3 { color: #fff; font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.coming-card p { color: rgba(255,255,255,.7); font-size: 13px; line-height: 1.6; }
.coming-arrow { display: flex; align-items: center; justify-content: center; padding: 0 12px; color: #555; flex-shrink: 0; margin-top: 80px; }

/* ══════════════════════════════════════════
   ENROL TIERS
══════════════════════════════════════════ */
.enrol-section { padding: 80px 0; background: var(--light-bg); }
.enrol-content { text-align: center; }
.enrol-content h2 { font-size: 32px; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.enrol-content > p { font-size: 16px; color: var(--body); max-width: 580px; margin: 0 auto 48px; line-height: 1.7; }
.tier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; text-align: left; }
.tier-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 24px; transition: box-shadow .2s; }
.tier-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.1); }
.tier-featured { border-top: 3px solid var(--yellow); }
.tier-card-pop { background: var(--yellow); color: var(--dark); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 4px 12px; border-radius: 30px; display: inline-block; margin-bottom: 14px; }
.tier-amount { font-size: 30px; font-weight: 800; color: var(--dark); display: block; margin-bottom: 4px; }
.tier-per { font-size: 13px; font-weight: 600; color: var(--body); display: block; margin-bottom: 14px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.tier-card p { font-size: 13px; color: var(--body); line-height: 1.6; }

/* ══════════════════════════════════════════
   FAQ
══════════════════════════════════════════ */
.faq-section { padding: 80px 0; background: #fff; }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: inherit;
}
.faq-question::after { content: '+'; font-size: 22px; font-weight: 300; color: var(--yellow-d); flex-shrink: 0; }
.faq-item.open .faq-question::after { content: '−'; }
.faq-answer {
  font-size: 15px;
  color: var(--body);
  line-height: 1.8;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding-bottom .3s;
}
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 20px; }

/* ══════════════════════════════════════════
   GALLERY
══════════════════════════════════════════ */
.gallery-section { padding: 80px 0; background: var(--light-bg); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 10px;
  margin-top: 48px;
}
.gallery-item { border-radius: var(--radius); overflow: hidden; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

/* ══════════════════════════════════════════
   CTA BAND
══════════════════════════════════════════ */
.cta-band { padding: 60px 0; background: var(--dark); }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-band-text h2 { font-size: 26px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.cta-band-text p { font-size: 15px; color: rgba(255,255,255,.7); }
.cta-band-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
.contact-section { padding: 80px 0; background: var(--light-bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  margin-top: 48px;
  align-items: start;
}
.contact-info h3 { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 24px; }
.contact-row { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 24px; }
.contact-row svg { flex-shrink: 0; color: var(--yellow-d); margin-top: 2px; }
.contact-row strong { display: block; font-size: 13px; font-weight: 700; color: var(--dark); margin-bottom: 2px; }
.contact-row p { font-size: 14px; color: var(--body); line-height: 1.6; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-input {
  width: 100%;
  padding: 12px 16px;
  font-size: 14px;
  font-family: inherit;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  color: var(--dark);
  outline: none;
  transition: border-color .2s;
  display: block;
  margin-top: 14px;
}
.form-input:first-child { margin-top: 0; }
.form-row .form-input { margin-top: 0; }
.form-input:focus { border-color: var(--yellow); }
textarea.form-input { resize: vertical; min-height: 120px; }
.form-submit {
  width: 100%;
  padding: 14px;
  margin-top: 14px;
  background: var(--dark);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  font-family: inherit;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background .2s;
}
.form-submit:hover { background: #000; }
.form-success { text-align: center; padding: 32px; font-size: 16px; color: #333; }

/* ══════════════════════════════════════════
   NEWSLETTER
══════════════════════════════════════════ */
.newsletter-section { padding: 60px 0; background: var(--dark); }
.newsletter-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.newsletter-text h3 { font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.newsletter-text p { font-size: 14px; color: rgba(255,255,255,.7); }
.newsletter-form { display: flex; gap: 12px; flex-wrap: wrap; flex: 1; max-width: 480px; }
.newsletter-input {
  flex: 1;
  min-width: 200px;
  padding: 12px 16px;
  font-size: 14px;
  font-family: inherit;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  background: rgba(255,255,255,.1);
  color: #fff;
  outline: none;
}
.newsletter-input::placeholder { color: rgba(255,255,255,.5); }
.newsletter-input:focus { border-color: var(--yellow); }
.newsletter-success { color: var(--yellow); font-size: 14px; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer { background: #111; padding: 60px 0 0; color: rgba(255,255,255,.65); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand-logo img { width: 38px; height: 38px; object-fit: contain; border-radius: 4px; }
.footer-brand-logo span { font-size: 12px; font-weight: 800; color: #fff; text-transform: uppercase; letter-spacing: .4px; }
.footer-tagline { font-size: 13px; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.7);
  transition: background .2s, color .2s;
}
.footer-social a:hover { background: var(--yellow); color: var(--dark); }
.footer-col h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #fff; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,.65); margin-bottom: 10px; transition: color .2s; }
.footer-col a:hover { color: var(--yellow); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { color: rgba(255,255,255,.45); }

/* ══════════════════════════════════════════
   LEADERS PAGE
══════════════════════════════════════════ */
.leaders-banner { background: var(--dark); padding: 80px 0 60px; position: relative; overflow: hidden; }
.leaders-banner::before { content: ''; position: absolute; inset: 0; background: url('images/oreyo ochieng.jpeg') center/cover no-repeat; opacity: .22; }
.leaders-banner-content { position: relative; text-align: center; }
.leaders-banner-breadcrumb { display: inline-block; font-size: 13px; color: rgba(255,255,255,.7); margin-bottom: 20px; transition: color .2s; }
.leaders-banner-breadcrumb:hover { color: #fff; }
.leaders-banner h1 { font-size: 44px; font-weight: 800; color: #fff; margin-bottom: 14px; }
.leaders-banner p { font-size: 16px; color: rgba(255,255,255,.8); max-width: 560px; margin: 0 auto 36px; line-height: 1.7; }
.leaders-banner-stats { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; }
.lbstat { text-align: center; }
.lbstat-num { display: block; font-size: 30px; font-weight: 800; color: var(--yellow); line-height: 1; }
.lbstat-label { font-size: 11px; color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; display: block; }

.leaders-filter { background: #fff; border-bottom: 1px solid var(--border); position: sticky; top: var(--nav-h); z-index: 100; }
.leaders-filter-inner { display: flex; overflow-x: auto; }
.filter-btn {
  padding: 16px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--body);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: color .2s, border-color .2s;
  font-family: inherit;
}
.filter-btn:hover { color: var(--dark); }
.filter-btn.active { color: var(--yellow-d); border-bottom-color: var(--yellow-d); }

.leaders-grid-section { padding: 60px 0; background: var(--light-bg); }
.leaders-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.leader-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow .25s, transform .25s, opacity .3s;
}
.leader-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.1); transform: translateY(-4px); }
.leader-card.filtered-out { opacity: 0; transform: scale(.95); pointer-events: none; }
.leader-card-img { position: relative; height: 280px; overflow: hidden; }
.leader-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.leader-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s;
}
.leader-card:hover .leader-card-overlay { opacity: 1; }
.leader-read-btn { background: var(--yellow); color: var(--dark); font-size: 13px; font-weight: 700; padding: 10px 20px; border-radius: var(--radius); border: none; cursor: pointer; font-family: inherit; }
.leader-initials-wrap { height: 280px; background: #f0f0f0; display: flex; align-items: center; justify-content: center; font-size: 48px; font-weight: 800; color: #ccc; }
.leader-card-body { padding: 20px; }
.leader-card-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 10px; }
.leader-tag { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 3px 8px; border-radius: 2px; background: #f0f0f0; color: #777; }
.leader-tag-board { background: rgba(255,190,0,.2); color: #7a5800; }
.leader-tag-mentor { background: rgba(0,150,100,.12); color: #005f40; }
.leader-tag-specialist { background: rgba(0,100,200,.12); color: #003f88; }
.leader-card-body h3 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.leader-card-role { display: block; font-size: 12px; color: var(--yellow-d); font-weight: 600; margin-bottom: 8px; }
.leader-card-body p { font-size: 13px; color: var(--body); line-height: 1.6; margin-bottom: 12px; }
.leader-profile-link { font-size: 13px; font-style: italic; color: var(--yellow-d); background: none; border: none; border-bottom: 1px solid var(--yellow-d); padding-bottom: 1px; cursor: pointer; font-family: inherit; transition: opacity .2s; }
.leader-profile-link:hover { opacity: .7; }

.leaders-cta { padding: 60px 0; background: var(--dark); }
.leaders-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.leaders-cta-inner h2 { font-size: 24px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.leaders-cta-inner p { font-size: 14px; color: rgba(255,255,255,.7); }

.profile-modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.7); z-index: 2000; display: flex; align-items: center; justify-content: center; padding: 24px; opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s; }
.profile-modal-overlay.active { opacity: 1; visibility: visible; }
.profile-modal { background: #fff; border-radius: var(--radius); max-width: 640px; width: 100%; max-height: 85vh; overflow-y: auto; position: relative; padding: 40px; transform: translateY(20px); transition: transform .3s; }
.profile-modal-overlay.active .profile-modal { transform: translateY(0); }
.profile-modal-close { position: absolute; top: 16px; right: 16px; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; background: #f0f0f0; border-radius: 50%; border: none; cursor: pointer; color: var(--dark); font-size: 18px; }
.profile-modal-close:hover { background: #e0e0e0; }
.profile-modal-header { display: flex; gap: 24px; align-items: flex-start; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.profile-modal-img { width: 90px; height: 90px; border-radius: 50%; object-fit: cover; flex-shrink: 0; background: #f0f0f0; }
.profile-modal-meta h2 { font-size: 20px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.profile-modal-meta .role { font-size: 13px; color: var(--yellow-d); font-weight: 600; margin-bottom: 10px; display: block; }
.profile-modal-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.profile-modal-body p { font-size: 15px; color: var(--body); line-height: 1.8; margin-bottom: 12px; }
.profile-modal-body blockquote { border-left: 3px solid var(--yellow); padding-left: 16px; font-style: italic; color: var(--dark); font-size: 15px; margin: 16px 0; }

/* ══════════════════════════════════════════
   PAGE BANNER (inner pages)
══════════════════════════════════════════ */
.page-banner {
  position: relative;
  background: var(--dark);
  padding: 80px 0 60px;
  overflow: hidden;
}
.page-banner-bg {
  position: absolute;
  inset: 0;
}
.page-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: .22;
}
.page-banner-content {
  position: relative;
  text-align: center;
}
.page-banner-breadcrumb {
  display: inline-block;
  font-size: 13px;
  color: rgba(255,255,255,.7);
  margin-bottom: 20px;
  transition: color .2s;
}
.page-banner-breadcrumb:hover { color: var(--yellow); }
.page-banner-content h1 {
  font-size: 44px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.2;
}
.page-banner-content > p {
  font-size: 16px;
  color: rgba(255,255,255,.8);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.page-banner-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════════
   HERO ADDITIONS
══════════════════════════════════════════ */
.hero-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 12px;
  opacity: .9;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════════
   NAV ACTIVE STATE
══════════════════════════════════════════ */
.nav-item.nav-active > .nav-link {
  color: var(--yellow-d);
  font-weight: 700;
}

/* ══════════════════════════════════════════
   COURSE CARD LINK
══════════════════════════════════════════ */
.course-card-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  font-style: italic;
  color: var(--yellow-d);
  border-bottom: 1px solid var(--yellow-d);
  padding-bottom: 1px;
  transition: opacity .2s;
}
.course-card-link:hover { opacity: .7; }

/* ══════════════════════════════════════════
   SERVICES DETAIL
══════════════════════════════════════════ */
.services-detail-section { padding: 80px 0; background: var(--light-bg); }
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}
.service-detail-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 32px 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: box-shadow .2s, transform .2s;
}
.service-detail-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,.08); transform: translateY(-3px); }
.service-detail-icon-wrap {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: rgba(255,190,0,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.service-detail-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.service-detail-body p {
  font-size: 14px;
  color: var(--body);
  line-height: 1.7;
  margin-bottom: 8px;
}
.service-detail-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
  font-style: italic;
  color: var(--yellow-d);
  border-bottom: 1px solid var(--yellow-d);
  padding-bottom: 1px;
  transition: opacity .2s;
}
.service-detail-link:hover { opacity: .7; }

/* ══════════════════════════════════════════
   CONTACT SOCIAL BUTTONS
══════════════════════════════════════════ */
.contact-social-links { margin-top: 28px; }
.contact-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: background .2s, border-color .2s;
}
.contact-social-btn:hover { background: var(--yellow); border-color: var(--yellow); }

/* ══════════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════════ */
.fade-up { opacity: 1; transform: none; }
html.js .fade-up { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
html.js .fade-up.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .about-grid, .philosophy-grid, .contact-grid { grid-template-columns: 1fr; }
  .news-grid, .courses-grid, .leaders-grid, .team-grid { grid-template-columns: 1fr 1fr; }
  .voices-grid, .tier-grid, .service-detail-grid { grid-template-columns: 1fr; }
  .team-header { flex-direction: column; gap: 16px; }
  .about-grid { gap: 32px; }
}
@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .nav-menu, .nav-social-icons, .nav-search-btn { display: none; }
  .nav-right {
    margin-left: auto;
    gap: 8px;
  }
  .nav-enrol-btn {
    order: 1;
    padding: 8px 14px;
  }
  .hamburger {
    order: 2;
    display: flex;
    margin-left: auto;
  }
  .section-title { font-size: 26px; }
  .hero { height: 65vh; min-height: 420px; }
  .hero-text { padding: 0 0 0 24px; bottom: 40px; max-width: 92%; }
  .hero-title { font-size: 24px; }
  .hero-body { font-size: 15px; }
  .steps-grid { flex-direction: column; align-items: center; }
  .step-arrow, .coming-arrow { display: none; }
  .coming-grid { flex-direction: column; align-items: center; }
  .news-grid, .courses-grid, .leaders-grid, .team-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.tall, .gallery-item.wide { grid-row: auto; grid-column: auto; }
  .cta-band-inner, .newsletter-inner, .leaders-cta-inner { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .profile-modal { padding: 24px; }
  .profile-modal-header { flex-direction: column; align-items: center; text-align: center; }
  .leaders-banner h1 { font-size: 30px; }
  .page-banner-content h1 { font-size: 28px; }
  .page-banner-stats { gap: 24px; }
  .service-detail-card { flex-direction: column; }
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .launch-photos { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
