/* Components */

#site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: nowrap; gap: 1rem;
  padding: 0 1rem;
  height: 80px;
  background: transparent;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
  border-bottom: 1px solid transparent;
}
#site-nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(13,31,38,0.08);
  box-shadow: 0 2px 20px rgba(13,31,38,0.07);
}
.nav-logo {
  flex-shrink: 0;
  text-decoration: none;
  position: relative;
  height: 70px;
  width: 165px;
  display: flex; align-items: center;
}
.nav-logo-img {
  width: 165px;
  height: 70px;
  object-fit: contain;
  object-position: left center;
  display: block;
  transition: opacity 0.3s;
  position: absolute;
  top: 0; left: 0;
}
.nav-logo-white { opacity: 1; }
.nav-logo-colour { opacity: 0; }
nav.scrolled .nav-logo-white { opacity: 0; }
nav.scrolled .nav-logo-colour { opacity: 1; }
.nav-links {
  display: flex; align-items: center;
  gap: 0.1rem; list-style: none; flex-wrap: nowrap;
  flex-shrink: 1;
}
.nav-links a {
  font-size: 0.78rem; letter-spacing: 0.04em;
  text-transform: uppercase; text-decoration: none; font-weight: 600;
  color: rgba(255,255,255,0.9);
  padding: 0.45rem 0.7rem; border-radius: 6px;
  transition: color 0.25s, background 0.25s;
  white-space: nowrap;
}
.nav-links a:hover {
  color: white;
  background: rgba(255,255,255,0.12);
}
nav.scrolled .nav-links a { color: var(--ink2); }
nav.scrolled .nav-links a:hover { color: var(--teal-deep); background: rgba(0,120,148,0.07); }
/* Donate link styled as a pill */
.nav-links li:nth-child(5) a {
  background: white; color: var(--teal-deep) !important;
  padding: 0.45rem 1rem; border-radius: 100px;
}
.nav-links li:nth-child(5) a:hover { background: var(--amber); color: white !important; }
nav.scrolled .nav-links li:nth-child(5) a { background: var(--teal-deep); color: white !important; }
nav.scrolled .nav-links li:nth-child(5) a:hover { background: var(--coral-dark); }
.nav-instagram { display: flex; align-items: center; }
.nav-instagram svg { display: block; }

#site-nav .announcement-bar {
  display: flex;
  gap: 25px;
  margin-left: 0px;
  font-size: 13px;
  white-space: nowrap;
  color: #ffffff;
  flex-wrap: wrap;
  line-height: 0px;
}

@media screen and (max-width:768px){
  #site-nav .announcement-bar{
    justify-content: right;
  }

}
  
#site-nav.scrolled .announcement-bar,
#site-nav.scrolled .announcement-bar strong {
  color: #004050;
}
footer {
  background: var(--teal-deep);
  padding: 4rem;
  display: grid; grid-template-columns: 1fr auto;
  gap: 3rem; align-items: start;
}
.footer-left {}
.footer-wordmark {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.3rem; font-weight: 700; font-style: normal;
  letter-spacing: -0.02em;
  color: var(--cream); margin-bottom: 1rem;
}
.footer-logo-img {
  display: block; width: 160px; height: auto;
  margin-bottom: 1rem; opacity: 0.5;
}
.footer-logo-img {
  display: block;
  width: 160px; height: auto;
  margin-bottom: 1rem;
  opacity: 0.5;
}
.footer-tagline {
  font-size: 0.85rem; color: rgba(242,248,250,0.45);
  line-height: 1.6; max-width: 280px;
}
.footer-nav { display: flex; flex-direction: column; gap: 0.75rem; align-items: flex-end; }
.footer-nav a {
  font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(242,248,250,0.5); text-decoration: none; transition: color 0.2s;
}
.footer-nav a:hover { color: var(--cream); }
.footer-bottom {
  grid-column: span 2; padding-top: 2rem;
  border-top: 1px solid rgba(242,248,250,0.12);
  display: flex; justify-content: space-between;
  font-size: 0.78rem; color: rgba(242,248,250,0.3);
  flex-wrap: wrap; gap: 1rem;
}
/* ─── HERO ─── */
.page-hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.video-embed {
  position: relative; width: 100%; padding-top: 56.25%;
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}
.video-embed iframe {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; border: none;
}
@media (max-width: 900px) {
  .page-hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}



.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0;
  position: relative; overflow: hidden;
  background: var(--teal-deep);
}
.hero-photo {
  position: absolute; inset: 0;
  background-image: url("https://www.360insights.com/hubfs/Walk-For-Good/AdobeStock_1d193580-f424-47bc-88c1-3333145b0359.png");
  background-size: cover; background-position: center 30%;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 40, 55, 0.55) 0%,
    rgba(0, 35, 50, 0.72) 40%,
    rgba(0, 25, 38, 0.88) 70%,
    rgba(0, 20, 30, 0.97) 100%
  );
}

.hero-inner {
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 10rem 4rem 3rem;
  position: relative; z-index: 2;
  flex: 1;
}
.hero-eyebrow {
  font-size: 1.1rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 1.25rem;
  display: flex; align-items: center; gap: 1rem;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block; width: 2rem; height: 1px;
  background: var(--amber);
}
.hero-lfbs-logo {
  display: block;
  width: clamp(140px, 18vw, 260px);
  height: auto;
  margin-bottom: 2rem;
}
.hero-h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  font-weight: 800; line-height: 0.96;
  color: var(--cream); letter-spacing: -0.04em;
  margin-bottom: 2.5rem;
}
.hero-h1 em { font-style: normal; color: var(--amber); }
.hero-sub {
  font-size: 1.05rem; line-height: 1.7; font-weight: 500;
  color: rgba(242,248,250,0.6);
  max-width: 460px; margin-bottom: 3rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-cream {
  background: var(--cream); color: var(--teal-deep);
  padding: 1rem 2rem; border-radius: 100px;
  font-size: 0.88rem; font-weight: 500; letter-spacing: 0.04em;
  text-decoration: none; transition: all 0.25s;
}
.btn-cream:hover { background: var(--amber); color: var(--ink); }
.btn-outline-light {
  background: transparent; border: 1px solid rgba(242,248,250,0.25);
  color: var(--cream);
  padding: 1rem 2rem; border-radius: 100px;
  font-size: 0.88rem; letter-spacing: 0.04em;
  text-decoration: none; transition: all 0.25s;
}
.btn-outline-light:hover { border-color: rgba(242,248,250,0.6); background: rgba(242,248,250,0.07); }

.hero-stats-row {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.25rem;
  padding: 0 4rem 4rem;
}
.hero-stats-title {
  grid-column: 1 / -1;
  font-size: 1rem; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; color: white;
  margin-bottom: 0.75rem;
  text-align: center;
  display: flex; align-items: center; gap: 1rem;
}
.hero-stats-title::before,
.hero-stats-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.35);
}
.hero-stat {
  background: rgba(242,248,250,0.22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(242,248,250,0.28);
  border-radius: 20px;
  padding: 2rem 2.25rem;
  position: relative; overflow: hidden;
}
.hero-stat::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(242,248,250,0.1) 0%, transparent 60%);
  border-radius: 20px; pointer-events: none;
}
.hero-stat-label {
  font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(242,248,250,0.6); margin-bottom: 0.9rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.hero-stat-label::before {
  content: ''; display: inline-block; width: 1rem; height: 1px;
  background: var(--amber);
}
.hero-stat-val-row {
  display: flex; align-items: center; gap: 0.75rem;
}
.hero-stat-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  color: rgba(242,248,250,0.65);
}
.hero-stat-val {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.4rem,3.8vw,4rem); font-weight: 800;
  color: var(--cream); line-height: 0.95;
  letter-spacing: -0.03em;
}
.hero-stat-goal {
  font-size: 1.05rem; color: white; margin-top: 0.75rem; font-weight: 700;
}
.progress-thin {
  height: 3px; background: rgba(242,248,250,0.2);
  border-radius: 100px; margin-top: 1rem; overflow: hidden;
}
.progress-fill {
  height: 100%; background: #22C55E; border-radius: 100px;
  animation: growBar 1.8s cubic-bezier(.4,0,.2,1) .6s both;
  transform-origin: left;
}
@keyframes growBar { from { transform: scaleX(0); } to { transform: scaleX(1); } }


/* ── HERO GENERIC PAGE STYLES ── */
.page-hero {
  padding-top: 80px;
  background: var(--teal-deep);
}
.page-hero-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 7rem 3rem 6rem;
}
.page-hero-eyebrow {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--amber); margin-bottom: 1.25rem;
}
.page-hero h1 {
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800;
  font-size: clamp(2.8rem,5vw,4.5rem); line-height: 1.05;
  color: white; margin-bottom: 1.5rem;
}
.page-hero h1 em { color: var(--amber); font-style: normal; }
.page-hero-sub {
  font-size: 1.05rem; line-height: 1.75; color: rgba(255,255,255,0.75);
}
.hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none; border: none; cursor: pointer;
  padding: 4px; border-radius: 8px;
  transition: background 0.2s;
  flex-shrink: 0;
}
.hamburger:hover { background: rgba(255,255,255,0.12); }
#site-nav.scrolled .hamburger:hover { background: rgba(13,31,38,0.07); }
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: white; border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s, background 0.3s;
  transform-origin: center;
}
#site-nav.scrolled .hamburger span { background: var(--ink); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; top: 80px; left: 0; right: 0; bottom: 0;
  background: var(--teal-deep);
  z-index: 199;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }

.mobile-menu-links {
  display: flex; flex-direction: column;
  padding: 2rem 2rem 3rem;
  gap: 0;
}
.mobile-menu-links a {
  font-size: 1.1rem; font-weight: 600;
  letter-spacing: 0.03em; text-transform: uppercase;
  color: rgba(242,248,250,0.85); text-decoration: none;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(242,248,250,0.1);
  transition: color 0.2s, padding-left 0.2s;
  display: flex; align-items: center; gap: 0.5rem;
}
.mobile-menu-links a:last-child { border-bottom: none; }
.mobile-menu-links a:hover { color: white; padding-left: 0.5rem; }
/* Donate link styled as pill in mobile menu */
.mobile-menu-links a:nth-child(6) {
  color: var(--teal-deep); background: white;
  margin: 1rem 0; padding: 0.75rem 1.5rem;
  border-radius: 100px; border: none;
  font-weight: 700; justify-content: center;
}
.mobile-menu-links a:nth-child(6):hover { background: var(--amber); color: white; padding-left: 1.5rem; }

@media (max-width: 1100px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

/* Styles */

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --cream: #F2F8FA;
  --cream2: #E4F1F5;
  --teal: #007894;
  --teal-dark: #005A70;
  --teal-deep: #00404F;
  --teal-light: #4AAFC8;
  --teal-pale: #A8D8E8;
  --coral: #E8643A;
  --coral-dark: #C44E28;
  --amber: #01B9D8;
  --sand: #B8D8E2;
  --ink: #0D1F26;
  --ink2: #1E3A45;
  --mist: rgba(13,31,38,0.5);
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}


/* ─── SECTIONS ─── */
.section { padding: 8rem 4rem; scroll-margin-top: 80px; }

.label-tag {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 2rem;
}
.label-tag::before {
  content: ''; width: 1.5rem; height: 1px; background: var(--teal);
}

.display-serif {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; letter-spacing: -0.03em;
  line-height: 1.0;
}

/* ─── MISSION ─── */
.mission { background: var(--cream); }
.mission-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: start;
  max-width: 1300px; margin: 0 auto;
}
.mission-title { font-size: clamp(2.5rem,4.5vw,4rem); color: var(--ink); font-weight: 800; letter-spacing: -0.03em; line-height: 1.0; }
.mission-title em { font-style: normal; color: var(--teal); font-weight: 300; }
.mission-body {
  padding-top: 1rem;
}
.mission-body p {
  font-size: 1.1rem; line-height: 1.8;
  color: var(--ink2); margin-bottom: 1.5rem;
}
.mission-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.88rem; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--teal-deep); text-decoration: none;
  border-bottom: 1px solid var(--teal-deep); padding-bottom: 2px;
  transition: gap 0.2s, color 0.2s;
}
.mission-video { display: flex; align-items: center; }
.video-embed {
  position: relative; width: 100%; padding-top: 56.25%;
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}
.video-embed iframe {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; border: none;
}
.video-placeholder {
  width: 100%; aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--cream2) 0%, var(--sand) 100%);
  border-radius: 20px;
  border: 2px dashed rgba(0,120,148,0.25);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1.25rem;
  cursor: pointer; transition: border-color 0.25s, background 0.25s;
  min-height: 280px;
}
.video-placeholder:hover { border-color: var(--teal); background: var(--cream2); }
.video-play-btn svg { width: 72px; height: 72px; filter: drop-shadow(0 4px 12px rgba(0,120,148,0.3)); transition: transform 0.2s; }
.video-placeholder:hover .video-play-btn svg { transform: scale(1.08); }
.video-label {
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--teal); opacity: 0.7;
}

/* ─── PULL QUOTE ─── */
.pullquote {
  background: var(--teal-deep); padding: 7rem 4rem;
  text-align: center;
}
.pullquote-inner { max-width: 860px; margin: 0 auto; }
.pullquote p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.6rem,3vw,2.6rem); font-weight: 600; font-style: normal;
  line-height: 1.3; color: var(--cream); letter-spacing: -0.02em;
}
.pullquote cite {
  display: block; margin-top: 2rem;
  font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--teal-light); font-style: normal;
}

/* ─── STEPS ─── */
.steps { background: var(--cream2); }
.steps-inner { max-width: 1200px; margin: 0 auto; }
.steps-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 5rem; flex-wrap: wrap; gap: 2rem; }
.steps-title { font-size: clamp(2.5rem,4vw,3.5rem); max-width: 500px; }

.steps-list { display: flex; flex-direction: column; gap: 0; }
.step-row {
  display: grid; grid-template-columns: 5rem 1fr auto;
  align-items: start; gap: 2rem;
  padding: 2.5rem 0;
  border-top: 1px solid rgba(13,31,38,0.1);
  transition: background 0.25s;
}
.step-row:last-child { border-bottom: 1px solid rgba(13,31,38,0.1); }
.step-n {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 3rem; font-style: italic;
  color: var(--sand); padding-top: 0.25rem;
}
.step-content {}
.step-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.4rem; font-weight: 700; letter-spacing: -0.02em;
  color: var(--ink); margin-bottom: 0.5rem;
}
.step-desc {
  font-size: 0.92rem; line-height: 1.7;
  color: var(--mist); max-width: 560px;
}
.step-code-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--mist);
  margin-top: 1rem; margin-bottom: 0.3rem;
}
  background: #22C55E; color: white;
  font-size: 0.82rem; letter-spacing: 0.04em;
  padding: 0.3rem 0.75rem; border-radius: 6px;
  font-family: monospace; display: inline-block; margin-top: 0.75rem;
}
.step-action { display: flex; flex-direction: column; gap: 0.5rem; align-items: flex-end; padding-top: 0.25rem; }
.step-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--teal-deep); color: var(--cream);
  padding: 0.55rem 1.2rem; border-radius: 100px;
  font-size: 0.8rem; letter-spacing: 0.04em;
  text-decoration: none; transition: background 0.2s;
  white-space: nowrap; border: 1px solid transparent;
}
.btn-flag-svg {
  width: 20px; height: 14px; flex-shrink: 0;
  border-radius: 2px; display: block;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.1);
}
.step-btn:hover { background: #01B9D8; }
.btn-flag { font-style: normal; margin-right: 0.2rem; }
.store-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--ink); color: white;
  padding: 0.5rem 1.1rem; border-radius: 100px;
  text-decoration: none; transition: background 0.2s;
  white-space: nowrap; line-height: 1.2;
  min-width: 148px;
}
.store-btn:hover { background: var(--teal-deep); }
.store-btn svg { flex-shrink: 0; }
.store-btn span { display: flex; flex-direction: column; }
.store-btn small { font-size: 0.6rem; letter-spacing: 0.05em; text-transform: uppercase; opacity: 0.75; }
.store-btn span > :last-child { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.01em; }
.step-btn.outline {
  background: transparent; border: 1px solid rgba(13,31,38,0.2);
  color: var(--ink2);
}
.step-btn.outline:hover { border-color: var(--teal-deep); color: var(--teal-deep); background: transparent; }

/* ─── NUMBERS / TOTALS ─── */
.totals { background: var(--cream); }
.totals-inner { max-width: 1200px; margin: 0 auto; }
.totals-header { margin-bottom: 5rem; }
.totals-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1.25rem;
}
.total-cell {
  padding: 3rem 2rem;
  background: white;
  border-radius: 20px;
  border: 1px solid rgba(13,31,38,0.08);
}
.total-cell:first-child { padding-left: 2rem; }
.total-cell:last-child { border-right: 1px solid rgba(13,31,38,0.08); }
.total-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.5rem,4vw,4rem); font-weight: 800;
  color: var(--ink); line-height: 1; margin-bottom: 0.5rem;
  display: block; letter-spacing: -0.03em;
}
.total-label {
  font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: #0D1F26;
}
.total-bar { height: 3px; background: rgba(13,31,38,0.08); margin-top: 1.25rem; border-radius: 100px; overflow: hidden; }
.total-bar-fill { height: 100%; background: var(--coral); border-radius: 100px; animation: growBar 2s cubic-bezier(.4,0,.2,1) .6s both; transform-origin: left; }

/* ─── IMPACT ─── */
.impact { background: var(--cream); }
.impact-inner { max-width: 1200px; margin: 0 auto; }
.impact-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 4rem; }
.impact-card { background: white; border-radius: 20px;
  padding: 2.5rem; border: 1px solid rgba(13,31,38,0.07);
  transition: transform 0.25s, box-shadow 0.25s;
  text-align: center;
}
.impact-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(13,31,38,0.06); }
.impact-card.wide { grid-column: span 3; background: var(--teal-deep); border-color: transparent; text-align: left; }
.impact-card.wide h3, .impact-card.wide p { color: var(--cream); }
.impact-card.wide p { opacity: 0.65; }
.impact-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  color: var(--teal); margin-bottom: 1.25rem; display: block;
  margin-left: auto; margin-right: auto;
}
.impact-card.wide .impact-icon { color: var(--teal-pale); margin-left: 0; margin-right: 0; }
.impact-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.2rem; font-weight: 700; letter-spacing: -0.02em;
  margin-bottom: 0.75rem; color: var(--ink); text-align: left;
}
.impact-card p { font-size: 0.92rem; line-height: 1.7; color: var(--mist); text-align: left; }

/* ─── SPONSORS ─── */
.sponsors { background: var(--cream2); }
.sponsors-inner { max-width: 1200px; margin: 0 auto; }
.sponsors-grid { display: flex; flex-direction: column; gap: 4.5rem; margin-top: 4rem; }
.sponsor-tier-label {
  font-size: 0.85rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink); margin-bottom: 1.25rem;
  padding-bottom: 0.75rem; border-bottom: 1px solid rgba(13,31,38,0.12);
}
.sponsor-pills { display: flex; flex-wrap: wrap; gap: 0.6rem; align-items: center; }
.sponsor-pill {
  font-size: 0.88rem; padding: 0.55rem 1.2rem; border-radius: 100px;
  text-decoration: none; border: 1px solid rgba(13,31,38,0.15);
  color: var(--ink2); transition: all 0.2s; background: transparent; white-space: nowrap;
}
.sponsor-pill:hover { border-color: var(--teal-deep); color: var(--teal-deep); }
.sponsor-pill.lead {
  background: var(--teal-deep); color: var(--cream); border-color: transparent; font-weight: 500;
}
.sponsor-pill.lead:hover { background: var(--coral-dark); }
.sponsor-logos-row { display: flex; flex-wrap: wrap; align-items: center; gap: 2rem 3rem; }
.sponsor-logo-link {
  display: flex; align-items: center; opacity: 0.5; transition: opacity 0.25s; flex-shrink: 0;
}
.sponsor-logo-link:hover { opacity: 1; }
.sponsor-logo-img { height: 80px; width: auto; max-width: 220px; display: block; object-fit: contain; }


/* ─── FAQ ─── */
.faq { background: var(--cream2); }
.faq-inner { max-width: 900px; margin: 0 auto; }
.faq-list { margin-top: 4rem; }
.faq-item { border-top: 1px solid rgba(13,31,38,0.1); }
.faq-item:last-child { border-bottom: 1px solid rgba(13,31,38,0.1); }
.faq-trigger {
  width: 100%; background: none; border: none; cursor: pointer;
  text-align: left; padding: 1.75rem 0;
  display: flex; justify-content: space-between; align-items: center; gap: 2rem;
}
.faq-trigger-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem; font-weight: 600; letter-spacing: -0.01em;
  color: var(--ink);
}
.faq-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  border: 1px solid rgba(13,31,38,0.2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink2); transition: transform 0.3s, background 0.2s;
}
.faq-item.open .faq-icon { background: var(--teal-deep); color: var(--cream); border-color: transparent; }
.faq-item.open .faq-icon svg { transform: rotate(180deg); }
.faq-icon svg { transition: transform 0.3s; }
.faq-body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s;
}
.faq-body-inner { padding-bottom: 1.75rem; }
.faq-body-inner p { font-size: 0.95rem; line-height: 1.75; color: var(--mist); }
.faq-body-inner a { color: var(--teal); text-decoration: underline; }
.faq-item.open .faq-body { max-height: 400px; }

/* ─── CTA ─── */
.cta-section {
  background: var(--cream); padding: 8rem 4rem;
  text-align: center;
}
.cta-inner { max-width: 700px; margin: 0 auto; }
.cta-section .display-serif { font-size: clamp(3rem,6vw,5.5rem); color: var(--teal-deep); margin-bottom: 1.5rem; }
.cta-section .display-serif em { font-style: normal; color: var(--coral); font-weight: 300; }
.cta-sub { font-size: 1.05rem; line-height: 1.7; color: var(--mist); margin-bottom: 3rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-dark {
  background: var(--teal-deep); color: var(--cream);
  padding: 1rem 2.2rem; border-radius: 100px;
  font-size: 0.88rem; letter-spacing: 0.04em;
  text-decoration: none; transition: background 0.25s;
}
.btn-dark:hover { background: #01B9D8; }
.btn-outline {
  background: transparent; border: 1px solid rgba(13,31,38,0.2); color: var(--ink);
  padding: 1rem 2.2rem; border-radius: 100px;
  font-size: 0.88rem; letter-spacing: 0.04em;
  text-decoration: none; transition: all 0.2s;
}
.btn-outline:hover { border-color: var(--teal-deep); color: var(--teal-deep); }

/* ─── REVEAL ─── */
.fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ─── CTA STRIP ─── */
.kanpe-cta-strip {
  background: var(--teal-deep); padding: 4rem 3rem 0.5rem;
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: center; gap: 1rem;
}
.kanpe-cta-strip .cta-outline {
  background: transparent; color: white;
  border: 1.5px solid rgba(255,255,255,0.4);
  padding: 1rem 2rem; border-radius: 100px;
  font-size: 0.88rem; font-weight: 500; letter-spacing: 0.04em;
  text-decoration: none; transition: all 0.25s;
}
.kanpe-cta-strip .cta-outline:hover { border-color: white; background: rgba(255,255,255,0.08); }



@media (max-width: 960px) {
  nav { padding: 0.75rem 1.25rem; }
  .section { padding: 5rem 1.5rem; }
  .mission-layout { grid-template-columns: 1fr; gap: 3rem; }
  .totals-grid { grid-template-columns: 1fr 1fr; }
  .total-cell { padding: 2rem 1.5rem; }
  .impact-grid { grid-template-columns: 1fr; }
  .impact-card.wide { grid-column: span 1; }
  .step-row { grid-template-columns: 3rem 1fr; grid-template-rows: auto auto; }
  .step-n { grid-column: 1; grid-row: 1; }
  .step-content { grid-column: 2; grid-row: 1; }
  .step-action { grid-column: 2; grid-row: 2; align-items: flex-start; flex-direction: row; flex-wrap: wrap; margin-top: 0.75rem; }
  footer { grid-template-columns: 1fr; }
  .footer-nav { align-items: flex-start; }
  .footer-bottom { grid-column: span 1; }
  .hero-inner { padding: 8rem 1.5rem 2.5rem; }
  .hero-stats-row { grid-template-columns: 1fr; padding: 0 1.5rem 3rem; gap: 0.75rem; }
  .hero-stat { border-radius: 16px; }
  .pullquote { padding: 5rem 1.5rem; }
  .totals-impact-btn { margin: 0 auto; }
  .sponsor-logos-row { gap: 1.25rem 1.5rem; }
  .sponsor-logo-link { width: calc(50% - 0.75rem); justify-content: center; }
  .sponsor-logo-link:last-child:nth-child(odd) { margin-left: auto; margin-right: auto; }
  .sponsor-logo-img { height: 44px; max-width: 100%; }
}



/* ── GENERIC PAGE STYLES ── */

/* Intro photo grid */
.page-intro { background: var(--cream2); }
.page-intro-inner { max-width: 1200px; margin: 0 auto; }
.page-intro-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; margin-top: 3.5rem;
}
.page-photo {
  width: 100%; border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 8px 32px rgba(13,31,38,0.12);
}
.page-photo-pair { display: flex; flex-direction: column; gap: 1.5rem; }
.page-photo-pair .page-photo:first-child { aspect-ratio: 16/10; }
.page-photo-pair .page-photo:last-child { aspect-ratio: 4/3; }

/* Q&A section */
.page-qa { background: var(--cream); }
.page-qa-inner { max-width: 900px; margin: 0 auto; }
.page-qa-item { margin-bottom: 3rem; }
.page-qa-item:last-child { margin-bottom: 0; }
.page-qa-q {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.15rem;
  font-weight: 700; color: var(--ink); margin-bottom: 1rem;
}
.page-qa-a {
  font-size: 1rem; line-height: 1.85; color: var(--ink2);
}
.page-qa-a ul {
  margin: 0.75rem 0 0 0; padding: 0; list-style: none;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.page-qa-a li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.98rem; line-height: 1.6; color: var(--ink2);
}
.page-qa-a li::before {
  content: ''; display: block; flex-shrink: 0;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal); margin-top: 0.45em;
}

/* More photos grid */
.page-photos { background: var(--cream2); }
.page-photos-inner { max-width: 1200px; margin: 0 auto; }
.page-photo-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem; margin-top: 3.5rem;
}
.page-photo-grid .page-photo {
  aspect-ratio: 4/3;
}
.page-photo-grid .page-photo.wide {
  grid-column: span 2; aspect-ratio: 16/7;
}

/* Milestones */
.page-milestones { background: var(--cream); }
.page-milestones-inner { max-width: 900px; margin: 0 auto; }
.milestone-list {
  margin-top: 3.5rem; display: flex; flex-direction: column; gap: 2rem;
}
.milestone-item {
  display: grid; grid-template-columns: 3rem 1fr; gap: 1.25rem; align-items: start;
}
.milestone-dot {
  width: 3rem; height: 3rem; border-radius: 50%;
  background: var(--teal-deep); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 0.1rem;
}
.milestone-dot svg { width: 18px; height: 18px; }
.milestone-text { font-size: 1rem; line-height: 1.75; color: var(--ink2); }
.milestone-text strong { color: var(--ink); }

/* Closing photo strip */
.page-closing { background: var(--cream2); }
.page-closing-inner { max-width: 1200px; margin: 0 auto; }
.page-closing-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 3.5rem;
}
.page-closing-grid .page-photo { aspect-ratio: 3/2; }

/* CTA strip */
.kanpe-cta-strip {
  background: var(--teal-deep); padding: 4rem 3rem 0.5rem;
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: center; gap: 1rem;
}
.kanpe-cta-strip .btn-outline-light {
  background: transparent; border: 1px solid rgba(242,248,250,0.25);
  color: var(--cream); padding: 1rem 2rem; border-radius: 100px;
  font-size: 0.88rem; letter-spacing: 0.04em;
  text-decoration: none; transition: all 0.25s;
}
.kanpe-cta-strip .btn-outline-light:hover { border-color: rgba(242,248,250,0.6); background: rgba(242,248,250,0.07); }
.kanpe-cta-strip .cta-outline {
  background: transparent; color: white;
  border: 1.5px solid rgba(255,255,255,0.4);
  padding: 1rem 2rem; border-radius: 100px;
  font-size: 0.88rem; font-weight: 500; letter-spacing: 0.04em;
  text-decoration: none; transition: all 0.25s;
}
.kanpe-cta-strip .cta-outline:hover { border-color: white; background: rgba(255,255,255,0.08); }

@media (max-width: 900px) {
  .page-intro-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .page-photo-grid { grid-template-columns: 1fr 1fr; }
  .page-photo-grid .page-photo.wide { grid-column: span 2; }
  .page-closing-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .page-photo-grid { grid-template-columns: 1fr; }
  .page-photo-grid .page-photo.wide { grid-column: span 1; aspect-ratio: 4/3; }
  .page-hero-inner { padding: 5rem 1.5rem 3rem; }
}

.page-body p {
  font-size: 1.1rem; line-height: 1.8;
  color: var(--ink2); margin-bottom: 1.5rem;
}