/* ==========================================================================
   IDDA — Premium Design System
   Igbo Diaspora Development Agency Inc. Canada
   ========================================================================== */

:root {
  /* Brand — deep emerald + ceremonial gold (not purple/cream AI defaults) */
  --green-950: #061a14;
  --green-900: #0a2f24;
  --green-800: #0f4334;
  --green-700: #145c46;
  --green-600: #1a7a5c;
  --green-500: #228f6c;
  --gold-500: #c9a227;
  --gold-400: #dbb84a;
  --gold-300: #e8cd7a;
  --terracotta: #b85c38;
  --ivory: #f6f3ec;
  --ivory-2: #efeae0;
  --sand: #e4dccb;
  --ink: #121a17;
  --ink-soft: #3a4742;
  --muted: #6b7872;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.14);
  --shadow-sm: 0 4px 20px rgba(6, 26, 20, 0.06);
  --shadow-md: 0 12px 40px rgba(6, 26, 20, 0.1);
  --shadow-lg: 0 24px 80px rgba(6, 26, 20, 0.16);
  --radius: 18px;
  --radius-sm: 10px;
  --radius-lg: 28px;
  --nav-h: 108px;
  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1200px;
  --section-pad: clamp(4.5rem, 8vw, 7.5rem);

  --bg: var(--ivory);
  --bg-elevated: var(--white);
  --text: var(--ink);
  --text-muted: var(--muted);
  --border: rgba(18, 26, 23, 0.08);
  --primary: var(--green-800);
  --accent: var(--gold-500);
}


html.high-contrast {
  --text: #000;
  --bg: #fff;
  --primary: #003d2a;
  --accent: #7a5a00;
}

html.reduce-motion *,
html.reduce-motion *::before,
html.reduce-motion *::after {
  animation-duration: 0.01ms !important;
  transition-duration: 0.01ms !important;
  scroll-behavior: auto !important;
}

*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

img, video, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.25s var(--ease); }
ul, ol { list-style: none; }
button, input, textarea, select { font: inherit; color: inherit; }
button { border: 0; background: none; cursor: pointer; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 1rem; top: -100px; z-index: 10000;
  background: var(--green-900); color: #fff; padding: 0.75rem 1.25rem; border-radius: 8px;
}
.skip-link:focus { top: 1rem; }

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.section { padding: var(--section-pad) 0; position: relative; }
.section--alt { background: var(--ivory-2); }
.section--dark {
  background: linear-gradient(160deg, var(--green-950), var(--green-800));
  color: #f5f1ea;
}
.section--dark .section-eyebrow { color: var(--gold-300); }
.section--dark .section-title { color: #fff; }
.section--dark .section-lead { color: rgba(245, 241, 234, 0.78); }

.section-header { max-width: 720px; margin-bottom: 3rem; }
.section-header--center { text-align: center; margin-inline: auto; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-display); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--green-600);
  margin-bottom: 0.85rem;
}
.section-eyebrow::before {
  content: ""; width: 28px; height: 2px; background: var(--gold-500);
}
.section-title {
  font-family: var(--font-display); font-weight: 700; line-height: 1.15;
  font-size: clamp(1.85rem, 3.5vw, 3rem); letter-spacing: -0.02em;
  color: var(--text); margin-bottom: 1rem;
}
.section-title--single {
  white-space: nowrap;
  font-size: clamp(1.35rem, 3.2vw, 2.75rem);
}
.section-lead--single {
  white-space: nowrap;
  max-width: none !important;
  width: max-content;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 900px) {
  .section-title--single,
  .section-lead--single {
    white-space: normal;
    width: auto;
  }
}
.section-lead {
  font-size: 1.05rem; color: var(--text-muted); max-width: 560px;
}
.section-header--center .section-lead { margin-inline: auto; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  font-family: var(--font-display); font-weight: 600; font-size: 0.9rem;
  letter-spacing: 0.02em; padding: 0.95rem 1.6rem; border-radius: 999px;
  border: 1.5px solid transparent; transition: all 0.35s var(--ease);
  white-space: nowrap; position: relative; overflow: hidden;
}
.btn--sm { padding: 0.65rem 1.15rem; font-size: 0.8rem; }
.btn--block { width: 100%; }
.btn--primary {
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
  color: #fff; box-shadow: 0 10px 30px rgba(15, 67, 52, 0.28);
}
.btn--primary:hover {
  transform: translateY(-2px); box-shadow: 0 16px 40px rgba(15, 67, 52, 0.38);
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--green-950); box-shadow: 0 10px 28px rgba(201, 162, 39, 0.3);
}
.btn--gold:hover { transform: translateY(-2px); }
.btn--outline {
  border-color: rgba(255,255,255,0.45); color: #fff; background: transparent;
}
.btn--outline:hover { background: rgba(255,255,255,0.1); }
.btn--ghost {
  border-color: var(--border); color: var(--text); background: transparent;
}
.btn--ghost:hover { border-color: var(--green-600); color: var(--green-700); }
.btn--light {
  background: #fff; color: var(--green-900);
}
.btn--light:hover { transform: translateY(-2px); }

/* Donate — green + red strokes (2 only) */
.btn--donate-stroke {
  position: relative;
  background: #fff;
  color: var(--green-900);
  border: 2px solid var(--green-700);
  box-shadow:
    inset 0 0 0 2px #c62828,
    0 8px 24px rgba(15, 67, 52, 0.12);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  overflow: hidden;
}
.btn--donate-stroke i { color: #c62828; }
.btn--donate-stroke:hover {
  transform: translateY(-2px);
  color: var(--green-950);
  background: linear-gradient(135deg, #fff 0%, #eef7f2 55%, #fff5f5 100%);
  border-color: var(--green-600);
  box-shadow:
    inset 0 0 0 2px #e53935,
    0 12px 32px rgba(198, 40, 40, 0.16);
}

.site-nav__actions .btn--primary {
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Modals */
.modal {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s var(--ease), visibility 0.3s;
}
.modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.modal[hidden] { display: none !important; }
.modal.is-open[hidden] { display: grid !important; }
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 26, 20, 0.62);
  backdrop-filter: blur(8px);
}
.modal__dialog {
  position: relative;
  width: min(100%, 640px);
  max-height: min(92vh, 860px);
  overflow: auto;
  background: var(--bg-elevated);
  color: var(--text);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  padding: 1.75rem 1.75rem 1.5rem;
  transform: translateY(18px) scale(0.98);
  transition: transform 0.35s var(--ease);
}
.modal.is-open .modal__dialog { transform: translateY(0) scale(1); }
.modal__dialog--donate {
  border-top: 3px solid var(--green-700);
  box-shadow:
    var(--shadow-lg),
    inset 0 0 0 1px rgba(198, 40, 40, 0.25);
}

/* Large search modal */
.modal--search {
  place-items: start center;
  padding: clamp(1.5rem, 6vh, 4rem) 1rem 1.5rem;
}
.modal__dialog--search {
  width: min(100%, 920px);
  max-height: min(88vh, 820px);
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(ellipse 80% 50% at 0% 0%, rgba(201, 162, 39, 0.1), transparent 55%),
    radial-gradient(ellipse 70% 45% at 100% 0%, rgba(15, 67, 52, 0.08), transparent 50%),
    var(--bg-elevated);
  border-top: 3px solid var(--gold-500);
}
.modal--search .modal__close {
  top: 1.15rem;
  right: 1.15rem;
  z-index: 2;
}
.search-modal {
  display: flex;
  flex-direction: column;
  min-height: 0;
  height: 100%;
  max-height: min(88vh, 820px);
}
.search-modal__head {
  padding: 1.75rem 1.75rem 1.15rem;
  border-bottom: 1px solid var(--border);
}
.search-modal__head .section-eyebrow {
  margin-bottom: 0.85rem;
}
.search-modal__field {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.15rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(15, 67, 52, 0.14);
  box-shadow: 0 10px 30px rgba(6, 26, 20, 0.06);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.search-modal__field:focus-within {
  border-color: rgba(201, 162, 39, 0.55);
  box-shadow: 0 12px 36px rgba(6, 26, 20, 0.1), 0 0 0 4px rgba(201, 162, 39, 0.12);
}
.search-modal__field > i {
  color: var(--green-700);
  font-size: 1.15rem;
}
.search-modal__field input {
  flex: 1;
  border: 0;
  outline: none;
  background: transparent;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-family: var(--font-display);
  color: var(--text);
  min-width: 0;
}
.search-modal__field input::placeholder {
  color: rgba(15, 67, 52, 0.4);
  font-weight: 400;
}
.search-modal__hint {
  display: none;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(15, 67, 52, 0.45);
  border: 1px solid rgba(15, 67, 52, 0.16);
  border-radius: 8px;
  padding: 0.28rem 0.45rem;
  background: rgba(15, 67, 52, 0.04);
}
@media (min-width: 700px) {
  .search-modal__hint { display: inline-block; }
}
.search-modal__body {
  padding: 1rem 1.25rem 1.5rem;
  overflow: auto;
  flex: 1;
  min-height: 0;
}
.search-modal__status {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0.35rem 0.5rem 0.85rem;
}
.search-modal__results {
  display: grid;
  gap: 0.45rem;
}
.search-result {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.95rem;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.55);
  color: inherit;
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.search-result:hover,
.search-result.is-active {
  background: #fff;
  border-color: rgba(15, 67, 52, 0.12);
  box-shadow: 0 10px 28px rgba(6, 26, 20, 0.08);
  transform: translateY(-1px);
}
.search-result.is-hidden { display: none; }
.search-result__icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(26, 122, 92, 0.12), rgba(201, 162, 39, 0.14));
  color: var(--green-700);
  font-size: 1.05rem;
}
.search-result__text {
  min-width: 0;
  display: grid;
  gap: 0.2rem;
}
.search-result__text strong {
  font-family: var(--font-display);
  font-size: 1.02rem;
  color: var(--green-950);
}
.search-result__text small {
  color: var(--text-muted);
  font-size: 0.86rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.search-result__tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-800);
  background: rgba(15, 67, 52, 0.08);
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  white-space: nowrap;
}
.search-modal__empty {
  text-align: center;
  color: var(--text-muted);
  padding: 2.5rem 1rem;
  font-size: 0.98rem;
}
@media (max-width: 640px) {
  .search-result {
    grid-template-columns: auto 1fr;
  }
  .search-result__tag {
    grid-column: 2;
    justify-self: start;
  }
}

.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--text);
  transition: background 0.25s, color 0.25s;
}
.modal__close:hover {
  background: var(--green-800);
  color: #fff;
  border-color: var(--green-800);
}
.modal__header { padding-right: 2.5rem; margin-bottom: 1.25rem; }
.modal__title {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  line-height: 1.2;
  margin-bottom: 0.45rem;
}
.modal__lead {
  color: var(--text-muted);
  font-size: 0.95rem;
}
.modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: flex-end;
  margin-top: 1.25rem;
}
.modal__note {
  margin-top: 0.85rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
}
.modal__note a {
  color: var(--green-700);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.modal-tier-grid {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .modal-tier-grid { grid-template-columns: repeat(3, 1fr); }
}
.modal-tier {
  text-align: left;
  padding: 1rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: var(--bg);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  display: grid;
  gap: 0.35rem;
}
.modal-tier i {
  color: var(--green-700);
  font-size: 1.1rem;
}
.modal-tier strong {
  font-family: var(--font-display);
  font-size: 0.95rem;
}
.modal-tier span {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.modal-tier:hover,
.modal-tier.is-active {
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(26, 122, 92, 0.12);
  transform: translateY(-2px);
}
.modal-tier.is-active {
  background: linear-gradient(135deg, rgba(26, 122, 92, 0.08), rgba(201, 162, 39, 0.08));
}
.mobile-nav__link-btn {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-align: left;
  color: #fff;
  width: 100%;
}
.mobile-nav__link-btn:hover { color: var(--gold-400); }
.mobile-nav.is-open .mobile-nav__link-btn {
  animation: slideInLink 0.45s var(--ease) forwards;
  animation-delay: 0.38s;
  opacity: 0;
  transform: translateX(20px);
}

/* Preloader */
.preloader {
  position: fixed; inset: 0; z-index: 99999;
  background: var(--green-950); display: grid; place-items: center;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}
.preloader.is-done { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader__mark {
  font-family: var(--font-display); font-weight: 700; font-size: 2rem;
  color: var(--gold-400); letter-spacing: 0.2em; text-align: center;
  margin-bottom: 1.25rem;
}
.preloader__mark img {
  width: 88px;
  height: 88px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
.preloader__bar {
  width: 140px; height: 2px; background: rgba(255,255,255,0.12); overflow: hidden;
}
.preloader__bar span {
  display: block; height: 100%; width: 40%;
  background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
  animation: loadBar 1.1s ease-in-out infinite;
}
@keyframes loadBar {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}

/* Scroll progress */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--gold-500), var(--green-500));
  z-index: 10001; transform-origin: left;
}

/* Navigation */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background 0.35s var(--ease), box-shadow 0.35s, backdrop-filter 0.35s;
}
.site-nav.is-scrolled {
  background: rgba(246, 243, 236, 0.82);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--border);
}
.site-nav__bar {
  width: min(100% - 2rem, 1280px); margin: 0 auto;
  height: var(--nav-h); display: flex; align-items: center; gap: 1.5rem;
}
.site-nav__brand {
  display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0;
}
.site-nav__logo { width: auto; height: 88px; object-fit: contain; }
.site-nav__wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  color: #fff;
  transition: color 0.3s var(--ease);
}
.site-nav__wordmark strong {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  color: inherit;
  line-height: 1;
}
.site-nav__wordmark small {
  font-family: var(--font-body);
  font-size: clamp(0.62rem, 0.8vw, 0.72rem);
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: inherit;
  opacity: 0.88;
  margin-top: 0.2rem;
  line-height: 1.2;
}
.site-nav.is-scrolled .site-nav__wordmark {
  color: #000;
}
.site-nav__menu {
  display: none; align-items: center; gap: 0.15rem; margin-left: auto;
}
@media (min-width: 1100px) {
  .site-nav__menu { display: flex; }
}
.site-nav__menu > li { position: relative; }
.site-nav__menu > li > a {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.55rem 0.7rem; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: #fff; border-radius: 8px;
  transition: color 0.3s var(--ease);
}
.site-nav__menu > li > a i { font-size: 0.55rem; opacity: 0.7; }
.site-nav__menu > li > a:hover,
.site-nav__menu > li > a.is-active { color: var(--gold-300); }

.site-nav.is-scrolled .site-nav__menu > li > a {
  color: #000;
}
.site-nav.is-scrolled .site-nav__menu > li > a:hover,
.site-nav.is-scrolled .site-nav__menu > li > a.is-active {
  color: var(--green-700);
}

.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 220px;
  background: var(--bg-elevated); border: 1px solid var(--border);
  border-radius: var(--radius-sm); box-shadow: var(--shadow-md);
  padding: 0.5rem; opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all 0.25s var(--ease); z-index: 50;
}
.has-dropdown:hover > .dropdown,
.has-dropdown:focus-within > .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown a {
  display: block; padding: 0.65rem 0.85rem; border-radius: 8px;
  font-size: 0.85rem; font-weight: 500; color: var(--ink-soft);
}
.dropdown a:hover { background: var(--ivory-2); color: var(--green-700); }

/* Programs mega menu — full-bleed under nav */
.site-nav {
  overflow: visible;
}
.mega-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  width: 100%;
  background: #fff;
  border-top: 1px solid rgba(18, 26, 23, 0.08);
  box-shadow: 0 28px 60px rgba(6, 26, 20, 0.16);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.22s var(--ease), visibility 0.22s, transform 0.22s var(--ease);
  z-index: 1100;
}
.site-nav.is-mega-open .mega-menu,
.site-nav:has(.has-megamenu:hover) .mega-menu,
.site-nav:has(.mega-menu:hover) .mega-menu,
.mega-menu:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.mega-menu__inner {
  width: min(100% - 2.5rem, 1280px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 1.75rem;
  padding: 1.75rem 0 2rem;
  align-items: stretch;
}
.mega-menu__intro {
  padding: 1.35rem 1.4rem;
  border-radius: var(--radius);
  background:
    radial-gradient(ellipse 90% 70% at 0% 0%, rgba(201, 162, 39, 0.12), transparent 55%),
    var(--green-950);
  color: rgba(245, 241, 234, 0.82);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.7rem;
}
.mega-menu__eyebrow {
  margin: 0;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-300);
  font-weight: 700;
}
.mega-menu__intro h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: #fff;
  line-height: 1.25;
}
.mega-menu__intro p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.55;
  color: rgba(245, 241, 234, 0.72);
}
.mega-menu__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.65rem;
}
.mega-menu__item {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  align-items: flex-start;
  padding: 1rem 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(18, 26, 23, 0.08);
  background: #faf9f6;
  color: var(--ink-soft);
  min-height: 100%;
  transition: background 0.2s var(--ease), border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.mega-menu__item:hover,
.mega-menu__item.is-active {
  background: #fff;
  border-color: rgba(15, 67, 52, 0.22);
  color: var(--green-800);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(6, 26, 20, 0.08);
}
.mega-menu__icon {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 10px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: rgba(15, 67, 52, 0.08);
  color: var(--green-700);
  font-size: 0.95rem;
}
.mega-menu__item:hover .mega-menu__icon,
.mega-menu__item.is-active .mega-menu__icon {
  background: rgba(201, 162, 39, 0.18);
  color: #a67c00;
}
.mega-menu__text {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  min-width: 0;
  width: 100%;
}
.mega-menu__text strong {
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}
.mega-menu__text small {
  font-size: 0.72rem;
  line-height: 1.4;
  color: var(--text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .mega-menu__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 1099px) {
  .mega-menu { display: none !important; }
}
.mobile-nav__sub {
  padding-left: 1.25rem !important;
  font-size: 0.88rem !important;
  opacity: 0.85;
  border-bottom-color: rgba(255, 255, 255, 0.04) !important;
}

.site-nav__actions {
  display: flex; align-items: center; gap: 0.55rem; margin-left: auto;
}
@media (min-width: 1100px) {
  .site-nav__actions { margin-left: 0.75rem; }
}
.nav-search-btn {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(15, 67, 52, 0.16);
  background: rgba(255, 255, 255, 0.72);
  color: var(--green-800);
  font-size: 0.95rem;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s;
}
.nav-search-btn:hover,
.nav-search-btn:focus-visible {
  background: var(--green-800);
  color: #fff;
  border-color: var(--green-800);
  outline: none;
  transform: translateY(-1px);
}
.site-nav.is-scrolled .nav-search-btn {
  background: #fff;
}
.site-nav__actions .btn--donate-stroke,
.site-nav__actions .btn--primary { display: none; }
@media (min-width: 900px) {
  .site-nav__actions .btn--donate-stroke,
  .site-nav__actions .btn--primary { display: inline-flex; }
}


.nav-toggle {
  width: 44px; height: 44px; display: flex; flex-direction: column;
  justify-content: center; align-items: center; gap: 6px;
}
@media (min-width: 1100px) { .nav-toggle { display: none; } }
.nav-toggle span {
  display: block; width: 22px; height: 2px; background: var(--text);
  transition: 0.3s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  position: fixed; inset: 0; z-index: 1100; pointer-events: none;
  visibility: hidden;
}
.mobile-nav.is-open { pointer-events: auto; visibility: visible; }
.mobile-nav__backdrop {
  position: absolute; inset: 0; background: rgba(6, 26, 20, 0.55);
  opacity: 0; transition: opacity 0.4s;
}
.mobile-nav.is-open .mobile-nav__backdrop { opacity: 1; }
.mobile-nav__panel {
  position: absolute; top: 0; right: 0; width: min(100%, 420px); height: 100%;
  background: rgba(15, 67, 52, 0.92); backdrop-filter: blur(24px);
  color: #fff; padding: 1.5rem 1.75rem 2rem;
  transform: translateX(100%); transition: transform 0.45s var(--ease);
  display: flex; flex-direction: column; overflow-y: auto;
}
.mobile-nav.is-open .mobile-nav__panel { transform: translateX(0); }
.mobile-nav__head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 2rem;
}
.mobile-nav__title {
  font-family: var(--font-display); font-weight: 700; letter-spacing: 0.12em;
  color: var(--gold-400);
}
.mobile-nav__close {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2); color: #fff; font-size: 1.2rem;
}
.mobile-nav__links {
  display: flex; flex-direction: column; gap: 0.15rem; flex: 1;
}
.mobile-nav__links a {
  font-family: var(--font-display); font-size: 1.35rem; font-weight: 500;
  padding: 0.55rem 0; border-bottom: 1px solid rgba(255,255,255,0.08);
  opacity: 0; transform: translateX(20px);
  transition: color 0.25s;
}
.mobile-nav.is-open .mobile-nav__links a {
  animation: slideInLink 0.45s var(--ease) forwards;
}
.mobile-nav.is-open .mobile-nav__links a:nth-child(1) { animation-delay: 0.05s; }
.mobile-nav.is-open .mobile-nav__links a:nth-child(2) { animation-delay: 0.08s; }
.mobile-nav.is-open .mobile-nav__links a:nth-child(3) { animation-delay: 0.11s; }
.mobile-nav.is-open .mobile-nav__links a:nth-child(4) { animation-delay: 0.14s; }
.mobile-nav.is-open .mobile-nav__links a:nth-child(5) { animation-delay: 0.17s; }
.mobile-nav.is-open .mobile-nav__links a:nth-child(6) { animation-delay: 0.2s; }
.mobile-nav.is-open .mobile-nav__links a:nth-child(7) { animation-delay: 0.23s; }
.mobile-nav.is-open .mobile-nav__links a:nth-child(8) { animation-delay: 0.26s; }
.mobile-nav.is-open .mobile-nav__links a:nth-child(9) { animation-delay: 0.29s; }
.mobile-nav.is-open .mobile-nav__links a:nth-child(10) { animation-delay: 0.32s; }
.mobile-nav.is-open .mobile-nav__links a:nth-child(11) { animation-delay: 0.35s; }
.mobile-nav.is-open .mobile-nav__links a:nth-child(12) { animation-delay: 0.38s; }
.mobile-nav.is-open .mobile-nav__links a:nth-child(13) { animation-delay: 0.41s; }
@keyframes slideInLink {
  to { opacity: 1; transform: translateX(0); }
}
.mobile-nav__links a:hover { color: var(--gold-400); }
.mobile-nav__cta { display: grid; gap: 0.75rem; margin: 1.5rem 0; }
.mobile-nav__meta {
  display: flex; flex-direction: column; gap: 0.5rem;
  font-size: 0.9rem; opacity: 0.85;
}
.mobile-nav__meta a { display: inline-flex; align-items: center; gap: 0.5rem; }

/* Hero */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding-top: var(--nav-h); overflow: hidden; color: #fff;
}
.hero--page { min-height: 62vh; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__bg, .hero__video {
  width: 100%; height: 100%; object-fit: cover;
}
.hero__overlay {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    linear-gradient(105deg, rgba(4, 18, 14, 0.92) 0%, rgba(8, 36, 28, 0.78) 38%, rgba(6, 26, 20, 0.45) 68%, rgba(6, 26, 20, 0.55) 100%),
    radial-gradient(ellipse at 78% 22%, rgba(201, 162, 39, 0.22), transparent 42%),
    radial-gradient(ellipse at 20% 90%, rgba(0, 0, 0, 0.35), transparent 50%);
}
.hero__grain {
  position: absolute; inset: 0; z-index: 3; pointer-events: none; opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}
.hero__particles { position: absolute; inset: 0; z-index: 1; }
.hero__shapes {
  position: absolute; inset: 0; z-index: 3; pointer-events: none;
}
.hero__shapes .shape {
  position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.28;
  animation: floatShape 12s ease-in-out infinite;
}
.shape-1 { width: 280px; height: 280px; background: var(--gold-500); top: 15%; right: 10%; }
.shape-2 { width: 200px; height: 200px; background: var(--green-500); bottom: 20%; left: 8%; animation-delay: -4s; }
.shape-3 { width: 160px; height: 160px; background: var(--terracotta); top: 50%; right: 30%; animation-delay: -7s; }
@keyframes floatShape {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -30px) scale(1.08); }
}
.hero__content {
  position: relative; z-index: 4; padding: 4rem 0 5rem; max-width: 900px;
}
.hero--page .hero__content { max-width: 760px; padding: 3rem 0 4rem; }
.hero--slider .hero__eyebrow,
.hero--slider .hero__title,
.hero--slider .hero__subtitle {
  animation: heroCopyIn 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero--slider .hero__title { animation-delay: 0.12s; }
.hero--slider .hero__subtitle { animation-delay: 0.24s; }
@keyframes heroCopyIn {
  from { opacity: 0; transform: translateY(22px); filter: blur(6px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
.hero__eyebrow {
  font-family: var(--font-display); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-300);
  margin-bottom: 1.25rem;
}
.hero__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.2rem, 5.5vw, 4.2rem); line-height: 1.08;
  letter-spacing: -0.03em; margin-bottom: 1.25rem;
  text-wrap: balance;
}
.hero__subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem); color: rgba(255,255,255,0.82);
  max-width: 560px; margin-bottom: 2rem; font-weight: 400;
}
.page-events .hero__subtitle {
  max-width: none;
  white-space: nowrap;
}
@media (max-width: 640px) {
  .page-events .hero__subtitle { white-space: normal; }
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* Cinematic home hero slider */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #061410;
}
.hero-slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 0;
  transition: opacity 1.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.35s;
}
.hero-slider__slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.hero-slider__slide.is-leaving {
  opacity: 0;
  visibility: visible;
  z-index: 2;
}
.hero-slider__frame {
  position: absolute;
  inset: -4%;
  overflow: hidden;
}
.hero-slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  transform: scale(1.12);
  filter: saturate(1.05) contrast(1.04);
}
.hero-slider__slide.is-active img {
  animation-duration: 7.5s;
  animation-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
  animation-fill-mode: both;
}
.hero-slider__slide[data-motion="zoom-in"].is-active img {
  animation-name: heroKenZoomIn;
}
.hero-slider__slide[data-motion="zoom-out"].is-active img {
  animation-name: heroKenZoomOut;
}
.hero-slider__slide[data-motion="pan-left"].is-active img {
  animation-name: heroKenPanLeft;
}
.hero-slider__slide[data-motion="pan-right"].is-active img {
  animation-name: heroKenPanRight;
}
@keyframes heroKenZoomIn {
  from { transform: scale(1.18) translate3d(0, 0, 0); }
  to { transform: scale(1.05) translate3d(0, -1.5%, 0); }
}
@keyframes heroKenZoomOut {
  from { transform: scale(1.05) translate3d(0, 0, 0); }
  to { transform: scale(1.16) translate3d(0, 1%, 0); }
}
@keyframes heroKenPanLeft {
  from { transform: scale(1.14) translate3d(3%, 0, 0); }
  to { transform: scale(1.08) translate3d(-2%, 0, 0); }
}
@keyframes heroKenPanRight {
  from { transform: scale(1.14) translate3d(-3%, 0, 0); }
  to { transform: scale(1.08) translate3d(2%, 0, 0); }
}

.hero-progress {
  display: none !important;
}

.hero--slider .hero__content {
  z-index: 4;
}
@media (prefers-reduced-motion: reduce) {
  .hero--slider .hero__eyebrow,
  .hero--slider .hero__title,
  .hero--slider .hero__subtitle,
  .hero-progress {
    animation: none;
  }
  .hero-slider__slide,
  .hero-slider__slide img {
    transition: none;
    animation: none !important;
  }
  .hero-progress__bar.is-active .hero-progress__fill {
    animation: none;
    width: 100%;
  }
}

.scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.7); font-size: 0.7rem; letter-spacing: 0.15em;
  text-transform: uppercase; z-index: 2;
}
.scroll-indicator span {
  width: 22px; height: 36px; border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 12px; position: relative;
}
.scroll-indicator span::after {
  content: ""; position: absolute; top: 6px; left: 50%; width: 3px; height: 8px;
  background: var(--gold-400); border-radius: 2px; transform: translateX(-50%);
  animation: scrollDot 1.6s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(14px); }
}

/* Land acknowledgement — wide, no card background */
.land-ack {
  position: relative;
  width: 100%;
  margin: 0;
  padding: clamp(2.5rem, 5vw, 3.75rem) clamp(1.25rem, 4vw, 3rem);
  background: linear-gradient(180deg, #0a2f24 0%, #0f4334 100%);
  overflow: hidden;
}
.land-ack__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.land-ack__ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: min(100%, 220px);
  margin: 0 auto 1.1rem;
}
.land-ack__rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(219, 184, 74, 0.75), transparent);
}
.land-ack__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0;
  color: #e8cd7a;
  font-size: 1.2rem;
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid rgba(201, 162, 39, 0.45);
  flex-shrink: 0;
}
.land-ack__label {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #e8cd7a;
  text-align: center;
}
.land-ack__label::before { display: none !important; content: none !important; }
.land-ack__title {
  margin: 0;
  width: 100%;
  max-width: none;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.4vw, 2.25rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
}
@media (min-width: 720px) {
  .land-ack__title { white-space: nowrap; }
}
.land-ack__divider {
  width: 56px;
  height: 2px;
  margin: 1rem auto 1.35rem;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, #dbb84a, transparent);
}
.land-ack__body {
  width: 100%;
  max-width: none;
  margin: 0;
}
.land-ack__body p,
.land-ack__line {
  margin: 0 0 0.55rem;
  color: rgba(245, 241, 234, 0.9);
  font-size: clamp(0.82rem, 1.35vw, 1rem);
  line-height: 1.55;
  text-align: center;
  white-space: nowrap;
}
.land-ack__body p:last-child,
.land-ack__line:last-child { margin-bottom: 0; }
@media (max-width: 1100px) {
  .land-ack__body p,
  .land-ack__line {
    white-space: normal;
    text-align: justify;
    font-size: 0.92rem;
  }
}
.land-ack__motto {
  width: 100%;
  max-width: none;
  margin: 1.5rem 0 0;
  padding: 0.85rem 0;
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 1.5vw, 1.1rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.5;
  color: #e8cd7a;
  text-align: center;
  white-space: nowrap;
  border-top: 1px solid rgba(201, 162, 39, 0.3);
  border-bottom: 1px solid rgba(201, 162, 39, 0.3);
}
@media (max-width: 700px) {
  .land-ack__motto {
    white-space: normal;
    font-size: 0.92rem;
  }
}

/* Stats */
.impact-stats {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201, 162, 39, 0.08), transparent 55%),
    var(--ivory);
}
.stats-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 700px) { .stats-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .stats-grid { grid-template-columns: repeat(5, 1fr); } }
.stats-grid--row6 {
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 700px) {
  .stats-grid--row6 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1100px) {
  .stats-grid--row6 {
    grid-template-columns: repeat(6, 1fr);
    gap: 0.85rem;
  }
  .stats-grid--row6 .stat-card {
    padding: 1.1rem 0.65rem 1rem;
  }
  .stats-grid--row6 .stat-card__value {
    font-size: clamp(1.35rem, 1.8vw, 1.85rem);
  }
  .stats-grid--row6 .stat-card__label {
    font-size: 0.68rem;
    letter-spacing: 0.04em;
  }
}
.stat-card {
  background: #fff;
  border: 1px solid rgba(15, 67, 52, 0.1);
  border-radius: var(--radius);
  padding: 1.35rem 1.1rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s, border-color 0.35s;
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-700), var(--gold-500));
}
.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201, 162, 39, 0.35);
}
.stat-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 auto 0.75rem;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(15, 67, 52, 0.08);
  color: var(--green-700);
  font-size: 1rem;
}
.stat-card__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.85rem, 3.2vw, 2.55rem);
  color: var(--green-800);
  line-height: 1;
  margin-bottom: 0.45rem;
  letter-spacing: -0.02em;
}
.stat-card__label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.35;
}

.initiatives-slider {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.5rem;
  scrollbar-width: none;
}
.initiatives-slider::-webkit-scrollbar {
  display: none;
}
.initiatives-slider__item {
  flex: 0 0 320px;
  width: 320px;
  max-width: 85vw;
  scroll-snap-align: start;
  height: auto;
  display: flex;
  flex-direction: column;
}
.initiatives-slider__item .program-card__media {
  aspect-ratio: 16 / 10;
}
.initiatives-slider__item .program-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.initiatives-slider__item .program-card__body p {
  margin-bottom: 0;
}
@media (min-width: 900px) {
  .initiatives-slider__item {
    flex: 0 0 calc((100% - 2.5rem) / 3);
    width: calc((100% - 2.5rem) / 3);
    min-width: calc((100% - 2.5rem) / 3);
    max-width: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .initiatives-slider {
    scroll-behavior: auto;
  }
}

/* Cards */
.card-grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .card-grid--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .card-grid--4 { grid-template-columns: repeat(4, 1fr); } }

.value-card, .program-card, .feature-card, .member-card, .news-card, .event-card {
  background: var(--bg-elevated); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.4s;
}
.value-card:hover, .program-card:hover, .feature-card:hover, .member-card:hover {
  transform: translateY(-8px); box-shadow: var(--shadow-lg);
  border-color: rgba(26, 122, 92, 0.25);
}

.value-card {
  padding: 1.75rem; position: relative;
}
.value-card__icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center; margin-bottom: 1.1rem;
  background: linear-gradient(135deg, rgba(26, 122, 92, 0.12), rgba(201, 162, 39, 0.12));
  color: var(--green-700); font-size: 1.35rem;
}
.value-card h3 {
  font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 0.5rem;
}
.value-card p { font-size: 0.92rem; color: var(--text-muted); }

.program-card__media {
  aspect-ratio: 16/10; overflow: hidden; position: relative;
}
.program-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.program-card:hover .program-card__media img { transform: scale(1.08); }
.program-card__body { padding: 1.5rem; }
.program-card__body h3 {
  font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 0.5rem;
}
.program-card__body p { font-size: 0.92rem; color: var(--text-muted); margin-bottom: 1rem; }
.program-card__link {
  font-weight: 700; font-size: 0.85rem; color: var(--green-700);
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.program-card__link:hover { color: var(--gold-500); }

/* About preview */
.about-preview {
  display: grid;
  gap: 2.5rem;
  align-items: stretch;
}
@media (min-width: 960px) {
  .about-preview { grid-template-columns: 1.05fr 0.95fr; gap: 3rem; }
}
.about-preview__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-preview__aside {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
  gap: 1rem;
}
.about-preview__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 100%;
  min-height: 420px;
}
.about-preview__media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.about-preview__bottom-up {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.35rem 1.4rem;
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(6, 26, 20, 0.97), rgba(20, 92, 70, 0.92)),
    var(--green-900);
  color: #fff;
  border: 1px solid rgba(201, 162, 39, 0.4);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.about-preview__bottom-up::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--gold-400), var(--green-500));
}
.about-preview__bottom-up-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(201, 162, 39, 0.14);
  border: 1px solid rgba(201, 162, 39, 0.35);
  color: var(--gold-300);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.about-preview__bottom-up-body {
  min-width: 0;
}
.about-preview__bottom-up-label {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin: 0 0 0.35rem;
}
.about-preview__bottom-up h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.45rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.about-preview__bottom-up-body > p:last-child {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(245, 241, 234, 0.86);
  text-align: left;
}
.mv-grid {
  display: grid; gap: 1rem; margin: 1.75rem 0;
}
.mv-item {
  padding: 1.25rem; border-radius: var(--radius-sm);
  background: var(--ivory-2); border-left: 3px solid var(--gold-500);
}
.mv-item h4 {
  font-family: var(--font-display); font-size: 0.95rem; margin-bottom: 0.35rem;
  color: var(--green-800);
}
.mv-item p { font-size: 0.9rem; color: var(--text-muted); }

/* World map */
.world-map {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(160deg, var(--green-950), var(--green-800));
  min-height: 420px; padding: 2.5rem;
}
.world-map__svg {
  width: 100%; max-width: 900px; margin: 0 auto; opacity: 0.35;
}
.world-map__pins {
  position: absolute; inset: 0; pointer-events: none;
}
.map-pin {
  position: absolute; width: 14px; height: 14px; border-radius: 50%;
  background: var(--gold-400); box-shadow: 0 0 0 0 rgba(201, 162, 39, 0.5);
  animation: pinPulse 2.4s ease-out infinite; pointer-events: auto; cursor: pointer;
}
.map-pin::after {
  content: attr(data-label); position: absolute; bottom: calc(100% + 8px); left: 50%;
  transform: translateX(-50%); white-space: nowrap;
  background: rgba(6, 26, 20, 0.9); color: #fff; font-size: 0.7rem;
  padding: 0.3rem 0.55rem; border-radius: 6px; opacity: 0; transition: opacity 0.25s;
  font-weight: 600;
}
.map-pin:hover::after { opacity: 1; }
@keyframes pinPulse {
  0% { box-shadow: 0 0 0 0 rgba(201, 162, 39, 0.55); }
  70% { box-shadow: 0 0 0 16px rgba(201, 162, 39, 0); }
  100% { box-shadow: 0 0 0 0 rgba(201, 162, 39, 0); }
}

/* Testimonials */
.testimonial-card {
  background: rgba(255,255,255,0.08); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.14); border-radius: var(--radius);
  padding: 2rem; height: 100%;
}
.testimonial-card__quote {
  font-size: 1.1rem; line-height: 1.7; margin-bottom: 1.5rem;
  color: rgba(255,255,255,0.9);
}
.testimonial-card__author {
  display: flex; align-items: center; gap: 0.85rem;
}
.testimonial-card__author img {
  width: 52px; height: 52px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--gold-400);
}
.testimonial-card__author strong { display: block; color: #fff; }
.testimonial-card__author span { font-size: 0.85rem; color: rgba(255,255,255,0.65); }

/* News magazine */
.news-featured {
  display: grid; gap: 1.5rem;
}
@media (min-width: 900px) {
  .news-featured { grid-template-columns: 1.4fr 1fr; }
}
.news-card { display: flex; flex-direction: column; }
.news-card__media { aspect-ratio: 16/10; overflow: hidden; }
.news-card__media img {
  width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease);
}
.news-card:hover .news-card__media img { transform: scale(1.06); }
.news-card__body { padding: 1.35rem; flex: 1; display: flex; flex-direction: column; }
.news-card__meta {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--green-600); margin-bottom: 0.6rem;
}
.news-card__body h3 {
  font-family: var(--font-display); font-size: 1.15rem; line-height: 1.3;
  margin-bottom: 0.6rem;
}
.news-card--large .news-card__body h3 { font-size: 1.55rem; }
.news-card__body p { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 1rem; flex: 1; }

/* Events */
.event-card { display: grid; grid-template-columns: 90px 1fr; }
.event-card__date {
  background: var(--green-800); color: #fff; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center; padding: 1rem;
}
.event-card__date strong {
  font-family: var(--font-display); font-size: 1.75rem; line-height: 1;
}
.event-card__date span { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.8; }
.event-card__body { padding: 1.25rem 1.35rem; }
.event-card__body h3 { font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 0.4rem; }
.event-card__body p { font-size: 0.88rem; color: var(--text-muted); }
.countdown {
  display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1.5rem;
}
.countdown__item {
  min-width: 72px; padding: 0.85rem; text-align: center;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
}
.countdown__item strong {
  display: block; font-family: var(--font-display); font-size: 1.5rem; color: var(--gold-300);
}
.countdown__item span { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.7; }

/* Events page featured + upcoming layouts */
.section--featured-event {
  padding: clamp(2.25rem, 4vw, 3.25rem) 0;
}
.events-featured {
  display: grid;
  gap: 1.25rem;
  align-items: stretch;
}
@media (min-width: 900px) {
  .events-featured { grid-template-columns: 1.15fr 0.85fr; gap: 1.5rem; }
}
.events-featured__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
}
.events-featured__copy .section-eyebrow {
  margin-bottom: 0.35rem;
}
.events-featured__title {
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  margin-bottom: 0.35rem;
  line-height: 1.2;
}
.events-featured__lead {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(245, 241, 234, 0.78);
  max-width: 42ch;
}
@media (min-width: 900px) {
  .events-featured__title {
    white-space: nowrap;
  }
}
.events-featured .countdown {
  margin-top: 0.85rem;
  gap: 0.5rem;
}
.events-featured .countdown__item {
  min-width: 58px;
  padding: 0.55rem 0.45rem;
}
.events-featured .countdown__item strong {
  font-size: 1.2rem;
}
.events-featured .countdown__item span {
  font-size: 0.62rem;
}
.events-featured__card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  height: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.04) 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow-md);
}
.events-featured__card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.15rem 1.35rem;
  color: #fff;
  gap: 0.35rem;
}
.events-featured__card-body strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0;
  color: var(--gold-300);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.events-featured__card-body p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
  max-width: 36ch;
}
.events-featured__card-body .btn {
  align-self: flex-start;
  margin-top: 0.55rem;
}

.events-upcoming {
  display: grid;
  gap: 2rem;
  align-items: stretch;
}
@media (min-width: 960px) {
  .events-upcoming { grid-template-columns: 1.1fr 0.9fr; gap: 2.5rem; }
}
.events-upcoming__cards {
  display: grid;
  gap: 1rem;
}
.events-upcoming__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 420px;
  box-shadow: var(--shadow-lg);
}
.events-upcoming__media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}
.events-upcoming__media-caption {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius);
  background: rgba(6, 26, 20, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 162, 39, 0.3);
  color: #fff;
}
.events-upcoming__media-caption strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--gold-300);
  margin-bottom: 0.3rem;
}
.events-upcoming__media-caption span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
}

/* RSVP / Event Registration */
.events-rsvp {
  position: relative;
  isolation: isolate;
  padding: clamp(4.5rem, 9vw, 7rem) 0;
  background-color: #0a2f24;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
}
.events-rsvp__overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(160deg, rgba(6, 26, 20, 0.55) 0%, rgba(10, 47, 36, 0.42) 45%, rgba(6, 26, 20, 0.58) 100%);
  pointer-events: none;
}
.events-rsvp__inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
}
.events-rsvp__panel {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 2.6rem);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
}
.events-rsvp .section-eyebrow { color: var(--gold-300); }
.events-rsvp .section-title { color: #fff; }
.events-rsvp .section-header { margin-bottom: 1.75rem; }
.events-rsvp .form-group label {
  color: rgba(255, 255, 255, 0.78);
}
.events-rsvp .form-group input,
.events-rsvp .form-group select,
.events-rsvp .form-group textarea {
  background: rgba(255, 255, 255, 0.14);
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.events-rsvp .form-group input::placeholder,
.events-rsvp .form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}
.events-rsvp .form-group select option {
  color: #121a17;
  background: #fff;
}
.events-rsvp .form-group input:focus,
.events-rsvp .form-group select:focus,
.events-rsvp .form-group textarea:focus {
  border-color: rgba(201, 162, 39, 0.7);
  box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.15);
  background: rgba(255, 255, 255, 0.18);
}

/* Gallery */
.gallery-filters {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; justify-content: center;
}
.gallery-filters button {
  padding: 0.55rem 1.1rem; border-radius: 999px; font-weight: 600; font-size: 0.82rem;
  border: 1px solid var(--border); color: var(--text-muted);
  transition: all 0.25s;
}
.gallery-filters button.is-active,
.gallery-filters button:hover {
  background: var(--green-800); color: #fff; border-color: var(--green-800);
}
.gallery-grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 800px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
.gallery-item {
  position: relative; border-radius: var(--radius-sm); overflow: hidden;
  aspect-ratio: 1; display: block;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease);
}
.gallery-item__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,26,20,0.75), transparent);
  opacity: 0; transition: opacity 0.35s; display: grid; place-items: center;
  color: #fff; font-size: 1.5rem;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item.is-hidden { display: none; }

/* Partners marquee */
.section--partners {
  padding: 2.25rem 0 2rem;
}
.section--partners .section-header {
  margin-bottom: 1.25rem;
}
.section--partners .section-title {
  margin-bottom: 0;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
}
.partners-marquee {
  overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.partners-track {
  display: flex; gap: 2.5rem; align-items: center; width: max-content;
  animation: marquee 35s linear infinite;
}
.partners-track img {
  height: 32px; width: auto; opacity: 0.55; filter: grayscale(1);
  transition: opacity 0.3s, filter 0.3s;
}
.partners-track img:hover { opacity: 1; filter: none; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* CTA band */
.cta-band {
  position: relative;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  overflow: hidden;
  padding: clamp(2.5rem, 5vw, 4rem);
  background:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(201, 162, 39, 0.06), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 100%, rgba(15, 67, 52, 0.5), transparent 50%),
    var(--green-950);
  color: #fff;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 40px rgba(6, 26, 20, 0.18);
}
.cta-band h2 {
  font-family: var(--font-display); font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  margin-bottom: 0.75rem;
}
.cta-band p { max-width: 720px; margin: 0 auto 1.75rem; color: rgba(255,255,255,0.8); }
.cta-band__quote {
  max-width: 720px;
  margin: 0 auto 1.75rem;
  line-height: 1.55;
}
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }

/* Membership cards */
.member-card { padding: 2rem; text-align: center; position: relative; }
.member-card--featured {
  border-color: var(--gold-500);
  box-shadow: 0 20px 60px rgba(201, 162, 39, 0.18);
}
.member-card__badge {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--gold-500); color: var(--green-950);
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 0.3rem 0.6rem; border-radius: 999px;
}
.member-card h3 {
  font-family: var(--font-display); font-size: 1.35rem; margin: 0.75rem 0;
}
.member-card__price {
  font-family: var(--font-display); font-size: 2.4rem; font-weight: 700;
  color: var(--green-700); margin-bottom: 0.25rem;
}
.member-card__price span { font-size: 0.9rem; font-weight: 500; color: var(--text-muted); }
.member-card ul { text-align: left; margin: 1.5rem 0; display: grid; gap: 0.65rem; }
.member-card ul li {
  display: flex; gap: 0.55rem; font-size: 0.9rem; color: var(--ink-soft);
}
.member-card ul li i { color: var(--green-600); margin-top: 0.2rem; }

/* Donate */
.donate-amounts {
  display: flex; flex-wrap: wrap; gap: 0.65rem; margin: 1.25rem 0;
}
.donate-amounts button {
  min-width: 88px; padding: 0.85rem 1rem; border-radius: var(--radius-sm);
  border: 1.5px solid var(--border); font-weight: 700; font-family: var(--font-display);
  transition: all 0.25s;
}
.donate-amounts button.is-active,
.donate-amounts button:hover {
  background: var(--green-800); color: #fff; border-color: var(--green-800);
}
.progress-bar {
  height: 10px; background: var(--sand); border-radius: 999px; overflow: hidden;
  margin: 0.75rem 0;
}
.progress-bar span {
  display: block; height: 100%; border-radius: 999px;
  background: linear-gradient(90deg, var(--green-600), var(--gold-500));
  width: 0; transition: width 1.2s var(--ease);
}
.campaign-card { padding: 1.5rem; }
.campaign-card h3 { font-family: var(--font-display); margin-bottom: 0.5rem; }
.campaign-card p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1rem; }

/* Forms */
.form-grid {
  display: grid; gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .form-grid--2 { grid-template-columns: 1fr 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.95rem 1.1rem; border-radius: var(--radius-sm);
  border: 1.5px solid var(--border); background: var(--bg-elevated);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--green-600);
  box-shadow: 0 0 0 4px rgba(26, 122, 92, 0.12);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.contact-panel {
  display: grid; gap: 2rem;
}
@media (min-width: 960px) {
  .contact-panel { grid-template-columns: 0.9fr 1.1fr; }
}
.contact-info-card {
  background: linear-gradient(160deg, var(--green-900), var(--green-700));
  color: #fff; border-radius: var(--radius-lg); padding: 2rem;
}
.contact-info-card h3 {
  font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 1.5rem;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.contact-info-list { display: grid; gap: 1.25rem; }
.contact-info-list li {
  display: flex; gap: 0.85rem; align-items: flex-start;
}
.contact-info-list i {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,0.1); display: grid; place-items: center;
  color: var(--gold-300); flex-shrink: 0;
}
.contact-info-list strong { display: block; margin-bottom: 0.15rem; }
.contact-info-list span, .contact-info-list a { font-size: 0.92rem; opacity: 0.85; }

.contact-forms {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.35rem, 3vw, 2rem);
  box-shadow: var(--shadow-sm);
}
.contact-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
  padding: 0.35rem;
  margin-bottom: 1.5rem;
  border-radius: 999px;
  background: var(--ivory-2);
  border: 1px solid var(--border);
}
.contact-tabs__btn {
  border: 0;
  background: transparent;
  color: var(--ink-soft);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.contact-tabs__btn:hover {
  color: var(--green-800);
}
.contact-tabs__btn.is-active {
  background: var(--green-900);
  color: #fff;
  box-shadow: 0 8px 20px rgba(6, 26, 20, 0.18);
}
.contact-tab-panel { display: none; }
.contact-tab-panel.is-active { display: block; }
.contact-forms__title {
  font-size: clamp(1.45rem, 2.5vw, 1.85rem) !important;
  margin-bottom: 0.5rem;
}
.contact-forms__lead {
  max-width: none !important;
  margin-bottom: 1.35rem !important;
}

.contact-map-section {
  padding-bottom: 0;
}
.contact-map-section .section-header {
  padding-inline: clamp(1.25rem, 4vw, 2rem);
  max-width: 1100px;
  margin-inline: auto;
  margin-bottom: 1.75rem;
}
.contact-map {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  border: 0;
  border-top: 1px solid var(--border);
  box-shadow: none;
  background: var(--green-950);
  width: 100%;
}
.contact-map iframe {
  display: block;
  width: 100%;
  height: clamp(520px, 70vh, 780px);
  border: 0;
}
.contact-map__link {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--green-900);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: var(--shadow-sm);
}
.contact-map__link:hover {
  background: #fff;
  color: var(--gold-500);
}

.map-placeholder {
  margin-top: 1.5rem; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 16/10; background: rgba(0,0,0,0.2);
  display: grid; place-items: center; border: 1px dashed rgba(255,255,255,0.25);
  font-size: 0.9rem; opacity: 0.8;
}

/* Timeline */
.timeline-progress {
  display: grid;
  gap: 2rem;
  align-items: stretch;
}
@media (min-width: 900px) {
  .timeline-progress {
    grid-template-columns: 1fr 1.05fr;
    gap: 3rem;
    align-items: center;
  }
}
.timeline-progress__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 320px;
  box-shadow: var(--shadow-md);
}
.timeline-progress__media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}
@media (min-width: 900px) {
  .timeline-progress__media,
  .timeline-progress__media img {
    min-height: 520px;
  }
}
.timeline-progress__content {
  min-width: 0;
}
.timeline { position: relative; padding-left: 1.5rem; }
.timeline::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(to bottom, var(--gold-500), var(--green-600));
}
.timeline__item {
  position: relative; padding: 0 0 2rem 1.75rem;
}
.timeline__item::before {
  content: ""; position: absolute; left: -1.5rem; top: 0.35rem;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--gold-500); border: 3px solid var(--bg);
  transform: translateX(-5px); box-shadow: 0 0 0 2px var(--gold-500);
}
.timeline__item h4 {
  font-family: var(--font-display); margin-bottom: 0.35rem;
}
.timeline__item p { color: var(--text-muted); font-size: 0.92rem; }

/* Leadership */
.leader-card { text-align: center; padding: 1.5rem; }
.leader-card__photo {
  width: 140px; height: 140px; border-radius: 50%; object-fit: cover;
  margin: 0 auto 1.15rem; border: 3px solid var(--gold-400);
  box-shadow: var(--shadow-md);
}
.leader-card h3 { font-family: var(--font-display); font-size: 1.1rem; }
.leader-card span { display: block; font-size: 0.85rem; color: var(--green-600); margin: 0.25rem 0 0.75rem; }
.leader-card p { font-size: 0.88rem; color: var(--text-muted); }
.leader-card__contact {
  display: grid;
  gap: 0.35rem;
  margin-top: 0.85rem;
  font-size: 0.82rem !important;
}
.leader-card__contact a {
  color: var(--green-700);
  word-break: break-word;
}
.leader-card__contact a:hover { color: var(--gold-500); }

/* Quote block */
.quote-block {
  border-radius: var(--radius-lg); padding: clamp(2rem, 4vw, 3rem);
  background: var(--ivory-2); border-left: 4px solid var(--gold-500);
  font-family: var(--font-display); font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.5; font-weight: 500; color: var(--ink);
}
.quote-block cite {
  display: block; margin-top: 1rem; font-size: 0.85rem; font-style: normal;
  font-weight: 600; color: var(--green-700); letter-spacing: 0.04em;
}

/* Highlight box */
.highlight-box {
  background: linear-gradient(135deg, rgba(26,122,92,0.08), rgba(201,162,39,0.1));
  border: 1px solid rgba(26,122,92,0.15); border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
}

/* Footer */
.site-footer {
  background:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(201, 162, 39, 0.06), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 100%, rgba(15, 67, 52, 0.5), transparent 50%),
    var(--green-950);
  color: rgba(245, 241, 234, 0.78);
  padding-bottom: 2.25rem;
  margin-top: 4rem;
  position: relative;
}
.footer-wave {
  color: var(--green-950);
  margin-top: -1px;
  line-height: 0;
}
.footer-wave svg { width: 100%; height: 60px; display: block; }
.footer-top {
  display: grid;
  gap: 2.75rem;
  padding-top: 1.25rem;
  padding-bottom: 0.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1000px) {
  .footer-top { grid-template-columns: 1.45fr 0.85fr 0.85fr 1.2fr; gap: 2.5rem 2rem; }
}
.footer-brand {
  max-width: none;
  width: 100%;
  min-width: 0;
}
.footer-brand__link {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.1rem;
  color: #fff;
  text-decoration: none;
  max-width: 100%;
  min-width: 0;
}
.footer-brand__link img {
  height: 56px;
  width: auto;
  flex-shrink: 0;
  margin-bottom: 0;
  object-fit: contain;
}
.footer-brand__wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  color: #fff;
  min-width: 0;
  flex: 1;
}
.footer-brand__wordmark strong {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.1;
  color: inherit;
  white-space: nowrap;
}
.footer-brand__wordmark small {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: inherit;
  opacity: 0.88;
  margin-top: 0.15rem;
  line-height: 1.2;
}
.footer-brand__tagline {
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 1.15rem;
  max-width: none;
  width: 100%;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  color: rgba(245, 241, 234, 0.78);
}
.footer-brand__quote {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-300);
  font-size: 1.08rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: none;
  width: 100%;
  text-align: justify;
  text-justify: inter-word;
  padding-left: 0.9rem;
  border-left: 2px solid rgba(201, 162, 39, 0.45);
}
.footer-social { display: flex; gap: 0.55rem; flex-wrap: wrap; }
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  display: grid;
  place-items: center;
  transition: all 0.25s var(--ease);
}
.footer-social a:hover {
  background: var(--gold-500);
  color: var(--green-950);
  border-color: var(--gold-500);
  transform: translateY(-2px);
}
.footer-col h4 {
  font-family: var(--font-display);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 1.35rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 0.75rem;
}
.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 162, 39, 0.7), transparent);
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}
.footer-col:not(.footer-col--contact) ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.footer-col:not(.footer-col--contact) ul li:last-child {
  border-bottom: none;
}
.footer-col:not(.footer-col--contact) ul a {
  display: block;
  padding: 0.7rem 0;
  font-size: 0.9rem;
  color: rgba(245, 241, 234, 0.72);
  letter-spacing: 0.01em;
  transition: color 0.25s var(--ease), padding-left 0.25s var(--ease);
}
.footer-col:not(.footer-col--contact) ul a:hover {
  color: var(--gold-300);
  padding-left: 0.35rem;
}
.footer-contact {
  display: grid;
  gap: 1rem;
}
.footer-contact li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-contact li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.footer-contact i {
  color: var(--gold-400);
  margin-top: 0.2rem;
  width: 1rem;
  text-align: center;
  flex-shrink: 0;
}
.footer-contact a {
  color: rgba(245, 241, 234, 0.85);
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--gold-300); }
.footer-contact small {
  display: block;
  opacity: 0.55;
  font-size: 0.75rem;
  margin-top: 0.15rem;
}
.footer-col--contact .btn { margin-top: 1.35rem; }
.footer-newsletter {
  margin-top: 3rem;
  padding: 1.85rem 1.75rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  display: grid;
  gap: 1.25rem;
  align-items: center;
}
@media (min-width: 800px) {
  .footer-newsletter { grid-template-columns: 1fr 1.35fr; }
}
.footer-newsletter h3,
.footer-newsletter__title {
  font-family: var(--font-display);
  color: #fff;
  margin: 0;
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  font-weight: 400;
  line-height: 1.35;
  white-space: nowrap;
  display: flex;
  align-items: baseline;
  flex-wrap: nowrap;
  gap: 0.45rem;
}
.footer-newsletter__lead {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 500;
  font-size: 0.82em;
  color: #fff;
}
.footer-newsletter__sep {
  color: var(--gold-400);
  font-weight: 400;
  opacity: 0.85;
}
.footer-newsletter__sub {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  font-size: 0.95em;
  color: rgba(245, 241, 234, 0.78);
  font-family: var(--font-body);
}
@media (max-width: 700px) {
  .footer-newsletter__title {
    white-space: normal;
    flex-wrap: wrap;
  }
}
.newsletter-form {
  position: relative;
  display: flex;
  gap: 0.65rem;
  flex-wrap: nowrap;
  align-items: stretch;
}
.newsletter-form > input[type="email"] {
  flex: 1;
  min-width: 0;
  padding: 1.05rem 1.35rem;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.28);
  color: #fff;
  font-size: 1rem;
  line-height: 1.4;
}
.newsletter-form > input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.45);
  font-size: 1rem;
}
.newsletter-form > input[type="email"]:focus {
  outline: none;
  border-color: rgba(201, 162, 39, 0.55);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.12);
}
.btn--newsletter {
  flex-shrink: 0;
  padding: 1.05rem 1.6rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-950);
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  border: 0;
  box-shadow: 0 8px 24px rgba(201, 162, 39, 0.28);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  white-space: nowrap;
}
.btn--newsletter:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(201, 162, 39, 0.38);
}
.footer-bottom {
  margin-top: 2.75rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}
.footer-bottom > p,
.footer-copy {
  text-transform: uppercase !important;
  letter-spacing: 0.05em;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(245, 241, 234, 0.55);
}
.footer-legal {
  text-transform: none !important;
  letter-spacing: 0.02em !important;
  font-size: 0.75rem !important;
  font-weight: 500 !important;
  color: rgba(245, 241, 234, 0.45) !important;
  flex: 1 1 220px;
  text-align: center;
}
.footer-mti {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #c62828;
}
.footer-mti:hover { color: #e53935; }

/* Back to top */
.back-to-top {
  position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 900;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--green-800); color: #fff;
  box-shadow: var(--shadow-md); opacity: 0; visibility: hidden;
  transform: translateY(12px); transition: all 0.35s var(--ease);
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--gold-500); color: var(--green-950); }

.hp-field {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Back to top */
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Impact charts */
.chart-wrap {
  background: var(--bg-elevated); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem; height: 320px;
}
.impact-analytics__header {
  display: flex;
  flex-wrap: nowrap;
  align-items: baseline;
  gap: 0.85rem 1.15rem;
  max-width: none;
  margin-bottom: 1.75rem;
}
.impact-analytics__header .section-eyebrow {
  margin-bottom: 0;
  flex-shrink: 0;
}
.impact-analytics__header .section-title {
  margin-bottom: 0;
  white-space: nowrap;
  font-size: clamp(1.35rem, 3vw, 2.35rem);
}
@media (max-width: 700px) {
  .impact-analytics__header {
    flex-wrap: wrap;
  }
  .impact-analytics__header .section-title {
    white-space: normal;
  }
}
.chart-wrap--glass {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(16px) saturate(1.15);
  -webkit-backdrop-filter: blur(16px) saturate(1.15);
  box-shadow: 0 18px 40px rgba(6, 26, 20, 0.22);
  height: clamp(300px, 42vh, 420px);
}

/* Program detail sections */
.program-detail {
  scroll-margin-top: calc(var(--nav-h) + 1.5rem);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}
.program-detail__grid {
  display: grid; gap: 2rem; align-items: start;
}
@media (min-width: 900px) {
  .program-detail__grid { grid-template-columns: 1fr 1fr; }
}
.program-detail__subhead {
  font-family: var(--font-display);
  font-size: 1rem;
  margin: 1.25rem 0 0.5rem;
  color: var(--green-700);
}
.page-program .program-bottom {
  padding: clamp(2rem, 4vw, 3rem) 0 clamp(1.5rem, 3vw, 2.25rem);
}
.page-program .section-header--compact {
  margin-bottom: 1.5rem;
}
.page-program .program-card--related {
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
}
.page-program .program-card--related .program-card__media {
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.page-program .program-bottom__cta {
  margin-top: 2rem;
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
}
.page-program .site-footer {
  margin-top: 0;
}
.obj-list { display: grid; gap: 0.65rem; margin: 1rem 0; }
.obj-list li {
  display: flex; gap: 0.65rem; font-size: 0.95rem;
}
.obj-list li i { color: var(--gold-500); margin-top: 0.25rem; }
.program-nav {
  display: grid;
  gap: 1rem;
  align-items: center;
}
@media (min-width: 800px) {
  .program-nav {
    grid-template-columns: 1fr auto 1fr;
  }
}
.program-nav__link {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  transition: border-color 0.2s, transform 0.2s;
}
.program-nav__link:hover {
  border-color: rgba(15, 67, 52, 0.25);
  transform: translateY(-2px);
}
.program-nav__link span {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
}
.program-nav__link strong {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--ink);
}
.program-nav__link--next {
  text-align: right;
  align-items: flex-end;
}
.program-nav .btn {
  justify-self: center;
}

/* About media badge */
.about-preview__media { position: relative; }
.about-preview__badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-sm);
  background: rgba(6, 26, 20, 0.88);
  color: #fff;
  max-width: 16rem;
}
.about-preview__badge strong {
  display: block;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  margin-bottom: 0.2rem;
}
.about-preview__badge span {
  font-size: 0.78rem;
  color: rgba(245, 241, 234, 0.78);
  line-height: 1.4;
}

.mv-feature {
  display: grid;
  gap: 1.75rem;
  align-items: stretch;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
@media (min-width: 900px) {
  .mv-feature {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.25rem;
    padding: clamp(1.75rem, 3.5vw, 2.75rem);
    min-height: 420px;
  }
  .mv-feature--reverse {
    grid-template-columns: 0.95fr 1.05fr;
  }
}
.mv-feature__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mv-feature__icon {
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  background: rgba(15, 67, 52, 0.1);
  color: var(--green-700);
  font-size: 1.2rem;
}
.mv-feature__icon--alt {
  background: rgba(201, 162, 39, 0.16);
  color: #a67c00;
}
.mv-feature__title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.15;
  margin: 0.25rem 0 1rem;
  color: var(--ink);
}
.mv-feature__copy > p {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0;
}
.mv-feature__media {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 260px;
  background: var(--green-950);
}
.mv-feature__media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}
@media (min-width: 900px) {
  .mv-feature__media,
  .mv-feature__media img {
    min-height: 100%;
  }
}

.mission-panel {
  padding: clamp(1.75rem, 4vw, 2.5rem);
  border-radius: var(--radius-lg);
  min-height: 100%;
}
.mission-panel--mission {
  background:
    radial-gradient(ellipse 80% 60% at 0% 0%, rgba(201, 162, 39, 0.14), transparent 55%),
    var(--green-950);
  color: rgba(245, 241, 234, 0.86);
}
.mission-panel--mission .section-eyebrow { color: var(--gold-300); }
.mission-panel--mission h2 { color: #fff; font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2rem); margin: 0.35rem 0 1rem; }
.mission-panel--vision {
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.mission-panel--vision h2 { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2rem); margin: 0.35rem 0 1rem; color: var(--ink); }
.mission-panel__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  background: rgba(201, 162, 39, 0.18);
  color: var(--gold-400);
  font-size: 1.15rem;
}
.mission-panel--vision .mission-panel__icon {
  background: rgba(15, 67, 52, 0.08);
  color: var(--green-700);
}

.mandate-band {
  position: relative;
  isolation: isolate;
  background-color: var(--green-950);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
}
.mandate-band__overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(160deg, rgba(6, 26, 20, 0.82) 0%, rgba(10, 47, 36, 0.72) 45%, rgba(6, 26, 20, 0.86) 100%);
  pointer-events: none;
}
.mandate-band__inner {
  position: relative;
  z-index: 1;
}
.mandate-band .section-eyebrow {
  color: var(--gold-300);
}
.mandate-band .section-title {
  color: #fff;
}
.mandate-band__lead {
  color: rgba(255, 255, 255, 0.78);
  max-width: 40rem;
  margin-inline: auto;
}
.mandate-band__card {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  box-shadow: none !important;
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  color: #fff;
}
.mandate-band__card:hover {
  background: rgba(255, 255, 255, 0.14) !important;
  border-color: rgba(255, 255, 255, 0.32) !important;
  transform: translateY(-4px);
}
.mandate-band__card .value-card__icon {
  background: rgba(201, 162, 39, 0.2);
  color: var(--gold-300);
}
.mandate-band__card h3 {
  color: #fff;
}
.mandate-band__card p {
  color: rgba(255, 255, 255, 0.78);
}

.highlight-band {
  text-align: center;
  padding: clamp(2.25rem, 5vw, 3.75rem) clamp(1.25rem, 4vw, 2.5rem);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(ellipse 70% 80% at 50% 0%, rgba(201, 162, 39, 0.1), transparent 55%),
    var(--ivory-2);
  border: 1px solid var(--border);
}
.highlight-band h2,
.highlight-band__promise {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.4vw, 1.75rem);
  max-width: 52rem;
  margin: 0.65rem auto 1.6rem;
  line-height: 1.45;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.highlight-band__promise {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}
.highlight-band__promise span {
  display: block;
  white-space: nowrap;
}
@media (max-width: 820px) {
  .highlight-band__promise span {
    white-space: normal;
  }
}
@media (min-width: 1200px) {
  .highlight-band__promise {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.35rem 0.45rem;
    white-space: nowrap;
  }
  .highlight-band__promise span {
    white-space: nowrap;
  }
}
.highlight-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.values-showcase {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .values-showcase { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1000px) {
  .values-showcase { grid-template-columns: repeat(4, 1fr); }
}
.value-showcase-card {
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.value-showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.value-showcase-card__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(15, 67, 52, 0.08);
  color: var(--green-700);
  margin-bottom: 1rem;
}
.value-showcase-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.value-showcase-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}
.values-quote {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto;
  padding: 1rem 0;
}
.values-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-style: italic;
  color: var(--ink);
  line-height: 1.4;
  margin: 0 0 1rem;
}
.values-quote cite {
  font-style: normal;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-700);
  font-weight: 700;
}

.journey-intro { max-width: 44rem; }
.journey-track {
  display: grid;
  gap: 1rem;
  position: relative;
}
@media (min-width: 800px) {
  .journey-track {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem 1.5rem;
  }
}
.journey-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.35rem 1.4rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.journey-card--glass {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: none;
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  color: #fff;
}
.journey-card--glass:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.32);
}
.journey-card__num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-500);
  line-height: 1;
  min-width: 2rem;
}
.journey-card--glass .journey-card__num {
  color: var(--gold-300);
}
.journey-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}
.journey-card--glass .journey-card__body h3 {
  color: #fff;
}
.journey-card__body p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.journey-card--glass .journey-card__body p {
  color: rgba(255, 255, 255, 0.78);
}

.leader-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) {
  .leader-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1000px) {
  .leader-grid { grid-template-columns: repeat(4, 1fr); }
}
.leader-grid--board {
  max-width: 1100px;
  margin: 0 auto;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .leader-grid--board { grid-template-columns: repeat(3, 1fr); }
}
.leader-card--profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
}
.leader-card--profile .leader-card__photo {
  width: 148px;
  height: 148px;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  border: 3px solid rgba(201, 162, 39, 0.4);
  box-shadow: 0 10px 28px rgba(6, 26, 20, 0.12);
}
.leader-card--profile p {
  flex: 1;
}
.leader-card--profile .btn {
  margin-top: auto;
}

.modal--leader .modal__dialog--leader {
  max-width: 860px;
  width: min(100% - 1.5rem, 860px);
  padding: 0;
  overflow: hidden;
}
.leader-profile {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) {
  .leader-profile { grid-template-columns: 0.9fr 1.1fr; }
}
.leader-profile__media {
  background: var(--green-950);
  min-height: 280px;
}
.leader-profile__media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.leader-profile__content {
  padding: clamp(1.5rem, 3vw, 2.25rem);
}
.leader-profile__role {
  font-family: var(--font-display);
  color: var(--green-700);
  font-weight: 700;
  margin: 0.15rem 0 0.85rem;
}
.leader-profile__sub {
  font-family: var(--font-display);
  font-size: 0.9rem;
  margin: 1.15rem 0 0.55rem;
  color: var(--ink);
}
.leader-profile__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.leader-profile__tags li {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(15, 67, 52, 0.07);
  color: var(--green-800);
  font-size: 0.78rem;
  font-weight: 600;
}
.leader-profile__meta {
  display: grid;
  gap: 0.45rem;
  margin: 1.15rem 0 0.25rem;
}
.leader-profile__meta a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--green-700);
  font-size: 0.9rem;
}
.leader-profile__meta a:hover { color: var(--gold-500); }
.modal--leader .modal__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 2;
  background: rgba(255, 255, 255, 0.92);
}

/* Utility */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.glass {
  background: rgba(255,255,255,0.08); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.14);
}

/* Page content offset for fixed nav */
#main-content { outline: none; }

/* Swiper overrides */
.swiper-pagination-bullet-active { background: var(--gold-500) !important; }

