/* ============================================================
   CITY OF HOPE CLT — PROTOTYPE STYLES
   Brand Colors:
     Navy:       #1a3049
     Coral:      #f26b5b
     Cream:      #f0ece4
     White:      #ffffff
     Text muted: #5a6e80
     Navy light: #243d55
     Border:     #e0dbd2
============================================================ */

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  padding-top: 58px;
  font-family: 'Source Sans 3', sans-serif;
  background: #f0ece4;
  color: #1a3049;
  font-size: 16px;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3 { font-family: 'Playfair Display', serif; }

/* ---- UTILITIES ---- */
.eyebrow {
  font-size: 16px;
  letter-spacing: .12em;
  color: #f26b5b;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: .5rem;
  display: block;
}

.divider {
  width: 40px;
  height: 3px;
  background: #f26b5b;
  margin: .8rem auto 0;
}

.sec-center { text-align: center; }
.sec-sub {
  font-size: 14px;
  color: #8ba0b4;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: .5rem;
}

.img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.25);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-align: center;
  gap: .4rem;
}
.img-placeholder small { font-size: 10px; opacity: .7; }

/* ---- BUTTONS ---- */
.btn-navy {
  background: #1a3049;
  color: #fff;
  padding: 12px 24px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  letter-spacing: .04em;
}
.btn-outline-navy {
  border: 2px solid #1a3049;
  color: #1a3049;
  padding: 12px 24px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
}
.btn-outline-coral {
  border: 2px solid #f26b5b;
  color: #f26b5b;
  padding: 12px 24px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
}
.btn-navy-solid {
  background: #1a3049;
  color: #fff;
  padding: 12px 24px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
}
.btn-coral {
  background: #f26b5b;
  color: #fff;
  padding: 13px 28px;
  border-radius: 26px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}
.btn-outline-white {
  border: 1.5px solid rgba(255,255,255,.35);
  color: #fff;
  padding: 13px 28px;
  border-radius: 26px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  transition: border-color .2s;
}
.btn-outline-white:hover { border-color: #fff; }
.btn-sm {
  background: #f26b5b;
  color: #fff;
  font-size: 13px;
  padding: 6px 15px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
}
.link-coral {
  font-size: 14px;
  color: #f26b5b;
  font-weight: 700;
  text-decoration: none;
}


/* ============================================================
   NAV
============================================================ */
.nav {
  background: #1a3049;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 58px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  box-shadow: 0 2px 12px rgba(0,0,0,.2);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.logo-mark { display: flex; align-items: center; text-decoration: none; }
.nav-logo {
  height: 36px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.wordmark { color: #fff; font-size: 13px; letter-spacing: .12em; font-weight: 700; font-family: 'Source Sans 3', sans-serif; }
.wordmark span { color: #f26b5b; }
.nav-links { display: flex; gap: 1.4rem; align-items: center; }
.nav-links a { color: #9ab0c4; font-size: 14px; text-decoration: none; letter-spacing: .03em; transition: color .2s; }
.nav-links a:hover { color: #fff; }
.nav-donate {
  background: #f26b5b;
  color: #fff !important;
  font-size: 13px;
  padding: 7px 16px;
  border-radius: 20px;
  font-weight: 700;
}


/* ============================================================
   1. HERO
============================================================ */
.hero {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  top: -6%;
  left: 0;
  width: 100%;
  height: 112%;
  object-fit: cover;
  object-position: center 8%;
  z-index: 0;
  will-change: transform;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,48,73,0.92) 0%, rgba(26,48,73,0.75) 50%, rgba(26,48,73,0.1) 100%);
  z-index: 1;
}
.hero-left {
  position: relative;
  z-index: 2;
  padding: 5rem 4rem;
  max-width: 620px;
}
.hero-left .eyebrow {
  color: #f26b5b;
  opacity: 1;
  font-size: 13px;
  letter-spacing: .09em;
}
.hero-left h1 {
  font-size: 44px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}
.hero-left p {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
  margin-bottom: .8rem;
}
.hero-btns { display: flex; gap: 12px; margin-top: 1.6rem; flex-wrap: wrap; }


/* ============================================================
   2. WHO WE ARE
============================================================ */
.what {
  background: #fff;
  padding: 7rem 2rem;
  text-align: center;
}
.what h2 {
  font-size: 40px;
  color: #1a3049;
  line-height: 1.2;
  margin: 0 auto .5rem;
}
.what p:not(.eyebrow):not(.what-statement) {
  max-width: 860px;
  margin: 1.4rem auto 0;
  font-size: 18px;
  line-height: 2;
  color: #3a4f63;
}

/* ============================================================
   4. HOW WE WORK
============================================================ */
.how-works {
  background: #fff;
  padding: 5rem 2rem 6rem;
}
.how-works .sec-center { max-width: 940px; margin: 0 auto 2.5rem; text-align: center; }
.how-works h2 { font-size: 40px; color: #1a3049; line-height: 1.2; margin: 0 auto .5rem; }
.hw-intro {
  max-width: 780px;
  margin: 1.4rem auto 0;
  font-size: 17px;
  line-height: 1.75;
  color: #3a4f63;
  text-align: center;
  text-wrap: balance;
}

/* Principles strip — italic Playfair phrase, distinct from the numbered stepper below */
.hw-principles {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.8rem auto 0;
  flex-wrap: wrap;
  padding: .65rem 1.6rem;
  background: #1a3049;
  border-radius: 100px;
}
.hw-principle {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 17px;
  color: #fff;
  font-weight: 700;
}
.hw-principle-dot {
  color: #f26b5b;
  font-size: 14px;
  line-height: 1;
}

/* ============================================================
   HW STEPPER + SLIDER
   ============================================================ */
/* Stepper + slider side-by-side */
/* ---- Bottom nav bar ---- */
.hw-nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .85rem 1.25rem 1rem;
  border-top: 1px solid #ddd4c8;
  gap: .75rem;
}

.hw-dots {
  display: flex;
  align-items: center;
  gap: .4rem;
}

.hw-dot {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: transparent;
  border: 2px solid transparent;
  border-radius: 100px;
  padding: .4rem 1rem;
  cursor: pointer;
  font-family: 'Source Sans 3', sans-serif;
  color: #9aaebc;
  transition: color 0.3s, background 0.3s, border-color 0.3s, box-shadow 0.3s;
  white-space: nowrap;
}
.hw-dot:hover { color: #1a3049; }
.hw-dot.is-active {
  color: #1a3049;
  background: #fff5f3;
  border-color: #f26b5b;
  box-shadow: 0 3px 10px rgba(242,107,91,0.15);
}
.hw-dot-num {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 700;
  color: inherit;
  opacity: 0.55;
  transition: opacity 0.3s, color 0.3s;
}
.hw-dot.is-active .hw-dot-num { opacity: 1; color: #f26b5b; }
.hw-dot-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .03em;
}

.hw-nav-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0ece4;
  color: #1a3049;
  flex-shrink: 0;
  transition: background 0.3s, color 0.3s, opacity 0.3s;
}
.hw-nav-arrow:hover:not(:disabled) {
  background: #1a3049;
  color: #fff;
}
.hw-nav-arrow:disabled {
  opacity: 0.25;
  cursor: default;
}

.hw-slider {
  max-width: 860px;
  margin: 1.5rem auto 0;
  overflow: hidden;
  position: relative;
  border: 1px solid #ddd4c8;
  border-radius: 16px;
}
.hw-slider-track {
  display: flex;
  width: 300%;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.hw-slide {
  width: 33.3333%;
  padding: 0.5rem 3rem 2.5rem;
  position: relative;
  min-height: 520px;
  display: flex;
  flex-direction: column;
}
.hw-slide-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1rem;
}
.hw-slide[data-slide="2"] .hw-slide-inner {
  justify-content: center;
}

/* Slide 1: text+barriers left, photo right */
.hw-slide[data-slide="0"] .hw-slide-inner {
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  justify-content: flex-start;
}
.hw-slide-col {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hw-slide-img-col {
  flex-shrink: 0;
  width: 210px;
}
.hw-slide-photo {
  width: 100%;
  aspect-ratio: 2/3;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  box-shadow: 0 8px 24px rgba(26,48,73,0.12);
}

.hw-slide-text { max-width: 640px; }
.hw-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #f26b5b;
  margin-bottom: .9rem;
  padding-bottom: .4rem;
  border-bottom: 2px solid #f26b5b;
}
.hw-slide h3 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: #1a3049;
  line-height: 1.18;
  margin: 0 0 1.2rem;
  font-weight: 700;
}
.hw-lede {
  font-size: 16px;
  color: #5a6e80;
  line-height: 1.7;
  margin: 0;
  max-width: 560px;
}

/* SLIDE 1: BARRIERS */
.hw-barriers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .8rem;
  margin-top: 1rem;
  max-width: 540px;
}
.hw-barrier {
  display: flex;
  align-items: center;
  gap: .7rem;
  background: #f7f4ef;
  border: 1px solid #e8e0d6;
  border-radius: 10px;
  padding: .85rem 1rem;
  transition: all 0.3s;
}
.hw-barrier:hover {
  border-color: #f26b5b;
  background: #fff;
  transform: translateY(-2px);
}
.hw-barrier-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f26b5b;
  flex-shrink: 0;
  opacity: 0.6;
}
.hw-barrier span {
  font-size: 13px;
  font-weight: 600;
  color: #1a3049;
}

/* SLIDE 2: FLYWHEEL */
/* SLIDE 2: FLYWHEEL */
.hw-fw-stage {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 2rem;
  align-items: center;
  margin-top: 0;
}

/* Container is bigger than the ring so node squares can sit ON the ring */
.hw-fw {
  position: relative;
  width: 320px;
  height: 320px;
  flex-shrink: 0;
}

/* Dashed ring — slightly more visible & faster rotation */
.hw-fw-ring {
  position: absolute;
  inset: 40px;
  border: 1.5px dashed rgba(26, 48, 73, 0.32);
  border-radius: 50%;
  animation: hw-fw-spin 28s linear infinite;
  pointer-events: none;
}

/* Two arrow-shaped satellites traveling around the ring in opposite directions */
.hw-fw-marker {
  position: absolute;
  inset: 40px;
  border-radius: 50%;
  pointer-events: none;
}
.hw-fw-marker--cw  {
  animation: hw-fw-spin 18s linear infinite;
  animation-play-state: paused;
}
.hw-fw-marker--ccw {
  animation: hw-fw-spin-rev 22s linear infinite;
  /* Negative half-period delay → CCW starts on the OPPOSITE side of the ring
     so the first crossing takes ~7 seconds instead of starting overlapped */
  animation-delay: -11s;
  animation-play-state: paused;
}
/* Running state — applied by JS when slide 2 is reached */
#hwFlywheel.is-running .hw-fw-marker {
  animation-play-state: running;
}

/* Common arrow base */
.hw-fw-marker::after {
  content: '';
  position: absolute;
  top: -7px;
  left: 50%;
  width: 0;
  height: 0;
  filter: drop-shadow(0 0 5px rgba(242, 107, 91, 0.4));
  transition: border-color 0.2s ease, filter 0.2s ease;
}
/* Clockwise — arrow points RIGHT (direction of motion at top) */
.hw-fw-marker--cw::after {
  transform: translateX(-50%);
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 12px solid #f26b5b;
}
/* Counter-clockwise — arrow points LEFT */
.hw-fw-marker--ccw::after {
  transform: translateX(-50%);
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-right: 12px solid #f26b5b;
}

/* Each crossing toggles the arrows between coral and navy */
.hw-fw-marker.is-navy::after {
  filter: drop-shadow(0 0 6px rgba(26, 48, 73, 0.45));
}
.hw-fw-marker--cw.is-navy::after  { border-left-color:  #1a3049; }
.hw-fw-marker--ccw.is-navy::after { border-right-color: #1a3049; }

/* Spawned arrows fade in instead of popping */
.hw-fw-marker--extra::after {
  opacity: 0;
  animation: hw-fw-arrow-fade 0.5s ease-out forwards;
}
@keyframes hw-fw-arrow-fade {
  to { opacity: 1; }
}

@keyframes hw-fw-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes hw-fw-spin-rev {
  from { transform: rotate(0deg); }
  to   { transform: rotate(-360deg); }
}

/* Hub — JUST the logo, no circle, no shadow */
.hw-fw-hub {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hw-fw-hub img { width: 100px; height: auto; }

/* Rounded-square nodes that sit ON the ring */
.hw-fw-node {
  position: absolute;
  width: 110px;
  height: 42px;
  padding: 0 10px;
  border-radius: 10px;
  background: #fff;
  border: 2px solid #e0d8ce;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #1a3049;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 3px 10px rgba(26, 48, 73, 0.08);
  z-index: 2;
  white-space: nowrap;
}
.hw-fw-node:hover {
  border-color: #f26b5b;
  transform: scale(1.06);
}
.hw-fw-node.is-active {
  background: #1a3049;
  color: #fff;
  border-color: #f26b5b;
  transform: scale(1.08);
  box-shadow: 0 0 0 5px rgba(242, 107, 91, 0.18), 0 6px 14px rgba(26, 48, 73, 0.22);
}

/* Positions — container 320x320, ring center (160,160), radius 120, node 110x42 */

/* 12 o'clock — center (160, 40) → top: 19, centered horizontally */
.hw-fw-node--people {
  top: 19px;
  left: 50%;
  transform: translateX(-50%);
}
.hw-fw-node--people:hover     { transform: translateX(-50%) scale(1.06); }
.hw-fw-node--people.is-active { transform: translateX(-50%) scale(1.08); }

/* 4 o'clock — Place now bottom-right to match card order: People → Place → Partnership */
.hw-fw-node--place {
  top: 199px;
  left: 209px;
}

/* 8 o'clock — Partnership now bottom-left */
.hw-fw-node--partnership {
  top: 199px;
  left: 1px;
}

/* Three cards — all visible, one highlighted at a time */
.hw-fw-cards {
  display: flex;
  flex-direction: column;
  gap: .7rem;
  align-items: stretch;
  min-height: 320px;
  justify-content: space-between;
  align-self: stretch;
}
.hw-fw-card {
  flex: 1;
  background: #f7f4ef;
  border: 1.5px solid #d8cfc4;
  border-left: 4px solid #d8cfc4;
  border-radius: 10px;
  padding: 1.1rem 1.3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .25rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(26, 48, 73, 0.05);
}
.hw-fw-card:hover {
  background: #fdfcfa;
  border-left-color: rgba(242, 107, 91, 0.5);
  box-shadow: 0 4px 12px rgba(26, 48, 73, 0.08);
}
.hw-fw-card.is-active {
  background: #fff;
  border-color: #e8e0d6;
  border-left-color: #f26b5b;
  box-shadow: 0 6px 18px rgba(26, 48, 73, 0.1);
  transform: translateX(3px);
}
.hw-fw-card-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #9aaebc;
  transition: color 0.3s;
  margin-bottom: .1rem;
}
.hw-fw-card.is-active .hw-fw-card-tag { color: #f26b5b; }
.hw-fw-card-body strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #1a3049;
  margin-bottom: .3rem;
  line-height: 1.3;
}
.hw-fw-card-body p {
  font-size: 13.5px;
  color: #5a6e80;
  margin: 0;
  line-height: 1.55;
  text-wrap: balance;
}

/* SLIDE 3: IMPACT GRID — unified image + card */
.hw-impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .7rem;
  margin: 1rem auto 0;
  width: 100%;
}
.hw-impact-card {
  background: #fff;
  border: 1px solid #e8e0d6;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
}
.hw-impact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(26, 48, 73, 0.1);
  border-color: rgba(242, 107, 91, 0.4);
}
.hw-impact-img {
  height: 120px;
  background-size: cover;
  background-position: center;
  filter: saturate(0.95);
  transition: filter 0.3s;
}
.hw-impact-card:hover .hw-impact-img {
  filter: saturate(1.05) brightness(1.03);
}
.hw-impact-body {
  padding: 1.2rem 1.2rem 1.4rem;
  text-align: center;
  border-top: 3px solid #f26b5b;
}
.hw-impact-card h4 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #1a3049;
  margin: 0 0 .5rem;
}
.hw-impact-card p {
  font-size: 12.5px;
  color: #5a6e80;
  margin: 0;
  line-height: 1.5;
}
.hw-impact-stat {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: #1a3049;
  line-height: 1.1;
}
.hw-impact-stat span {
  display: block;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: #5a6e80;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: .25rem;
}

/* NEXT / PREV BUTTONS — positioned in the right white space, vertically centered */
.hw-next, .hw-prev, .hw-restart {
  position: absolute;
  display: flex;
  align-items: center;
  border: none;
  cursor: pointer;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  transition: all 0.3s;
}
.hw-next {
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  flex-direction: column;
  gap: .8rem;
  background: transparent;
  color: #1a3049;
  padding: 0;
  font-size: 12px;
}
.hw-next-preview {
  letter-spacing: .04em;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #9aaebc;
  text-align: center;
  max-width: 110px;
  line-height: 1.4;
  transition: color 0.3s;
}
.hw-next:hover .hw-next-preview {
  color: #1a3049;
}
.hw-next-arrow {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #1a3049;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  animation: hw-next-pulse 1.6s ease-in-out infinite;
  box-shadow: 0 6px 20px rgba(26, 48, 73, 0.18);
  transition: background 0.3s;
}
.hw-next:hover .hw-next-arrow {
  background: #f26b5b;
  box-shadow: 0 8px 24px rgba(242, 107, 91, 0.3);
}
@keyframes hw-next-pulse {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(6px); }
}
.hw-prev {
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  flex-direction: column;
  gap: .6rem;
  background: transparent;
  padding: 0;
}
.hw-prev .hw-next-arrow {
  width: 48px;
  height: 48px;
  background: rgba(26, 48, 73, 0.06);
  color: #1a3049;
  animation: hw-prev-pulse 1.6s ease-in-out infinite;
  box-shadow: none;
}
.hw-prev:hover .hw-next-arrow {
  background: rgba(26, 48, 73, 0.12);
}
@keyframes hw-prev-pulse {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(-6px); }
}
.hw-restart {
  position: static;
  display: inline-flex;
  align-self: flex-end;
  margin-top: .75rem;
  background: transparent;
  color: #f26b5b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 0;
}
.hw-restart:hover { color: #1a3049; }


.what-statement {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 20px;
  color: #f26b5b;
  max-width: 940px;
  margin: 1.8rem auto 0;
  line-height: 1.7;
  text-wrap: balance;
}


/* ============================================================
   3. FOUR PILLARS — HORIZONTAL ACCORDION
============================================================ */
.pillars { background: #f0ece4; padding: 5rem 0 0; }
.pillars-flow {
  margin: 1.5rem auto 0;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #1a3049;
}
.pillars-flow .pf-arrow {
  color: #5ac2b0;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0;
}
.pillars .sec-center { padding: 0 2rem 3.5rem; }
.pillars h2 { font-size: 36px; color: #1a3049; margin-bottom: .5rem; }
.pillars-grid {
  display: flex;
  height: 560px;
  gap: 3px;
}
.pillar-card {
  flex: 0 0 25%;
  width: 25%;
  min-width: 0;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: width 1.1s cubic-bezier(0.25, 0.1, 0.25, 1);
  background: #1a3049;
}

/* photo bg */
.card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}
.pillar-card.is-active .card-bg { transform: scale(1.04); }

/* dark gradient overlay */
.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,22,38,0.52) 0%, rgba(10,22,38,0.22) 50%, rgba(10,22,38,0.0) 100%);
  transition: background 2.8s ease;
}
.pillar-card.is-active .card-overlay {
  background: linear-gradient(to bottom, rgba(10,22,38,0.82) 0%, rgba(10,22,38,0.48) 60%, rgba(10,22,38,0.08) 100%);
}

/* content pinned to top */
.card-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.8rem;
}
.card-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
}
.p-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.pillar-card.is-active .p-icon { transform: scale(1.15); }
.pillar-card h3 {
  font-size: 22px;
  color: #fff;
  line-height: 1.2;
  white-space: nowrap;
  margin: 0;
}
.card-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 17px;
  line-height: 1.45;
  color: #fff;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 1s cubic-bezier(0.25, 0.1, 0.25, 1), opacity 1.1s ease 0.5s;
}
.pillar-card.is-active .card-tagline {
  max-height: 120px;
  opacity: 1;
  margin-bottom: 0.5rem;
}
.card-desc {
  font-size: 14.5px;
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 1s cubic-bezier(0.25, 0.1, 0.25, 1), opacity 1.1s ease 0.75s;
}
.pillar-card.is-active .card-desc {
  max-height: 180px;
  opacity: 1;
  margin-bottom: 0.5rem;
}

/* accent bar on active card */
.pillar-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: #f26b5b;
  transition: height 0.4s ease;
}
.pillar-card.is-active::after { height: 100%; }

@media (max-width: 768px) {
  .pillars-grid { flex-direction: column; height: auto; gap: 3px; }
  .pillar-card { flex: 0 0 auto; width: 100% !important; height: 130px; transition: height 0.85s cubic-bezier(0.4, 0, 0.2, 1); }
  .pillar-card.is-active { height: 440px !important; }
  .pillar-card h3 { font-size: 18px; }
}




/* ============================================================
   5. WHERE WE SERVE MAP
============================================================ */
/* ---- MAP SECTION ---- */
.map-sec {
  position: relative;
  padding: 5rem 2rem 5.5rem;
  overflow: hidden;
  background: #1a3049;
}
.map-sec-bg {
  display: block;
  position: absolute;
  inset: -20% 0;
  background: url('../images/city scape.jpg') center center / cover no-repeat;
  opacity: 0.04;
  will-change: transform;
}
.map-sec-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}
.map-sec-header {
  text-align: center;
  margin-bottom: 2.8rem;
}
.map-sec-h2 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  color: #ffffff;
  margin-bottom: .5rem;
}
.eyebrow--light { color: #f26b5b; }
.divider--light { background: rgba(255,255,255,0.2); }
.map-sec-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  margin-top: .9rem;
  letter-spacing: .01em;
  line-height: 1.6;
}

/* Map box — full width within the section */
.map-box {
  aspect-ratio: 16 / 9;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 12px 48px rgba(0,0,0,0.4), 0 2px 8px rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.1);
}
#map { width: 100%; height: 100%; }

/* Scroll-triggered map hint */
@keyframes hint-ring-pulse {
  0%   { transform: translate(-50%,-50%) scale(0.6); opacity: 0.8; }
  100% { transform: translate(-50%,-50%) scale(2.2); opacity: 0; }
}
@keyframes hint-cursor-tap {
  0%, 100% { transform: translate(10px, -6px) scale(1);   opacity: 1; }
  40%       { transform: translate(4px, 2px)  scale(0.88); opacity: 1; }
  55%       { transform: translate(4px, 2px)  scale(0.88); opacity: 1; }
  75%       { transform: translate(10px, -6px) scale(1);   opacity: 1; }
}
@keyframes hint-pin-bob {
  0%, 100% { transform: translateY(0);    }
  40%       { transform: translateY(-4px); }
  60%       { transform: translateY(-4px); }
  80%       { transform: translateY(0);    }
}

.map-hint {
  position: absolute;
  top: 16px;
  right: 16px;
  transform: translateY(-8px);
  z-index: 800;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 130px;
  background: rgba(15, 32, 52, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  padding: 14px 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 8px 32px rgba(0,0,0,0.45);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.map-hint.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.map-hint.is-hidden {
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Demo animation block */
.map-hint-demo {
  position: relative;
  width: 42px;
  height: 48px;
  flex-shrink: 0;
}

/* Pin with pulse rings */
.map-hint-pin-wrap {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.map-hint-pin-icon {
  display: block;
  animation: hint-pin-bob 2s ease-in-out 1.2s infinite;
}
.map-hint-ring {
  position: absolute;
  top: 9px;
  left: 50%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(242, 107, 91, 0.55);
  opacity: 0;
  animation: hint-ring-pulse 2s ease-out 1.2s infinite;
  animation-fill-mode: both;
}
.map-hint-ring--2 {
  animation-delay: 2.2s;
}

/* Cursor tap */
.map-hint-cursor {
  position: absolute;
  bottom: 0;
  right: 0;
  animation: hint-cursor-tap 2s ease-in-out 1.2s infinite;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.4));
}

/* Text block */
.map-hint-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: center;
  white-space: normal;
}
.map-hint-text strong {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.01em;
}
.map-hint-text span {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
}

/* Leaflet pin override */

/* Cursor-follow hover tooltip — non-blocking, desktop-only */
.map-tooltip {
  position: fixed;
  z-index: 9000;
  background: #fdfaf3;
  color: #1a3049;
  border: 1px solid #d8cfc4;
  border-left: 3px solid #f26b5b;
  border-radius: 6px;
  padding: .5rem .75rem;
  font-family: 'Source Sans 3', sans-serif;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  transition: opacity 0.12s ease;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
  white-space: nowrap;
}
.map-tooltip.is-visible { opacity: 1; }
.map-tooltip-name {
  font-size: 13px;
  font-weight: 700;
  color: #1a3049;
  letter-spacing: .01em;
}
.map-tooltip-hint {
  font-size: 10px;
  color: #7a8fa0;
  letter-spacing: .04em;
}
/* Quieter variant for context-only corridors (no COH partners) */
.map-tooltip.is-context {
  border-left-color: #9aaebc;
}
.map-tooltip.is-context .map-tooltip-hint {
  color: #9aaebc;
  font-style: italic;
}

/* Floating "Metro-Wide Partner" label that sits on the regional circle */
.metro-label {
  background: none !important;
  border: none !important;
}
.metro-label-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  padding: 7px 14px 8px;
  background: rgba(18, 37, 58, 0.92);
  border: 1px solid #7aa6c7;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, border-color 0.2s;
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}
.metro-label-inner:hover {
  background: #7aa6c7;
  border-color: #fff;
  transform: scale(1.04);
}
.metro-label-eyebrow {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #7aa6c7;
  font-family: 'Source Sans 3', sans-serif;
  transition: color 0.2s;
}
.metro-label-inner:hover .metro-label-eyebrow { color: #fff; }
.metro-label-name {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  font-family: 'Source Sans 3', sans-serif;
  letter-spacing: .01em;
}

/* Popup variants */
.mp-corridor--initiative { color: #7aa6c7 !important; }
.mp-corridor--metro      { color: #7aa6c7 !important; }
.mp-program {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #7aa6c7;
  letter-spacing: .01em;
  margin-top: -.15rem;
  margin-bottom: .35rem;
}
.mp-initiative-desc {
  font-size: 13.5px;
  color: #c0d0e0;
  line-height: 1.55;
  margin: 0;
}

/* On-map popup — appears next to the clicked pin, anchored to the map */
.map-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 14, 24, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.map-popup-backdrop.is-open {
  opacity: 1;
  pointer-events: all;
}
.map-popup {
  position: absolute;
  z-index: 1000;
  width: 340px;
  background: #12253a;
  border-radius: 14px;
  box-shadow: 0 18px 48px rgba(0,0,0,0.65);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 1.8rem 1.7rem 1.5rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.map-popup.is-open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.map-popup-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  transition: background 0.2s;
}
.map-popup-close:hover { background: rgba(255,255,255,0.2); }

/* Popup content */
.mp-corridor {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #f26b5b;
  margin-bottom: .55rem;
}
.mp-name {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: #fff;
  line-height: 1.2;
  margin-bottom: .35rem;
}
.mp-community {
  font-size: 13px;
  color: #6a8499;
  margin-bottom: 1.1rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.mp-partners-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: .55rem;
}
.mp-partners { display: flex; flex-direction: column; gap: 7px; }
.mp-partner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  font-size: 14px;
  color: #d0dce8;
  background: rgba(255,255,255,.05);
  padding: 10px 12px 10px 14px;
  border-radius: 7px;
  border: none;
  border-left: 2px solid #f26b5b;
  cursor: pointer;
  font-family: 'Source Sans 3', sans-serif;
  line-height: 1.35;
  transition: background 0.2s, color 0.2s;
}
.mp-partner:hover { background: rgba(255,255,255,.13); color: #fff; }
.mp-partner > svg { flex-shrink: 0; opacity: 0.45; transition: opacity 0.2s, transform 0.2s; }
.mp-partner:hover > svg { opacity: 0.8; transform: translateX(2px); }
.mp-partner-name { display: inline-flex; align-items: center; gap: 7px; }
.mp-partner-video {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #f26b5b;
  color: #fff;
  flex-shrink: 0;
}
.mp-partner-video svg { display: block; margin-left: 1px; /* optical centering of play triangle */ }

/* Partner detail modal */
.partner-modal {
  position: fixed;
  inset: 0;
  background: rgba(6, 12, 22, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.partner-modal.is-open {
  opacity: 1;
  pointer-events: all;
}
.partner-modal-box {
  background: #12253a;
  border-radius: 14px;
  padding: 2.8rem 3rem 2.4rem;
  width: min(520px, 92vw);
  position: relative;
  border: 1px solid rgba(255,255,255,.07);
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
}
.partner-modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: rgba(255,255,255,.1);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  transition: background 0.2s;
}
.partner-modal-close:hover { background: rgba(255,255,255,.2); }
.partner-modal-close svg { width: 14px; height: 14px; }
.pm-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #f26b5b;
  margin-bottom: .5rem;
}
.pm-name {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: #fff;
  line-height: 1.2;
  margin-bottom: .5rem;
}
.pm-community {
  font-size: 13px;
  color: #6a8499;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.pm-desc {
  font-size: 16px;
  color: #8ba0b4;
  line-height: 1.8;
  margin-bottom: 1.4rem;
}
.pm-site-btn {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: #f26b5b;
  text-decoration: none;
  letter-spacing: .04em;
  transition: opacity 0.2s;
}
.pm-site-btn:hover { opacity: 0.75; }
.pm-footer-actions {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
  margin-top: .4rem;
}
.pm-video-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f26b5b;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Source Sans 3', sans-serif;
  transition: background 0.2s;
}
.pm-video-btn:hover { background: #e05a4a; }


/* Video lightbox */
.map-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(4, 8, 16, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.map-lightbox.is-open {
  opacity: 1;
  pointer-events: all;
}
.map-lightbox-inner {
  position: relative;
  width: min(860px, 92vw);
  aspect-ratio: 16 / 9;
}
.map-lightbox-close {
  position: absolute;
  top: -44px;
  right: 0;
  background: rgba(255,255,255,.12);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  transition: background 0.2s;
}
.map-lightbox-close:hover { background: rgba(255,255,255,.22); }
.map-lightbox-close svg { width: 16px; height: 16px; }
.map-lightbox-frame {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  background: #000;
}
.map-lightbox-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.map-legend {
  display: flex;
  gap: 16px;
  margin-top: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.legend-item { display: flex; align-items: center; gap: 6px; font-size: 16px; color: #5a6e80; }
.legend-dot { width: 10px; height: 10px; border-radius: 50%; background: #f26b5b; flex-shrink: 0; display: inline-block; }


/* ============================================================
   6. COLLECTIVE IMPACT
============================================================ */
/* ---- SHAPE DIVIDERS ---- */
.shape-div {
  position: absolute;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  pointer-events: none;
  z-index: 3;
}
.shape-div--bottom { bottom: -1px; }
.shape-div--top    { top: -1px; transform: rotate(180deg); }
.shape-div svg     { display: block; width: 100%; height: auto; }

.impact { background: #fff; padding: 0; position: relative; }
.impact .sec-center { padding: 2rem 2rem 3rem; }
.impact h2 { font-size: 36px; color: #1a3049; margin-bottom: .5rem; }

.metrics-band {
  background: #1a3049;
  padding: 0 4vw;
  height: 200px; /* fixed — prevents layout shift during count-up animation */
  display: flex;
  align-items: center;
}
.metrics-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1040px;
  margin: 0 auto;
  width: 100%;
}
.metric {
  background: transparent;
  border-radius: 0;
  padding: 0 2rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.1);
}
.metric:last-child { border-right: none; }
.metric-n {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  color: #ffffff;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.metric-l {
  font-size: 13px;
  color: #5ac2b0;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: .6rem;
}

.impact-inner {
  position: relative;
  padding: 0 2rem 4rem;
  margin-top: 0;
}


.pillar-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e0dbd2;
  position: relative;
  z-index: 2;           /* sits above the navy ::before band */
  box-shadow: 0 8px 40px rgba(0,0,0,.22);
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}
.pr {
  padding: 2.4rem 2rem 2.6rem;
  border: none;
  border-right: 1px solid #e0dbd2;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.pr:last-child { border-right: none; }

/* Colored top accent bar per pillar */
.pr::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}
/* Large watermark number behind content */
.pr::after {
  content: attr(data-watermark);
  position: absolute;
  bottom: -1rem;
  right: -0.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 110px;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
  opacity: 0.055;
  color: #1a3049;
}
.pr-feed { background: #fdf7f0; }
.pr-read { background: #eef4fb; }
.pr-heal { background: #eef8f6; }
.pr-disc { background: #f7f3e8; }
.pr-feed::before { background: #f26b5b; }
.pr-read::before { background: #4a8fd4; }
.pr-heal::before { background: #5ac2b0; }
.pr-disc::before { background: #c8a84b; }

.pr h4 {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 1.6rem;
  font-family: 'Source Sans 3', sans-serif;
}
.pr-feed h4 { color: #f26b5b; }
.pr-read h4 { color: #4a8fd4; }
.pr-heal h4 { color: #5ac2b0; }
.pr-disc h4 { color: #c8a84b; }

.pr-stat {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  padding: .75rem 0;
  border-bottom: 1px solid rgba(26,48,73,.07);
}
.pr-stat:first-of-type { padding-top: 0; }
.pr-stat:last-child { border-bottom: none; padding-bottom: 0; }
.pr-num {
  font-size: 32px;
  font-weight: 700;
  color: #1a3049;
  font-family: 'Playfair Display', serif;
  line-height: 1;
  flex-shrink: 0;
}
.pr-lbl { font-size: 14px; color: #5a6e80; line-height: 1.3; }

/* Healing card — pending / collapsed state */
.pr-heal--pending {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.pr-pending-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 1.5px solid #52b882;
  color: #52b882;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .45rem .9rem;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  margin-top: .25rem;
}
.pr-pending-toggle:hover {
  background: #52b882;
  color: #fff;
}
.pr-pending-toggle:hover .pr-pending-chevron path {
  stroke: #fff;
}

.pr-pending-chevron {
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.pr-pending-toggle[aria-expanded="true"] .pr-pending-chevron {
  transform: rotate(180deg);
}

.pr-pending-body {
  margin-top: 1.1rem;
  overflow: hidden;
  animation: prBodyIn 0.3s ease;
}
@keyframes prBodyIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.pr-pending-msg {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 13px;
  line-height: 1.65;
  color: #5a6e80;
  text-align: center;
  margin: 0;
  max-width: 220px;
}

.impact-section-title {
  font-size: 13px;
  font-weight: 700;
  color: #5a6e80;
  margin: 3rem 0 1.4rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.impact-section-title::before,
.impact-section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e0dbd2;
}

.init-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.init-card {
  border-radius: 12px;
  overflow: hidden;
  border: none;
  background: #fff;
  box-shadow: 0 2px 14px rgba(26,48,73,.07);
}
.init-img {
  height: 120px;
  background: #c8d4de;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #7a8fa0;
  text-transform: uppercase;
  letter-spacing: .05em;
  overflow: hidden;
}
.init-body { padding: .9rem 1rem; }
.init-body h5 { font-size: 15px; font-weight: 700; color: #1a3049; margin-bottom: 4px; font-family: 'Source Sans 3', sans-serif; }
.init-body p { font-size: 16px; color: #5a6e80; line-height: 1.6; }

.story-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.story-card {
  border-radius: 14px;
  overflow: hidden;
  border: none;
  background: #fff;
  box-shadow: 0 4px 20px rgba(26,48,73,.08);
  transition: transform .3s ease, box-shadow .3s ease;
}
.story-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(26,48,73,.14);
}
.story-img {
  height: 200px;
  background: #1a3049;
  overflow: hidden;
  position: relative;
  display: block;
}
.story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.story-card:hover .story-img img { transform: scale(1.04); }
.story-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(to top, rgba(26,48,73,.88) 0%, transparent 100%);
}
.story-overlay .story-partner {
  font-size: 11px;
  color: #f26b5b;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 4px;
  display: block;
}
.story-overlay h4 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  font-family: 'Source Sans 3', sans-serif;
}
.story-body { padding: .9rem 1.1rem; }
.story-body > h4 { display: none; }
.story-body > .story-partner { display: none; }
.story-body p { font-size: 16px; color: #5a6e80; line-height: 1.75; margin-bottom: .6rem; }

.impact-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid #e0dbd2;
  flex-wrap: wrap;
  max-width: 1040px;
  justify-content: space-between;
}
.nl-inline { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.nl-inline input {
  background: #f0ece4;
  border: 1px solid #d0cbc2;
  border-radius: 8px;
  padding: 9px 14px;
  font-size: 15px;
  color: #1a3049;
  width: 280px;
  font-family: 'Source Sans 3', sans-serif;
}
.impact-actions-left {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.nl-archive {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}
.nl-inline button {
  background: #f26b5b;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 9px 16px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Source Sans 3', sans-serif;
}


/* ============================================================
   7. WHY UNITY MATTERS
============================================================ */
.unity {
  background:
    radial-gradient(ellipse 55% 45% at 82% 12%, rgba(242,107,91,.1) 0%, transparent 100%),
    radial-gradient(ellipse 45% 55% at 12% 88%, rgba(58,130,200,.07) 0%, transparent 100%),
    radial-gradient(ellipse 35% 35% at 88% 88%, rgba(242,107,91,.06) 0%, transparent 100%),
    #1a3049;
  padding: 6rem 2rem 9rem;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.unity-left h2 { font-size: 38px; color: #fff; margin-bottom: 1.2rem; line-height: 1.15; }
.unity-left p { font-size: 18px; color: #8ba0b4; line-height: 1.85; margin-bottom: 1.1rem; }

/* Timeline — dot centered on the 2px line using precise offset */
.timeline {
  margin-top: 2.5rem;
  position: relative;
  padding-left: 1.8rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: rgba(242,107,91,.25);
  transform-origin: top;
  transform: scaleY(0);
  transition: transform 1.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.timeline.is-visible::before {
  transform: scaleY(1);
}

.tl-item {
  display: flex;
  gap: 16px;
  align-items: baseline;
  padding-bottom: 1.6rem;
  position: relative;
  opacity: 0;
  transform: translateX(-14px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.timeline.is-visible .tl-item:nth-child(1) { transition-delay: 0.25s; opacity: 1; transform: translateX(0); }
.timeline.is-visible .tl-item:nth-child(2) { transition-delay: 0.65s; opacity: 1; transform: translateX(0); }
.timeline.is-visible .tl-item:nth-child(3) { transition-delay: 1.05s; opacity: 1; transform: translateX(0); }
.timeline.is-visible .tl-item:nth-child(4) { transition-delay: 1.45s; opacity: 1; transform: translateX(0); }

.tl-item::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #f26b5b;
  box-shadow: 0 0 0 3px rgba(242,107,91,.18);
  position: absolute;
  left: -1.8rem;
  transform: translateX(-4px) scale(0);
  top: 5px;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.timeline.is-visible .tl-item:nth-child(1)::before { transform: translateX(-4px) scale(1); transition-delay: 0.35s; }
.timeline.is-visible .tl-item:nth-child(2)::before { transform: translateX(-4px) scale(1); transition-delay: 0.75s; }
.timeline.is-visible .tl-item:nth-child(3)::before { transform: translateX(-4px) scale(1); transition-delay: 1.15s; }
.timeline.is-visible .tl-item:nth-child(4)::before { transform: translateX(-4px) scale(1); transition-delay: 1.55s; }
.tl-year { font-family: 'Playfair Display', serif; font-size: 22px; color: #f26b5b; min-width: 58px; font-weight: 700; flex-shrink: 0; }
.tl-text { font-size: 17px; color: #8ba0b4; line-height: 1.65; }
.unity-right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: 4rem;
}
.unity-img-wrap {
  position: relative;
  padding: 10px 0 0 10px; /* offset space for the frame */
}
/* Coral offset frame behind the photo */
.unity-img-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 10px;
  bottom: 28px; /* stop above caption */
  border: 2px solid rgba(242,107,91,0.4);
  pointer-events: none;
  z-index: 0;
}
/* Coral top-left corner accent */
.unity-img-wrap::after {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  width: 32px;
  height: 32px;
  border-top: 3px solid #f26b5b;
  border-left: 3px solid #f26b5b;
  z-index: 2;
}
.unity-img {
  position: relative;
  z-index: 1;
  height: 260px;
  overflow: hidden;
  border-radius: 0;
}
.unity-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  filter: brightness(1.18);
}
.unity-caption {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  padding-top: 0.6rem;
  padding-left: 0.2rem;
  margin: 0;
}
.unity-quote {
  background: #f0ece4;
  border-left: 3px solid #f26b5b;
  padding: 1.6rem 2rem;
}
.unity-quote p {
  font-family: 'Source Sans 3', sans-serif;
  font-style: normal;
  font-size: 17px;
  font-weight: 400;
  color: #1a3049;
  line-height: 1.8;
  letter-spacing: .01em;
}
.unity-more {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
  opacity: 0;
}
.unity-more.is-open {
  max-height: 800px;
  opacity: 1;
}
.unity-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: #f26b5b;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .06em;
  cursor: pointer;
  padding: 0;
  margin-top: 0.4rem;
  transition: opacity 0.2s;
}
.unity-toggle:hover { opacity: 0.75; }
.unity-toggle svg {
  width: 16px;
  height: 16px;
  transition: transform 0.35s ease;
}
.unity-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.unity-toggle[aria-expanded="true"] .toggle-label::before { content: 'Read less'; }
.unity-toggle[aria-expanded="false"] .toggle-label::before { content: 'Read more'; }


/* ============================================================
   8. PARTNERS & LEADERSHIP
============================================================ */
.partners { background: #f0ece4; padding: 5rem 2rem; }
.partners h2 { font-size: 36px; color: #1a3049; margin-bottom: .5rem; }
.partners-sub { font-size: 17px; color: #5a6e80; margin-top: 1rem; line-height: 1.7; max-width: 600px; margin-left: auto; margin-right: auto; }

.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px; /* generous breathing room between cards */
  margin: 3rem auto 0;
  max-width: 1200px;
  padding: 0 2.5rem; /* page-side padding so the grid doesn't feel edge-to-edge */
}
.partner-card {
  background: #fff;
  border-radius: 14px;
  border: none;
  box-shadow: 0 2px 16px rgba(26,48,73,.06);
  transition: box-shadow .3s ease, transform .3s ease;
  overflow: hidden;
}
.partner-card:hover {
  box-shadow: 0 8px 32px rgba(26,48,73,.12);
  transform: translateY(-3px);
}
.partner-photo {
  aspect-ratio: 1 / 1; /* square — keeps cards compact */
  background: linear-gradient(135deg, #1a3049 0%, #f26b5b 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  position: relative;
  overflow: hidden;
}
.partner-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%; /* favor upper portion to keep faces in frame */
  transition: transform 0.5s cubic-bezier(.2,.7,.2,1);
}
.partner-card:hover .partner-photo img {
  transform: scale(1.04);
}
/* Victor and Laura's source photos are looser — zoom in to match the others' framing */
.partner-photo img[src*="victor-nicholson"] {
  transform: scale(1.25);
  transform-origin: center 22%;
}
.partner-photo img[src*="laura-swisher"] {
  transform: scale(1.22);
  transform-origin: center 5%;
}
.partner-card:hover .partner-photo img[src*="victor-nicholson"] {
  transform: scale(1.30);
}
.partner-card:hover .partner-photo img[src*="laura-swisher"] {
  transform: scale(1.27);
}
.partner-info { padding: 1.2rem 1.4rem; }
.partner-name { font-size: 16px; font-weight: 700; color: #1a3049; line-height: 1.3; }
.partner-ed { font-size: 16px; color: #5a6e80; margin-top: 4px; }
.partner-corridor { font-size: 12px; color: #f26b5b; font-weight: 700; margin-top: 6px; text-transform: uppercase; letter-spacing: .06em; }

.leadership-block {
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: 1px solid #d6d0c8;
}
.board-label {
  text-align: center;
  font-size: 13px;
  color: #f26b5b;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-top: 0;
  margin-bottom: 1.5rem;
}
.board-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  max-width: 860px;
  margin: 0 auto;
}
.board-person {
  text-align: center;
  padding: 0 2.2rem 2rem;
  position: relative;
}
.board-person + .board-person::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  height: 28px;
  width: 1px;
  background: #d6d0c8;
}
.board-name { font-size: 15px; font-weight: 700; color: #1a3049; }
.board-title { font-size: 11px; color: #f26b5b; margin-top: 4px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.exec-section { margin-top: 2rem; padding-top: 0; border-top: none; }
.exec-row { display: flex; justify-content: center; }
.exec-card {
  background: #fff;
  border-radius: 14px;
  padding: 0;
  display: flex;
  align-items: stretch;
  gap: 0;
  border: none;
  box-shadow: 0 2px 16px rgba(26,48,73,.06);
  max-width: 540px;
  overflow: hidden;
}
.exec-photo {
  width: 180px;
  aspect-ratio: 2 / 3;
  background: linear-gradient(135deg, #1a3049 0%, #f26b5b 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: rgba(255,255,255,.55);
  text-align: center;
  flex-shrink: 0;
  overflow: hidden;
}
.exec-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.exec-card > div:not(.exec-photo) {
  padding: 1.6rem 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.exec-name { font-family: 'Playfair Display', serif; font-size: 24px; color: #1a3049; }
.exec-role { font-size: 14px; color: #f26b5b; font-weight: 700; margin-top: 3px; text-transform: uppercase; letter-spacing: .06em; }
.exec-bio { font-size: 17px; color: #5a6e80; margin-top: .6rem; max-width: 300px; line-height: 1.6; }

/* Remove old separate .leadership section styles */
.leadership { background: #fff; padding: 4rem 2rem; }
.leadership h2 { font-size: 30px; color: #1a3049; margin-bottom: .5rem; }


/* ============================================================
   COLLECTIVE INITIATIVES — featured spotlight + 2×2 list
============================================================ */
.initiatives-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 3rem;
}
.init-feature {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  min-height: 440px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(10, 22, 38, 0.08);
  transition: transform 0.5s cubic-bezier(.2,.7,.2,1), box-shadow 0.5s ease;
}
.init-feature::after {
  /* Subtle coral accent line at the bottom that grows on hover */
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 4px;
  background: #f26b5b;
  transform: scaleX(0.18);
  transform-origin: left center;
  transition: transform 0.6s cubic-bezier(.2,.7,.2,1);
  z-index: 3;
}
.init-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 42px rgba(10, 22, 38, 0.22);
}
.init-feature:hover::after { transform: scaleX(1); }
.init-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transition: transform 0.9s cubic-bezier(.2,.7,.2,1), filter 0.5s ease;
}
.init-feature:hover img {
  transform: scale(1.05);
  filter: saturate(1.08) brightness(1.04);
}
.init-feature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,38,.92) 0%, rgba(10,22,38,.48) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.4rem 2.2rem;
  transition: background 0.5s ease;
}
.init-feature:hover .init-feature-overlay {
  background: linear-gradient(to top, rgba(10,22,38,.94) 0%, rgba(10,22,38,.55) 60%, rgba(10,22,38,0.05) 100%);
}
.init-feature-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #f26b5b;
  margin-bottom: .55rem;
  display: inline-block;
  transition: letter-spacing 0.4s ease, transform 0.4s ease;
}
.init-feature:hover .init-feature-eyebrow {
  letter-spacing: .22em;
  transform: translateX(2px);
}
.init-feature h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: #fff;
  margin-bottom: .65rem;
  line-height: 1.2;
  transition: transform 0.5s cubic-bezier(.2,.7,.2,1);
}
.init-feature:hover h3 { transform: translateY(-2px); }
.init-feature p {
  font-size: 15px;
  color: rgba(255,255,255,.72);
  line-height: 1.72;
  margin-bottom: 1.5rem;
  max-width: 380px;
}
.init-feature-stats {
  display: flex;
  gap: 2rem;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 1.2rem;
}
.init-feature-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-left: auto;
  padding: .55rem 1.2rem;
  background: transparent;
  border: 1.5px solid rgba(242,107,91,.6);
  color: #f26b5b;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  text-decoration: none;
  transition: background .2s, border-color .2s, color .2s;
}
.init-feature-btn:hover {
  background: #f26b5b;
  border-color: #f26b5b;
  color: #fff;
}
.ifs-n {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: #f26b5b;
  line-height: 1;
}
.ifs-l {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: rgba(255,255,255,.45);
  margin-top: .25rem;
  display: block;
}
.init-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.init-item {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e0dbd2;
  box-shadow: 0 2px 10px rgba(26,48,73,.05);
  display: flex;
  flex-direction: column;
  transition: box-shadow .3s ease, transform .3s ease;
}
.init-item:hover {
  box-shadow: 0 8px 28px rgba(26,48,73,.12);
  transform: translateY(-3px);
}
.init-item-img {
  height: 140px;
  overflow: hidden;
}
.init-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.init-item:hover .init-item-img img { transform: scale(1.05); }
.init-item-body { padding: 1rem 1.2rem 1.3rem; }
.init-item-body h5 {
  font-size: 14px;
  font-weight: 700;
  color: #1a3049;
  margin-bottom: .3rem;
  font-family: 'Source Sans 3', sans-serif;
  line-height: 1.3;
}
.init-item-body p { font-size: 13px; color: #5a6e80; line-height: 1.6; }
.init-item-date {
  display: inline-block;
  margin-top: .6rem;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #f26b5b;
}

/* ---- BILLBOARD CARD ---- */
.init-item--billboard {
  background: #1a3049;
  border-color: #1a3049;
  cursor: default;
}
.init-item--billboard:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(26,48,73,.28);
}
.init-billboard-hero {
  background: #fdfaf3;
  width: 100%;
  padding: 1.6rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.init-billboard-hero img {
  width: 100%;
  height: auto;
  display: block;
}
.init-billboard-body {
  padding: 1.4rem 1.4rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}
.init-billboard-desc {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255,255,255,0.72);
  margin: 0 0 1rem;
}
.init-billboard-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.init-billboard-bullets li {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  color: #fdfaf3;
  padding-left: 1rem;
  position: relative;
}
.init-billboard-bullets li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #f26b5b;
  font-size: 11px;
}
.init-billboard-cta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #f26b5b;
  margin: 0 0 1.2rem;
}
.init-billboard-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1rem;
  margin-top: auto;
}
.init-billboard-date-pill {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.init-billboard-coh-logo {
  height: 28px;
  width: auto;
  opacity: 0.6;
  filter: brightness(0) invert(1);
}
.init-sub-list {
  margin: .8rem 0 0 0;
  padding: 0;
  list-style: none;
}
.init-sub-list li {
  font-size: 12.5px;
  color: #5a6e80;
  line-height: 1.6;
  padding: .4rem 0;
  border-top: 1px solid #e8e0d6;
}
.init-sub-list li:last-child { border-bottom: 1px solid #e8e0d6; }
.init-sub-list strong { color: #1a3049; }

/* Pin pulse animation */
.coh-pin {
  background: none !important;
  border: none !important;
}


/* ============================================================
   IMPACT STORIES — editorial alternating rows
============================================================ */
/* ============================================================
   IMPACT STORIES — 3-CARD GRID
============================================================ */

/* Navy wrap */
.ts-wrap {
  background: #f0ece4;
  border-radius: 20px;
  overflow: hidden;
  max-width: 1240px;
  margin: 0 auto 3rem;
}

/* Three-column grid */
.ts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 2.4rem 2rem 2.4rem;
}

/* Individual card — editorial, image on top */
.ts-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #ddd4c8;
  box-shadow: 0 4px 16px rgba(26,48,73,.08);
}

/* Image — top of card, full bleed */
.ts-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #e8e0d6;
}
.ts-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.ts-card:hover .ts-img img { transform: scale(1.04); }

/* Body — left-aligned, button anchored bottom */
.ts-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.5rem 1.5rem 1.6rem;
  text-align: left;
}
.ts-org {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #f26b5b;
  margin-bottom: .65rem;
}
.ts-title {
  font-family: 'Playfair Display', serif;
  font-size: 21px;
  color: #1a3049;
  line-height: 1.25;
  margin-bottom: .9rem;
}
.ts-tease {
  font-size: 13.5px;
  color: #5a6e80;
  line-height: 1.7;
  margin-bottom: 1.4rem;
  flex-grow: 1;
}
.ts-read-btn {
  align-self: flex-start;
  background: transparent;
  border: 1.5px solid rgba(242,107,91,.55);
  color: #f26b5b;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  padding: .55rem 1.2rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all .22s;
}
.ts-read-btn:hover { background: #f26b5b; border-color: #f26b5b; color: #fff; }


/* ============================================================
   STORY DETAIL MODAL
============================================================ */
.sdm-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(10,20,35,.82);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  padding: 1.5rem;
}
.sdm-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}
.sdm-box {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  width: 100%;
  max-width: 780px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  transform: translateY(20px);
  transition: transform .35s ease;
  position: relative;
}
.sdm-overlay.is-open .sdm-box {
  transform: translateY(0);
}
.sdm-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,.45);
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.sdm-close:hover { background: #f26b5b; }

.sdm-img-wrap {
  height: 280px;
  overflow: hidden;
  flex-shrink: 0;
}
.sdm-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sdm-body {
  padding: 2.4rem 2.6rem 2.8rem;
  overflow-y: auto;
}
.sdm-org {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #f26b5b;
  margin-bottom: .9rem;
}
.sdm-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: #1a3049;
  line-height: 1.22;
  margin-bottom: 1.4rem;
}
.sdm-text p {
  font-size: 16px;
  color: #3a4f63;
  line-height: 1.9;
  margin-bottom: 1.1rem;
}
.sdm-text p:last-child { margin-bottom: 0; }


/* ============================================================
   COALITION QUOTE BREAK — full-bleed photo + centered quote
============================================================ */
.cq-section {
  position: relative;
  overflow: hidden;
  padding: 9rem 2rem;
  text-align: center;
}
.cq-bg {
  position: absolute;
  inset: 0;
}
.cq-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  display: block;
}
.cq-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15,28,46,.90) 0%,
    rgba(26,48,73,.82) 100%
  );
}
.cq-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}
.cq-mark {
  font-family: 'Playfair Display', serif;
  font-size: 130px;
  color: #f26b5b;
  line-height: .4;
  opacity: .5;
  margin-bottom: 1.5rem;
  display: block;
}
.cq-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 32px;
  color: #fff;
  line-height: 1.5;
  font-weight: 400;
  margin: 0 0 2rem;
  border: none;
  padding: 0;
}
.cq-attr {
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}


/* ============================================================
   9. GET INVOLVED
============================================================ */
.gi {
  background: #fff;
  padding: 5rem 2rem 4rem;
}
.gi-top,
.gi-cards {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}
.gi-top {
  max-width: 640px;
  margin-bottom: 2.8rem;
}
.coral-rule { width: 40px; height: 3px; background: #f26b5b; margin-bottom: 1rem; }
.gi-headline h2 { font-size: 36px; color: #1a3049; line-height: 1.2; margin-bottom: .75rem; }
.gi-headline > p { font-size: 17px; color: #5a6e80; line-height: 1.75; margin-bottom: 1.8rem; }
.partner-cta-line { font-size: 14px; color: #5a6e80; }
.partner-cta-line a { color: #f26b5b; font-weight: 700; text-decoration: none; }
.gi-photo {
  border-radius: 16px;
  overflow: hidden;
  height: 360px;
  box-shadow: 0 8px 32px rgba(26,48,73,.12);
}
.gi-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.gi-list {
  max-width: 860px;
  margin: 0 auto;
}
.gi-item {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid #e0dbd2;
  transform: translateX(60px);
  opacity: 0;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.7s ease;
}
.gi-item:first-child { border-top: 1px solid #e0dbd2; }
.gi-item.is-visible {
  transform: translateX(0);
  opacity: 1;
}
.gi-num {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: #f26b5b;
  line-height: 1;
  flex-shrink: 0;
  width: 52px;
  text-align: center;
}
.gi-item-body {
  flex: 1;
}
.gi-item-body h3 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: #1a3049;
  margin-bottom: .35rem;
}
.gi-item-body p {
  font-size: 15px;
  color: #5a6e80;
  line-height: 1.65;
  margin: 0;
}
.gi-sub {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #f26b5b;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 2px;
}
.gi-cta-row {
  padding: 2rem 0 1rem;
  display: flex;
}

/* Donate band */
.gi-donate {
  max-width: 860px;
  margin: 2.5rem auto 0;
  background: #1a3049;
  border-radius: 16px;
  padding: 2.2rem 2.8rem;
}
.gi-donate-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.gi-donate-text h3 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 .5rem;
  font-family: 'Source Sans 3', sans-serif;
}
.gi-donate-text p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  margin: 0;
  max-width: 520px;
}
.gi-donate-btn {
  flex-shrink: 0;
  display: inline-block;
  background: #f26b5b;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 13px 32px;
  border-radius: 100px;
  text-decoration: none;
  transition: background .2s ease, transform .2s ease;
  white-space: nowrap;
}
.gi-donate-btn:hover {
  background: #e05a4a;
  transform: translateY(-2px);
}

@media (max-width: 600px) {
  .gi-donate { padding: 1.6rem 1.4rem; }
  .gi-donate-inner { flex-direction: column; align-items: flex-start; }
  .gi-donate-btn { width: 100%; text-align: center; }
}

/* ============================================================
   10. FOOTER
============================================================ */
.footer { background: #1a3049; padding: 3.5rem 2rem 1.5rem; border-top: 1px solid rgba(255,255,255,.08); }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1.4fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer-brand .wordmark { font-size: 15px; }
.footer-brand p { font-size: 16px; color: #7a96ae; line-height: 1.75; margin-top: .8rem; }
.footer-social { display: flex; gap: 10px; margin-top: 1.2rem; }
.social-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #243d55;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.1);
  text-decoration: none;
  transition: background .2s;
}
.social-btn:hover { background: #2e4d68; }
.social-btn svg { width: 16px; height: 16px; }
.footer-col h4 { font-size: 13px; font-weight: 700; color: #f26b5b; letter-spacing: .12em; text-transform: uppercase; margin-bottom: .8rem; font-family: 'Source Sans 3', sans-serif; }
.footer-col a { display: block; font-size: 16px; color: #7a96ae; text-decoration: none; margin-bottom: .4rem; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-nl-text { font-size: 16px; color: #7a96ae; margin-bottom: .7rem; line-height: 1.6; }
.nl-row { display: flex; gap: 7px; }
.nl-row input {
  flex: 1;
  background: #243d55;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 7px;
  padding: 9px 12px;
  font-size: 17px;
  color: #fff;
  min-width: 0;
  font-family: 'Source Sans 3', sans-serif;
}
.nl-row input::placeholder { color: #5a6e80; }
.nl-row button {
  background: #f26b5b;
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 9px 14px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  font-family: 'Source Sans 3', sans-serif;
}
.footer-link { display: block; font-size: 16px; color: #7a96ae; text-decoration: none; margin-top: .5rem; }
.footer-link:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 1.2rem;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #4a6070;
  flex-wrap: wrap;
  gap: .5rem;
}


/* ---- HAMBURGER BUTTON ---- */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all .25s ease;
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- MOBILE SLIDE-IN RIGHT MENU ---- */
/* Hidden on desktop — only active inside the 768px media query */
@media (min-width: 769px) {
  .mobile-menu, .mobile-menu-overlay { display: none !important; }
}

/* Narrow-desktop / tablet — shrink the map popup so it fits within the map */
@media (max-width: 1100px) {
  .map-popup {
    width: 280px;
    padding: 1.4rem 1.3rem 1.2rem;
  }
  .mp-name { font-size: 20px; }
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 198;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.mobile-menu-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu {
  flex-direction: column;
  background: #1a3049;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 75vw;
  max-width: 300px;
  z-index: 199;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
  padding-top: 70px;
  box-shadow: -4px 0 24px rgba(0,0,0,.3);
  display: flex;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255,255,255,.08);
  border: none;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s;
}
.mobile-menu-close:hover { background: rgba(255,255,255,.18); }
.mobile-menu a {
  color: #9ab0c4;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  padding: 1rem 1.6rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color .2s, background .2s;
  display: block;
}
.mobile-menu a:hover { color: #fff; background: rgba(255,255,255,.04); }
.mobile-menu .mobile-donate {
  color: #f26b5b;
  font-weight: 700;
  border-bottom: none;
  margin-top: .5rem;
}

/* ============================================================
   MOBILE — comprehensive responsive overrides (≤ 768px)
============================================================ */
@media (max-width: 768px) {

  /* ---- NAV ---- */
  .nav { padding: 0 1.2rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  /* ---- HERO ---- */
  .hero {
    display: block;
    min-height: auto;
    padding-top: 88vw;
    overflow: hidden;
  }
  .hero-bg {
    top: 0;
    height: 112vw;
    object-position: center 30%;
  }
  .hero::after {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 112vw;
    background: linear-gradient(
      to bottom,
      transparent 0%,
      transparent 30%,
      rgba(26,48,73,.25) 50%,
      rgba(26,48,73,.6) 65%,
      rgba(26,48,73,.88) 82%,
      #1a3049 100%
    );
    z-index: 1;
  }
  .hero-left {
    position: relative;
    z-index: 2;
    background: #1a3049;
    width: 100%;
    max-width: 100%;
    margin-top: -24vw;
    padding: 2.2rem 1.4rem 1.9rem;
  }
  .hero-left .eyebrow { font-size: 9px; letter-spacing: .08em; margin-bottom: .7rem; }
  .hero-left h1 { font-size: 28px; line-height: 1.2; margin-bottom: 1rem; padding-right: 0; }
  .hero-left p { font-size: 15px; line-height: 1.7; margin-bottom: .8rem; padding-right: 2rem; }
  .hero-btns { flex-direction: column; align-items: center; gap: 10px; margin-top: 1.4rem; }
  .hero-btns a { width: 100%; max-width: 320px; text-align: center; }
  .hero-btns .btn-navy { background: transparent; border: 2px solid rgba(255,255,255,.6); color: #fff; }

  /* ---- WHO WE ARE ---- */
  .what { padding: 4rem 1.4rem; }
  .what h2 { font-size: 28px; }
  .what p:not(.eyebrow):not(.what-statement) { font-size: 16px; }
  .what-statement { font-size: 17px; }

  /* ---- HOW WE WORK ---- */
  .how-works { padding: 4rem 1.4rem 5rem; }

  /* ---- FOUR PILLARS ---- */
  .pillars { padding: 4rem 0 0; }
  .pillars .sec-center { padding: 0 1.4rem 2.5rem; }
  .pillars h2 { font-size: 28px; }
  .how-works h2 { font-size: 28px; }
  /* pillar accordion → vertical stack (rule already exists at 768px in the accordion block) */

  /* ---- MAP ---- */
  .map-sec { padding: 3rem 1.4rem 3.5rem; }
  .map-sec-h2 { font-size: 28px; }
  .map-box { aspect-ratio: 4 / 3; border-radius: 12px; }
  .map-popup { width: 300px; padding: 1.4rem 1.3rem 1.2rem; }
  .mp-name { font-size: 20px; }

  /* ---- COLLECTIVE IMPACT — heading ---- */
  .impact .sec-center { padding: 3.5rem 1.4rem 2rem; }
  .impact h2 { font-size: 28px; }

  /* ---- METRICS BAND ---- */
  .metrics-band { padding: 1.2rem 1.4rem 1.8rem; height: auto; display: block; }
  .metrics-row {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    width: 100%;
  }
  .metric { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); padding: 1.4rem 0.6rem; }
  .metric:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,.1); }
  .metric:nth-child(3),
  .metric:nth-child(4) { border-bottom: none; }
  .metric-n { font-size: 36px; }
  .metric-l { font-size: 11px; letter-spacing: .06em; }

  /* ---- PILLAR IMPACT CARDS ---- */
  .impact-inner { padding: 0 1.4rem 3rem; }
  .impact-inner::before { height: 3rem; }
  .pillar-row {
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
    border-radius: 10px;
  }
  .pr { border-right: none; border-bottom: 1px solid #e0dbd2; padding: 1.8rem 1.4rem 2rem; }
  .pr:nth-child(odd)  { border-right: 1px solid #e0dbd2; }
  .pr:nth-child(3),
  .pr:nth-child(4) { border-bottom: none; }
  .pr-num { font-size: 24px; }
  .pr::after { font-size: 72px; }

  /* ---- COLLECTIVE INITIATIVES (new) ---- */
  .initiatives-wrap { grid-template-columns: 1fr; }
  .init-feature { min-height: 520px; }
  .init-list { grid-template-columns: 1fr; }
  .init-item-img { height: 140px; }
  .init-feature-overlay { padding: 1.6rem 1.4rem; }
  .init-feature-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
  .ifs-n { font-size: 20px; }
  .ifs-l { font-size: 10px; }
  .init-feature-btn { margin-left: 0; margin-top: .9rem; width: 100%; justify-content: center; grid-column: 1 / -1; }
  .ifs-l { white-space: nowrap; }

  /* ---- IMPACT STORIES ---- */
  .ts-grid { grid-template-columns: 1fr; gap: 14px; padding: 1.6rem 1.4rem; }
  .ts-img { height: 170px; }
  .ts-body { padding: 1.3rem 1.3rem 1.4rem; }
  .ts-title { font-size: 18px; }

  /* ---- STORY DETAIL MODAL ---- */
  .sdm-img-wrap { height: 200px; }
  .sdm-body { padding: 1.8rem 1.6rem 2rem; }
  .sdm-title { font-size: 22px; }

  /* ---- COALITION QUOTE ---- */
  .cq-section { padding: 6rem 1.6rem; }
  .cq-text { font-size: 22px; }
  .cq-mark { font-size: 90px; }

  /* ---- IMPACT ACTIONS / NEWSLETTER ---- */
  .impact-actions {
    flex-direction: column;
    align-items: stretch;
    margin-top: 0;
  }
  .impact-actions { border-top: none; padding-top: 0; }
  .nl-inline { margin-left: 0; flex-direction: row; flex-wrap: nowrap; gap: 6px; width: 100%; }
  .nl-inline input { flex: 3; width: auto; min-width: 0; }
  .nl-inline button { flex: 1; white-space: nowrap; }

  /* ---- WHY UNITY MATTERS ---- */
  .unity {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 4rem 1.4rem;
  }
  .unity-left h2 { font-size: 28px; }
  .unity-left p { font-size: 16px; }
  .unity-right { padding-top: 0; }
  .unity-img { height: 220px; }

  /* ---- PARTNERS ---- */
  .partners { padding: 4rem 1rem; }
  .partners h2 { font-size: 28px; }
  .partner-grid { grid-template-columns: 1fr 1fr; gap: 8px; padding: 0; }
  .partner-info { padding: .5rem .6rem; }
  .partner-name { font-size: 12px; }
  .partner-ed { font-size: 11px; }
  .partner-corridor { font-size: 10px; }

  /* ---- BOARD / EXEC ---- */
  /* Board list: name-left / role-right rows with dividers */
  .board-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(26,48,73,.06);
    max-width: 100%;
    padding: 0 1.2rem;
  }
  .board-person {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .85rem 0;
    border-bottom: 1px solid #f0ece4;
    text-align: left;
  }
  .board-person:last-child { border-bottom: none; }
  .board-person + .board-person::before { display: none; }
  .board-name { font-size: 15px; }
  .board-title { font-size: 11px; margin-top: 0; }

  /* Exec card: horizontal — photo left, text right */
  .exec-card {
    flex-direction: row;
    text-align: left;
    padding: 0;
    max-width: 100%;
    border-radius: 14px;
    overflow: hidden;
    align-items: stretch;
  }
  .exec-photo {
    width: 38%;
    flex-shrink: 0;
    aspect-ratio: 1 / 1;
    border-radius: 0;
  }
  .exec-photo img { object-position: center 15%; }
  .exec-card > div:not(.exec-photo) {
    padding: 1.1rem 1.2rem 1.2rem;
    border-top: none;
    border-left: 3px solid #f26b5b;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .exec-name { font-size: 18px; }
  .exec-bio { max-width: 100%; font-size: 13px; line-height: 1.5; }

  /* ---- HOW OUR COALITION WORKS (SLIDER) — SIMPLIFIED MOBILE ---- */
  .how-works-card { margin: 0 1.4rem; }
  .hw-slider { border-radius: 12px; }

  /* Each slide fits in one frame — no photo, no lede (except slide 1) */
  .hw-slide { min-height: auto; padding: 1.4rem 1.4rem 1.2rem; }
  .hw-slide-img-col { display: none; }
  .hw-lede { display: none; }
  .hw-slide[data-slide="0"] .hw-lede { display: block; font-size: 14px; margin-bottom: .2rem; }

  /* Slide 1: stack layout, compact barriers, circle photo upper-right */
  .hw-slide[data-slide="0"] .hw-slide-inner { flex-direction: column; gap: .6rem; }
  .hw-slide-col { flex: 0 0 auto; }
  .hw-slide h3 { font-size: 19px; line-height: 1.25; margin-bottom: .5rem; }
  .hw-slide[data-slide="0"] .hw-slide-img-col {
    display: block;
    position: absolute;
    top: 1.4rem;
    right: 1.4rem;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #f26b5b;
    box-shadow: 0 4px 14px rgba(26,48,73,.15);
  }
  .hw-slide[data-slide="0"] .hw-slide-photo {
    width: 100%;
    height: 100%;
    aspect-ratio: unset;
    max-height: none;
    border-radius: 0;
    object-fit: cover;
    object-position: center 30%;
  }
  .hw-slide[data-slide="0"] .hw-slide-text .hw-eyebrow { margin-right: 120px; display: block; }
  .hw-slide[data-slide="0"] .hw-slide-text h3 { padding-right: 120px; }
  .hw-barriers { gap: 5px; margin-top: .4rem; }
  .hw-barrier { padding: .45rem .7rem; }
  .hw-barrier span { font-size: 12px; }

  /* Big step number above eyebrow */
  .hw-slide-text::before {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: rgba(242,107,91,.15);
    line-height: 1;
    margin-bottom: .2rem;
  }
  .hw-slide[data-slide="0"] .hw-slide-text::before { content: "01"; }
  .hw-slide[data-slide="1"] .hw-slide-text::before { content: "02"; }
  .hw-slide[data-slide="2"] .hw-slide-text::before { content: "03"; }

  /* Slide 2: hide flywheel, show 3 cards side by side */
  .hw-fw { display: none; }
  .hw-fw-stage { display: block; }
  .hw-fw-cards { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px; margin-top: .6rem; }
  .hw-fw-card { padding: .6rem .5rem; }
  .hw-fw-card-tag { font-size: 9px; }
  .hw-fw-card-body strong { font-size: 11px; line-height: 1.3; }
  .hw-fw-card-body p { display: block; font-size: 10px; line-height: 1.4; margin-top: 3px; }

  /* Slide 3: 2x2 grid, shorter images */
  .hw-impact-grid { grid-template-columns: 1fr 1fr; gap: 8px; margin-top: .6rem; }
  .hw-impact-img { height: 72px; }
  .hw-impact-body { padding: .6rem .7rem .8rem; }

  /* Nav bar: tighten dots */
  .hw-nav-bar { padding: .6rem .8rem .7rem; }
  .hw-dot { padding: .35rem .6rem; gap: .3rem; }
  .hw-dot-label { font-size: 10px; }
  .hw-dot-num { font-size: 11px; }

  /* ---- GET INVOLVED ---- */
  .gi { padding: 3.5rem 1.4rem; }
  .gi-top { margin-bottom: 2rem; }
  .gi-headline h2 { font-size: 26px; }
  .gi-list { max-width: 100%; }
  .gi-item { flex-wrap: wrap; gap: 1rem; }
  .gi-item-body { flex: 1 1 100%; }
  .gi-cta-row { padding: 1.4rem 0 .5rem; }
  .gi-cta-row .btn-coral { width: 100%; text-align: center; justify-content: center; }

  /* ---- FOOTER ---- */
  .footer { padding: 3rem 1.4rem 1.5rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; gap: .4rem; }
  .nl-row input { min-width: 0; }

  /* ---- BLUE PILL + PILLARS FLOW — hide on mobile ---- */
  .hw-principles { display: none; }
  .pillars-flow { display: none; }

  /* ---- MAP HINT — reposition to bottom-center on mobile (tap not click) ---- */
  .map-hint {
    top: auto;
    bottom: 14px;
    right: auto;
    left: 50%;
    width: auto;
    transform: translateX(-50%) translateY(10px);
    flex-direction: row;
    gap: 10px;
    padding: 10px 16px 10px 12px;
    border-radius: 100px;
    width: max-content;
    max-width: calc(100% - 28px);
  }
  .map-hint.is-visible  { transform: translateX(-50%) translateY(0); }
  .map-hint.is-hidden   { transform: translateX(-50%) translateY(6px); }
  .map-hint-demo { width: 28px; height: 34px; }
  .map-hint-pin-icon { width: 18px; height: 21px; }
  .map-hint-ring { top: 7px; width: 14px; height: 14px; }
  .map-hint-text { text-align: left; }
  .map-hint-text strong { font-size: 12px; }
  .map-hint-text span   { font-size: 11px; }

  /* ---- PILLAR CARDS — faster transitions for tap (desktop is 2.8s/1.6s) ---- */
  .card-overlay { transition: background 0.9s ease; }
  .card-tagline { transition: max-height 0.6s ease, opacity 0.7s ease 0.2s; }
  .card-desc    { transition: max-height 0.6s ease, opacity 0.7s ease 0.35s; }


  /* ---- DONATE BAND ---- */
  .gi-donate { padding: 1.6rem 1.4rem; margin-top: 2rem; }
  .gi-donate-inner { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
  .gi-donate-btn { width: 100%; text-align: center; }

  /* ---- PILLAR ACCORDION height label ---- */
  .pillar-card h3 { font-size: 18px; }
}

/* Extra-small phones (≤ 480px) */
@media (max-width: 480px) {
  .hero-left h1 { font-size: 24px; }
  .metrics-row { grid-template-columns: 1fr 1fr; }
  .metric-n { font-size: 38px; }
  .pillar-row { grid-template-columns: 1fr; border-radius: 8px; }
  .pr { border-right: none !important; }
  .pr:nth-child(3),
  .pr:nth-child(4) { border-bottom: 1px solid #e0dbd2; }
  .pr:last-child { border-bottom: none; }
  .init-grid { grid-template-columns: 1fr; }
  .init-list { grid-template-columns: 1fr; }
  .hw-fw-cards { grid-template-columns: 1fr; }
  .hw-dot-label { display: none; }
  .map-box { aspect-ratio: 1 / 1; border-radius: 10px; }
  .map-popup { width: calc(100% - 24px); max-width: 280px; padding: 1.2rem 1.1rem 1rem; }
  .mp-name { font-size: 18px; }
  .ts-title { font-size: 18px; }
}

/* ============================================================
   CONTACT MODAL — MOBILE-FIRST
   Default styles = mobile bottom sheet.
   Tablet+ override goes inside @media (min-width: 769px).
============================================================ */

/* Overlay */
.contact-modal {
  position: fixed;
  inset: 0;
  background: rgba(10,22,38,0.6);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.contact-modal.is-open {
  opacity: 1;
  pointer-events: all;
}

/* Box — mobile default: bottom sheet with 12px gap on each side */
.contact-modal-box {
  position: fixed;
  bottom: 12px;
  left: 12px;
  width: calc(100vw - 24px);
  background: #fff;
  border-radius: 20px;
  padding: 1.8rem 1.4rem 2.4rem;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-sizing: border-box;
}
.contact-modal.is-open .contact-modal-box {
  transform: translateY(0);
}

/* Close button */
.contact-modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: #f0ece4;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a3049;
  transition: background 0.2s;
}
.contact-modal-close:hover { background: #e0dbd2; }
.contact-modal-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: #1a3049;
  margin: 0;
}

/* Form fields — mobile default: single column, tighter spacing */
.cf-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.cf-field {
  display: flex;
  flex-direction: column;
  margin-bottom: .8rem;
}
.cf-field label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #1a3049;
  margin-bottom: .4rem;
}
.cf-field input,
.cf-field textarea {
  border: 1.5px solid #ddd4c8;
  border-radius: 8px;
  padding: .65rem .9rem;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 15px;
  color: #1a3049;
  background: #faf8f5;
  outline: none;
  transition: border-color 0.2s;
  resize: none;
}
.cf-field input:focus,
.cf-field textarea:focus { border-color: #5ac2b0; }
.cf-submit {
  width: 100%;
  padding: .8rem;
  background: #1a3049;
  color: #fff;
  border: none;
  border-radius: 100px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: .5rem;
}
.cf-submit:hover { background: #f26b5b; }

/* Tablet+ — centered floating modal */
@media (min-width: 769px) {
  .contact-modal {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .contact-modal-box {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    width: 100%;
    max-width: 560px;
    border-radius: 16px;
    padding: 2.5rem 2.8rem;
    max-height: none;
    overflow-y: visible;
    transform: translateY(20px);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .contact-modal.is-open .contact-modal-box {
    transform: translateY(0);
  }
  .cf-row {
    grid-template-columns: 1fr 1fr;
  }
  .cf-field {
    margin-bottom: 1.1rem;
  }
}

/* ── VIDEO LIGHTBOX ───────────────────────────────────────── */
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.82);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.video-modal.is-open {
  opacity: 1;
  pointer-events: all;
}
.video-modal-box {
  position: relative;
  width: min(860px, 92vw);
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  transform: scale(.95);
  transition: transform .25s ease;
}
.video-modal.is-open .video-modal-box {
  transform: scale(1);
}
.video-modal-ratio {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
.video-modal-ratio iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.video-modal-close {
  position: absolute;
  top: -36px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
  z-index: 10;
  opacity: .75;
  transition: opacity .2s;
}
.video-modal-close:hover { opacity: 1; }
