/* =====================================================
   LOVE TO SERVE — Website Redesign
   Modern nonprofit design system
   Colors: Navy #0B2343 · Orange #FF6240 · Teal #00A896
===================================================== */

/* ── CSS Variables ───────────────────────────────── */
:root {
  --navy:          #0B2343;
  --navy-light:    #1A3F7A;
  --navy-dark:     #071830;
  --orange:        #FF6240;
  --orange-dark:   #E04E2E;
  --orange-light:  #FFF0EC;
  --teal:          #00A896;
  --teal-light:    #E0F7F5;
  --green:         #16A34A;
  --green-light:   #F0FDF4;
  --blue-light:    #EFF6FF;
  --blue-mid:      #2563EB;
  --indigo:        #6366F1;
  --white:         #FFFFFF;
  --off-white:     #F8FAFF;
  --gray-50:       #F9FAFB;
  --gray-100:      #F3F4F6;
  --gray-200:      #E5E7EB;
  --gray-300:      #D1D5DB;
  --gray-400:      #9CA3AF;
  --gray-500:      #6B7280;
  --gray-700:      #374151;
  --gray-900:      #111827;

  --font-sans:    'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Poppins', system-ui, sans-serif;

  --section-gap: 6rem;
  --nav-height:  84px;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-sm:    0 1px 3px rgba(0,0,0,.08);
  --shadow-md:    0 4px 12px rgba(0,0,0,.08);
  --shadow-lg:    0 10px 24px rgba(0,0,0,.1);
  --shadow-xl:    0 20px 40px rgba(0,0,0,.12);
  --shadow-card:  0 4px 24px rgba(11,35,67,.07);
  --shadow-hover: 0 16px 48px rgba(11,35,67,.15);

  --ease: cubic-bezier(.16, 1, .3, 1);
  --dur:  260ms;
}

/* ── Reset ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img  { max-width: 100%; height: auto; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
address { font-style: normal; }
em  { font-style: normal; }

/* ── Layout ──────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Typography helpers ──────────────────────────── */
.eyebrow {
  display: inline-block;
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .875rem;
}
.eyebrow--dark { color: var(--navy); }

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 4rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.18;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.0625rem;
  color: var(--gray-500);
  line-height: 1.75;
}

/* ── Buttons ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: .9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  border: 2px solid transparent;
  white-space: nowrap;
  line-height: 1.3;
}
.btn--xl { padding: 1rem 2.25rem; font-size: 1.0625rem; }
.btn--lg { padding: .875rem 2rem; }

.btn--orange {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn--orange:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255,98,64,.38);
}

.btn--ghost {
  background: rgba(255,255,255,.1);
  color: var(--white);
  border-color: rgba(255,255,255,.35);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.7);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn--white:hover {
  background: var(--gray-100);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--gray-200);
}
.btn--outline-dark:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.45);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ── Navigation ──────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  transition: background var(--dur) var(--ease),
              box-shadow   var(--dur) var(--ease);
}

.nav.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--gray-200);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-shrink: 0;
}

/* Logo image in nav */
.nav__logo-img {
  width: 68px;
  height: 68px;
  object-fit: cover;
  object-position: left center;
  flex-shrink: 0;
  border-radius: 50%;
  transition: opacity var(--dur);
  box-shadow: 0 0 0 3px rgba(255,255,255,.2);
}
.nav.scrolled .nav__logo-img { box-shadow: 0 0 0 3px rgba(11,35,67,.1); }

.nav__brand-text {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--white);
  transition: color var(--dur);
  line-height: 1.2;
}
.nav.scrolled .nav__brand-text { color: var(--navy); }
.nav__brand-text span { color: var(--orange); }
.nav__brand-text em   { font-style: normal; font-size: .75em; opacity: .7; font-weight: 600; }

.nav__menu {
  display: flex;
  align-items: center;
  gap: .125rem;
  margin-left: auto;
}

.nav__link {
  padding: .5rem .625rem;
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  border-radius: var(--radius-sm);
  transition: all var(--dur);
  white-space: nowrap;
}
.nav__link:hover {
  color: var(--white);
  background: rgba(255,255,255,.1);
}
.nav.scrolled .nav__link         { color: var(--gray-700); }
.nav.scrolled .nav__link:hover   { color: var(--navy); background: var(--gray-100); }

.nav__cta-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: .5rem;
  flex-shrink: 0;
}

.nav__phone {
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.65);
  transition: color var(--dur);
}
.nav__phone:hover               { color: var(--white); }
.nav.scrolled .nav__phone       { color: var(--gray-500); }
.nav.scrolled .nav__phone:hover { color: var(--navy); }

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: .5rem;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--dur) var(--ease);
}
.nav.scrolled .nav__toggle span { background: var(--navy); }

/* ── Hero ────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(150deg, var(--navy-dark) 0%, var(--navy) 45%, var(--navy-light) 100%);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Animated background shapes */
.hero__shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__shape {
  position: absolute;
  border-radius: 50%;
}

.hero__shape--1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, var(--teal) 0%, transparent 70%);
  opacity: .08;
  top: -250px;
  right: -150px;
  animation: drift 12s ease-in-out infinite;
}
.hero__shape--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--orange) 0%, transparent 70%);
  opacity: .07;
  bottom: 50px;
  left: -150px;
  animation: drift 15s ease-in-out infinite reverse;
}
.hero__shape--3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,.6) 0%, transparent 70%);
  opacity: .04;
  top: 45%;
  left: 42%;
  animation: drift 9s ease-in-out infinite;
}

@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(20px, -30px) scale(1.05); }
  66%       { transform: translate(-15px, 15px) scale(.97); }
}

/* Grid: text left, visual right */
.hero__container {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding-top: calc(var(--nav-height) + 5rem);
  padding-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.hero__text { position: relative; }

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.625rem, 5.5vw, 4.25rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -.02em;
}

.highlight {
  color: #FF6240;
  position: relative;
  display: inline-block;
}
.highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #FF6240, #ffb347);
  border-radius: 2px;
  opacity: .5;
  z-index: -1;
}

.hero__body {
  font-size: 1.125rem;
  color: rgba(255,255,255,.75);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── Hero Logo Showcase ───────────────────────────── */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__globe-wrap {
  position: relative;
  width: 540px;
  height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__logo-showcase {
  position: relative;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  overflow: hidden;
  background: #0a1e3d;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow:
    0 0 0 6px rgba(135,206,250,.15),
    0 0 0 14px rgba(100,185,255,.08),
    0 0 60px rgba(135,206,250,.25),
    0 0 120px rgba(100,185,255,.15),
    0 40px 100px rgba(0,0,0,.5);
  animation: logo-float 6s ease-in-out infinite;
}

/* Globe depth overlay */
.hero__logo-showcase::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 32%, rgba(255,255,255,.1) 0%, transparent 55%),
    radial-gradient(circle at center, transparent 55%, rgba(0,0,0,.45) 100%);
  z-index: 3;
  pointer-events: none;
}

/* Globe edge shine */
.hero__logo-showcase::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.18);
  z-index: 4;
  pointer-events: none;
}

/* Pulsing orbit rings outside the globe */
.hero__logo-ring {
  position: absolute;
  border-radius: 50%;
  animation: logo-pulse 3.5s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
.hero__logo-ring--outer {
  width: 520px; height: 520px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border: 1.5px solid rgba(135,206,250,.25);
  box-shadow: 0 0 18px rgba(135,206,250,.12);
  animation-delay: 0s;
}
.hero__logo-ring--mid {
  width: 470px; height: 470px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border: 1.5px solid rgba(100,185,255,.3);
  box-shadow: 0 0 24px rgba(100,185,255,.15);
  animation-delay: .7s;
}
.hero__logo-ring--inner {
  width: 440px; height: 440px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(173,216,255,.35);
  box-shadow: 0 0 32px rgba(173,216,255,.2);
  animation-delay: 1.4s;
}

@keyframes logo-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1);     opacity: .6; }
  50%       { transform: translate(-50%, -50%) scale(1.03);  opacity: .2; }
}

/* Full banner inside the globe */
.hero__logo-showcase-img {
  width: 88%;
  height: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  border: none;
  box-shadow: none;
  position: relative;
  z-index: 2;
  animation: none;
  -webkit-mask-image: radial-gradient(ellipse 86% 72% at center, black 38%, transparent 78%);
  mask-image:         radial-gradient(ellipse 86% 72% at center, black 38%, transparent 78%);
}

@keyframes logo-float {
  0%, 100% { transform: translateY(0);    }
  50%       { transform: translateY(-14px); }
}

/* 501c3 badge below the logo */
.hero__logo-badge {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: .375rem;
  background: var(--teal);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  padding: .4rem 1.125rem;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,.3);
}

/* Impact strip */
.impact-strip {
  background: rgba(0,0,0,.28);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,.08);
  position: relative;
  z-index: 1;
}

.impact-strip__inner {
  display: flex;
  align-items: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.impact-stat {
  flex: 1;
  text-align: center;
  padding: 0 1.25rem;
}

.impact-stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.125rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: .3rem;
}

.impact-stat__label {
  font-size: .75rem;
  color: rgba(255,255,255,.55);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.impact-strip__divider {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,.15);
  flex-shrink: 0;
}

/* ── Brand Statement ─────────────────────────────── */
.brand-statement {
  background: var(--off-white);
  border-bottom: 1px solid var(--gray-200);
  padding: 3.5rem 0;
}

.brand-statement__inner {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.brand-statement__logo {
  width: 160px;
  height: 160px;
  object-fit: cover;
  object-position: left center;
  border-radius: 50%;
  flex-shrink: 0;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-xl), 0 0 0 6px rgba(255,98,64,.1);
}

.brand-statement__text h2 {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: .75rem;
}

.brand-statement__text p {
  font-size: 1.0625rem;
  color: var(--gray-500);
  line-height: 1.75;
  max-width: 640px;
  margin-bottom: 1.25rem;
}

.brand-statement__tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.brand-statement__tags span {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  color: var(--navy);
  font-size: .8125rem;
  font-weight: 600;
  padding: .375rem 1rem;
  border-radius: 50px;
}

/* ── Mission ─────────────────────────────────────── */
.mission {
  padding: var(--section-gap) 0;
  background: var(--white);
}

.mission__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.mission-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: box-shadow var(--dur) var(--ease),
              transform   var(--dur) var(--ease),
              border-color var(--dur);
  box-shadow: var(--shadow-sm);
}
.mission-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
  border-color: transparent;
}

.mission-card__icon-wrap {
  width: 60px; height: 60px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.mission-card__icon-wrap--blue   { background: var(--blue-light);  color: var(--blue-mid); }
.mission-card__icon-wrap--orange { background: var(--orange-light); color: var(--orange); }
.mission-card__icon-wrap--teal   { background: var(--teal-light);   color: var(--teal); }
.mission-card__icon-wrap--green  { background: var(--green-light);  color: var(--green); }

.mission-card h3 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: .625rem;
}
.mission-card p {
  font-size: .9rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ── How It Works ────────────────────────────────── */
.how-it-works {
  padding: var(--section-gap) 0;
  background: var(--off-white);
}

.process__steps {
  display: flex;
  align-items: stretch;
  gap: .75rem;
}

.process-step {
  flex: 1;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--dur) var(--ease),
              transform   var(--dur) var(--ease);
}
.process-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

/* Accent top bar */
.process-step::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--teal));
}

.process-step__number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  color: var(--gray-100);
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -.04em;
}

.process-step__icon {
  color: var(--orange);
  margin-bottom: 1rem;
}

.process-step__content h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .625rem;
}
.process-step__content p {
  font-size: .9375rem;
  color: var(--gray-500);
  line-height: 1.7;
}

.process__connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  color: var(--gray-300);
  flex-shrink: 0;
  padding-bottom: 1rem;
}
.process__connector-line {
  display: none;
}

/* ── Impact Quote ────────────────────────────────── */
.impact-quote {
  padding: 6rem 0;
  background: linear-gradient(150deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
}
.impact-quote::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--teal) 0%, transparent 70%);
  opacity: .05;
  top: -150px; right: -100px;
  pointer-events: none;
}

.impact-quote__inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.impact-quote__icon {
  color: var(--orange);
  margin-bottom: 1.5rem;
  opacity: .85;
}

.impact-quote__text {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.impact-quote__cite {
  font-size: .9375rem;
  color: rgba(255,255,255,.5);
  font-weight: 500;
}

.impact-quote__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 3rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.iq-stat {
  flex: 1;
  padding: 1.75rem 1.5rem;
  text-align: center;
}

.iq-stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: .5rem;
}

.iq-stat__label {
  font-size: .8125rem;
  color: rgba(255,255,255,.55);
  font-weight: 500;
}

.iq-stat__divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,.12);
  flex-shrink: 0;
}

/* ── Gallery ─────────────────────────────────────── */
.gallery {
  padding: var(--section-gap) 0;
  background: var(--white);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 300px 200px;
  gap: 12px;
  margin-bottom: 2.5rem;
}

.gallery-item { border-radius: var(--radius-md); overflow: hidden; }
.gallery-item--featured { grid-column: span 2; }

.gallery-item__img {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform 500ms var(--ease);
  background-size: cover;
  background-position: center;
}

.gallery-item:hover .gallery-item__img { transform: scale(1.04); }

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.55) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity 300ms var(--ease);
}

.gallery-item:hover .gallery-item__overlay { opacity: 1; }

.gallery-item__tag {
  font-size: .8125rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .08em;
  background: rgba(0,0,0,.3);
  padding: .375rem .875rem;
  border-radius: 50px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.gallery__cta { text-align: center; }

.gallery-item[data-lightbox-img] { cursor: pointer; }

/* ── Lightbox ────────────────────────────────────── */
body.lightbox-open { overflow: hidden; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(7, 24, 48, .92);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur) var(--ease);
  padding: 3rem 1rem;
}

.lightbox.open { opacity: 1; visibility: visible; }

.lightbox__figure {
  max-width: min(90vw, 1100px);
  max-height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .875rem;
}

.lightbox__img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  background: var(--navy-dark);
}

.lightbox__caption {
  color: var(--white);
  font-family: var(--font-display);
  font-size: .9375rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: .01em;
}

.lightbox__counter {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.6);
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .04em;
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  background: rgba(255,255,255,.1);
  border: none;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background var(--dur) var(--ease);
}

.lightbox__close:hover,
.lightbox__nav:hover { background: rgba(255,255,255,.2); }

.lightbox__close {
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  font-size: 1.75rem;
  line-height: 1;
}

.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  font-size: 2rem;
  line-height: 1;
}

.lightbox__nav--prev { left: 1.25rem; }
.lightbox__nav--next { right: 1.25rem; }

@media (max-width: 600px) {
  .lightbox { padding: 4.5rem 0.5rem 2rem; }
  .lightbox__nav { width: 42px; height: 42px; font-size: 1.5rem; }
  .lightbox__nav--prev { left: .5rem; }
  .lightbox__nav--next { right: .5rem; }
  .lightbox__close { top: .75rem; right: .75rem; }
}

/* ── Get Involved ────────────────────────────────── */
.get-involved {
  padding: var(--section-gap) 0;
  background: var(--off-white);
}

.involved__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.involved-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--dur) var(--ease),
              transform   var(--dur) var(--ease),
              border-color var(--dur);
  position: relative;
}
.involved-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
  border-color: transparent;
}

.involved-card--primary {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.involved-card--primary:hover { border-color: var(--navy-light); }

.involved-card__icon {
  width: 64px; height: 64px;
  border-radius: var(--radius-md);
  background: var(--gray-100);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}
.involved-card--primary .involved-card__icon {
  background: rgba(255,255,255,.12);
  color: var(--white);
}

.involved-card__tag {
  display: inline-flex;
  align-items: center;
  background: var(--orange);
  color: var(--white);
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .875rem;
  border-radius: 50px;
  width: fit-content;
  margin-top: -.25rem;
}

.involved-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
}

.involved-card p {
  font-size: .9375rem;
  color: var(--gray-500);
  line-height: 1.7;
  flex: 1;
}
.involved-card--primary p { color: rgba(255,255,255,.72); }

/* ── CTA Banner ──────────────────────────────────── */
.cta-banner {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--orange) 0%, #c73d1f 100%);
  position: relative;
  overflow: hidden;
}
.cta-banner__bg {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  pointer-events: none;
}

.cta-banner__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}

.cta-banner__text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.625rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: .75rem;
}
.cta-banner__text p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.82);
  max-width: 440px;
}

.cta-banner__actions { display: flex; gap: 1rem; flex-shrink: 0; flex-wrap: wrap; }

/* ── Footer ──────────────────────────────────────── */
.footer {
  background: var(--gray-900);
  color: var(--white);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.75fr;
  gap: 4rem;
  padding-top: 4.5rem;
  padding-bottom: 3.5rem;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer__logo span { color: var(--orange); }
.footer__logo em   { font-style: normal; font-size: .7em; opacity: .55; font-weight: 600; }

.footer__logo-img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  object-position: left center;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(255,255,255,.1);
}

.footer__brand p {
  font-size: .9375rem;
  color: rgba(255,255,255,.45);
  line-height: 1.7;
  max-width: 340px;
  margin-bottom: 1.5rem;
}

.footer__social { display: flex; gap: .625rem; }

.social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.55);
  transition: background var(--dur), color var(--dur), transform var(--dur);
}
.social-link:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

.footer__nav h4,
.footer__contact h4 {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.4);
  margin-bottom: 1.25rem;
}

.footer__nav ul { display: flex; flex-direction: column; gap: .625rem; }
.footer__nav a {
  font-size: .9375rem;
  color: rgba(255,255,255,.6);
  transition: color var(--dur);
}
.footer__nav a:hover { color: var(--white); }

.footer__contact address { display: flex; flex-direction: column; gap: .875rem; }

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}
.footer__contact-item svg {
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer__contact-item span,
.footer__contact-item a {
  font-size: .9375rem;
  color: rgba(255,255,255,.6);
  line-height: 1.55;
  transition: color var(--dur);
}
.footer__contact-item a:hover { color: var(--white); }

.footer__contact-item--intl span {
  font-size: .875rem !important;
  color: rgba(255,255,255,.35) !important;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 1.375rem 0;
}
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer__bottom p,
.footer__bottom-status {
  font-size: .8125rem;
  color: rgba(255,255,255,.3);
}

/* ── Scroll animations ───────────────────────────── */
.animate-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms var(--ease),
              transform 600ms var(--ease);
  transition-delay: var(--delay, 0ms);
}
.animate-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive: 1024px ──────────────────────────── */
@media (max-width: 1024px) {
  .mission__grid       { grid-template-columns: repeat(2, 1fr); }
  .hero__container     { grid-template-columns: 1fr; text-align: center; padding-top: calc(var(--nav-height) + 3rem); }
  .hero__body          { margin: 0 auto 2.5rem; }
  .hero__actions       { justify-content: center; }
  .hero__visual        { display: flex; margin-top: 2rem; }
  .hero__globe-wrap    { width: 320px; height: 320px; }
  .hero__logo-showcase { width: 280px; height: 280px; }
  .hero__logo-ring--outer { width: 316px; height: 316px; }
  .hero__logo-ring--mid   { width: 294px; height: 294px; }
  .hero__logo-ring--inner { width: 272px; height: 272px; }
  .impact-strip__inner { flex-wrap: wrap; gap: 1.5rem; padding: 1.5rem 0; }
  .impact-strip__divider { display: none; }
  .footer__grid        { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .footer__brand       { grid-column: span 2; }
}

/* ── Responsive: 768px ───────────────────────────── */
@media (max-width: 768px) {
  :root { --section-gap: 4rem; }

  .brand-statement__inner { flex-direction: column; text-align: center; gap: 1.5rem; }
  .brand-statement__tags  { justify-content: center; }
  .brand-statement__logo  { width: 120px; height: 120px; }

  .nav__menu, .nav__phone { display: none; }
  .nav__toggle { display: flex; }

  .nav__menu.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: var(--white);
    padding: 1rem 1.5rem 2rem;
    box-shadow: var(--shadow-xl);
    gap: .25rem;
    z-index: 999;
    max-height: calc(100vh - var(--nav-height));
    overflow-y: auto;
  }
  .nav__menu.open .nav__link {
    color: var(--gray-700);
    padding: .75rem 1rem;
  }
  .nav__menu.open .nav__link:hover {
    color: var(--navy);
    background: var(--gray-100);
  }

  .process__steps       { flex-direction: column; }
  .process__connector   { flex-direction: row; transform: rotate(90deg); }

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

  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item          { height: 200px; }
  .gallery-item--featured { grid-column: span 2; height: 260px; }

  .cta-banner__inner     { flex-direction: column; text-align: center; gap: 2rem; }
  .cta-banner__text p    { margin: 0 auto; }
  .cta-banner__actions   { justify-content: center; }

  .footer__grid          { grid-template-columns: 1fr; gap: 2rem; }
  .footer__brand         { grid-column: auto; }
  .footer__bottom-inner  { flex-direction: column; text-align: center; }

  .impact-quote__stats   { flex-direction: column; }
  .iq-stat__divider      { width: 60px; height: 1px; }
}

/* ── Responsive: 480px ───────────────────────────── */
@media (max-width: 480px) {
  .mission__grid  { grid-template-columns: 1fr; }
  .hero__actions  { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; }
  .impact-stat__num { font-size: 1.625rem; }
  .gallery__grid  { grid-template-columns: 1fr; }
  .gallery-item   { height: 200px; }
  .gallery-item--featured { height: 240px; }
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: var(--navy);
  color: #fff;
  padding: calc(var(--nav-height) + 4rem) 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,35,67,1) 0%, rgba(26,63,122,.85) 100%);
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--off-white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.page-hero__inner {
  position: relative;
  z-index: 1;
}

.page-hero .eyebrow {
  margin-bottom: 1rem;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: #fff;
}

.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  max-width: 620px;
  margin: 0 auto;
}

.page-breadcrumb {
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  margin-bottom: 1.25rem;
  letter-spacing: .02em;
}

.page-breadcrumb a {
  color: rgba(255,255,255,.6);
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}

.page-breadcrumb a:hover { color: var(--orange); }

.nav__link--active {
  color: var(--orange) !important;
}

/* ===== ABOUT PAGE ===== */
.about-intro { padding: var(--section-gap) 0; background: #fff; }
.about-intro__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-tagline { font-family: var(--font-display); font-size: clamp(1.25rem, 2.5vw, 1.75rem); font-weight: 700; color: var(--navy); line-height: 1.35; margin-bottom: 1.25rem; font-style: italic; }
.about-body  { font-size: 1.0625rem; color: var(--gray-500); line-height: 1.8; margin-bottom: 1rem; }
.ein-badge   { display: inline-flex; align-items: center; gap: .5rem; padding: .4rem 1rem; background: var(--blue-light); border: 1.5px solid #BFDBFE; border-radius: 20px; font-size: .8rem; font-weight: 600; color: var(--blue-mid); margin-top: .5rem; }

.programs-section { padding: var(--section-gap) 0; background: var(--off-white); }
.programs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 1.25rem; margin-top: 2.5rem; }
.program-card { background: #fff; border-radius: var(--radius-md); padding: 1.5rem 1.25rem; text-align: center; box-shadow: var(--shadow-card); border-top: 3px solid var(--orange); transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease); }
.program-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.program-card__icon { width: 48px; height: 48px; background: var(--orange-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin: 0 auto .875rem; color: var(--orange); }
.program-card h3 { font-size: .9375rem; font-weight: 700; color: var(--navy); margin-bottom: .375rem; }
.program-card p  { font-size: .8rem; color: var(--gray-500); line-height: 1.65; }

.reach-section { padding: var(--section-gap) 0; background: var(--navy); }
.reach-section .section-title { color: #fff; }
.reach-section .eyebrow       { color: rgba(255,255,255,.55); }
.reach-grid  { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.reach-card  { text-align: center; }
.reach-card__num   { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 800; color: var(--orange); line-height: 1; margin-bottom: .375rem; }
.reach-card__label { font-size: .875rem; color: rgba(255,255,255,.65); line-height: 1.4; }

.team-section { padding: var(--section-gap) 0; background: #fff; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.team-card { border: 1.5px solid var(--gray-200); border-radius: var(--radius-lg); padding: 1.75rem 1.5rem; transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease); }
.team-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.team-avatar { width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.125rem; font-weight: 800; font-family: var(--font-display); color: #fff; margin-bottom: 1rem; }
.team-card__name { font-size: 1.0625rem; font-weight: 700; color: var(--navy); margin-bottom: .2rem; }
.team-card__role { font-size: .75rem; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: .07em; margin-bottom: .875rem; }
.team-card__bio  { font-size: .875rem; color: var(--gray-500); line-height: 1.7; }

.partners-section { padding: var(--section-gap) 0; background: var(--off-white); }
.partners-list { display: flex; flex-wrap: wrap; gap: .875rem; margin-top: 2rem; justify-content: center; }
.partner-badge { padding: .625rem 1.25rem; background: #fff; border: 1.5px solid var(--gray-200); border-radius: 30px; font-size: .8125rem; font-weight: 600; color: var(--gray-700); box-shadow: var(--shadow-sm); }

/* ===== FAQ PAGE ===== */
.faq-section { padding: var(--section-gap) 0; background: var(--off-white); }
.faq-list { max-width: 800px; margin: 2.5rem auto 0; }
.faq-item { background: #fff; border-radius: var(--radius-md); margin-bottom: .75rem; box-shadow: var(--shadow-card); overflow: hidden; }
.faq-question { width: 100%; background: none; border: none; padding: 1.125rem 1.5rem; text-align: left; font-size: .9375rem; font-weight: 600; color: var(--navy); cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1rem; font-family: inherit; line-height: 1.4; transition: background .14s; }
.faq-question:hover { background: var(--gray-50); }
.faq-chevron { flex-shrink: 0; color: var(--orange); transition: transform .22s var(--ease); }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .32s var(--ease); }
.faq-answer-inner { padding: 0 1.5rem 1.375rem; }
.faq-answer-inner p { font-size: .9375rem; color: var(--gray-500); line-height: 1.8; }

@media (max-width: 860px) {
  .about-intro__inner { grid-template-columns: 1fr; gap: 2rem; }
}

/* ===== NAV DROPDOWN ===== */
.nav__item--has-dropdown { position: relative; }

.nav__link--dropdown {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
}

.nav__caret {
  flex-shrink: 0;
  transition: transform .18s var(--ease);
}

.nav__item--has-dropdown:hover .nav__caret,
.nav__item--has-dropdown:focus-within .nav__caret { transform: rotate(180deg); }

.nav__dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-200);
  min-width: 220px;
  padding: .375rem 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity .18s var(--ease), transform .18s var(--ease), visibility 0s .18s;
  z-index: 200;
}

.nav__item--has-dropdown:hover .nav__dropdown,
.nav__item--has-dropdown:focus-within .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  transition: opacity .18s var(--ease), transform .18s var(--ease);
}

.nav__dropdown li a {
  display: block;
  padding: .5rem 1.125rem;
  color: var(--gray-700);
  text-decoration: none;
  font-size: .8rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 260px;
  transition: background .12s, color .12s;
}

.nav__dropdown li a:hover { background: var(--orange-light); color: var(--orange); }

.nav__dropdown-empty {
  padding: .625rem 1.125rem;
  font-size: .8rem;
  color: var(--gray-400);
  font-style: italic;
}

@media (max-width: 900px) {
  .nav__caret     { display: none; }
  .nav__dropdown  { display: none; }
}

/* ===== EVENTS PAGE ===== */
.events-section { padding: var(--section-gap) 0; background: var(--off-white); min-height: 40vh; }

.event-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  margin-bottom: 2.5rem;
  transition: box-shadow var(--dur) var(--ease);
}
.event-card:last-child { margin-bottom: 0; }
.event-card:hover { box-shadow: var(--shadow-hover); }

.event-card__inner { padding: 2.5rem 2.5rem 0; }

.event-card__eyebrow { margin-bottom: .625rem; }

.event-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.event-card__desc {
  font-size: 1.0625rem;
  color: var(--gray-500);
  line-height: 1.75;
  max-width: 740px;
  margin-bottom: 2rem;
}

.event-gallery { margin: 0 -0px 0; }

.events-empty {
  text-align: center;
  padding: 5rem 2rem;
}
.events-empty h3 { font-size: 1.375rem; color: var(--gray-500); margin-bottom: .5rem; font-family: var(--font-display); }
.events-empty p  { color: var(--gray-400); font-size: .95rem; }

@media (max-width: 680px) {
  .event-card__inner { padding: 1.5rem 1.5rem 0; }
}

/* ===== VETERAN TAG ===== */
.vet-tag {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: #7F1D1D;
  background: #FEF2F2;
  border: 1px solid #FECACA;
  border-radius: 20px;
  padding: .25rem .6rem;
  white-space: nowrap;
}
.vet-tag svg { flex-shrink: 0; }

/* =====================================================
   MOBILE COMPATIBILITY
===================================================== */

/* ── Nav: collapse at 1024px (many items) ──────── */
@media (min-width: 769px) and (max-width: 1024px) {
  .nav__menu, .nav__phone { display: none; }
  .nav__toggle { display: flex; }

  .nav__menu.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: var(--white);
    padding: 1rem 1.5rem 2rem;
    box-shadow: var(--shadow-xl);
    gap: .25rem;
    z-index: 999;
    max-height: calc(100vh - var(--nav-height));
    overflow-y: auto;
  }
  .nav__menu.open .nav__link {
    color: var(--gray-700);
    padding: .75rem 1rem;
    white-space: normal;
  }
  .nav__menu.open .nav__link:hover {
    color: var(--navy);
    background: var(--gray-100);
  }
}

/* ── Events dropdown: show inline in open mobile menu ── */
.nav__menu.open .nav__item--has-dropdown .nav__dropdown {
  display: block !important;
  position: static;
  opacity: 1;
  visibility: visible;
  transform: none;
  box-shadow: none;
  border: none;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  min-width: 0;
  padding: .25rem 0;
}
.nav__menu.open .nav__item--has-dropdown .nav__dropdown li a {
  color: var(--gray-500);
  padding: .5rem 1.25rem;
  font-size: .8rem;
  border-left: 2px solid var(--gray-200);
  max-width: 100%;
  white-space: normal;
}
.nav__menu.open .nav__item--has-dropdown .nav__dropdown li a:hover {
  color: var(--orange);
  border-left-color: var(--orange);
  background: var(--orange-light);
}
.nav__menu.open .nav__caret { display: none; }

/* ── Minimum touch targets ──────────────────────── */
.btn       { min-height: 44px; }
.faq-question { min-height: 52px; }

/* ── Nav: hide donate button on mobile (hamburger replaces it) ── */
@media (max-width: 768px) {
  .nav__cta-group { display: none; }
}

/* ── Hero globe: shrink for small screens ───────── */
@media (max-width: 480px) {
  .hero__globe-wrap       { width: 270px; height: 270px; }
  .hero__logo-showcase    { width: 216px; height: 216px; }
  .hero__logo-ring--outer { width: 266px; height: 266px; }
  .hero__logo-ring--mid   { width: 244px; height: 244px; }
  .hero__logo-ring--inner { width: 222px; height: 222px; }
  .hero__logo-badge       { font-size: .65rem; padding: .3rem .625rem; bottom: 6px; right: 8px; }
}
@media (max-width: 360px) {
  .hero__globe-wrap       { width: 230px; height: 230px; }
  .hero__logo-showcase    { width: 182px; height: 182px; }
  .hero__logo-ring--outer { width: 226px; height: 226px; }
  .hero__logo-ring--mid   { width: 204px; height: 204px; }
  .hero__logo-ring--inner { width: 182px; height: 182px; }
}

/* ── Page hero on mobile ────────────────────────── */
@media (max-width: 768px) {
  .page-hero { padding: calc(var(--nav-height) + 2rem) 0 3rem; }
  .page-hero h1 { font-size: clamp(1.75rem, 7vw, 3rem); }
  .page-hero p  { font-size: 1rem; }
}

/* ── About page mobile ──────────────────────────── */
@media (max-width: 600px) {
  .programs-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .reach-grid    { grid-template-columns: 1fr 1fr; }
  .team-grid     { grid-template-columns: 1fr; }
  .partners-list { gap: .625rem; }
  .partner-badge { font-size: .775rem; padding: .5rem .875rem; }
  .ein-badge     { font-size: .75rem; }
}

@media (max-width: 400px) {
  .programs-grid { grid-template-columns: 1fr; }
}

/* ── FAQ mobile ─────────────────────────────────── */
@media (max-width: 600px) {
  .faq-question       { padding: 1rem 1.125rem; font-size: .875rem; }
  .faq-answer-inner   { padding: 0 1.125rem 1rem; }
  .faq-answer-inner p { font-size: .875rem; }
}

/* ── CTA banner: stack buttons on small screens ── */
@media (max-width: 500px) {
  .cta-banner__actions          { flex-direction: column; align-items: stretch; }
  .cta-banner__actions .btn     { text-align: center; justify-content: center; }
  .hero__actions                { flex-direction: column; align-items: stretch; }
  .hero__actions .btn           { justify-content: center; }
}

/* ── Impact strip mobile ────────────────────────── */
@media (max-width: 480px) {
  .impact-stat          { min-width: 120px; }
  .impact-stat__num     { font-size: 1.75rem; }
}

/* ── Section typography mobile ──────────────────── */
@media (max-width: 480px) {
  .section-desc { font-size: .9rem; }
}

/* ── Process steps mobile ───────────────────────── */
@media (max-width: 480px) {
  .process-step { padding: 1.5rem 1.25rem; }
  .process-step__number { font-size: 2.5rem; }
}

/* ── Events page mobile ─────────────────────────── */
@media (max-width: 480px) {
  .event-card__inner { padding: 1.25rem 1.25rem 0; }
  .event-card__title { font-size: 1.375rem; }
}

/* ── Reach section mobile ───────────────────────── */
@media (max-width: 480px) {
  .reach-card__num { font-size: 2rem; }
}

/* ── Team card mobile ───────────────────────────── */
@media (max-width: 480px) {
  .team-card { padding: 1.375rem 1.25rem; }
}

/* ── Container: tighter padding on tiny screens ── */
@media (max-width: 380px) {
  .container { padding: 0 14px; }
}

/* ── Login page mobile ──────────────────────────── */
@media (max-width: 480px) {
  .login-card { padding: 2rem 1.375rem 1.75rem; }
}

/* ── Admin: sidebar always scrollable on mobile ── */
@media (max-width: 700px) {
  .sidebar { height: auto; max-height: 50vh; }
  .shell   { grid-template-columns: 1fr; }
  .sb-nav  { display: flex; flex-wrap: wrap; padding: .5rem; }
  .sidebar-link { flex: 1 1 auto; min-width: 120px; padding: .5rem .75rem; }
  .sb-group-label { width: 100%; }
}

/* ── Prevent horizontal overflow ────────────────── */
*, *::before, *::after { max-width: 100%; }
img, video, canvas, svg { max-width: 100%; height: auto; }

/* ── Smooth rendering on iOS ────────────────────── */
html { -webkit-text-size-adjust: 100%; }
body { overflow-x: hidden; }
