/* =========================================
   CSS VARIABLES & GLOBAL STYLES
   ========================================= */
:root {
  --navy-darkest: #2D357E;
  --navy-medium: #2D357E;
  --navy-light: #3D4A8F;
  --navy-pale: #F0F4F8;
  --gold: #C39689;
  --gold-hover: #C39689;
  --teal: #008080;
  --white: #FFFFFF;
  --off-white: #FAFAFA;
  --charcoal: #333333;
  --grey-medium: #666666;
  --grey-light: #E0E0E0;

  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  line-height: 1.6;
  background-color: var(--off-white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  color: var(--navy-medium);
  font-weight: 600;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Section Paddings */
.section-padding {
  padding: 80px 0;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 15px;
  position: relative;
}

.section-label::before {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background-color: var(--gold);
  margin: 0 auto 10px auto;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.section-header p {
  color: var(--grey-medium);
}

.section-header.light-text h2 {
  color: var(--white);
}

.section-header.light-text p {
  color: rgba(255, 255, 255, 0.8);
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn i {
  margin-left: 10px;
}

.btn-primary {
  background-color: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  background-color: var(--gold-hover);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--navy-medium);
  color: var(--white);
}

.btn-secondary:hover {
  background-color: var(--navy-light);
  transform: translateY(-2px);
}

.btn-outline-white {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* =========================================
   NAVIGATION
   ========================================= */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.4s ease;
  padding: 20px 0;
}

header.scrolled {
  background-color: var(--navy-medium);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  padding: 15px 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo span {
  font-weight: 400;
  font-family: var(--font-body);
  font-size: 1.1rem;
}

.logo img {
  height: 45px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a,
.nav-dropdown-toggle {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: var(--font-body);
  padding: 0;
}

.nav-dropdown-toggle i {
  color: var(--gold);
  font-size: 0.72rem;
  transition: transform 0.25s ease;
}

.nav-links a::after,
.nav-dropdown-toggle::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--gold);
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after,
.nav-dropdown-toggle:hover::after,
.nav-dropdown-toggle:focus-visible::after,
.nav-dropdown-toggle.active::after {
  width: 30px;
}

.nav-dropdown {
  position: relative;
}

/* Hover bridge: the menu sits 18px below the toggle, so without this the
   :hover state is lost the moment the cursor leaves the toggle's bottom
   edge and the menu vanishes before it can be reached. */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 240px;
  height: 18px;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  min-width: 210px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(18, 26, 72, 0.94);
  box-shadow: 0 22px 60px rgba(10, 18, 56, 0.28);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown:hover .nav-dropdown-toggle i,
.nav-dropdown:focus-within .nav-dropdown-toggle i,
.nav-dropdown.open .nav-dropdown-toggle i {
  transform: rotate(180deg);
}

.nav-dropdown-menu a {
  display: block;
  padding: 11px 12px;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.88);
  white-space: nowrap;
}

.nav-dropdown-menu a::after {
  display: none;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible,
.nav-dropdown-menu a.active {
  background: rgba(195, 150, 137, 0.14);
  color: var(--white);
}

.nav-buttons {
  display: flex;
  gap: 15px;
}

.hamburger {
  display: none;
  color: var(--gold);
  font-size: 1.8rem;
  cursor: pointer;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
  height: 100vh;
  background: linear-gradient(to right, rgba(22, 42, 74, 0.35) 0%, rgba(22, 42, 74, 0.25) 100%),
    url('../Assets/images/Hero.jpg') center/cover;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-content {
  max-width: 800px;
  margin-top: 50px;
}

.hero-badge {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--gold);
}

.hero-eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--gold);
  flex: none;
}

.hero h1 {
  color: var(--white);
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero h1 .gold-text {
  color: var(--gold);
}

.hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.hero-trust-stack {
  position: absolute;
  bottom: 120px;
  right: 5%;
  text-align: right;
}

.hero-trust-stack p {
  font-size: 0.85rem;
  margin-bottom: 8px;
  color: var(--white);
}

.hero-trust-stack i {
  color: var(--gold);
  margin-right: 8px;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.3);
}

.scroll-indicator::after {
  content: '';
  position: absolute;
  top: 0;
  left: -3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--white);
  animation: scrolldown 1.5s infinite;
}

@keyframes scrolldown {
  0% {
    top: 0;
    opacity: 1;
  }

  100% {
    top: 40px;
    opacity: 0;
  }
}

/* Trust Strip */
.trust-strip {
  background-color: var(--navy-darkest);
  padding: 20px 0;
}

.trust-strip-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.trust-item {
  color: var(--white);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
}

.trust-divider {
  color: rgba(255, 255, 255, 0.3);
}

/* =========================================
   LIVE STATISTICS
   ========================================= */
.stats-section {
  background-color: var(--gold);
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-card hr {
  width: 40px;
  height: 2px;
  background-color: var(--navy-medium);
  border: none;
  margin: 0 auto 15px auto;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 5px;
  display: flex;
  justify-content: center;
}

.stat-label {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 500;
}

/* =========================================
   WHO WE ARE
   ========================================= */
.who-we-are {
  background-color: var(--white);
}

.who-we-are-flex {
  display: flex;
  align-items: flex-start;
  gap: 80px;
}

.who-img {
  flex: 1.1;
  position: relative;
  max-width: 52%;
}

.who-section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
}

.who-section-grid .who-img,
.who-section-grid .who-text {
  max-width: none;
  width: 100%;
}

.who-image {
  position: relative;
  padding: 72px 0 58px 64px;
}

.who-image::before,
.who-image::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 18px;
  z-index: 0;
  animation: governanceLineFloat 7s ease-in-out infinite;
}

.who-image::before {
  top: 24px;
  left: 24px;
  width: 255px;
  height: 265px;
  border: 2px solid rgba(45, 53, 126, 0.6);
  box-shadow: 38px 34px 0 -2px rgba(255, 255, 255, 0), 38px 34px 0 0 rgba(45, 53, 126, 0.52);
}

.who-image::after {
  right: -24px;
  bottom: 46px;
  width: 50%;
  height: 36%;
  border: 2px solid rgba(45, 53, 126, 0.6);
  box-shadow: -42px -36px 0 -2px rgba(255, 255, 255, 0), -42px -36px 0 0 rgba(195, 150, 137, 0.46);
  animation-delay: 1.4s;
}

.who-img-inner {
  position: relative;
  z-index: 2;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(20, 25, 60, 0.14);
  border: 5px solid rgba(255, 255, 255, 0.95);
}

.who-img-inner::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  right: 8px;
  bottom: 8px;
  background-color: var(--gold);
  opacity: 0.15;
  z-index: -1;
  border-radius: 10px;
}

.who-img img {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.who-img-caption {
  position: relative;
  z-index: 2;
  margin-top: 18px;
  font-size: 0.92rem;
  color: var(--grey-medium);
  font-style: italic;
  line-height: 1.6;
  padding-left: 18px;
  border-left: 3px solid var(--gold);
}

.who-img-cards {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.who-img-card {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: 6px;
  padding: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.who-img-card .icon {
  width: 32px;
  height: 32px;
  background-color: var(--navy-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.85rem;
}

.who-img-card h5 {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy-medium);
  margin-bottom: 5px;
}

.who-img-card p {
  font-size: 0.72rem;
  color: var(--grey-medium);
  line-height: 1.4;
}

.who-text {
  flex: 1;
}

.who-text p.body-txt {
  margin-bottom: 30px;
  color: var(--grey-medium);
}

.who-proof-list {
  margin-top: 34px;
  margin-bottom: 30px;
  display: grid;
  gap: 16px;
}

.who-proof-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(45, 53, 126, 0.08);
  border-radius: 18px;
  box-shadow: 0 12px 34px rgba(20, 25, 60, 0.06);
}

.proof-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy-medium);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.who-proof-item h4 {
  margin: 0 0 6px;
  color: var(--navy-darkest);
  font-size: 1rem;
}

.who-proof-item p {
  margin: 0;
  color: var(--grey-medium);
  line-height: 1.55;
}

.who-points {
  margin-bottom: 30px;
}

.who-point {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.who-point .icon {
  width: 40px;
  height: 40px;
  background-color: var(--navy-medium);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.who-point h4 {
  margin-bottom: 5px;
}

.who-point p {
  font-size: 0.9rem;
  color: var(--grey-medium);
}

/* =========================================
   THE CHALLENGE
   ========================================= */
.challenge {
  background-color: var(--navy-medium);
  color: var(--white);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.challenge-card {
  background-color: var(--navy-light);
  padding: 40px 30px;
  border-radius: 8px;
  text-align: center;
}

.challenge-card .icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.challenge-card h3 {
  color: var(--white);
  margin-bottom: 15px;
}

.challenge-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

/* =========================================
   OUR SERVICES
   ========================================= */
.services {
  background-color: var(--off-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  background-color: var(--white);
  border-top: 4px solid var(--gold);
  padding: 30px 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  color: inherit;
}

.service-card:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 5px;
}

.service-card .icon {
  width: 50px;
  height: 50px;
  background-color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-darkest);
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.service-card h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--grey-medium);
  margin-bottom: 20px;
}

.service-card a {
  color: var(--navy-light);
  font-weight: 600;
  font-size: 0.9rem;
}

.service-card a:hover {
  color: var(--gold);
}

/* =========================================
   HOW IT WORKS
   ========================================= */
.how-it-works {
  background-color: var(--white);
}

.process-row {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 50px;
}

.process-line {
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  border-top: 2px dashed var(--gold);
  z-index: 1;
}

.process-step {
  text-align: center;
  flex: 1;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.step-circle {
  width: 80px;
  height: 80px;
  background-color: var(--white);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--gold);
}

.process-step span {
  display: block;
  font-size: 0.8rem;
  color: var(--grey-medium);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.process-step h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--grey-medium);
}

/* =========================================
   CULTURAL HERITAGE BANNER
   ========================================= */
.heritage-banner {
  height: 500px;
  background: linear-gradient(rgba(45, 53, 126, 0.65), rgba(45, 53, 126, 0.65)),
    url('https://images.unsplash.com/photo-1605370241924-a29eb490ba12?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
  display: flex;
  align-items: center;
  text-align: center;
}

.heritage-content {
  max-width: 800px;
  margin: 0 auto;
  color: var(--white);
}

.heritage-content h2 {
  color: var(--white);
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.region-tags {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.region-tag {
  border: 1px solid var(--gold);
  padding: 5px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: var(--white);
}

/* =========================================
   DOMAINS GRID
   ========================================= */
.domains {
  background-color: var(--navy-pale);
}

.domains-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.domain-card {
  background-color: var(--white);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease;
}

.domain-card:hover {
  transform: translateY(-5px);
}

.domain-card .icon {
  width: 45px;
  height: 45px;
  background-color: var(--navy-medium);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 15px;
}

.domain-card h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.domain-card p {
  font-size: 0.9rem;
  color: var(--grey-medium);
  margin-bottom: 15px;
  min-height: 45px;
}

.domain-card .examples {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 500;
}

/* =========================================
   REAL IMPACT
   ========================================= */
.impact {
  background-color: var(--white);
  text-align: center;
}

.impact-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 50px;
  text-align: left;
  align-items: stretch;
}

.impact-stats--four {
  grid-template-columns: repeat(4, 1fr);
}

.impact-stat-item hr {
  width: 40px;
  height: 2px;
  background-color: var(--gold);
  border: none;
  margin-bottom: 15px;
}

.impact-stat-item h3 {
  font-size: clamp(2.25rem, 4vw, 3.45rem);
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 14px;
  white-space: normal;
  overflow-wrap: anywhere;
}

.impact-stat-item h4 {
  font-family: var(--font-body);
  font-size: 1.06rem;
  color: var(--navy-medium);
  margin-bottom: 14px;
  line-height: 1.35;
}

.impact-stat-item p {
  font-size: 1rem;
  color: var(--grey-medium);
  line-height: 1.75;
}

.regional-bar-container {
  margin-top: 48px;
  padding: 28px 28px 22px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.78));
  border: 1px solid rgba(45, 53, 126, 0.08);
  box-shadow: 0 26px 70px rgba(30, 40, 95, 0.12);
  backdrop-filter: blur(16px);
}

.regional-bar {
  display: flex;
  align-items: stretch;
  height: 52px;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 18px;
  background: rgba(45, 53, 126, 0.08);
  box-shadow: inset 0 1px 3px rgba(17, 24, 66, 0.08), 0 18px 44px rgba(20, 26, 70, 0.12);
}

.bar-segment {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  width: 0;
  min-width: 0;
  position: relative;
  overflow: hidden;
  transition: width 1.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.bar-segment::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.32) 48%, transparent 100%);
  transform: translateX(-120%);
  opacity: 0;
}

.regional-bar.is-animated .bar-segment::after {
  opacity: 1;
  animation: meterSweep 1.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.regional-bar.is-animated .bar-segment {
  width: calc(var(--target-width, 0) * 1%);
}

.segment-label {
  position: relative;
  z-index: 1;
  padding: 0 14px;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  transition-delay: 0.8s;
}

.regional-bar.is-animated .segment-label {
  opacity: 1;
  transform: translateY(0);
}

.seg-acholi {
  background-color: var(--navy-medium);
}

.seg-lango {
  background-color: var(--navy-light);
}

.seg-westnile {
  background-color: var(--gold);
}

.seg-karamoja {
  background-color: var(--teal);
}

.regional-legend {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 0.95rem;
  color: var(--grey-medium);
  flex-wrap: wrap;
}

.legend-item span {
  display: inline-block;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  margin-right: 5px;
}

@keyframes meterSweep {
  0% {
    transform: translateX(-120%);
  }

  100% {
    transform: translateX(120%);
  }
}

/* =========================================
   LEADERSHIP PYRAMID
   ========================================= */
.leadership-pyramid-section {
  background: linear-gradient(180deg, #f8f9fc 0%, #ffffff 100%);
  position: relative;
}

.leadership-pyramid-section .section-header {
  max-width: 850px;
}

.leadership-pyramid {
  margin-top: 46px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.pyramid-level-label {
  text-align: center;
}

.pyramid-level-label h3 {
  color: var(--navy-darkest);
  font-size: 1.08rem;
  letter-spacing: 0;
}

.pyramid-level {
  width: 100%;
  display: grid;
  gap: 24px;
  justify-content: center;
}

.level-patron {
  grid-template-columns: minmax(300px, 440px);
}

.level-chair {
  grid-template-columns: minmax(280px, 380px);
}

.level-board {
  grid-template-columns: repeat(4, minmax(230px, 1fr));
}

.level-regional {
  grid-template-columns: repeat(5, minmax(200px, 1fr));
}

.pyramid-connector {
  width: 2px;
  height: 28px;
  background: linear-gradient(180deg, rgba(45, 53, 126, 0.35), rgba(195, 150, 137, 0.5));
  position: relative;
}

.pyramid-connector::before,
.pyramid-connector::after {
  content: '';
  position: absolute;
  left: 50%;
  width: 84px;
  height: 1px;
  background: rgba(45, 53, 126, 0.14);
  transform: translateX(-50%);
}

.pyramid-connector::before {
  top: 0;
}

.pyramid-connector::after {
  bottom: 0;
}

.leadership-card {
  background: #ffffff;
  border: 1px solid rgba(45, 53, 126, 0.1);
  border-radius: 24px;
  padding: 30px 22px;
  text-align: center;
  box-shadow: 0 18px 45px rgba(20, 25, 60, 0.08);
  position: relative;
  overflow: hidden;
}

.patron-card {
  max-width: 420px;
  padding: 36px 30px;
  border-color: rgba(195, 150, 137, 0.55);
  box-shadow: 0 28px 70px rgba(20, 25, 60, 0.14);
}

.chair-card {
  border-color: rgba(195, 150, 137, 0.38);
  box-shadow: 0 22px 56px rgba(20, 25, 60, 0.1);
}

.leadership-photo-frame {
  width: 170px;
  height: 170px;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(45, 53, 126, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

.patron-card .leadership-photo-frame {
  width: 260px;
  height: 260px;
  border-radius: 22px;
}

.chair-card .leadership-photo-frame {
  width: 220px;
  height: 220px;
}

.board-card .leadership-photo-frame {
  width: 170px;
  height: 170px;
}

.regional-card .leadership-photo-frame {
  width: 160px;
  height: 160px;
}

.leadership-photo-frame img,
.leadership-avatar {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  display: block;
  background: #ffffff;
}

.leadership-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: var(--gold);
  border: 1px solid rgba(45, 53, 126, 0.1);
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
}

.leadership-card-body {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 2px solid rgba(195, 150, 137, 0.58);
}

.leadership-card h3 {
  color: var(--navy-darkest);
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.leadership-card .primary-role {
  color: var(--navy-medium);
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.4;
}

.leadership-card .secondary-role {
  color: var(--grey-medium);
  font-size: 0.95rem;
  line-height: 1.5;
}

.role-badge {
  display: inline-block;
  margin-top: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(195, 150, 137, 0.14);
  color: #8d604f;
  font-size: 0.78rem;
  font-weight: 800;
}

/* =========================================
   FOOTER
   ========================================= */
footer {
  background-color: var(--navy-darkest);
  color: var(--white);
  padding: 60px 0 20px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo h2 {
  color: var(--white);
  margin-bottom: 10px;
}

.footer-logo p.tagline {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--gold);
  margin-bottom: 15px;
}

.footer-logo p.desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  width: 35px;
  height: 35px;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  color: var(--white);
  transition: background 0.3s;
}

.social-icons a:hover {
  background-color: var(--gold);
}

.footer-col h4 {
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-col p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
}

.partner-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 20px 0;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.partner-strip span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.partner-strip .partner {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  flex-wrap: wrap;
}

.bottom-bar a {
  color: rgba(255, 255, 255, 0.5);
}

.bottom-bar a:hover {
  color: var(--white);
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 3rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .domains-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .impact-stats {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .program-detail,
  .program-detail.reverse {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .program-detail.reverse .program-copy,
  .program-detail.reverse .program-media {
    order: initial;
  }

  .program-copy {
    display: contents;
  }

  .program-copy h2,
  .program-copy .program-lede {
    order: 1;
  }

  .program-media {
    order: 2;
  }

  .program-copy .body-txt {
    order: 3;
  }

  .program-copy h3,
  .program-copy .program-list,
  .program-copy .program-status-text,
  .program-copy .program-cta {
    order: 4;
  }

  .program-status-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {

  .nav-links,
  .nav-buttons {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .hero-content {
    margin-top: 0;
    text-align: center;
  }

  .hero-trust-stack {
    display: none;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-buttons {
    justify-content: center;
    flex-direction: column;
  }

  .who-we-are-flex {
    flex-direction: column;
  }

  .who-img-cards {
    flex-direction: column;
  }

  .who-img-card {
    width: 100%;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .process-row {
    flex-direction: column;
    gap: 40px;
  }

  .process-line {
    top: 0;
    bottom: 0;
    left: 40px;
    width: 2px;
    height: auto;
    border-top: none;
    border-left: 2px dashed var(--gold);
  }

  .process-step {
    display: flex;
    text-align: left;
    align-items: flex-start;
    gap: 20px;
    padding: 0;
  }

  .step-circle {
    margin: 0;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .domains-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .regional-bar-container {
    display: none;
  }

  /* Simplify on mobile */
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--navy-darkest);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateX(100%);
  transition: transform 0.4s ease;
}

.mobile-menu.active {
  transform: translateX(0);
}

.close-menu {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: var(--gold);
  cursor: pointer;
}

.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--white);
  margin: 15px 0;
  text-align: center;
}

.mobile-submenu {
  width: min(86vw, 360px);
  text-align: center;
}

.mobile-submenu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 2rem;
  margin: 15px 0;
}

.mobile-submenu-toggle i {
  color: var(--gold);
  font-size: 0.9rem;
  transition: transform 0.25s ease;
}

.mobile-submenu-toggle[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.mobile-submenu-panel {
  display: none;
  margin: -4px 0 8px;
}

.mobile-submenu-panel.active {
  display: grid;
  gap: 4px;
}

.mobile-submenu-panel a {
  display: block;
  margin: 0;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
}

.mobile-menu .btn {
  margin-top: 20px;
  font-family: var(--font-body);
  font-size: 1rem;
}

/* =========================================
   PREMIUM REFINEMENT SYSTEM
   ========================================= */
:root {
  --page-bg: #f6f7fb;
  --surface-white: rgba(255, 255, 255, 0.8);
  --surface-glass: rgba(255, 255, 255, 0.12);
  --surface-dark: rgba(20, 26, 70, 0.82);
  --border-soft: rgba(45, 53, 126, 0.12);
  --border-strong: rgba(255, 255, 255, 0.12);
  --shadow-soft: 0 24px 70px rgba(28, 36, 94, 0.12);
  --shadow-card: 0 32px 80px rgba(20, 26, 70, 0.14);
  --shadow-luxury: 0 34px 120px rgba(10, 18, 56, 0.32);
  --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at top left, rgba(195, 150, 137, 0.12), transparent 32%),
    radial-gradient(circle at top right, rgba(61, 74, 143, 0.14), transparent 28%),
    linear-gradient(180deg, #fbfbfe 0%, #f3f5fb 52%, #eef1f8 100%);
  min-height: 100vh;
  position: relative;
}

body::before,
body::after {
  content: '';
  position: fixed;
  inset: auto;
  width: 28rem;
  height: 28rem;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.5;
  pointer-events: none;
  z-index: -1;
}

body::before {
  top: -10rem;
  left: -12rem;
  background: rgba(61, 74, 143, 0.2);
}

body::after {
  right: -10rem;
  bottom: -8rem;
  background: rgba(195, 150, 137, 0.22);
}

img {
  max-width: 100%;
}

section,
.trust-strip,
footer {
  position: relative;
}

.container {
  width: min(92%, 1240px);
}

.section-padding {
  padding: 118px 0;
}

.section-header {
  max-width: 760px;
  margin-bottom: 68px;
}

.section-header h2 {
  font-size: clamp(2.5rem, 4.5vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-wrap: balance;
  margin-bottom: 24px;
}

.section-header p,
.who-text p.body-txt,
.challenge-card p,
.service-card p,
.process-step p,
.domain-card p,
.impact-stat-item p {
  font-size: 1rem;
  line-height: 1.8;
}

.section-label {
  letter-spacing: 0.22em;
  font-size: 0.76rem;
}

.btn {
  position: relative;
  min-height: 54px;
  padding: 14px 26px;
  border-radius: 999px;
  overflow: hidden;
  isolation: isolate;
  transform: translateY(0) scale(1);
  transition:
    transform 0.4s var(--ease-premium),
    box-shadow 0.4s var(--ease-premium),
    background-color 0.4s var(--ease-premium),
    color 0.4s var(--ease-premium),
    border-color 0.4s var(--ease-premium);
  will-change: transform;
}

.btn::before,
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease-premium), transform 0.35s var(--ease-premium);
}

.btn::before {
  opacity: 0;
  background: radial-gradient(circle at var(--pointer-x, 50%) var(--pointer-y, 50%), rgba(255, 255, 255, 0.28), transparent 42%);
}

.btn::after {
  inset: 1px;
  border-radius: inherit;
  opacity: 0.45;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.35), transparent 48%, transparent 58%, rgba(255, 255, 255, 0.12));
}

.btn:hover {
  transform: translateY(-4px) scale(1.01);
}

.btn:hover::before,
.btn:focus-visible::before {
  opacity: 1;
}

.btn:active,
.btn.is-pressed {
  transform: translateY(-1px) scale(0.985);
}

.btn:focus-visible {
  outline: 3px solid rgba(61, 74, 143, 0.18);
  outline-offset: 3px;
}

.btn:disabled,
.btn.is-loading {
  cursor: wait;
  opacity: 0.82;
}

.btn-primary {
  background: linear-gradient(135deg, #2d357e 0%, #4453a3 52%, #2d357e 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--white);
  box-shadow: 0 20px 45px rgba(45, 53, 126, 0.28);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #364090 0%, #5061b6 52%, #364090 100%);
  box-shadow: 0 28px 60px rgba(45, 53, 126, 0.34);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy-darkest);
  border: 1px solid rgba(45, 53, 126, 0.1);
  box-shadow: 0 18px 42px rgba(30, 40, 95, 0.12);
}

.btn-secondary:hover {
  background: var(--white);
  box-shadow: 0 24px 50px rgba(30, 40, 95, 0.18);
}

.btn-outline-white {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 46px rgba(8, 12, 36, 0.18);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.38);
}

header {
  padding: 18px 0;
}

header.scrolled {
  background: linear-gradient(180deg, rgba(24, 31, 76, 0.9), rgba(35, 43, 96, 0.84));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 60px rgba(10, 18, 56, 0.24);
}

.nav-links {
  gap: 26px;
}

.nav-links a {
  letter-spacing: 0.01em;
}

.hero {
  min-height: 60vh;
  padding: 112px 0 72px;
  background:
    linear-gradient(90deg, rgba(15, 20, 70, 0.55) 0%, rgba(15, 20, 70, 0.38) 50%, rgba(15, 20, 70, 0.28) 100%),
    url('../Assets/images/Hero.jpg') center/cover;
  overflow: hidden;
  position: relative;
}

.home-hero {
  min-height: 100vh;
  padding: 142px 0 104px;
  background: none;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.80) 0%, rgba(0, 0, 0, 0.72) 50%, rgba(0, 0, 0, 0.65) 100%);
  z-index: 1;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .hero-video-bg, .hero-overlay {
    display: none !important;
  }
  .home-hero {
    background:
      linear-gradient(90deg, rgba(15, 20, 70, 0.55) 0%, rgba(15, 20, 70, 0.38) 50%, rgba(15, 20, 70, 0.28) 100%),
      url('../Assets/images/Hero.jpg') center/cover;
  }
}

.contact-hero {
  min-height: 52vh;
}

.hero:not(.home-hero) .hero-content {
  max-width: 620px;
  padding: 34px 32px;
}

.hero:not(.home-hero) h1 {
  font-size: clamp(2.35rem, 4.6vw, 4.2rem);
  max-width: 12ch;
}

.hero:not(.home-hero) p {
  font-size: 1.05rem;
  max-width: 560px;
  margin-bottom: 0;
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  filter: blur(28px);
  opacity: 0.8;
}

.hero::before {
  width: 22rem;
  height: 22rem;
  top: 7rem;
  right: 6%;
  background: radial-gradient(circle, rgba(195, 150, 137, 0.35), transparent 68%);
}

.hero::after {
  width: 30rem;
  height: 30rem;
  bottom: -10rem;
  left: -6rem;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 58%);
}

.hero .relative {
  position: relative;
  z-index: 4;
}

.home-hero .scroll-indicator {
  z-index: 4;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}

.hero-particle {
  --particle-left: 50%;
  --particle-size: 8px;
  --particle-height: 4px;
  --particle-color: rgba(212, 163, 115, 0.86);
  --particle-delay: 0s;
  --particle-duration: 16s;
  --particle-drift: 18px;
  --particle-rotate: 120deg;
  --particle-start-y: -18vh;
  --particle-blur: 0.08px;
  --particle-scale: 1;
  position: absolute;
  top: -36px;
  left: var(--particle-left);
  width: var(--particle-size);
  height: var(--particle-height);
  display: block;
  border-radius: 2px;
  background: var(--particle-color);
  opacity: 0;
  filter: blur(var(--particle-blur));
  transform: translate3d(0, var(--particle-start-y), 0) rotate(var(--particle-rotate)) scale(var(--particle-scale));
  animation: premiumParticleDrift var(--particle-duration) linear infinite;
  animation-delay: var(--particle-delay);
  will-change: transform, opacity;
}

.hero-particle-dot {
  border-radius: 999px;
}

.hero-particle-diamond {
  transform: translate3d(0, var(--particle-start-y), 0) rotate(45deg) scale(var(--particle-scale));
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

@keyframes premiumParticleDrift {
  0% {
    opacity: 0;
    transform: translate3d(0, var(--particle-start-y), 0) rotate(var(--particle-rotate)) scale(var(--particle-scale));
  }

  18% {
    opacity: 0.84;
  }

  62% {
    opacity: 0.72;
  }

  100% {
    opacity: 0;
    transform: translate3d(var(--particle-drift), 108vh, 0) rotate(calc(var(--particle-rotate) + 240deg)) scale(var(--particle-scale));
  }
}

.hero-content {
  position: relative;
  max-width: 660px;
  margin-top: 18px;
  padding: 54px 48px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.16), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.004)),
    rgba(255, 255, 255, 0.006);
  backdrop-filter: blur(4px) saturate(190%) contrast(1.05);
  -webkit-backdrop-filter: blur(4px) saturate(190%) contrast(1.05);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    inset 12px 14px 34px rgba(255, 255, 255, 0.06),
    inset -16px -18px 36px rgba(18, 24, 62, 0.08),
    0 18px 48px rgba(0, 0, 0, 0.16);
  overflow: hidden;
}

.home-hero-content {
  max-width: 600px;
  padding: 36px 34px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.16), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.004)),
    rgba(255, 255, 255, 0.006);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(4px) saturate(190%) contrast(1.05);
  -webkit-backdrop-filter: blur(4px) saturate(190%) contrast(1.05);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    inset 12px 14px 34px rgba(255, 255, 255, 0.06),
    inset -16px -18px 36px rgba(18, 24, 62, 0.08),
    0 18px 48px rgba(0, 0, 0, 0.16);
}

.home-hero-content::after {
  opacity: 0.28;
}

.hero-content::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.75),
    rgba(255, 255, 255, 0.18) 35%,
    rgba(255, 255, 255, 0.08) 65%,
    rgba(255, 255, 255, 0.35)
  );
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  pointer-events: none;
}

.hero-content::after {
  content: "";
  position: absolute;
  top: -35%;
  left: -20%;
  width: 70%;
  height: 80%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.28),
    rgba(255, 255, 255, 0.08) 38%,
    transparent 70%
  );
  transform: rotate(-12deg);
  pointer-events: none;
}

.hero-content > * {
  position: relative;
  z-index: 2;
}

.hero-content h1,
.hero-content p {
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.25);
}

.hero-content .gold-text {
  color: #d4a373;
}

.hero-content .btn-primary {
  background: linear-gradient(135deg, rgba(74, 86, 200, 0.95), rgba(45, 53, 126, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 14px 32px rgba(0, 0, 0, 0.25);
}

.hero-content .btn-primary:hover {
  background: linear-gradient(135deg, rgba(84, 96, 215, 0.98), rgba(52, 61, 142, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 20px 40px rgba(0, 0, 0, 0.32);
}

.hero h1 {
  font-size: clamp(2.9rem, 6vw, 5.4rem);
  letter-spacing: -0.055em;
  line-height: 0.96;
  max-width: 11ch;
  text-wrap: balance;
  margin-bottom: 16px;
}

.home-hero-content h1 {
  font-size: clamp(2.35rem, 4.9vw, 4.45rem);
  max-width: 12ch;
  margin-bottom: 14px;
}

.hero p {
  font-size: clamp(1rem, 1.55vw, 1.12rem);
  max-width: 48ch;
  line-height: 1.78;
  margin-bottom: 28px;
}

.hero-buttons {
  margin-top: 2px;
  flex-wrap: wrap;
  gap: 14px;
}

.scroll-indicator {
  width: 2px;
  height: 60px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.7));
}

.scroll-indicator::after {
  left: -4px;
  width: 10px;
  height: 10px;
}

.trust-strip {
  width: min(92%, 1220px);
  margin: -48px auto 0;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(17, 24, 66, 0.92), rgba(31, 40, 96, 0.84));
  box-shadow: 0 28px 80px rgba(12, 18, 49, 0.28);
  backdrop-filter: blur(18px);
  z-index: 4;
}

.trust-strip-flex {
  justify-content: space-between;
  gap: 18px;
  padding: 18px 8px;
}

.trust-item {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
}

.stats-section {
  background: transparent;
  padding: 72px 0 12px;
}

.stats-grid {
  gap: 24px;
}

.stat-card {
  padding: 34px 26px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(45, 53, 126, 0.96), rgba(61, 74, 143, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-card);
}

.stat-card hr {
  background: rgba(255, 255, 255, 0.36);
  width: 54px;
  margin-bottom: 20px;
}

.stat-number {
  letter-spacing: -0.05em;
}

.who-we-are,
.how-it-works,
.impact {
  background: transparent;
}

.who-we-are-flex {
  align-items: center;
  gap: 76px;
}

.who-img img {
  border-radius: 30px;
  box-shadow: 0 28px 85px rgba(24, 34, 92, 0.18);
}

.who-img:not(.who-image) {
  box-sizing: border-box;
  padding: 72px 0 58px 64px;
}

.who-img:not(.who-image)::before,
.who-img:not(.who-image)::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 18px;
  z-index: 0;
  animation: governanceLineFloat 7s ease-in-out infinite;
}

.who-img:not(.who-image)::before {
  top: 24px;
  left: 24px;
  width: 255px;
  height: 265px;
  border: 2px solid rgba(45, 53, 126, 0.6);
  box-shadow: 38px 34px 0 -2px rgba(255, 255, 255, 0), 38px 34px 0 0 rgba(45, 53, 126, 0.52);
}

.who-img:not(.who-image)::after {
  right: -24px;
  bottom: 46px;
  width: 50%;
  height: 36%;
  border: 2px solid rgba(45, 53, 126, 0.6);
  box-shadow: -42px -36px 0 -2px rgba(255, 255, 255, 0), -42px -36px 0 0 rgba(195, 150, 137, 0.46);
  animation-delay: 1.2s;
}

.who-img:not(.who-image) img {
  position: relative;
  z-index: 2;
  border: 6px solid rgba(255, 255, 255, 0.96);
}

.who-img img.report-feature-image {
  object-position: center top;
}

.who-point,
.who-proof-item,
.service-card,
.domain-card,
.impact-stat-item,
.process-step {
  border: 1px solid var(--border-soft);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.72));
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform, box-shadow;
}

.who-point,
.who-proof-item {
  padding: 18px 20px;
  transition: transform 0.45s var(--ease-premium), box-shadow 0.45s var(--ease-premium), border-color 0.45s var(--ease-premium);
}

.who-point:hover,
.who-proof-item:hover,
.service-card:hover,
.challenge-card:hover,
.domain-card:hover,
.process-step:hover,
.impact-stat-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 34px 80px rgba(20, 26, 70, 0.18);
  border-color: rgba(61, 74, 143, 0.22);
}

.stat-card,
.challenge-card,
.service-card,
.who-point,
.who-proof-item,
.process-step,
.domain-card,
.impact-stat-item {
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transform:
    perspective(1800px)
    rotateX(var(--rotate-x, 0deg))
    rotateY(var(--rotate-y, 0deg))
    translateY(var(--lift-y, 0px))
    scale(var(--card-scale, 1))
    translateZ(0);
  transition:
    transform 0.45s var(--ease-premium),
    box-shadow 0.45s var(--ease-premium),
    border-color 0.45s var(--ease-premium),
    background 0.45s var(--ease-premium);
}

.stat-card::before,
.challenge-card::before,
.service-card::before,
.who-point::before,
.who-proof-item::before,
.process-step::before,
.domain-card::before,
.impact-stat-item::before,
.stat-card::after,
.challenge-card::after,
.service-card::after,
.who-point::after,
.who-proof-item::after,
.process-step::after,
.domain-card::after,
.impact-stat-item::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  transition: opacity 0.45s var(--ease-premium), transform 0.45s var(--ease-premium);
}

.stat-card::before,
.challenge-card::before,
.service-card::before,
.who-point::before,
.who-proof-item::before,
.process-step::before,
.domain-card::before,
.impact-stat-item::before {
  inset: 1px;
  border-radius: inherit;
  opacity: 0.72;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.12) 26%, transparent 52%),
    radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(255, 255, 255, 0.18), transparent 38%);
  transform: translateZ(42px) scale(1.02);
}

.stat-card::after,
.challenge-card::after,
.service-card::after,
.who-point::after,
.who-proof-item::after,
.process-step::after,
.domain-card::after,
.impact-stat-item::after {
  inset: auto 10% -18px;
  height: 42px;
  border-radius: 999px;
  opacity: 0;
  filter: blur(26px);
  background: rgba(10, 18, 56, 0.32);
  transform: translateY(24px) scale(0.76);
}

.stat-card > *,
.challenge-card > *,
.service-card > *,
.who-point > *,
.who-proof-item > *,
.process-step > *,
.domain-card > *,
.impact-stat-item > * {
  position: relative;
  z-index: 1;
  transition: transform 0.45s var(--ease-premium);
  transform: translate3d(var(--inner-shift-x, 0px), var(--inner-shift-y, 0px), var(--inner-depth, 0px));
}

.interactive-tilt:hover,
.interactive-tilt.is-tilting {
  transform:
    perspective(1800px)
    rotateX(var(--rotate-x, 0deg))
    rotateY(var(--rotate-y, 0deg))
    translateY(var(--lift-y, -22px))
    scale(var(--card-scale, 1.025))
    translateZ(0);
}

.interactive-tilt:hover::after,
.interactive-tilt.is-tilting::after {
  opacity: 1;
  transform: translateY(12px) scale(1.12);
}

.challenge {
  background:
    linear-gradient(180deg, rgba(26, 34, 88, 0.96), rgba(38, 46, 104, 0.9)),
    radial-gradient(circle at top right, rgba(195, 150, 137, 0.24), transparent 24%);
}

.walk-group-challenge {
  background:
    linear-gradient(180deg, rgba(18, 24, 66, 0.82), rgba(28, 36, 90, 0.78)),
    url('../Assets/images/Walk Group.png') center/cover;
}

.walk-sacco-feature {
  background:
    linear-gradient(180deg, rgba(26, 34, 88, 0.85), rgba(38, 46, 104, 0.82)),
    radial-gradient(circle at top right, rgba(195, 150, 137, 0.2), transparent 24%),
    url('../Assets/images/Weaving-16x9.jpg') center top/cover no-repeat;
}

.cards-grid {
  gap: 24px;
}

.challenge-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  padding: 42px 34px;
  box-shadow: 0 24px 70px rgba(10, 18, 56, 0.18);
  backdrop-filter: blur(18px);
  transition: transform 0.45s var(--ease-premium), box-shadow 0.45s var(--ease-premium), border-color 0.45s var(--ease-premium);
}

.services {
  background: transparent;
}

.services-grid {
  gap: 24px;
}

.service-card {
  padding: 34px 24px 28px;
  border-top: 1px solid rgba(195, 150, 137, 0.4);
  border-radius: 28px;
  transition: transform 0.45s var(--ease-premium), box-shadow 0.45s var(--ease-premium), border-color 0.45s var(--ease-premium);
}

.stat-card:hover,
.stat-card.is-tilting {
  box-shadow: 0 56px 120px rgba(20, 26, 70, 0.34);
}

.challenge-card:hover,
.challenge-card.is-tilting {
  box-shadow: 0 62px 132px rgba(8, 12, 36, 0.42);
}

.service-card:hover,
.service-card.is-tilting,
.domain-card:hover,
.domain-card.is-tilting,
.impact-stat-item:hover,
.impact-stat-item.is-tilting,
.process-step:hover,
.process-step.is-tilting,
.who-point:hover,
.who-point.is-tilting,
.who-proof-item:hover,
.who-proof-item.is-tilting {
  box-shadow: 0 58px 128px rgba(20, 26, 70, 0.32);
}

.service-card .icon,
.who-point .icon,
.proof-icon,
.domain-card .icon {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24), 0 16px 30px rgba(45, 53, 126, 0.18);
  transform: translateZ(62px);
}

.process-row {
  gap: 24px;
}

.process-line {
  top: 44px;
  left: 12%;
  right: 12%;
  border-top-color: rgba(195, 150, 137, 0.55);
}

.process-step {
  padding: 26px 18px 20px;
  border-radius: 28px;
  transition: transform 0.45s var(--ease-premium), box-shadow 0.45s var(--ease-premium), border-color 0.45s var(--ease-premium);
}

.step-circle {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 244, 252, 0.86));
  box-shadow: 0 18px 40px rgba(30, 40, 95, 0.12);
  transform: translateZ(78px);
}

.stat-card hr {
  transform: translateZ(30px);
}

.stat-number {
  transform: translateZ(88px);
}

.stat-label {
  transform: translateZ(48px);
}

.challenge-card .icon {
  transform: translateZ(84px);
}

.challenge-card h3,
.service-card h3,
.domain-card h3,
.process-step h3,
.impact-stat-item h3,
.who-point h4 {
  transform: translateZ(64px);
}

.challenge-card p,
.service-card p,
.domain-card p,
.process-step p,
.impact-stat-item p,
.who-point p {
  transform: translateZ(36px);
}

.service-card a,
.domain-card .examples {
  transform: translateZ(52px);
}

.impact-stat-item hr {
  transform: translateZ(42px);
}

.impact-stat-item h4 {
  transform: translateZ(54px);
}

.process-step span {
  transform: translateZ(34px);
}

.heritage-banner {
  border-radius: 34px;
  width: min(92%, 1240px);
  margin: 0 auto;
  overflow: hidden;
  box-shadow: var(--shadow-luxury);
}

.heritage-content h2 {
  letter-spacing: -0.04em;
}

.region-tag {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.domains-grid,
.impact-stats {
  gap: 24px;
}

.domain-card,
.impact-stat-item {
  border-radius: 28px;
  transition: transform 0.45s var(--ease-premium), box-shadow 0.45s var(--ease-premium), border-color 0.45s var(--ease-premium);
}

.impact-stat-item {
  padding: 34px 32px 30px;
  min-height: 100%;
}

.regional-bar {
  box-shadow: inset 0 0 0 1px rgba(45, 53, 126, 0.08), 0 16px 40px rgba(30, 40, 95, 0.08);
}

footer {
  margin-top: 72px;
  background:
    linear-gradient(180deg, rgba(17, 24, 66, 0.98), rgba(20, 28, 74, 0.98)),
    radial-gradient(circle at top right, rgba(195, 150, 137, 0.14), transparent 28%);
}

.footer-grid {
  gap: 34px;
}

.social-icons a,
.partner-strip,
.mobile-menu {
  backdrop-filter: blur(18px);
}

.btn {
  transform-style: preserve-3d;
}

.btn i {
  transform: translateZ(18px);
}

.btn:hover,
.btn.is-pressed {
  box-shadow: 0 24px 48px rgba(18, 24, 62, 0.2);
}

.btn:hover::after {
  opacity: 0.72;
}

.btn-primary,
.btn-secondary,
.btn-outline-white {
  transform:
    perspective(1200px)
    rotateX(var(--btn-rotate-x, 0deg))
    rotateY(var(--btn-rotate-y, 0deg))
    translateY(0)
    translateZ(0);
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-outline-white:hover {
  transform:
    perspective(1200px)
    rotateX(var(--btn-rotate-x, 0deg))
    rotateY(var(--btn-rotate-y, 0deg))
    translateY(-4px)
    translateZ(0);
}

.social-icons a {
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.partner-strip {
  padding: 24px 0;
  border-top-color: rgba(255, 255, 255, 0.1);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.mobile-menu {
  background:
    linear-gradient(180deg, rgba(23, 30, 80, 0.96), rgba(28, 37, 90, 0.96)),
    radial-gradient(circle at top right, rgba(195, 150, 137, 0.2), transparent 26%);
}

body.menu-open {
  overflow: hidden;
}

.reveal-in {
  opacity: 0;
  transform: translateY(30px) scale(0.985);
  transition:
    opacity 0.85s var(--ease-premium),
    transform 0.85s var(--ease-premium);
  transition-delay: calc(var(--reveal-index, 0) * 90ms);
  will-change: opacity, transform;
}

.reveal-in.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.hero-content.reveal-in {
  transform: translateY(24px) scale(0.98);
}

.hero-content.reveal-in.is-visible {
  transform: translateY(0) scale(1);
}

@media (max-width: 1024px) {
  .section-padding {
    padding: 96px 0;
  }

  .trust-strip {
    margin-top: -34px;
  }

  .stats-grid,
  .services-grid,
  .domains-grid {
    gap: 20px;
  }

  .impact-stats {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .impact-stat-item {
    padding: 30px 26px 26px;
  }

  .level-board,
  .level-regional {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }

  .who-we-are-flex {
    gap: 44px;
  }
}

@media (max-width: 900px) {
  .who-section-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .who-img {
    max-width: none;
    width: 100%;
  }

  .who-image {
    padding: 34px 0 28px 20px;
  }

  .who-image::before {
    top: 10px;
    left: 8px;
    width: 145px;
    height: 150px;
    box-shadow: 22px 20px 0 -2px rgba(255, 255, 255, 0), 22px 20px 0 0 rgba(45, 53, 126, 0.48);
  }

  .who-image::after {
    right: -8px;
    bottom: 30px;
    width: 54%;
    height: 30%;
    box-shadow: -24px -20px 0 -2px rgba(255, 255, 255, 0), -24px -20px 0 0 rgba(195, 150, 137, 0.42);
  }

  .who-img:not(.who-image) {
    padding: 34px 0 28px 20px;
  }

  .who-img:not(.who-image)::before {
    top: 10px;
    left: 8px;
    width: 145px;
    height: 150px;
    box-shadow: 22px 20px 0 -2px rgba(255, 255, 255, 0), 22px 20px 0 0 rgba(45, 53, 126, 0.48);
  }

  .who-img:not(.who-image)::after {
    right: -8px;
    bottom: 30px;
    width: 54%;
    height: 30%;
    box-shadow: -24px -20px 0 -2px rgba(255, 255, 255, 0), -24px -20px 0 0 rgba(195, 150, 137, 0.42);
  }
}

@media (max-width: 768px) {
  body::after {
    display: none;
  }

  .section-padding {
    padding: 82px 0;
  }

  .hero {
    height: 55vh !important;
    min-height: 55vh;
    padding: 92px 0 44px;
  }

  .home-hero {
    min-height: 100vh;
    padding: 110px 0 68px;
  }

  .contact-hero {
    height: 50vh !important;
    min-height: 50vh;
  }

  .hero-particle {
    opacity: 0;
    --particle-duration: 18s;
  }

  .hero-content {
    margin-top: 12px;
    padding: 24px 20px;
    border-radius: 22px;
  }

  .hero:not(.home-hero) .hero-content {
    padding: 22px 18px;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.4rem, 10vw, 3.4rem);
  }

  .hero:not(.home-hero) h1 {
    font-size: clamp(2rem, 9vw, 2.85rem);
  }

  .home-hero-content h1 {
    max-width: none;
    font-size: clamp(2rem, 7.6vw, 3rem);
    line-height: 1.06;
    letter-spacing: -0.03em;
  }

  .hero-badge {
    font-size: 0.68rem;
    letter-spacing: 0.8px;
    padding: 5px 13px;
  }

  .hero-eyebrow {
    font-size: 0.68rem;
    letter-spacing: 1.5px;
    gap: 10px;
  }

  .hero:not(.home-hero) p {
    font-size: 0.98rem;
  }

  .who-we-are-flex {
    gap: 34px;
  }

  .who-we-are {
    overflow: hidden;
  }

  .who-img {
    flex: none;
    max-width: none;
    width: calc(100% + 20px);
    margin-left: -10px;
    margin-right: -10px;
  }

  .who-img img {
    aspect-ratio: 1.08 / 1;
    border-radius: 24px;
  }

  .hero p {
    margin-bottom: 22px;
  }

  .trust-strip {
    width: min(94%, 1240px);
    margin-top: -22px;
    padding: 0 10px;
    border-radius: 22px;
  }

  .trust-strip-flex {
    justify-content: center;
    padding: 14px 4px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .impact-stats {
    gap: 18px;
    margin-bottom: 32px;
  }

  .strategic-objectives-grid,
  .program-initiatives-grid {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }

  .strategic-objectives-grid .domain-card,
  .program-initiatives-grid .service-card {
    width: 100%;
  }

  .program-initiatives-grid .service-card img {
    height: 280px !important;
  }

  .impact-stat-item h3 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .regional-bar-container {
    padding: 22px 18px 18px;
    border-radius: 24px;
  }

  .regional-bar {
    height: 44px;
  }

  .bar-segment {
    font-size: 0.78rem;
  }

  .segment-label {
    padding: 0 8px;
  }

  .regional-legend {
    justify-content: flex-start;
    gap: 12px 18px;
    font-size: 0.88rem;
  }

  .leadership-pyramid {
    margin-top: 42px;
    gap: 18px;
  }

  .level-chair,
  .level-patron,
  .level-board,
  .level-regional {
    grid-template-columns: 1fr;
  }

  .leadership-card {
    padding: 24px 18px;
  }

  .patron-card .leadership-photo-frame {
    width: min(250px, 78vw);
    height: min(250px, 78vw);
  }

  .chair-card .leadership-photo-frame {
    width: min(224px, 72vw);
    height: min(224px, 72vw);
  }

  .board-card .leadership-photo-frame,
  .regional-card .leadership-photo-frame {
    width: 140px;
    height: 140px;
  }

  .leadership-avatar {
    font-size: 2.35rem;
  }

  .stat-card,
  .challenge-card,
  .service-card,
  .domain-card,
  .impact-stat-item,
  .process-step {
    border-radius: 24px;
  }

  .process-step {
    padding: 20px 18px;
  }

  .process-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 34px;
  }

  .process-line {
    display: none;
  }

  .process-step {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 16px;
    align-items: start;
    text-align: left;
    padding: 18px;
    min-height: auto;
  }

  .step-circle {
    width: 58px;
    height: 58px;
    margin: 0;
    font-size: 1.22rem;
  }

  .process-step span,
  .process-step h3,
  .process-step p {
    grid-column: 2;
  }

  .loan-calculator-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .loan-result-grid {
    grid-template-columns: 1fr !important;
  }

  .loan-schedule-wrap {
    margin-top: 34px !important;
    border: 1px solid rgba(45, 53, 126, 0.08);
    border-radius: 18px;
    background: #ffffff;
  }

  .loan-schedule-table {
    min-width: 760px;
  }

  .mobile-menu a {
    font-size: 1.8rem;
  }

  .mobile-submenu-toggle {
    font-size: 1.8rem;
  }

  .mobile-submenu-panel a {
    font-size: 0.98rem;
  }
}

@media (max-width: 480px) {
  .home-hero-content {
    padding: 26px 20px;
  }

  .home-hero-content h1 {
    font-size: clamp(1.85rem, 8.4vw, 2.5rem);
    letter-spacing: -0.02em;
  }

  .hero-badge {
    font-size: 0.62rem;
    letter-spacing: 0.6px;
  }

  .hero-eyebrow {
    font-size: 0.6rem;
    letter-spacing: 1.2px;
    gap: 9px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 380px) {
  .home-hero-content h1 {
    font-size: 1.7rem;
    line-height: 1.1;
  }

  .hero-badge {
    font-size: 0.58rem;
  }

  .hero-eyebrow {
    font-size: 0.56rem;
    letter-spacing: 1px;
    gap: 8px;
  }
}

@media (max-width: 640px) {
  .program-nav {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x proximity;
  }

  .program-nav a {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .program-media img,
  .program-media-placeholder {
    min-height: 0;
    max-height: 340px;
    border-radius: 22px;
  }

  .program-media img {
    height: auto;
  }

  .program-ecosystem-flow {
    align-items: stretch;
    flex-direction: column;
  }

  .program-ecosystem-flow i {
    transform: rotate(90deg);
  }
}

@media (max-width: 560px) {
  .impact-stat-item {
    padding: 26px 20px 22px;
  }

  .impact-stat-item h4 {
    font-size: 1rem;
  }

  .impact-stat-item p {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .regional-bar {
    height: auto;
    min-height: 44px;
  }

  .bar-segment {
    min-height: 44px;
    font-size: 0.7rem;
  }

  .segment-label {
    white-space: normal;
    text-align: center;
    line-height: 1.15;
    padding: 8px 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal-in {
    opacity: 1;
    transform: none;
  }

  .hero-particles {
    display: none;
  }
}

/* =========================================
   MAP & CUSTOM MARKERS
   ========================================= */
.map-section {
  position: relative;
  overflow: hidden;
}

#map {
  background-color: #f8f9fa;
}

.custom-map-marker {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-map-marker i {
  font-size: 2.2rem;
  color: var(--navy-medium);
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 2;
  transition: all 0.3s ease;
}

.custom-map-marker:hover i {
  color: var(--gold);
  transform: scale(1.1);
}

.marker-pin {
  position: absolute;
  width: 40px;
  height: 40px;
  background: rgba(45, 53, 126, 0.15);
  border: 1px solid rgba(45, 53, 126, 0.3);
  border-radius: 50%;
  animation: pulse-marker 2s infinite;
  z-index: 1;
}

@keyframes pulse-marker {
  0% {
    transform: scale(0.5);
    opacity: 1;
  }
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

.leaflet-popup-content-wrapper {
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.leaflet-popup-content {
  margin: 0 !important;
}

.leaflet-container a.leaflet-popup-close-button {
  color: var(--navy-medium);
  padding: 8px;
}

/* Responsive Map */
@media (max-width: 768px) {
  #map {
    height: 350px !important;
  }
}

/* Premium Map Controls */
.leaflet-control-layers {
  border: none !important;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
  border-radius: 8px !important;
  font-family: var(--font-body) !important;
  font-size: 0.8rem !important;
}

.leaflet-control-layers-expanded {
  background: var(--navy-darkest) !important;
  color: var(--white) !important;
  padding: 10px !important;
}

.leaflet-control-zoom-in, 
.leaflet-control-zoom-out {
  background: var(--white) !important;
  color: var(--navy-medium) !important;
  border: none !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
  margin-bottom: 5px !important;
}

.leaflet-control-zoom-in:hover, 
.leaflet-control-zoom-out:hover {
  background: var(--gold) !important;
  color: var(--white) !important;
}

/* Contact Success Popup */
.success-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(10, 18, 56, 0.58);
  backdrop-filter: blur(10px);
}

.hidden {
  display: none !important;
}

.success-modal-card {
  position: relative;
  width: min(92vw, 420px);
  background: var(--white);
  border-radius: 18px;
  padding: 34px 30px 30px;
  text-align: center;
  border: 1px solid rgba(45, 53, 126, 0.12);
  box-shadow: 0 30px 90px rgba(10, 18, 56, 0.35);
}

.success-modal-logo {
  width: 150px;
  max-width: 70%;
  height: auto;
  margin-bottom: 22px;
}

.success-modal-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: var(--navy-medium);
  color: var(--gold);
  font-size: 1.3rem;
}

.success-modal-card h3 {
  margin-bottom: 10px;
  color: var(--navy-medium);
}

.success-modal-card p {
  color: var(--grey-medium);
  line-height: 1.7;
}

.success-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: var(--navy-pale);
  color: var(--navy-medium);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.success-modal-close:hover {
  background: var(--gold);
  color: var(--white);
}

/* =========================================
   REDESIGNED VISION & MOVEMENT SECTION
   ========================================= */
.vision-movement-section {
  width: min(calc(100% - 28px), 1540px);
  margin: 14px auto 0;
  padding: 82px 0 78px;
  position: relative;
  background:
    radial-gradient(circle at 12% 28%, rgba(255, 255, 255, 0.84), transparent 34%),
    radial-gradient(circle at 72% 14%, rgba(255, 255, 255, 0.72), transparent 38%),
    linear-gradient(180deg, #f4f5f9 0%, #f8f9fc 100%);
  border-radius: 58px;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.vision-movement-section .container {
  max-width: 1360px;
}

.vision-movement-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.13fr) minmax(0, 1fr);
  gap: 66px;
  align-items: start;
}

/* 1. Left Column: Image Wrapper and Creative Outlines */
.vision-image-wrapper {
  position: relative;
  width: 100%;
  padding: 104px 0 74px 80px;
  display: block;
}

.vision-image-wrapper img {
  width: 100%;
  aspect-ratio: 1.29 / 1;
  object-fit: cover;
  object-position: 65% center;
  border: 8px solid rgba(255, 255, 255, 0.96);
  border-radius: 18px;
  position: relative;
  z-index: 3;
  box-shadow:
    0 24px 70px rgba(20, 25, 60, 0.16),
    0 2px 0 rgba(255, 255, 255, 0.88);
  display: block;
}

/* Outer and Inner Outline Frame Accents (TL) */
.decor-frame {
  position: absolute;
  border: 2px solid rgba(45, 53, 126, 0.88);
  z-index: 1;
  pointer-events: none;
  border-radius: 12px;
  animation: governanceLineFloat 7s ease-in-out infinite;
  box-shadow: 0 0 0 rgba(45, 53, 126, 0);
}

.decor-frame-tl-outer {
  top: 42px;
  left: 48px;
  width: 265px;
  height: 292px;
  opacity: 0.92;
  animation-delay: 0s;
}

.decor-frame-tl-inner {
  top: 78px;
  left: 84px;
  width: 250px;
  height: 278px;
  opacity: 0.92;
  animation-delay: 0.8s;
}

.decor-frame-br {
  right: -24px;
  bottom: 42px;
  width: 50%;
  height: 38%;
  opacity: 0.92;
  animation-delay: 1.6s;
}

/* Floating Shapes Accents */
.decor-square-orange {
  position: absolute;
  top: 26px;
  right: 130px;
  width: 47px;
  height: 47px;
  border: 2px solid #dfa334;
  border-left-color: transparent;
  border-radius: 7px;
  z-index: 2;
  transform: none;
  box-shadow: -10px 9px 0 -8px rgba(145, 151, 190, 0.95);
}

.decor-square-blue-1 {
  position: absolute;
  bottom: 24px;
  left: 76%;
  width: 24px;
  height: 24px;
  border: 1.5px solid rgba(45, 53, 126, 0.58);
  border-radius: 2px;
  z-index: 3;
  transform: none;
}

.decor-square-blue-2 {
  position: absolute;
  bottom: 12px;
  left: calc(76% + 14px);
  width: 24px;
  height: 24px;
  border: 1.5px solid rgba(45, 53, 126, 0.58);
  border-radius: 2px;
  z-index: 3;
  transform: none;
}

@keyframes governanceLineFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
    border-color: rgba(45, 53, 126, 0.76);
    box-shadow: 0 0 0 rgba(45, 53, 126, 0);
  }

  45% {
    transform: translate3d(6px, -5px, 0);
    border-color: rgba(45, 53, 126, 0.96);
    box-shadow: 0 0 18px rgba(45, 53, 126, 0.12);
  }

  70% {
    transform: translate3d(-3px, 4px, 0);
    border-color: rgba(195, 150, 137, 0.82);
  }
}

/* Gray Dotted Matrix Grid Accent */
.decor-dots-gray {
  position: absolute;
  bottom: 54px;
  left: 48px;
  width: 96px;
  height: 96px;
  background-image: radial-gradient(rgba(45, 53, 126, 0.34) 1.8px, transparent 1.8px);
  background-size: 12px 12px;
  z-index: 1;
  opacity: 0.72;
}

/* 2. Right Column: Content Alignment & Control */
.vision-text-wrapper {
  display: flex;
  flex-direction: column;
  padding-top: 0;
}

.vision-text-wrapper .section-label {
  display: none;
}

.vision-text-wrapper h2 {
  font-size: 2.08rem;
  margin-bottom: 12px;
  color: var(--navy-medium);
  font-weight: 800;
  letter-spacing: 0;
}

.vision-text-wrapper .body-txt {
  font-size: 0.98rem;
  line-height: 1.72;
  margin-bottom: 30px;
  color: var(--grey-medium);
  max-width: 610px;
}

/* 3. Stacked Premium Cards Layout */
.vision-mission-cards {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vision-card {
  display: flex;
  align-items: center;
  background: var(--white);
  border-radius: 14px;
  padding: 18px 30px 18px 18px;
  min-height: 108px;
  box-shadow: 0 16px 28px rgba(31, 37, 78, 0.12), 0 1px 2px rgba(45, 53, 126, 0.08);
  border: 1px solid rgba(45, 53, 126, 0.08);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.vision-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(45, 53, 126, 0.08);
  border-color: rgba(45, 53, 126, 0.15);
}

/* Icon Container & Circle Styling */
.card-icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-icon {
  width: 50px;
  height: 50px;
  background-color: var(--navy-medium);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: transform 0.4s var(--ease-premium);
}

.vision-card:hover .card-icon {
  transform: rotate(10deg) scale(1.05);
}

/* Thin Vertical Accent Line */
.card-divider {
  width: 2px;
  height: 76px;
  background-color: rgba(223, 163, 52, 0.72);
  margin: 0 20px;
  flex-shrink: 0;
}

/* Card Texts */
.card-content {
  flex-grow: 1;
  padding-right: 20px;
  z-index: 2;
}

.card-content h4 {
  font-size: 1.06rem;
  color: var(--navy-medium);
  margin-bottom: 6px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.card-content p {
  font-size: 0.9rem;
  color: var(--grey-medium);
  line-height: 1.5;
  margin: 0;
}

/* Card Decorative Dotted Accent */
.card-dots {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 60px;
  background-image: radial-gradient(rgba(223, 163, 52, 0.42) 1.7px, transparent 1.7px);
  background-size: 9px 9px;
  opacity: 1;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-premium);
}

.vision-card:hover .card-dots {
  opacity: 0.32;
}

/* 4. Responsive Media Queries */
@media (max-width: 991px) {
  .vision-movement-section {
    padding: 70px 0;
  }

  .vision-movement-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .vision-image-wrapper {
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }

  .decor-frame-tl-outer {
    top: -20px;
    left: -20px;
  }

  .decor-frame-tl-inner {
    top: -30px;
    left: -30px;
  }

  .decor-frame-br {
    bottom: -25px;
    right: -25px;
  }

  .decor-dots-gray {
    bottom: -25px;
    left: -30px;
  }

  .decor-square-orange {
    top: -25px;
    right: 40px;
  }

  .decor-square-blue-1 {
    bottom: -35px;
  }

  .decor-square-blue-2 {
    bottom: -40px;
  }
}

@media (max-width: 576px) {
  .vision-movement-section {
    padding: 50px 0;
  }

  .vision-movement-grid {
    gap: 40px;
  }

  .vision-text-wrapper h2 {
    font-size: 2rem;
  }

  .vision-card {
    padding: 20px 22px;
  }

  .card-divider {
    margin: 0 16px;
  }

  .card-dots {
    display: none;
  }

  .decor-frame,
  .decor-dots-gray {
    display: none;
  }
}

/* =========================================
   NEWSROOM — news.html editorial archive
   ========================================= */
.news-archive .section-header {
  text-align: left;
  max-width: 760px;
  margin: 0 auto 20px;
}

.news-archive .section-label::before {
  margin: 0 0 10px 0;
}

.news-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 760px;
  margin: 0 auto 36px;
}

.news-filters .filter-btn {
  padding: 7px 16px;
  border: 1px solid var(--grey-light);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  background: white;
  color: var(--grey-medium);
  transition: border-color 0.25s ease, color 0.25s ease;
}

.news-filters .filter-btn:hover {
  border-color: var(--gold);
  color: var(--navy-medium);
}

.news-filters .filter-btn.active {
  background: var(--gold);
  color: var(--navy-darkest);
  border-color: var(--gold);
}

.news-list {
  max-width: 760px;
  margin: 0 auto;
}

.news-entry {
  padding: 26px 0 24px;
  border-bottom: 1px solid rgba(45, 53, 126, 0.12);
}

.news-entry:last-child {
  border-bottom: none;
}

.news-entry-date {
  display: block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy-light);
  margin-bottom: 10px;
}

.news-entry-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--navy-medium);
  margin-bottom: 10px;
}

.news-entry-summary {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--grey-medium);
  margin-bottom: 12px;
  max-width: 640px;
}

.news-entry-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Domain Guide Modal Styles */
.domain-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 1;
  transition: opacity 0.25s ease;
}

.domain-modal-overlay.hidden {
  display: none !important;
  opacity: 0;
  pointer-events: none;
}

.domain-modal-card {
  background: var(--white);
  border-radius: 12px;
  width: 100%;
  max-width: 820px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.domain-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--grey-light);
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-medium);
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.2s ease;
  z-index: 2;
}

.domain-modal-close:hover {
  background: var(--navy-medium);
  color: var(--white);
}

.domain-modal-header {
  padding: 28px 28px 15px 28px;
  border-bottom: 1px solid var(--grey-light);
  background: var(--white);
}

.domain-modal-body {
  padding: 24px 28px;
  overflow-y: auto;
}

.domain-list-group {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 24px;
}

.domain-list-item {
  background: var(--white);
  border: 1px solid rgba(45, 53, 126, 0.12);
  border-radius: 8px;
  padding: 18px 20px;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
}

.domain-list-item:hover {
  border-color: var(--navy-light);
  box-shadow: 0 4px 14px rgba(45, 53, 126, 0.08);
}

.domain-select-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--navy-pale);
  border: 1px solid rgba(45, 53, 126, 0.15);
  color: var(--navy-medium);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.02rem;
  padding: 10px 14px;
  border-radius: 6px;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s ease;
  margin-bottom: 12px;
}

.domain-select-btn .select-badge {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--navy-light);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}

.domain-select-btn:hover,
.domain-select-btn:focus {
  background: var(--navy-medium);
  color: var(--white);
  border-color: var(--navy-medium);
}

.domain-select-btn:hover .select-badge,
.domain-select-btn:focus .select-badge {
  color: var(--gold);
}

.domain-desc-text {
  font-size: 0.84rem;
  color: var(--navy-medium);
  margin: 0 0 10px 4px;
  font-weight: 500;
  line-height: 1.4;
}

.domain-sub-list {
  list-style-type: disc;
  padding-left: 20px;
  margin: 0;
  columns: 2;
  column-gap: 16px;
}

.domain-sub-list li {
  font-size: 0.84rem;
  color: var(--grey-medium);
  line-height: 1.6;
  margin-bottom: 3px;
  break-inside: avoid;
}

.domain-sub-list li::marker {
  color: var(--gold);
}

.domain-list-item.is-filtered-out {
  display: none !important;
}

@media (max-width: 768px) {
  .domain-modal-overlay {
    padding: 0;
    align-items: flex-end;
  }

  .domain-modal-card {
    max-width: 100%;
    max-height: 90vh;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  .domain-modal-header {
    padding: 20px 20px 12px 20px;
  }

  .domain-modal-body {
    padding: 16px 20px;
  }

  .domain-list-group {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .domain-sub-list {
    columns: 1;
  }
}

/* =========================================
   HOME — WALK FOUNDATION SECTIONS (below hero)
   Reuses existing tokens: navy/gold palette, glass cards,
   border-soft, shadow-soft, 28px radii, 24px mobile radii,
   section-header/.section-label patterns.
   ========================================= */

/* ---- Section 1: We are WALK — inked letterforms ---- */
.walk-letters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.walk-letter-item {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  text-align: center;
  padding: 34px 18px 30px;
  border: 1px solid var(--border-soft);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.84));
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
  transition:
    transform 0.55s var(--ease-premium),
    box-shadow 0.55s var(--ease-premium),
    border-color 0.55s var(--ease-premium);
}

.walk-letter-item:hover {
  transform: translateY(-6px);
  border-color: rgba(195, 150, 137, 0.42);
  box-shadow: 0 26px 60px rgba(45, 53, 126, 0.16);
}

/* Soft ink halo drifting behind the glyph.
   Keyframes touch transform only — opacity stays declarative so hover can win. */
.walk-letter-halo {
  position: absolute;
  z-index: 0;
  top: 6%;
  left: 50%;
  width: 62%;
  aspect-ratio: 1;
  margin-left: -31%;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(24px);
  opacity: 0.32;
  background:
    radial-gradient(circle at 40% 38%, rgba(45, 53, 126, 0.34), rgba(45, 53, 126, 0) 58%),
    radial-gradient(circle at 66% 66%, rgba(195, 150, 137, 0.34), rgba(195, 150, 137, 0) 58%);
  animation: walkHaloDrift 17s ease-in-out infinite alternate;
  transition: opacity 0.55s var(--ease-premium);
  will-change: transform;
}

/* Wrapper carries the fall; the glyph inside keeps the ink. */
.walk-letter-drop {
  position: relative;
  z-index: 1;
  display: block;
  transform-origin: 50% 100%;
  will-change: transform, opacity;
}

/* The glyph itself is a window onto a slow ink field */
.walk-letter {
  position: relative;
  z-index: 1;
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(3.2rem, 6vw, 4.6rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--navy-medium);
  background-image:
    radial-gradient(circle at 26% 22%, rgba(168, 112, 94, 0.9) 0%, rgba(168, 112, 94, 0) 32%),
    radial-gradient(circle at 76% 80%, rgba(30, 37, 92, 0.92) 0%, rgba(30, 37, 92, 0) 38%),
    linear-gradient(128deg, #2D357E 0%, #1E255C 20%, #3D4A8F 44%, #A8705E 60%, #3D4A8F 76%, #2D357E 100%);
  background-size: 260% 260%;
  background-position: 0% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: walkInkFlow 9s ease-in-out infinite alternate;
}

/* Only hollow the glyph where the ink can actually show through */
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .walk-letter {
    color: transparent;
    -webkit-text-fill-color: transparent;
  }
}

/* Per-letter offsets so the ink in the four never matches */
.walk-letter-item:nth-child(2) .walk-letter { animation-duration: 11s; animation-delay: -3.2s; }
.walk-letter-item:nth-child(3) .walk-letter { animation-duration: 8s; animation-delay: -5.6s; }
.walk-letter-item:nth-child(4) .walk-letter { animation-duration: 12s; animation-delay: -8.4s; }

/* Duration-only variation keeps the halos desynced without fighting the drop delays */
.walk-letter-item:nth-child(2) .walk-letter-halo { animation-duration: 21s; }
.walk-letter-item:nth-child(3) .walk-letter-halo { animation-duration: 15.5s; }
.walk-letter-item:nth-child(4) .walk-letter-halo { animation-duration: 19s; }

.walk-letter-item:hover .walk-letter { animation-duration: 4s; }
.walk-letter-item:hover .walk-letter-halo { opacity: 0.72; }

/* Gold rule: lands as an impact shockwave, then breathes */
.walk-letter-rule {
  position: relative;
  z-index: 1;
  display: block;
  height: 3px;
  width: 62px;
  max-width: 70%;
  margin: 18px auto 0;
  border-radius: 999px;
  transform-origin: center;
  background: linear-gradient(90deg, rgba(195, 150, 137, 0), #b07f70 50%, rgba(195, 150, 137, 0));
  transition: transform 0.55s var(--ease-premium);
}

/* Cancel the loop outright on hover — a merely paused animation still
   pins transform and would swallow the scaleX below. */
.walk-letter-item:hover .walk-letter-rule {
  animation: none;
  transform: scaleX(1.85);
}

/* ---- Sequential drop: W, then A, then L, then K ---- */
.walk-letters .walk-letter-item:nth-child(1) { --drop-delay: 0s; }
.walk-letters .walk-letter-item:nth-child(2) { --drop-delay: 0.28s; }
.walk-letters .walk-letter-item:nth-child(3) { --drop-delay: 0.56s; }
.walk-letters .walk-letter-item:nth-child(4) { --drop-delay: 0.84s; }

/* Pre-drop state. Applied only once JS confirms it is running, so a JS
   failure can never strand the letters invisible. */
.walk-letters.walk-drop-ready .walk-letter-item { opacity: 0; }
.walk-letters.walk-drop-ready .walk-letter-drop { opacity: 0; transform: translate3d(0, -180%, 0); }
.walk-letters.walk-drop-ready .walk-letter-rule { opacity: 0; transform: scaleX(0); }
.walk-letters.walk-drop-ready .walk-letter-name { opacity: 0; }

/* JS swaps walk-drop-ready -> walk-dropped, so base styles here are the
   landed state and the keyframes supply the pre-roll via fill: backwards. */
.walk-letters.walk-dropped .walk-letter-item {
  animation: walkCardIn 0.7s var(--ease-premium) var(--drop-delay) backwards;
}

.walk-letters.walk-dropped .walk-letter-drop {
  animation: walkLetterDrop 1.9s calc(var(--drop-delay) + 0.15s) backwards;
}

.walk-letters.walk-dropped .walk-letter-rule {
  animation:
    walkRuleImpact 0.6s cubic-bezier(0.2, 1, 0.32, 1) calc(var(--drop-delay) + 1.05s) backwards,
    walkRuleBreathe 9s ease-in-out calc(var(--drop-delay) + 1.75s) infinite alternate;
}

.walk-letters.walk-dropped .walk-letter-name {
  animation: walkNameIn 0.6s var(--ease-premium) calc(var(--drop-delay) + 1.3s) backwards;
}

.walk-letter-name {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 14px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  transition: letter-spacing 0.55s var(--ease-premium), color 0.55s var(--ease-premium);
}

.walk-letter-item:hover .walk-letter-name {
  letter-spacing: 0.26em;
  color: var(--navy-medium);
}

@keyframes walkInkFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 18%; }
  100% { background-position: 58% 100%; }
}

@keyframes walkHaloDrift {
  0% { transform: translate3d(-9%, -6%, 0) scale(0.92) rotate(0deg); }
  50% { transform: translate3d(8%, 7%, 0) scale(1.12) rotate(8deg); }
  100% { transform: translate3d(-4%, 12%, 0) scale(1.02) rotate(-6deg); }
}

@keyframes walkRuleBreathe {
  0% { transform: scaleX(0.62); opacity: 0.6; }
  100% { transform: scaleX(1.15); opacity: 1; }
}

/* The letter falls under gravity, squashes on impact, then settles. */
@keyframes walkLetterDrop {
  0% {
    opacity: 0;
    transform: translate3d(0, -180%, 0) scale(0.9, 1.16);
    animation-timing-function: cubic-bezier(0.55, 0.06, 0.68, 0.19);
  }
  18% { opacity: 1; }
  46% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1.18, 0.82);
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  }
  62% {
    transform: translate3d(0, -26%, 0) scale(0.96, 1.07);
    animation-timing-function: cubic-bezier(0.55, 0.06, 0.68, 0.19);
  }
  78% {
    transform: translate3d(0, 0, 0) scale(1.07, 0.94);
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  }
  90% { transform: translate3d(0, -8%, 0) scale(0.99, 1.02); }
  100% { opacity: 1; transform: translate3d(0, 0, 0) scale(1, 1); }
}

@keyframes walkCardIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/* Shockwave under the letter at the moment it lands. */
@keyframes walkRuleImpact {
  0% { opacity: 0; transform: scaleX(0); }
  45% { opacity: 1; transform: scaleX(1.5); }
  100% { opacity: 1; transform: scaleX(1); }
}

@keyframes walkNameIn {
  0% { opacity: 0; transform: translate3d(0, 8px, 0); }
  100% { opacity: 1; transform: translate3d(0, 0, 0); }
}

/* ---- Section 2: WALK Region Map — Uganda drop animation ---- */
.walk-map-placeholder {
  position: relative;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px;
  border: 1px solid var(--border-soft);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.72));
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
  /* Visible, not hidden: the end-of-cycle zoom-out is meant to spill past
     the card edge as it fades, reading as the map pulling away from view. */
  overflow: visible;
}

.uganda-map-stage {
  width: 100%;
  max-width: 420px;
  opacity: 0;
  transform: scale(1);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.uganda-map-stage.map-visible {
  opacity: 1;
  transform: scale(1);
}

/* Source order matters: this must follow .map-visible so it wins the
   opacity/transform/transition tug-of-war while both classes are present. */
.uganda-map-stage.map-zoom-out {
  opacity: 0;
  transform: scale(1.2);
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 1.05s cubic-bezier(0.4, 0, 0.2, 1);
}

.uganda-map {
  display: block;
  width: 100%;
  height: auto;
}

.map-outline {
  fill: #F6F0E6;
  stroke: var(--navy-darkest);
  stroke-width: 6;
  stroke-linejoin: round;
}

.map-lake {
  fill: #BFE0F2;
  stroke: none;
}

.map-line {
  stroke: var(--navy-medium);
  stroke-width: 1.5;
  opacity: 0.5;
}

.map-country-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.06em;
  fill: var(--navy-medium);
  opacity: 0.75;
}

/* Each region falls and settles as one unit — path plus its label. */
.map-region {
  opacity: 0;
  transform: translateY(var(--fall-y, -420px)) scale(0.92, 1.14);
  transform-box: fill-box;
  transform-origin: 50% 100%;
}

.map-region path {
  fill: #CD7A4E;
  stroke: var(--navy-darkest);
  stroke-width: 3;
  stroke-linejoin: round;
}

.map-region text {
  font-family: var(--font-heading);
  font-weight: 800;
  fill: var(--navy-darkest);
  font-size: 40px;
  letter-spacing: 0.01em;
}

#region-lango text {
  font-size: 34px;
}

#region-karamoja text {
  font-size: 32px;
}

/* Same gravity/squash/settle curve as the WALK letters, same 1.9s duration.
   --fall-y varies per region (set inline); everything else is shared. */
.map-region.map-region-drop {
  /* forwards: without it the element snaps back to the hidden base state
     (opacity:0, translateY) the instant the animation completes. */
  animation: mapRegionDrop 1.9s forwards;
}

@keyframes mapRegionDrop {
  0% {
    opacity: 0;
    transform: translateY(var(--fall-y, -420px)) scale(0.9, 1.16);
    animation-timing-function: cubic-bezier(0.55, 0.06, 0.68, 0.19);
  }
  18% { opacity: 1; }
  46% {
    opacity: 1;
    transform: translateY(0) scale(1.18, 0.82);
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  }
  62% {
    transform: translateY(calc(var(--fall-y, -420px) * 0.045)) scale(0.96, 1.07);
    animation-timing-function: cubic-bezier(0.55, 0.06, 0.68, 0.19);
  }
  78% {
    transform: translateY(0) scale(1.07, 0.94);
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  }
  90% { transform: translateY(calc(var(--fall-y, -420px) * 0.015)) scale(0.99, 1.02); }
  100% { opacity: 1; transform: translateY(0) scale(1, 1); }
}

/* ---- Section 3: Why WALK Exists ---- */
.why-walk-exists {
  background: var(--white);
}

.walk-editorial {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.why-walk-exists .walk-editorial {
  margin: 0;
  max-width: 660px;
  text-align: left;
}

.why-walk-exists .who-img {
  max-width: 56%;
}

.walk-editorial h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 22px;
}

.walk-editorial p {
  color: var(--grey-medium);
  font-size: 1.08rem;
  line-height: 1.9;
}

/* ---- Section 3: Our Programs ---- */
.walk-programs-grid {
  grid-template-columns: repeat(3, 1fr);
}

/* ---- Section 4: How WALK Creates Opportunity ---- */
.walk-opportunity {
  background: var(--white);
}

.walk-opportunity-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  border-top: 1px solid rgba(45, 53, 126, 0.12);
  border-bottom: 1px solid rgba(45, 53, 126, 0.12);
}

.walk-opportunity-step {
  position: relative;
  padding: 28px 26px 30px;
  min-height: 225px;
}

.walk-opportunity-step + .walk-opportunity-step {
  border-left: 1px solid rgba(45, 53, 126, 0.12);
}

.walk-opportunity-step + .walk-opportunity-step::before {
  content: '';
  position: absolute;
  top: 54px;
  left: -7px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 8px rgba(195, 150, 137, 0.14);
}

.walk-opportunity-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.14em;
  margin-bottom: 18px;
}

.walk-opportunity-step h3 {
  font-size: 1.16rem;
  margin-bottom: 12px;
}

.walk-opportunity-step p {
  color: var(--grey-medium);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* ---- Section 5: Nine Creative Domains ---- */
.walk-domain-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.walk-domain-tile {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 22px;
  border: 1px solid var(--border-soft);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.72));
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
  transition: transform 0.45s var(--ease-premium), box-shadow 0.45s var(--ease-premium), border-color 0.45s var(--ease-premium);
}

.walk-domain-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 70px rgba(20, 26, 70, 0.16);
  border-color: rgba(61, 74, 143, 0.22);
}

.walk-domain-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--gold);
  min-width: 26px;
  line-height: 1.45;
}

.walk-domain-name {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--navy-medium);
  line-height: 1.35;
}

.walk-domain-tile p {
  margin-top: 8px;
  color: var(--grey-medium);
  font-size: 0.86rem;
  line-height: 1.55;
}

/* ---- Programs Page ---- */
.program-intro {
  background: var(--off-white);
}

.program-intro-copy {
  max-width: 820px;
  margin: 0 auto;
}

.program-nav-section {
  background: var(--navy-pale);
  padding: 42px 0;
}

.program-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.program-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid rgba(45, 53, 126, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--navy-medium);
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(20, 26, 70, 0.06);
}

.program-nav a:hover,
.program-nav a:focus-visible {
  border-color: var(--gold);
  color: var(--navy-darkest);
  transform: translateY(-2px);
}

.program-section {
  background: var(--off-white);
}

.program-section:nth-of-type(even) {
  background: var(--white);
}

.program-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
  gap: 54px;
  align-items: center;
}

.program-detail.reverse {
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1fr);
}

.program-detail.reverse .program-copy {
  order: 2;
}

.program-detail.reverse .program-media {
  order: 1;
}

.program-copy h2 {
  margin-bottom: 14px;
}

.program-copy h3 {
  color: var(--navy-medium);
  font-size: 1.05rem;
  margin: 30px 0 16px;
}

.program-lede {
  color: var(--navy-light);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.55;
  margin-bottom: 18px;
}

.program-copy .body-txt {
  margin-bottom: 16px;
}

.program-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.program-list li {
  color: var(--charcoal);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 9px;
  padding-left: 22px;
  position: relative;
}

.program-list li::before {
  background: var(--gold);
  border-radius: 2px;
  content: "";
  height: 8px;
  left: 2px;
  position: absolute;
  top: 0.62em;
  width: 8px;
}

.program-media img,
.program-media-placeholder {
  width: 100%;
  min-height: 330px;
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

.program-media img {
  display: block;
  height: 100%;
  max-height: 440px;
  object-fit: cover;
}

.program-media-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px dashed rgba(45, 53, 126, 0.28);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(246, 247, 251, 0.8));
  padding: 34px;
  text-align: center;
}

.program-media-placeholder i {
  color: var(--gold);
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.program-status-text {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-top: 20px;
  text-transform: uppercase;
}

.program-ecosystem-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.program-ecosystem-flow span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.94rem;
  font-weight: 700;
  padding: 10px 16px;
}

.program-ecosystem-flow i {
  color: var(--gold);
}

.program-status-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 34px;
}

.program-status-panel {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.07);
  padding: 28px;
}

.program-status-panel h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.program-status-panel li {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
  margin-bottom: 8px;
}

/* ---- Section 6: Video feature ---- */
.walk-video-section {
  background: var(--off-white);
  padding-top: 120px;
  padding-bottom: 120px;
}

.walk-video-frame {
  width: min(82%, 1080px);
  margin: 40px auto 60px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.walk-video-monitor {
  width: 100%;
  position: relative;
  border-radius: 12px;
  background: #11141c;
  /* Stronger ambient shadow + sharp contact shadow */
  box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.5), 
              0 30px 60px -30px rgba(45, 53, 126, 0.3),
              0 10px 20px rgba(0,0,0,0.6);
  z-index: 2;
}

.walk-video-bezel {
  /* Richer metallic/plastic gradient */
  background: linear-gradient(145deg, #2a2d3e 0%, #11141c 40%, #080a0f 100%);
  border-radius: 12px;
  padding: 16px 16px 48px; /* Thicker bottom for branding */
  position: relative;
  /* Complex highlights for 3D rounded edges */
  box-shadow: inset 0 2px 3px rgba(255, 255, 255, 0.3),
              inset 2px 0 3px rgba(255, 255, 255, 0.1),
              inset -2px 0 3px rgba(0, 0, 0, 0.8),
              inset 0 -3px 6px rgba(0, 0, 0, 0.9),
              0 0 0 1px #050608,
              0 4px 8px rgba(0,0,0,0.8);
}

.walk-video-camera {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #040508;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.9),
              0 1px 0 rgba(255, 255, 255, 0.15);
  z-index: 2;
}

.walk-video-camera::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: #2a3a5f;
  box-shadow: 0 0 1px rgba(84, 114, 212, 0.8);
}

.walk-video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 2px;
  overflow: hidden;
  background: #000;
  /* Inner lip that frames the screen + deep shadow cast on the screen */
  box-shadow: inset 0 8px 20px rgba(0, 0, 0, 1),
              inset 0 2px 4px rgba(0, 0, 0, 0.9),
              inset 2px 0 8px rgba(0, 0, 0, 0.9),
              inset -2px 0 8px rgba(0, 0, 0, 0.9),
              0 1px 1px rgba(255, 255, 255, 0.15),
              0 -1px 1px rgba(0, 0, 0, 0.8);
}

.walk-video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.walk-video-lower-bezel {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.walk-video-logo {
  height: 18px;
  opacity: 0.8; /* Brighter for legibility */
  filter: drop-shadow(0 1px 1px rgba(255,255,255,0.2)) drop-shadow(0 -1px 1px rgba(0,0,0,0.9));
}

.walk-video-controls {
  position: absolute;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.walk-video-led {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #64b5f6;
  box-shadow: 0 0 4px #64b5f6, inset 0 1px 1px rgba(255,255,255,0.8);
}

.walk-video-power {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1b202c 0%, #0d1017 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  font-size: 11px;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.8),
              inset 0 -1px 1px rgba(255,255,255,0.1),
              0 1px 1px rgba(255,255,255,0.15),
              0 -1px 1px rgba(0,0,0,0.8);
  border: 1px solid #050608;
}

.walk-video-power i {
  text-shadow: 0 1px 0 rgba(255,255,255,0.15);
}

.walk-video-stand-neck {
  width: 140px;
  height: 45px;
  /* Cylindrical gradient */
  background: linear-gradient(90deg, #050609 0%, #2a2e3d 30%, #151922 50%, #2a2e3d 70%, #050609 100%);
  position: relative;
  z-index: 1;
  box-shadow: inset 0 12px 20px -5px rgba(0,0,0,0.9),
              inset 0 -2px 4px rgba(0,0,0,0.8);
  margin-top: -10px;
}

.walk-video-stand-base {
  width: 360px;
  height: 20px;
  /* Top surface vs front lip */
  background: linear-gradient(180deg, #32384a 0%, #1c202d 20%, #0a0c11 25%, #050608 100%);
  border-radius: 6px 6px 2px 2px;
  position: relative;
  z-index: 1;
  /* Strong bevel highlight on top edge, thick base shadow */
  box-shadow: inset 0 1px 2px rgba(255,255,255,0.3),
              inset 0 2px 0 rgba(255,255,255,0.1),
              0 10px 20px rgba(0,0,0,0.6),
              0 20px 40px rgba(45, 53, 126, 0.2);
}

/* ---- Section 7: WALK in Pictures slideshow ---- */
.walk-slideshow {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  overflow: hidden;
  padding: 24px 0 4px;
}

.walk-slideshow-frame {
  position: relative;
  height: clamp(310px, 42vw, 560px);
  border-radius: 26px;
  overflow: hidden;
  background: transparent;
}

.walk-slide {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(72%, 760px);
  aspect-ratio: 16 / 9;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.62);
  transition:
    opacity 1s var(--ease-premium),
    transform 1s var(--ease-premium),
    filter 1s var(--ease-premium);
  pointer-events: none;
  filter: saturate(0.86);
}

.walk-slide-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 3;
  transform: translate(-50%, -50%) scale(1);
  filter: saturate(1);
}

.walk-slide-prev-position,
.walk-slide-next-position {
  opacity: 0.78;
  z-index: 2;
}

.walk-slide-prev-position {
  transform: translate(-104%, -50%) scale(0.68);
}

.walk-slide-next-position {
  transform: translate(4%, -50%) scale(0.68);
}

.walk-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 24px;
  border: 5px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 28px 85px rgba(24, 34, 92, 0.18);
}

.walk-slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(23, 30, 80, 0.72);
  color: var(--white);
  backdrop-filter: blur(14px);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.walk-slide-arrow:hover {
  background: var(--navy-medium);
  transform: translateY(-50%) scale(1.06);
}

.walk-slide-prev {
  left: -24px;
}

.walk-slide-next {
  right: -24px;
}

.walk-slide-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.walk-slide-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: none;
  padding: 0;
  background: rgba(45, 53, 126, 0.25);
  cursor: pointer;
  transition: background-color 0.3s ease, width 0.3s ease;
}

.walk-slide-dot.is-active {
  background: var(--gold);
  width: 26px;
}

/* ---- Section 8: Latest from WALK ---- */
.walk-latest-list {
  margin-top: 8px;
}

/* =========================================
   ABOUT PAGE
   ========================================= */
.about-hero {
  display: flex;
  align-items: flex-end;
  padding-bottom: 0;
}

.about-hero .hero-content {
  margin-top: 0;
}

.about-hero .hero-buttons {
  margin-top: 6px;
}

.about-editorial {
  max-width: 880px;
  margin: 0 auto;
}

.about-editorial h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 22px;
}

.about-editorial p {
  color: var(--grey-medium);
  font-size: 1.08rem;
  line-height: 1.9;
  margin-bottom: 18px;
}

.about-editorial p:last-child {
  margin-bottom: 0;
}

.about-em-line {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  color: var(--gold);
  margin: 26px 0;
}

.about-build-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.about-build-card {
  padding: 36px 32px;
  border: 1px solid var(--border-soft);
  border-top: 1px solid rgba(195, 150, 137, 0.4);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.72));
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.about-build-card .icon {
  width: 52px;
  height: 52px;
  background-color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-darkest);
  font-size: 1.25rem;
  margin-bottom: 22px;
}

.about-build-card h3 {
  font-size: 1.3rem;
  margin-bottom: 14px;
}

.about-build-card p {
  color: var(--grey-medium);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 14px;
}

.about-build-card p:last-of-type {
  margin-bottom: 0;
}

.about-build-card .btn {
  margin-top: 10px;
}

.about-cta {
  background:
    linear-gradient(180deg, rgba(26, 34, 88, 0.97), rgba(38, 46, 104, 0.94)),
    radial-gradient(circle at top right, rgba(195, 150, 137, 0.24), transparent 26%);
}

.about-cta .section-label {
  color: var(--gold);
}

.about-cta .section-header p {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 18px;
  line-height: 1.8;
}

.about-closing {
  text-align: center;
  margin-top: 48px;
}

.about-closing h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  max-width: 720px;
  margin: 0 auto 18px;
}

.about-region-strip {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.14em;
  font-size: 0.95rem;
  color: var(--navy-darkest);
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .about-build-grid {
    grid-template-columns: 1fr;
  }
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .walk-programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .walk-domain-tiles {
    grid-template-columns: repeat(2, 1fr);
  }

  .walk-opportunity-flow {
    grid-template-columns: repeat(2, 1fr);
    border: 1px solid rgba(45, 53, 126, 0.12);
  }

  .walk-opportunity-step:nth-child(3) {
    border-left: none;
    border-top: 1px solid rgba(45, 53, 126, 0.12);
  }

  .walk-opportunity-step:nth-child(4) {
    border-top: 1px solid rgba(45, 53, 126, 0.12);
  }

  .walk-video-frame {
    width: min(90%, 900px);
    margin: 30px auto 40px;
  }
}

@media (max-width: 768px) {
  .walk-letters {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .walk-letter-item {
    padding: 26px 14px 22px;
  }

  .walk-letter-halo {
    filter: blur(18px);
  }

  .walk-programs-grid {
    grid-template-columns: 1fr;
  }

  .walk-domain-tiles {
    grid-template-columns: 1fr;
  }

  .walk-opportunity-flow {
    grid-template-columns: 1fr;
  }

  .walk-opportunity-step {
    min-height: auto;
    padding: 24px 20px;
  }

  .walk-opportunity-step + .walk-opportunity-step,
  .walk-opportunity-step:nth-child(3),
  .walk-opportunity-step:nth-child(4) {
    border-left: none;
    border-top: 1px solid rgba(45, 53, 126, 0.12);
  }

  .walk-opportunity-step + .walk-opportunity-step::before {
    top: -7px;
    left: 26px;
  }

  .walk-map-placeholder {
    min-height: 320px;
  }

  .walk-video-frame {
    width: 100%;
    margin: 20px auto;
  }

  .walk-video-monitor {
    border-radius: 6px;
  }

  .walk-video-bezel {
    padding: 10px 10px 30px;
    border-radius: 6px;
  }

  .walk-video-camera {
    top: 3px;
    width: 4px;
    height: 4px;
  }

  .walk-video-lower-bezel {
    height: 30px;
  }
  
  .walk-video-logo {
    height: 12px;
  }
  
  .walk-video-controls {
    right: 10px;
    gap: 6px;
  }
  
  .walk-video-led {
    width: 3px;
    height: 3px;
  }
  
  .walk-video-power {
    width: 16px;
    height: 16px;
    font-size: 8px;
  }
  
  .walk-video-stand-neck {
    width: 100px;
    height: 25px;
  }
  
  .walk-video-stand-base {
    width: 200px;
    height: 14px;
  }

  .walk-slideshow {
    padding-top: 10px;
  }

  .walk-slideshow-frame {
    height: clamp(240px, 62vw, 350px);
    border-radius: 20px;
  }

  .walk-slide {
    width: 88%;
  }

  .walk-slide-prev-position {
    opacity: 0;
    transform: translate(-122%, -50%) scale(0.8);
  }

  .walk-slide-next-position {
    opacity: 0.62;
    transform: translate(32%, -50%) scale(0.76);
  }

  .walk-slide img {
    border-width: 4px;
    border-radius: 20px;
  }

  .walk-slide-prev {
    left: 8px;
  }

  .walk-slide-next {
    right: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .walk-slide {
    transition: opacity 0.45s ease;
    transform: translate(-50%, -50%) scale(1);
    filter: none;
  }

  .walk-slide-prev-position,
  .walk-slide-next-position {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1);
  }

  /* Freeze the inked letterforms into a static, still-intentional state.
     JS applies .walk-dropped without .walk-drop-ready here, so everything
     is already in its landed position — only the motion is removed. */
  .walk-letter,
  .walk-letter-halo,
  .walk-letter-rule,
  .walk-letter-drop,
  .walk-letter-item,
  .walk-letter-name {
    animation: none !important;
  }

  .walk-letter-drop {
    opacity: 1;
    transform: none;
  }

  /* Freeze the Uganda map fully assembled and static — no drop, no loop.
     JS never starts the interval-based cycle when this is set; these rules
     are the belt-and-braces CSS-only backstop. */
  .uganda-map-stage,
  .uganda-map-stage.map-zoom-out {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .map-region {
    opacity: 1;
    transform: none;
    animation: none !important;
  }

  .walk-letter {
    background-position: 30% 40%;
  }

  .walk-letter-halo {
    opacity: 0.42;
    transform: none;
  }

  .walk-letter-item:hover {
    transform: none;
  }
}

/* =========================================
   FAQ ACCORDION
   ========================================= */
.faq-item.active .faq-content {
  max-height: 400px;
  opacity: 1;
  padding: 0 30px 20px 30px;
}

.faq-item.active .faq-btn i {
  transform: rotate(180deg);
}

.faq-btn i {
  transition: transform 0.4s ease;
}

/* =========================================================
   MOBILE: editorial photo compositions dominate (<=600px)
   Fixes photos that were tiny + over-padded on mobile.
   Photo goes near full-bleed; decorative outlines scale and
   peek just outside the photo (within the viewport margin, no
   overflow); text keeps normal readable page padding.
   ========================================================= */
@media (max-width: 600px) {
  .who-we-are-flex {
    gap: 22px;
  }

  .who-img,
  .why-walk-exists .who-img,
  .who-section-grid .who-img {
    width: 94vw;
    max-width: 94vw;
    margin: 0 auto;
    padding: 0;
    flex: none;
    align-self: center;
  }

  /* Decorative outlined shapes: preserved, but scaled + repositioned
     to peek just outside the enlarged photo. -8px stays inside the
     ~3vw viewport margin at 320–430px, so no horizontal overflow. */
  .who-img:not(.who-image)::before {
    top: -8px;
    left: -8px;
    width: 42%;
    height: 32%;
    box-shadow: none;
  }

  .who-img:not(.who-image)::after {
    right: -8px;
    bottom: -8px;
    width: 42%;
    height: 32%;
    box-shadow: none;
  }

  .who-img img {
    width: 100%;
    border-radius: 22px;
  }

  .who-img:not(.who-image) img {
    border-width: 4px;
  }

  /* Text: comfortable reading width, intentionally narrower than the
     full-bleed photo (total side padding ~24–32px across 320–430px). */
  .who-text,
  .walk-editorial.who-text {
    max-width: none;
    width: 100%;
    padding: 0 10px;
  }
}
