/* =====================================================
   NEURO SCIENCES FOUNDATION — HOMEPAGE
   Pure HTML + CSS3. Mobile-first responsive.
   ===================================================== */

/* ---------- Tokens ---------- */
:root {
  --c-teal:        #14B8A6;
  --c-teal-dark:   #0D9488;
  --c-teal-soft:   rgba(20, 184, 166, 0.14);
  --c-navy:        #1F2B6C;
  --c-navy-dark:   #1A2354;
  --c-orange:      #F4A261;
  --c-orange-2:    #F4985E;
  --c-orange-soft: #F9B27A;
  --c-orange-bg:   #FFCDA0;
  --c-dark:        #000000;
  --c-dark-2:      #171717;
  --c-text:        #000000;
  --c-muted:       #333333;
  --c-muted-2:     #6B7280;
  --c-line:        #E6E7EA;
  --c-bg:          #F4F4F4;
  --c-bg-2:        #ECECEC;
  --c-card:        #FFFFFF;

  --fs-xs:   0.75rem;
  --fs-sm:   0.875rem;
  --fs-base: 1rem;
  --fs-md:   1.125rem;
  --fs-lg:   1.375rem;
  --fs-xl:   1.75rem;
  --fs-2xl:  2.25rem;
  --fs-3xl:  3rem;
  --fs-4xl:  3.75rem;

  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.25rem;
  --sp-6: 1.5rem;
  --sp-7: 2rem;
  --sp-8: 2.5rem;
  --sp-9: 3rem;
  --sp-10: 4rem;
  --sp-11: 5rem;
  --sp-12: 6rem;

  --container: 1240px;
  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --radius-pill: 999px;

  --shadow-sm: 0 4px 14px rgba(20,20,40,.06);
  --shadow:    0 10px 30px rgba(20,20,40,.08);
  --shadow-lg: 0 20px 60px rgba(20,20,40,.14);

  --t: 0.25s ease;
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

/* ---------- Smooth scroll layer ----------
   .scroll-content wraps the page so its translateY can be lerped each frame.
   On touch devices and when reduced-motion is set, fall back to natural flow. */
.scroll-content {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  will-change: transform;
}
@media (pointer: coarse), (prefers-reduced-motion: reduce) {
  .scroll-content {
    position: static !important;
    transform: none !important;
  }
}

/* ---------- Cursor ring ----------
   Fixed-position outlined circle that lerps toward the mouse position
   each frame, producing a soft trailing-cursor effect. Hidden on touch
   and when reduced-motion is set. */
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  margin: -18px 0 0 -18px;
  border: 1.5px solid var(--c-teal);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.25s ease, width 0.2s ease, height 0.2s ease, margin 0.2s ease, border-color 0.2s ease;
  will-change: transform;
}
.cursor-ring.is-visible { opacity: 1; }
.cursor-ring.is-hover {
  width: 56px;
  height: 56px;
  margin: -28px 0 0 -28px;
  border-color: var(--c-orange);
}
@media (pointer: coarse), (prefers-reduced-motion: reduce) {
  .cursor-ring { display: none; }
}

/* ---------- Scroll Reveal: Framer-style ---------- */

/* Section-level reveal: blur + rise + subtle scale */
.fade-section {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  filter: blur(16px);
  transition:
    opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1s cubic-bezier(0.22, 1, 0.36, 1),
    filter 1s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform, filter;
}
.fade-section.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* Staggered children inside revealed sections — each element/component
   blurs + lowers + fades in turn so the whole section's content arrives
   in a soft, layered way rather than as a single block. */
.fade-section .fade-child {
  opacity: 0;
  transform: translateY(20px);
  filter: blur(10px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--stagger-delay, 0s);
  will-change: opacity, transform, filter;
}
.fade-section.in-view .fade-child {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Lighter blur + smaller travel on small screens to keep it cheap */
@media (max-width: 720px) {
  .fade-section {
    filter: blur(6px);
    transform: translateY(28px) scale(0.99);
  }
  .fade-section .fade-child {
    transform: translateY(14px);
    filter: blur(5px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .fade-section,
  .fade-section.in-view,
  .fade-section .fade-child,
  .fade-section.in-view .fade-child {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}
body {
  margin: 0;
  font-family: 'Source Sans 3', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-weight: 400;
  font-size: var(--fs-base);
  line-height: 1.55;
  letter-spacing: 0;
  color: var(--c-text);
  background: #F3F4F6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; height: auto; }
svg { display: inline-block; }
ul { list-style: none; padding: 0; margin: 0; }
a { color: inherit; text-decoration: none; transition: color var(--t); }
button { font: inherit; cursor: pointer; border: 0; background: none; }
h1, h2, h3, h4, h5, h6,
.section__title,
.hero__title,
.training__text,
.mission__text,
.info-card__title,
.tier-card__amount strong,
.story-card__big {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.04em;
}
p { margin: 0; }
input, textarea, select { font: inherit; color: inherit; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--sp-7);
}
.section { padding: var(--sp-12) 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: .02em;
  color: var(--c-muted);
  margin-bottom: var(--sp-3);
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 2px;
  height: 14px;
  background: var(--c-orange);
  border-radius: 1px;
  flex-shrink: 0;
}
.eyebrow--center { display: flex; justify-content: center; }
.eyebrow--light { color: rgba(255,255,255,.75); }
.eyebrow--dark  { color: rgba(0,0,0,.65); }

.section__title {
  font-size: 40px;
  margin-bottom: var(--sp-4);
}
.section__title--center { text-align: center; }
.section__title--light  { color: #fff; }

.section__lead {
  font-size: 1.25rem;
  color: var(--c-muted);
  max-width: 760px;
  line-height: 1.6;
}
.section__lead--center { margin: 0 auto var(--sp-9); text-align: center; }
.section__lead--light  { color: rgba(255,255,255,.8); }

/* ---------- Buttons ---------- */
/* Fixed 55px height. Asymmetric padding (20px left, larger right to clear
   the icon) keeps text centered in the space between the button's left
   edge and the arrow icon's left edge. */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 55px;
  padding: 0 56px 0 20px;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.04em;
  border-radius: 10px;
  background: var(--c-dark);
  color: #000;
  transition: transform var(--t), background var(--t), color var(--t), box-shadow var(--t);
  white-space: nowrap;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn--lg    { padding: 0 60px 0 20px; font-size: 18px; }
.btn--block { width: 100%; }

/* Arrow icon: glued to the right edge of the button.
   Text stays centered because the button has symmetric padding. */
.btn__icon {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  padding: 9px;
  border-radius: 8px;
  background: var(--c-dark);
  color: #fff;
  box-sizing: content-box;
  overflow: hidden;
}
.btn--lg .btn__icon { padding: 9px; }

/* Hover arrow loop: slides right, exits the icon's right edge, re-enters
   from the left edge, and lands back at center. Applies to every button
   with a .btn__icon arrow site-wide. Targets the SVG <use> via
   transform-box: fill-box so percentage translations are relative to the
   arrow's own bbox.                                                    */
.btn__icon use {
  transform-box: fill-box;
  transform-origin: center;
}
.btn:hover .btn__icon use,
.clinic-card__btn:hover .btn__icon use {
  animation: btn-arrow-loop 0.35s ease;
}
@keyframes btn-arrow-loop {
  0%   { transform: translateX(0); }
  49%  { transform: translateX(220%); }
  50%  { transform: translateX(-220%); }
  100% { transform: translateX(0); }
}
@media (prefers-reduced-motion: reduce) {
  .btn:hover .btn__icon use,
  .clinic-card__btn:hover .btn__icon use { animation: none; }
}

/* Per-variant arrow square colors */
.btn--dark .btn__icon          { background: #fff; color: var(--c-dark); }
.btn--white-pill .btn__icon    { background: var(--c-dark); color: #fff; }
.btn--outline-light .btn__icon { background: rgba(255,255,255,.18); color: #fff; }
.btn--outline-dark .btn__icon  { background: var(--c-dark); color: #fff; }
.btn--pill-dark .btn__icon     { background: #fff; color: #111; padding: 5px; border-radius: 6px; }

.btn--teal       { background: var(--c-teal); color: #000; }
.btn--teal:hover { background: var(--c-teal-dark); color: #000; }

.btn--donate       { background: var(--c-orange); color: #000; height: 50px; }
.btn--donate:hover { background: #ea8e4a; color: #000; }

.btn--dark       { background: var(--c-dark); color: #fff; }
.btn--dark:hover { background: #000; }

.btn--white-pill       { background: #fff; color: var(--c-dark); }
.btn--white-pill:hover { background: var(--c-bg); }

.btn--outline-light       { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.4); }
.btn--outline-light:hover { background: rgba(255,255,255,.08); }

.btn--outline-dark       { background: transparent; color: var(--c-dark); border: 1px solid rgba(0,0,0,.25); }
.btn--outline-dark:hover { background: rgba(0,0,0,.05); }

.btn--pill-dark { background: #111; color: #fff; padding: 10px 16px; font-size: var(--fs-sm); }

/* =====================================================
   HEADER (floating inside hero card)
   ===================================================== */
.site-header {
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1080px, calc(100% - 80px));
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 13px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.site-header .container {
  max-width: 100%;
  padding: 0 10px 0 var(--sp-5);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
  height: 70px;
  position: relative;
}

.logo { display: inline-flex; align-items: center; gap: 10px; }
.logo__img  { height: 38px; width: auto; display: block; }
.logo__mark { width: 34px; height: 34px; flex-shrink: 0; }
.logo__mark--lg { width: 48px; height: 48px; }
.logo__text {
  display: flex;
  flex-direction: column;
  font-size: 12px;
  line-height: 1.15;
  color: var(--c-text);
}
.logo__text strong { font-weight: 700; font-size: 13px; }
.logo__text span   { color: var(--c-muted); font-weight: 500; }

.main-nav ul {
  display: flex;
  align-items: center;
  gap: var(--sp-7);
}
.main-nav__cta { display: none; } /* mobile only */
.main-nav a {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--c-text);
  position: relative;
  padding: 6px 0;
}
.main-nav a:hover { color: var(--c-teal-dark); }
.main-nav a.is-active::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -2px;
  transform: translateX(-50%);
  width: 18px;
  height: 2px;
  background: var(--c-teal);
  border-radius: 2px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
}

/* =====================================================
   HERO (rounded card with floating header)
   ===================================================== */
.hero {
  position: relative;
  isolation: isolate;
  margin: 20px 20px 0;
  border-radius: 20px;
  overflow: hidden;
  padding: 130px 0 80px;
  color: #fff;
  text-align: center;
  background-color: #000;
  background-image:
    linear-gradient(180deg,
      rgba(0,0,0,1)    0%,
      rgba(0,0,0,0.85) 8%,
      rgba(0,0,0,0.45) 22%,
      rgba(0,0,0,0.15) 40%,
      rgba(0,0,0,0.30) 75%,
      rgba(0,0,0,0.75) 100%),
    url("Assets Home page/Hero Section Image 2.jpg");
  background-size: cover, cover;
  background-position: center, center top;
  background-repeat: no-repeat, no-repeat;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-5);
  padding-top: 30px;
  padding-bottom: 30px;
}
.hero__title {
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.18;
  max-width: 800px;
}
.hero__lead {
  max-width: 720px;
  font-size: 1.25rem;
  color: rgba(255,255,255,.85);
  line-height: 1.55;
}
.hero__sub {
  font-size: 24px;
  color: var(--c-orange);
}
.hero__actions .btn { font-size: 16px; }

.hero__pledge {
  font-size: 14px;
  color: #fff;
  max-width: 620px;
}

@keyframes hero-fade-in {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__title,
.hero__lead,
.hero__sub,
.hero__actions,
.hero__pledge,
.hero__stats {
  opacity: 0;
  animation: hero-fade-in 0.8s ease-out forwards;
}
.hero__title    { animation-delay: 0.1s; }
.hero__lead     { animation-delay: 0.35s; }
.hero__sub      { animation-delay: 0.55s; }
.hero__actions  { animation-delay: 0.75s; }
.hero__pledge   { animation-delay: 0.95s; }
.hero__stats    { animation-delay: 1.15s; }

@media (prefers-reduced-motion: reduce) {
  .hero__title,
  .hero__lead,
  .hero__sub,
  .hero__actions,
  .hero__pledge,
  .hero__stats {
    opacity: 1;
    animation: none;
  }
}

/* ---- About / Donate / Contact heros: same hero-fade-in cascade ---- */
.hero-about__title,
.hero-about__lead,
.hero-about__sub,
.hero-about__stats,
.hero-donate__title,
.hero-donate__lead,
.hero-donate__sub,
.hero-contact__mark,
.hero-contact__title,
.hero-contact__lead,
.hero-contact__sub,
.hero-contact__gallery {
  opacity: 0;
  animation: hero-fade-in 0.8s ease-out forwards;
}
.hero-about__title  { animation-delay: 0.10s; }
.hero-about__lead   { animation-delay: 0.35s; }
.hero-about__sub    { animation-delay: 0.60s; }
.hero-about__stats  { animation-delay: 0.85s; }

.hero-donate__title { animation-delay: 0.10s; }
.hero-donate__lead  { animation-delay: 0.35s; }
.hero-donate__sub   { animation-delay: 0.60s; }

.hero-contact__mark    { animation-delay: 0.10s; }
.hero-contact__title   { animation-delay: 0.30s; }
.hero-contact__lead    { animation-delay: 0.50s; }
.hero-contact__sub     { animation-delay: 0.70s; }
.hero-contact__gallery { animation-delay: 0.90s; }

@media (prefers-reduced-motion: reduce) {
  .hero-about__title,
  .hero-about__lead,
  .hero-about__sub,
  .hero-about__stats,
  .hero-donate__title,
  .hero-donate__lead,
  .hero-donate__sub,
  .hero-contact__mark,
  .hero-contact__title,
  .hero-contact__lead,
  .hero-contact__sub,
  .hero-contact__gallery {
    opacity: 1;
    animation: none;
  }
}

.hero__stats {
  display: flex;
  align-items: stretch;
  gap: 0;
  width: 100%;
  max-width: 720px;
}
.hero__stats li {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
  padding: 0 var(--sp-5);
}
.hero__stats li + li { border-left: 1px solid rgba(255,255,255,.12); }

.stat__num {
  font-size: 32px;
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.01em;
}
.stat__label {
  font-size: 13px;
  color: rgba(255,255,255,.7);
  letter-spacing: .03em;
}

/* =====================================================
   FOUNDER
   ===================================================== */
.founder {
  background: #fff;
  margin: 20px;
  border-radius: 20px;
}

.partner-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--sp-9);
  margin: 0 auto var(--sp-10);
  color: var(--c-muted);
  font-size: 16px;
  font-weight: 600;
  max-width: 900px;
}
.partner-logos li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: .85;
  transition: opacity var(--t);
}
.partner-logos li:hover { opacity: 1; }
.partner__logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: inline-block;
}

.founder__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--sp-7);
}

.founder__photo {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: var(--shadow);
}
.founder__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.founder__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 35%,
    rgba(0,0,0,0.35) 60%,
    rgba(0,0,0,0.75) 85%,
    rgba(0,0,0,0.92) 100%
  );
}
.founder__photo figcaption {
  position: absolute;
  left: var(--sp-6);
  bottom: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #fff;
  z-index: 2;
}
.founder__name {
  color: #FFF;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: 34px;
  letter-spacing: -1.8px;
}
.founder__role {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #FFF;
  font-family: 'Source Sans 3', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}
.founder__role::before {
  content: '';
  display: inline-block;
  width: 2px;
  height: 14px;
  background: var(--c-orange);
  border-radius: 1px;
  flex-shrink: 0;
}

.founder__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: var(--sp-5);
}

.info-card {
  background: var(--c-bg);
  border-radius: var(--radius-lg);
  padding: var(--sp-7);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.info-card__title { font-size: var(--fs-lg); }
.info-card p { font-size: 20px; color: var(--c-muted); line-height: 1.55; }
.info-card:not(.info-card--feature) p { margin-top: auto; }

.info-card--feature {
  grid-column: 1 / -1;
  background: #1E3A8A;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.info-card--feature .info-card__title { color: #fff; font-size: 26px; }
.info-card--feature p { color: rgba(255,255,255,.78); font-weight: 400; }
.info-card--feature .btn { align-self: flex-start; margin-top: auto; }

/* =====================================================
   MISSION
   ===================================================== */
.mission {
  background: var(--c-bg);
  text-align: center;
  padding: var(--sp-12) 0 150px;
}
.mission__text {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 60px;
  font-weight: 400;
  line-height: 72px;
  letter-spacing: -4px;
  max-width: 1016px;
  margin: 0 auto;
}
.mission__part--dark { color: #000; }
.mission__part--gray { color: #333333; }

/* Per-word reveal: each word starts blurred + dropped + invisible. */
.mission__word {
  display: inline-block;
  opacity: 0;
  filter: blur(8px);
  transform: translateY(8px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--word-delay, 0s);
  will-change: opacity, transform, filter;
}
.mission.in-view .mission__word {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

/* Mission keeps the section-level fade + adds the per-word reveal on top. */
.mission .fade-child {
  opacity: 1;
  transform: none;
  filter: none;
}

@media (prefers-reduced-motion: reduce) {
  .mission__word {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }
}

/* Typewriter cycle on the "depression" word */
.mission__cycle {
  display: inline-block;
  white-space: nowrap;
}
.mission__cycle-text {
  display: inline-block;
}
.mission__cycle-cursor {
  display: inline-block;
  width: 3px;
  height: 0.78em;
  margin-left: 4px;
  background: currentColor;
  vertical-align: -0.04em;
  animation: mission-cycle-blink 0.85s steps(2) infinite;
}
@keyframes mission-cycle-blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

/* =====================================================
   SOLUTIONS
   ===================================================== */
.solutions { background: var(--c-bg); padding-top: 0; }
.solutions__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
}
.solution-card {
  background: #fff;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t);
}
.solution-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.solution-card__body {
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.solution-card__icon {
  width: 45px;
  height: 45px;
  display: block;
  flex-shrink: 0;
}
.solution-card h3 {
  color: #000;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: -1.8px;
}
.solution-card p {
  color: #3C3C3C;
  font-family: 'Source Sans 3', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}
.solution-card__img {
  margin-top: auto;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 20px 20px 0 0;
  object-fit: cover;
  display: block;
}

/* =====================================================
   IMPACT
   ===================================================== */
.impact-stories {
  background: #fff;
  margin: 20px;
  border-radius: 20px;
  overflow: hidden;
}
.impact-stories .impact   { padding-bottom: 46px; }
.impact-stories .stories  { padding-top: 46px; }
.impact { background: transparent; }
.impact__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--sp-9);
  align-items: stretch;
  padding: var(--sp-7);
}
.impact__media { display: flex; }
.impact__media img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
}
.impact__content { display: flex; flex-direction: column; gap: var(--sp-3); }
.impact__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
  margin-top: var(--sp-5);
}
.impact__stats li {
  background: #F3F4F6;
  border-radius: var(--radius);
  padding: var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.impact__stats .stat__num   {
  color: var(--c-text);
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.04em;
}
.impact__stats .stat__label { color: var(--c-muted); font-size: 16px; }

/* =====================================================
   STORIES
   ===================================================== */
.stories { background: transparent; }
.stories__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 0.75fr;
  gap: var(--sp-5);
  align-items: stretch;
}
.story-card {
  background: #F3F4F6;
  border-radius: 20px;
  padding: 13px;
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  transition: transform var(--t);
}
.story-card:hover { transform: translateY(-3px); }

/* Before / after image pair with teal arrow between */
.story-card__images {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.story-card__before,
.story-card__after {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 5;
  border-radius: 12px;
  overflow: hidden;
}
.story-card__before img,
.story-card__after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.story-card__before figcaption,
.story-card__after figcaption {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: #000;
  color: #fff;
  padding: 5px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  font-family: 'Source Sans 3', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}
.story-card__arrow {
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--c-teal);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.story-card__arrow svg { width: 16px; height: 16px; }

.story-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 6px;
}
.story-card h3 { font-size: 22px; font-weight: 500; letter-spacing: -0.04em; }
.story-card__loc {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: var(--c-muted);
}
.story-card__pin {
  width: 16px;
  height: 16px;
  color: var(--c-orange);
  flex-shrink: 0;
}
.story-card__tag {
  align-self: stretch;
  background: #fff;
  color: var(--c-text);
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 400;
}
.story-card__excerpt {
  font-size: 16px;
  color: var(--c-muted);
  line-height: 1.55;
}

.story-card--cta {
  background: var(--c-teal);
  color: #000;
  justify-content: space-between;
  padding: var(--sp-7);
}
.story-card__big {
  display: block;
  font-size: 56px;
  line-height: 1;
  color: #000;
  font-weight: 500;
  letter-spacing: -0.04em;
}
.story-card__cta-text-block {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.story-card__cta-text {
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: #000;
  line-height: 1.2;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}
.story-card__cta-sub {
  color: rgba(0,0,0,.7);
  font-size: 16px;
  line-height: 1.5;
}
.story-card--cta .btn {
  align-self: stretch;
  margin-top: var(--sp-3);
}

/* =====================================================
   SERVICES (Navy)
   ===================================================== */
.services-donate-zone {
  background: #1E3A8A;
  margin: 20px 20px 0;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}
.services {
  background: transparent;
  margin: 0;
  border-radius: 0;
  padding: var(--sp-12) 0 var(--sp-7);
  position: relative;
  overflow: hidden;
}
.services .container { position: relative; z-index: 2; }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: var(--sp-5);
  margin-top: var(--sp-9);
}
.service-card {
  background: #fff;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card__body {
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.service-card__icon {
  width: 44px;
  height: 44px;
  display: block;
  flex-shrink: 0;
}
.service-card h3 {
  color: #000;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: -1.8px;
}
.service-card p {
  color: #3C3C3C;
  font-family: 'Source Sans 3', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}
.service-card__img {
  margin: auto 13px 13px 13px;
  width: calc(100% - 26px);
  aspect-ratio: 16 / 7;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

/* =====================================================
   DONATE TIERS
   Extended blue zone behind the intro continues from .services.
   The orange tiers card is positioned to straddle the
   blue/page-background boundary with negative top margin.
   ===================================================== */
.donate-section {
  background: transparent;
  padding: 0;
  position: relative;
}
.donate-section__intro {
  background: transparent;
  margin: 0;
  border-radius: 0;
  padding: var(--sp-7) 0 var(--sp-12);
  text-align: center;
}
.donate-tiers-wrap {
  position: relative;
  z-index: 2;
  margin-top: -110px;
  margin-bottom: var(--sp-7);
}

/* Skip the fade-on-scroll for the orange tiers card so it stays fully
   visible as the user reaches it (no opacity / blur animation). */
.donate-section.fade-section {
  opacity: 1;
  transform: none;
  filter: none;
}
.donate-section .fade-child {
  opacity: 1;
  transform: none;
  filter: none;
}
.donate-tiers {
  background: var(--c-orange);
  border-radius: 20px;
  padding: 50px 36px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.tier-card {
  background: transparent;
  padding: 0 var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  align-items: center;
  text-align: center;
  border-left: 1px solid rgba(0,0,0,.18);
}
.tier-card__btn { align-self: stretch; }
.tier-card:first-child { border-left: 0; }
.tier-card__amount {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: rgba(0,0,0,.75);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.tier-card__amount strong {
  display: inline;
  color: #000;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.03em;
  margin-left: 4px;
}
.tier-card__amount--custom strong { font-size: 32px; margin-left: 0; }
.tier-card p {
  font-size: 14px;
  color: rgba(0,0,0,.75);
  line-height: 1.5;
  flex: 1;
}
.tier-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 55px;
  background: #fff;
  color: #000;
  padding: 0 20px;
  border-radius: 10px;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: background var(--t);
}
.tier-card__btn:hover { background: #f3f3f3; }

/* =====================================================
   LOCATIONS
   ===================================================== */
.locations { background: transparent; padding: var(--sp-9) 0; }
.locations__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
  margin-top: var(--sp-7);
}
.location-card {
  background: #fff;
  color: var(--c-text);
  border-radius: 20px;
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.location-card__icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--c-teal);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.location-card__icon svg { width: 22px; height: 22px; }
.location-card h3 {
  color: #000;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -1.8px;
}
.location-card p {
  color: var(--c-muted);
  font-size: 16px;
  line-height: 1.5;
}

/* =====================================================
   HELP CTA (Image background)
   ===================================================== */
.help-cta {
  position: relative;
  margin: 20px;
  border-radius: 20px;
  overflow: hidden;
  color: #fff;
  padding: var(--sp-12) 0;
  background-image:
    linear-gradient(90deg,
      rgba(0,0,0,0.85) 0%,
      rgba(0,0,0,0.55) 45%,
      rgba(0,0,0,0.25) 100%),
    url("Assets%20Home%20page/Get%20Help%20Section%20Image.png");
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
}
.help-cta__inner {
  display: block;
}
.help-cta__content {
  max-width: 560px;
}
.help-cta__hope {
  color: var(--c-orange);
  font-weight: 500;
  margin: var(--sp-3) 0;
  font-size: 18px;
}
.help-cta__lead {
  color: rgba(255,255,255,.85);
  line-height: 1.65;
  font-size: 15px;
  max-width: 480px;
}
.help-cta__actions {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-top: var(--sp-6);
  align-items: flex-start;
}
.help-cta__actions .btn { min-width: 280px; }

/* =====================================================
   TRAINING + VOLUNTEER (shared white card wrapper)
   ===================================================== */
.training-volunteer {
  background: #fff;
  margin: 20px;
  border-radius: 20px;
  overflow: hidden;
}

/* =====================================================
   TRAINING / AWARENESS
   ===================================================== */
.training {
  background: transparent;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-bottom: 50px;
}
.volunteer { padding-top: 50px; }
.training .container { position: relative; }
.training__text {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 60px;
  font-weight: 400;
  line-height: 72px;
  letter-spacing: -4px;
  max-width: 1016px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.training__part--dark { color: #000; }
.training__part--gray { color: #333333; }

/* Per-word reveal: each word starts blurred + dropped + invisible. */
.training__word {
  display: inline-block;
  opacity: 0;
  filter: blur(8px);
  transform: translateY(8px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--word-delay, 0s);
  will-change: opacity, transform, filter;
}
.training.in-view .training__word {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

/* Training keeps the section-level fade + adds the per-word reveal on top. */
.training .fade-child {
  opacity: 1;
  transform: none;
  filter: none;
}

/* Force a word onto its own line (used for "health.") */
.training__word--block { display: block; }

/* Floating images: positioned around the text, slide in from
   different sides on scroll. */
.training__float {
  position: absolute;
  width: 120px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.12);
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Resting positions (final state when section is in view) */
.training.in-view .training__float--1 {
  opacity: 1;
  transform: rotate(-7deg);
}
.training.in-view .training__float--2 {
  opacity: 1;
  transform: rotate(6deg);
}
/* Initial off-screen-ish positions (slide in from each side) */
.training__float--1 {
  top: 20px;
  left: 4%;
  transform: translateX(-80px) rotate(-7deg);
}
.training__float--2 {
  top: 50px;
  right: 4%;
  transform: translateX(80px) rotate(6deg);
}

@media (prefers-reduced-motion: reduce) {
  .training__word { opacity: 1; filter: none; transform: none; transition: none; }
  .training__float,
  .training.in-view .training__float--1,
  .training.in-view .training__float--2 { opacity: 1; transition: none; }
}

@media (max-width: 1023px) {
  .training__text { font-size: 44px; line-height: 54px; letter-spacing: -2px; }
  .training__float { width: 95px; }
}
@media (max-width: 767px) {
  .training__text { font-size: 30px; line-height: 38px; letter-spacing: -1px; }
  .training__float { width: 75px; }
  .training__float--1 { left: 0; top: 0; }
  .training__float--2 { right: 0; top: 30px; }
}

/* =====================================================
   VOLUNTEER / JOIN US
   ===================================================== */
.volunteer { background: transparent; }
.volunteer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-9);
  align-items: stretch;
}
.volunteer__media {
  display: flex;
  flex-direction: column;
}
.volunteer__slides {
  position: relative;
  margin-top: auto;
  width: 100%;
  aspect-ratio: 16 / 7;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
}
.volunteer__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.7s ease;
}
.volunteer__slide.is-active { opacity: 1; }

.volunteer__progress {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  display: flex;
  gap: 10px;
  z-index: 2;
}
.volunteer__progress-bar {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.45);
  border-radius: 2px;
  transition: background 0.5s ease;
}
.volunteer__progress-bar.is-active { background: var(--c-teal); }

.volunteer__list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  align-self: stretch;
  height: 100%;
}
.volunteer__item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--sp-5);
  align-items: center;
  background: #F3F4F6;
  border-radius: 12px;
  padding: 14px 14px 14px var(--sp-6);
  transition: background var(--t), color var(--t);
  flex: 1;
}
.volunteer__item:hover,
.volunteer__item.is-active { background: var(--c-teal); }
.volunteer__num {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 16px;
  color: var(--c-text);
  font-weight: 500;
  letter-spacing: -0.02em;
}
.volunteer__role {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--c-text);
  letter-spacing: -0.02em;
}
.volunteer__item.is-active .volunteer__num,
.volunteer__item.is-active .volunteer__role { color: #000; }

/* =====================================================
   CONTACT
   ===================================================== */
.contact {
  background: transparent;
  padding-bottom: 0;
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--sp-7);
  align-items: stretch;
}

/* Left: white card containing intro + details */
.contact__intro {
  background: #fff;
  border-radius: 20px;
  padding: var(--sp-7);
}
.contact__intro .section__title { margin-bottom: var(--sp-3); }
.contact__intro .section__lead {
  margin-bottom: var(--sp-6);
  padding-bottom: var(--sp-6);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}
.contact__details li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--sp-4);
  align-items: flex-start;
  padding: 0;
  background: transparent;
}
.contact__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #1E3A8A;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact__icon svg { width: 22px; height: 22px; }
.contact__details strong {
  display: block;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #000;
}
.contact__details p {
  font-size: 14px;
  color: var(--c-muted);
  line-height: 1.55;
}
.contact__details p strong {
  display: inline;
  font-size: inherit;
  font-weight: 600;
  color: #000;
  margin-bottom: 0;
}

/* Right: form */
.contact__form {
  background: #fff;
  border-radius: 20px;
  padding: var(--sp-7);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}
.contact__form label { display: flex; flex-direction: column; gap: 8px; }
.contact__form span {
  font-size: 14px;
  font-weight: 500;
  color: #000;
  letter-spacing: 0;
}
.contact__form input,
.contact__form textarea {
  background: var(--c-bg);
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 14px;
  outline: none;
  transition: border-color var(--t), background var(--t);
  resize: vertical;
}
.contact__form input:focus,
.contact__form textarea:focus { background: #fff; border-color: var(--c-teal); }
.contact__form button { align-self: flex-start; margin-top: var(--sp-2); }

/* =====================================================
   END CTA (Orange)
   ===================================================== */
.end-cta {
  background: transparent;
  margin: var(--sp-7) 0 20px;
  padding: 0;
  position: relative;
}
.end-cta__inner {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  z-index: 1;
  /* Orange visual lives on the inner container so its width matches
     the contact cards (= container max-width minus container padding). */
  background: var(--c-orange);
  border-radius: 20px;
  padding: var(--sp-8) var(--sp-7);
  max-width: calc(var(--container) - 2 * var(--sp-7));
}
.end-cta .section__title {
  color: #000;
  font-size: clamp(26px, 2.8vw, 36px);
  margin-bottom: var(--sp-2);
}
.end-cta .section__lead {
  color: rgba(0,0,0,.78);
  margin-bottom: var(--sp-3);
  max-width: 520px;
  font-size: 16px;
}
.end-cta__actions {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  justify-content: center;
}

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
  background: #fff;
  margin: 0 20px 20px;
  border-radius: 20px;
  padding: var(--sp-11) 0 var(--sp-7);
  text-align: center;
}
.logo--center {
  flex-direction: column;
  gap: 6px;
  justify-content: center;
}
.logo--center .logo__text { text-align: center; align-items: center; }
.site-footer__logo img {
  height: 56px;
  width: auto;
  display: block;
  margin: 0 auto;
}
.site-footer__intro {
  max-width: 820px;
  margin: var(--sp-5) auto var(--sp-7);
  color: var(--c-muted);
  font-size: 20px;
  line-height: 1.6;
}
.footer-nav ul {
  display: flex;
  justify-content: center;
  gap: var(--sp-7);
  flex-wrap: wrap;
  margin-bottom: var(--sp-6);
}
.footer-nav a {
  font-size: 18px;
  color: var(--c-text);
  font-weight: 500;
}
.footer-nav a:hover { color: var(--c-teal-dark); }

.socials {
  display: flex;
  justify-content: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-6);
}
.socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--c-bg);
  color: var(--c-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t), color var(--t);
}
.socials a svg { width: 18px; height: 18px; }
.socials a:hover { background: var(--c-teal); color: #fff; }

.site-footer__copy {
  font-size: var(--fs-xs);
  color: var(--c-muted);
  border-top: 1px solid var(--c-line);
  padding-top: var(--sp-5);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

/* Laptop ≤ 1439 */
@media (max-width: 1439px) {
  :root { --container: 1120px; }
  .section { padding: var(--sp-11) 0; }
}

/* Tablet ≤ 1023 */
@media (max-width: 1023px) {
  :root {
    --fs-2xl: 1.875rem;
    --fs-xl:  1.5rem;
  }
  .section { padding: var(--sp-10) 0; }
  .container { padding: 0 var(--sp-6); }

  .main-nav {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    padding: var(--sp-3) 0;
    display: none;
  }
  .main-nav.is-open { display: block; }
  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0 var(--sp-5);
  }
  .main-nav li { padding: var(--sp-3) 0; border-bottom: 1px solid var(--c-line); }
  .main-nav li:last-child { border-bottom: 0; }
  .main-nav a.is-active::after { display: none; }
  .main-nav__cta {
    display: inline-flex;
    margin: var(--sp-4) var(--sp-5) var(--sp-3);
    width: calc(100% - 2 * var(--sp-5));
    padding: 0 56px 0 20px;
  }
  .header__cta { display: none; }
  .nav-toggle { display: inline-flex; }

  .founder__grid { grid-template-columns: 1fr; }
  .founder__photo { min-height: 320px; }
  .founder__cards { grid-template-columns: 1fr 1fr; }

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

  .impact__inner { grid-template-columns: 1fr; gap: var(--sp-7); }
  .impact__media img { aspect-ratio: 16/10; min-height: 260px; }

  .stories__grid { grid-template-columns: 1fr 1fr; }
  .story-card--cta { grid-column: 1 / -1; }

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

  .donate-tiers { grid-template-columns: 1fr 1fr; }

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

  .help-cta__inner { grid-template-columns: 1fr; }

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

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

  .mission__text { font-size: 44px; line-height: 54px; letter-spacing: -2px; }
}

/* Mobile ≤ 767 */
@media (max-width: 767px) {
  :root {
    --fs-2xl: 1.625rem;
    --fs-xl:  1.375rem;
    --fs-md:  1rem;
    --sp-12:  3.5rem;
    --sp-11:  3rem;
    --sp-10:  2.5rem;
  }
  .container { padding: 0 var(--sp-5); }
  .section { padding: var(--sp-9) 0; }

  .header__inner {
    height: 68px;
    justify-content: center;
    gap: var(--sp-4);
  }
  .site-header {
    top: 12px;
    width: calc(100% - 24px);
  }
  .logo__img { height: 52px; width: auto; max-width: 60vw; object-fit: contain; }
  .btn--donate   { padding: 0 56px 0 20px; font-size: 14px; }

  .hero { margin: 12px 12px 0; border-radius: 16px; padding: 110px 0 50px; }
  .hero__title { font-size: 26px; line-height: 1.25; }
  .hero__lead  { font-size: 13px; }
  .hero__stats {
    flex-direction: column;
    gap: var(--sp-4);
    padding-top: var(--sp-5);
    margin-top: var(--sp-7);
  }
  .hero__stats li { padding: 0; }
  .hero__stats li + li {
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.12);
    padding-top: var(--sp-4);
  }

  .partner-logos  { gap: var(--sp-5); }
  .founder__cards { grid-template-columns: 1fr; }

  .solutions__grid,
  .stories__grid,
  .donate-tiers,
  .locations__grid,
  .services__grid,
  .impact__stats,
  .form-row { grid-template-columns: 1fr; }

  .impact__inner { padding: var(--sp-5); }

  .help-cta { padding: var(--sp-10) 0; }
  .help-cta__content { max-width: none; }
  .help-cta__actions { flex-direction: column; align-items: stretch; }
  .help-cta__actions .btn { width: 100%; min-width: 0; }

  /* Tier card vertical separators -> horizontal when stacked */
  .donate-tiers { padding: 30px 24px; }
  .tier-card {
    border-left: 0;
    padding: var(--sp-5) 0;
  }
  .tier-card + .tier-card {
    border-top: 1px solid rgba(0,0,0,.18);
  }
  .donate-tiers-wrap { margin-top: -60px; }

  .volunteer__item {
    grid-template-columns: auto 1fr;
    grid-template-areas: 'num role' 'btn btn';
    gap: var(--sp-3);
    flex: 0 0 auto;
  }
  .volunteer__num   { grid-area: num; }
  .volunteer__role  { grid-area: role; }
  .volunteer__item .btn { grid-area: btn; justify-self: stretch; }
  .volunteer__list { height: auto; }
  .volunteer__media { display: block; }
  .volunteer__slides { aspect-ratio: 16/10; }

  .contact__form { padding: var(--sp-5); }
  .contact__intro { padding: var(--sp-5); }

  .end-cta__inner {
    padding: var(--sp-7) var(--sp-5);
    gap: var(--sp-3);
  }
  .end-cta .section__title {
    font-size: 26px;
    line-height: 32px;
    margin-bottom: var(--sp-2);
  }
  .end-cta .section__lead {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: var(--sp-3);
  }
  .end-cta__actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 320px;
    gap: var(--sp-3);
    margin-top: var(--sp-2);
  }
  .end-cta__actions .btn {
    width: 100%;
    height: 50px;
    padding: 0 56px 0 18px;
    font-size: 15px;
  }

  .footer-nav ul { gap: var(--sp-4); }
  .site-footer { margin: 0 12px 12px; padding: var(--sp-9) 0 var(--sp-5); }
  .site-footer__intro { font-size: 15px; }
  .footer-nav a { font-size: 15px; }
  .site-footer__logo img { height: 42px; }

  /* Wrappers — tighten margin and radius on small screens */
  .impact-stories,
  .training-volunteer { margin: 12px; border-radius: 16px; }
  .services-donate-zone { margin: 12px 12px 0; border-radius: 16px; }
  .end-cta { margin: 12px; border-radius: 16px; }
  .contact { padding: var(--sp-9) 0; }

  /* Founder section */
  .founder { margin: 12px; border-radius: 16px; }
  .founder__photo {
    aspect-ratio: 4 / 3;
    min-height: 0;
    border-radius: 14px;
  }
  .founder__photo figcaption { left: var(--sp-5); bottom: var(--sp-4); }
  .founder__name { font-size: 24px; line-height: 28px; letter-spacing: -1px; }

  /* Solutions */
  .solution-card h3 { font-size: 22px; line-height: 28px; letter-spacing: -1px; }

  /* Services */
  .service-card h3 { font-size: 22px; line-height: 28px; letter-spacing: -1px; }
  .service-card__img { aspect-ratio: 16/9; }

  /* Stories */
  .story-card h3 { font-size: 18px; }
  .story-card__big { font-size: 44px; }
  .story-card__cta-text { font-size: 22px; }

  /* Locations */
  .location-card h3 { font-size: 22px; line-height: 28px; letter-spacing: -1px; }

  .mission__text { font-size: 35px; line-height: 44px; letter-spacing: -1.4px; }

  /* Awareness floats positioned tighter on small screens */
  .training__float--1 { top: 0; left: -10px; }
  .training__float--2 { top: 30px; right: -10px; }

  .training__img { width: 70px; height: 42px; margin: 0 6px -6px; }
}

/* Small phones ≤ 374 */
@media (max-width: 374px) {
  .container { padding: 0 var(--sp-4); }
  .hero__title { font-size: 22px; }
  .section__title { font-size: 22px; }
  .btn { padding: 0 56px 0 20px; font-size: 13px; }
}

/* =====================================================
   ABOUT PAGE
   ===================================================== */

/* ---------- Hero (about) ----------
   Dimensions kept identical to the homepage .hero: same 20px outer
   margin, 20px border-radius, 130px / 80px vertical padding, and a
   min-height that matches the homepage hero's natural content height
   so the dark image background frame appears at the same size.    */
.hero--about {
  position: relative;
  isolation: isolate;
  margin: 20px 20px 0;
  border-radius: 20px;
  overflow: hidden;
  padding: 130px 0 80px;
  min-height: 720px;
  color: #fff;
  background:
    linear-gradient(180deg,
      rgba(0,0,0,1)    0%,
      rgba(0,0,0,0.85) 8%,
      rgba(0,0,0,0.55) 22%,
      rgba(0,0,0,0.30) 40%,
      rgba(0,0,0,0.45) 75%,
      rgba(0,0,0,0.78) 100%),
    url('About%20us/Hero%20Section.jpg') center / cover no-repeat,
    #0b0b0b;
  /* Center the title + lead + stats vertically inside the min-height. */
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero--about::before { display: none; }

.hero-about__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
}
.hero-about__title {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 46px;
  line-height: 1.12;
  letter-spacing: -1.6px;
  margin: 0 0 var(--sp-5);
  color: #fff;
}
.hero-about__lead {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 20px;
  line-height: 30px;
  color: rgba(255,255,255,0.82);
  max-width: 820px;
  margin: 0 auto var(--sp-4);
}
/* Orange highlight line above the stats — mirrors .hero__sub on the
   homepage (24px / --c-orange). */
.hero-about__sub {
  font-size: 24px;
  color: var(--c-orange);
  margin: var(--sp-5) 0 0;
}
.hero-about__stats {
  list-style: none;
  margin: var(--sp-7) auto 0;
  padding: 0;
  display: flex;
  align-items: stretch;
  gap: 0;
  width: 100%;
  max-width: 720px;
}
.hero-about__stats li {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 var(--sp-5);
  text-align: center;
}
.hero-about__stats li + li { border-left: 1px solid rgba(255,255,255,.12); }
.hero-about__stats .stat__num {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 28px;
  color: #fff;
  letter-spacing: -1px;
}
.hero-about__stats .stat__label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.72);
}

/* ---------- Care Beyond Treatment ---------- */
.care-beyond { padding: var(--sp-11) 0 var(--sp-9); }
.care-beyond__video {
  position: relative;
  margin: var(--sp-7) auto 0;
  max-width: 1040px;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000;
  box-shadow: var(--shadow);
}
.care-beyond__video img,
.care-beyond__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.care-beyond__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 78px;
  height: 78px;
  border: 0;
  border-radius: 50%;
  background: var(--c-teal);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 40px rgba(20,184,166,0.45);
  transition: transform 0.25s ease, background 0.25s ease;
}
.care-beyond__play:hover { background: var(--c-teal-dark); transform: translate(-50%, -50%) scale(1.06); }
.care-beyond__play svg {
  width: 30px;
  height: 30px;
  margin-left: 3px;
}

/* ---------- Video lightbox modal ---------- */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}
.video-modal.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease;
}
.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  cursor: pointer;
}
.video-modal__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% + 20px));
  width: min(92vw, 1100px);
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.video-modal.is-open .video-modal__content {
  transform: translate(-50%, -50%);
}
.video-modal__player {
  width: 100%;
  height: auto;
  max-height: 80vh;
  display: block;
  background: #000;
}
.video-modal__close {
  position: absolute;
  top: -52px;
  right: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 0;
  background: #fff;
  color: #000;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.video-modal__close:hover {
  background: var(--c-teal);
  color: #fff;
  transform: scale(1.08);
}
@media (max-width: 767px) {
  .video-modal__content { width: 94vw; border-radius: 10px; }
  .video-modal__close { top: -46px; width: 36px; height: 36px; font-size: 20px; }
}

/* ---------- Our Story ---------- */
.our-story {
  background: var(--c-card);
  margin: var(--sp-6) 20px;
  border-radius: 20px;
  padding: 92px 0;
}
.our-story__inner {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 50px;
  align-items: stretch;
}
.our-story__media {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  background: var(--c-bg);
  align-self: stretch;
  min-height: 100%;
}
.our-story__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.our-story__content .eyebrow {
  font-size: 14px;
  font-weight: 500;
  color: var(--c-muted);
  margin-bottom: var(--sp-4);
  letter-spacing: 0.02em;
}
.our-story__content .section__title {
  font-size: 44px;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: var(--sp-6);
}
.our-story__content p {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 20px;
  line-height: 30px;
  color: var(--c-dark);
  margin: 0 0 var(--sp-5);
}
.our-story__highlight {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--c-dark);
  margin: var(--sp-6) 0 var(--sp-6);
}
.our-story__quote {
  margin: 0;
  padding: 24px 28px;
  background: var(--c-bg);
  border-radius: 12px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--c-dark);
  line-height: 32px;
  font-style: normal;
}

/* ---------- Legacy (image + content split, mirror of Our Story) ---------- */
.legacy {
  margin: var(--sp-6) 20px;
  padding: 92px 0;
  background: #fff;
  border-radius: 20px;
}
.legacy__inner {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 50px;
  align-items: center;
}
.legacy__media {
  position: relative;
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  background: var(--c-bg);
  aspect-ratio: 4 / 4.2;
}
.legacy__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.legacy__media::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    transparent 45%,
    rgba(0,0,0,0.35) 65%,
    rgba(0,0,0,0.75) 88%,
    rgba(0,0,0,0.92) 100%
  );
}
.legacy__media figcaption {
  position: absolute;
  left: var(--sp-6);
  right: var(--sp-6);
  bottom: var(--sp-5);
  color: #fff;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  z-index: 2;
}
.legacy__content .eyebrow {
  font-size: 14px;
  font-weight: 500;
  color: var(--c-muted);
  margin-bottom: var(--sp-4);
  letter-spacing: 0.02em;
}
.legacy__content .section__title {
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -1.4px;
  margin-bottom: var(--sp-6);
}
.legacy__content p {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 18px;
  line-height: 30px;
  color: var(--c-dark);
  margin: 0 0 var(--sp-5);
}
.legacy__content p:last-of-type { margin-bottom: var(--sp-6); }
.legacy__quote {
  margin: 0;
  padding: 24px 28px;
  background: var(--c-bg);
  border-radius: 12px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--c-dark);
  line-height: 30px;
  font-style: normal;
}

/* ---------- Our Mission (reuses .solutions__grid + .solution-card) ---------- */
.our-mission { padding: var(--sp-10) 0 var(--sp-9); }
.our-mission .section__lead { max-width: 880px; margin-left: auto; margin-right: auto; }
.our-mission .solution-card h3 {
  font-size: 26px;
  line-height: 32px;
  letter-spacing: -1.4px;
}

/* ---------- What Makes Us Different (sticky-stack on the right column) ---------- */
.different {
  background: transparent;
  padding: var(--sp-9) 0 92px;
  margin: 0;
}
.different__inner {
  background: transparent;
  border-radius: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 80px;
  align-items: start;
}
.different__intro {
  /* JS translates this to keep it pinned while the right column scrolls. */
  will-change: transform;
}
.different__intro .eyebrow { margin-bottom: 10px; }
.different__intro .section__title {
  font-size: 40px;
  margin-bottom: var(--sp-5);
}
.different__intro .section__lead {
  font-size: 20px;
  line-height: 30px;
  color: var(--c-muted);
  margin-bottom: var(--sp-6);
  max-width: 480px;
}
.different__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: block;
}
.different-card {
  display: block;
  background: var(--c-card);
  border-radius: 16px;
  padding: 36px 40px 40px;
  will-change: transform;
  /* Cards travel together with a 12px gap. As each one reaches its
     per-card sticky offset it locks, and the next card slides up and
     stacks on top. JS applies irregular vertical offsets to make the
     stacked deck feel hand-piled rather than perfectly aligned. */
  margin-bottom: 12px;
  /* Very light shadow above each card so when the deck stacks you can
     subtly see the edge of the card below. Negative Y, soft blur. */
  box-shadow: 0 -4px 14px rgba(0, 0, 0, 0.04);
}
.different-card:last-child { margin-bottom: 0; }

.different-card__icon {
  display: block;
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
}
.different-card h3 {
  margin: 0 0 14px;
  font-family: 'Inter', sans-serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 32px;
  color: var(--c-dark);
  letter-spacing: -1.4px;
}
.different-card p {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 26px;
  color: var(--c-muted);
  max-width: 540px;
}

/* The fade-section reveal would conflict with JS-driven transforms — opt out. */
.different .fade-child {
  opacity: 1;
  transform: none;
  filter: none;
}

/* ---------- Values + Donate Intro (shared blue zone) ----------
   Matches the homepage .services-donate-zone exactly: the zone is just
   a bg + border-radius + margin frame, the inner .values section owns
   the top/bottom padding, and the donate intro uses its base padding
   (32px top, 96px bottom). The orange .donate-tiers-wrap overlaps the
   zone from below with its global -110px margin-top. */
.values-donate-zone {
  background: var(--c-navy);
  margin: 20px 20px 0;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}
.values {
  background: transparent;
  margin: 0;
  border-radius: 0;
  padding: var(--sp-12) 0 var(--sp-7);
  position: relative;
  overflow: hidden;
}
.values__grid {
  margin-top: var(--sp-7);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
.value-card {
  background: #fff;
  border-radius: 20px;
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  transition: transform var(--t), box-shadow var(--t);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.value-card__icon {
  width: 44px;
  height: 44px;
  display: block;
  flex-shrink: 0;
}
.value-card h3 {
  margin: 0;
  color: #000;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: -1.8px;
}
.value-card p {
  margin: 0;
  color: #3C3C3C;
  font-family: 'Source Sans 3', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
}

/* ---------- Recognition & Trust ---------- */
.recognition {
  background: transparent;
  margin: 0;
  border-radius: 0;
  padding: var(--sp-10) 0;
}
.recognition .section__lead { max-width: 820px; margin-left: auto; margin-right: auto; }
.recognition__grid {
  margin-top: var(--sp-7);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
}
.recognition__cell {
  background: #fff;
  border-radius: 12px;
  padding: var(--sp-5);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  min-height: 70px;
}
.recognition__cell img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  flex-shrink: 0;
}
.recognition__cell span {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--c-dark);
}
.recognition__quote {
  margin: var(--sp-6) 0 0;
  padding: var(--sp-5);
  text-align: center;
  background: #fff;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: var(--c-dark);
  font-style: italic;
}

/* ---------- Join Our Mission (uses homepage .volunteer styling) ----------
   .join-frame is the standalone white card that wraps a single .volunteer
   section on the about page — mirrors the homepage's .training-volunteer
   pattern but for one section instead of two. The .volunteer/.volunteer__*
   classes inside inherit ALL the homepage styling for free. */
.join-frame {
  background: #fff;
  margin: 20px;
  border-radius: 20px;
  overflow: hidden;
}
/* Strip the homepage volunteer's padding-top: 50px which exists only to
   gap from the training section above it — there's no training here. */
.join-frame .volunteer { padding: 92px 0; }
/* Push the right card column down so the first card top aligns with the
   "Join Our Mission" heading (not the small "Create Hope Together"
   eyebrow above it). */
.join-frame .volunteer__list { padding-top: 30px; }

/* Tighten the gap between the lead text and the slideshow so it matches
   the gap between the heading and the lead (~16px). The homepage uses
   margin-top: auto here to pin the image to the column bottom, but on
   the about page we want consistent spacing instead. */
.join-frame .volunteer__slides {
  margin-top: var(--sp-4);
}

/* =====================================================
   ABOUT PAGE — Responsive
   ===================================================== */
@media (max-width: 1023px) {
  .hero-about__title { font-size: 38px; letter-spacing: -1.2px; }
  .hero-about__lead { font-size: 19px; line-height: 28px; }
  .hero-about__stats { max-width: 640px; }
  .hero-about__stats li { padding: 0 var(--sp-3); }

  .our-story__inner,
  .legacy__inner,
  .different__inner {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
  }
  .our-story { padding: 60px 0; }
  .our-story__media { min-height: 0; aspect-ratio: 4 / 3.2; }
  .legacy { padding: 60px 0; margin: 20px; }
  .legacy__inner { gap: var(--sp-7); }
  .legacy__media { aspect-ratio: 4 / 3.2; }
  .legacy__content .section__title { font-size: 32px; }
  .legacy__content p { font-size: 18px; line-height: 28px; }
  .legacy__quote { font-size: 19px; line-height: 28px; }
  .join-frame .volunteer { padding: 60px 0; }

  /* Disable sticky-stack on tablet/mobile — show as a normal list. */
  .different { padding: var(--sp-7) 0 92px; }
  .different-card { margin-bottom: var(--sp-4); transform: none !important; }
  .different__intro { transform: none !important; }
  .different-card__icon { margin-bottom: 20px; }
  .different-card h3 { font-size: 22px; }
  .different-card p { font-size: 15px; line-height: 24px; }
  .our-story__content .section__title,
  .different__intro .section__title,
  .volunteer__media .section__title { font-size: 32px; }
  .our-story__highlight { font-size: 18px; line-height: 28px; }
  .our-story__content p { font-size: 18px; line-height: 28px; }
  .our-story__quote { font-size: 21px; line-height: 28px; }

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

@media (max-width: 767px) {
  .hero--about { margin: 12px 12px 0; border-radius: 16px; padding: 110px 0 50px; min-height: 540px; }
  .hero-about__title { font-size: 30px; letter-spacing: -1px; }
  .hero-about__lead { font-size: 16px; line-height: 24px; }
  .hero-about__stats {
    flex-direction: column;
    gap: var(--sp-4);
    padding-top: var(--sp-5);
    max-width: 360px;
  }
  .hero-about__stats li { padding: 0; }
  .hero-about__stats li + li {
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.12);
    padding-top: var(--sp-4);
  }
  .hero-about__stats .stat__num { font-size: 22px; }
  .hero-about__stats .stat__label { font-size: 11px; text-align: center; }

  .care-beyond { padding: var(--sp-9) 0 var(--sp-7); }
  .care-beyond__play { width: 60px; height: 60px; }
  .care-beyond__play svg { width: 24px; height: 24px; }

  .our-story,
  .different,
  .join-frame,
  .values-donate-zone { margin-left: 12px; margin-right: 12px; border-radius: 16px; }
  .different__inner { padding: var(--sp-6); border-radius: 16px; }
  .our-story { padding: 48px 0; }
  .legacy { padding: 48px 0; margin: 20px; }
  .legacy__content .section__title { font-size: 26px; }
  .legacy__content p { font-size: 16px; line-height: 26px; }
  .legacy__quote { padding: 20px 22px; font-size: 17px; line-height: 26px; }
  .join-frame .volunteer { padding: 48px 0; }

  .our-story__content .section__title,
  .different__intro .section__title,
  .volunteer__media .section__title { font-size: 26px; }
  .our-story__highlight { font-size: 16px; line-height: 26px; }
  .our-story__content p { font-size: 16px; line-height: 26px; }
  .our-story__quote { padding: 20px 22px; font-size: 18px; line-height: 26px; }

  .values-donate-zone { margin: 12px 12px 0; border-radius: 16px; }
  .values__grid { grid-template-columns: 1fr; gap: var(--sp-4); }
  .value-card { padding: var(--sp-5); }

  /* Cards span the full available width with 20px from the page edges
     on each side, with comfortable inner padding. */
  .different .container { padding: 0 20px; }
  .different-card {
    width: 100%;
    box-sizing: border-box;
    padding: 24px 22px;
  }
  .different-card h3 { font-size: 22px; }
  .different-card p { font-size: 15px; line-height: 24px; }

  .recognition__grid { grid-template-columns: 1fr; }
  .recognition__cell { padding: var(--sp-4); }

}

@media (max-width: 374px) {
  .hero-about__title { font-size: 24px; }
  .our-story__content .section__title,
  .legacy__content .section__title,
  .different__intro .section__title,
  .volunteer__media .section__title { font-size: 22px; }
}

/* =====================================================
   DONATE PAGE
   ===================================================== */

/* ---------- Hero ---------- */
.hero--donate {
  position: relative;
  isolation: isolate;
  margin: 20px 20px 0;
  border-radius: 20px;
  overflow: hidden;
  padding: 130px 0 80px;
  min-height: 720px;
  color: #fff;
  background:
    linear-gradient(180deg,
      rgba(0,0,0,1)    0%,
      rgba(0,0,0,0.85) 8%,
      rgba(0,0,0,0.55) 22%,
      rgba(0,0,0,0.30) 40%,
      rgba(0,0,0,0.45) 75%,
      rgba(0,0,0,0.78) 100%),
    url('Assets%20Home%20page/Hero%20Section%20Image%202.jpg') center / cover no-repeat,
    #0b0b0b;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero--donate::before { display: none; }

.hero-donate__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
}
.hero-donate__title {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 46px;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin: 0 0 var(--sp-5);
  color: #fff;
  white-space: nowrap; /* keep on a single row at desktop */
}
.hero-donate__lead {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 20px;
  line-height: 30px;
  color: rgba(255,255,255,0.82);
  max-width: 640px;
  margin: 0 auto;
}
/* Orange highlight line under the lead — matches .hero__sub on the
   homepage and the about/contact page sub lines. */
.hero-donate__sub {
  font-size: 24px;
  color: var(--c-orange);
  margin: var(--sp-5) 0 0;
}
.hero-donate__actions { margin-bottom: var(--sp-6); }
.hero-donate__pledge {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto var(--sp-7);
}
.hero-donate__stats {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: stretch;
  width: 100%;
  max-width: 640px;
}
.hero-donate__stats li {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 var(--sp-5);
  text-align: center;
}
.hero-donate__stats .stat__num {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 32px;
  color: #fff;
  letter-spacing: -0.5px;
}
.hero-donate__stats .stat__label {
  font-size: 13px;
  color: rgba(255,255,255,0.72);
}

/* ---------- Donation cards section ---------- */
.donate-list {
  padding: var(--sp-9) 0 var(--sp-12);
}
.donate-list .container {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.donation-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) 1.6fr;
  gap: var(--sp-6);
  align-items: stretch;
  border-radius: 20px;
  padding: 36px 40px;
}
.donation-card--white  { background: #fff; }
.donation-card--orange { background: var(--c-orange); }

.donation-card__left {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.donation-card__icon {
  display: block;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.donation-card__title {
  margin: var(--sp-3) 0 0;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.5px;
  color: var(--c-dark);
}
.donation-card__desc {
  margin: 0;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 14px;
  line-height: 22px;
  color: var(--c-muted);
  max-width: 280px;
}
.donation-card__qr {
  display: block;
  width: 130px;
  height: 130px;
  margin-top: auto;
  padding: 6px;
  background: #fff;
  border-radius: 6px;
  box-sizing: border-box;
  object-fit: contain;
}

.donation-card__right {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  background: rgba(255,255,255,0.55);
  border-radius: 12px;
  padding: 22px 24px;
}
.donation-card--white .donation-card__right { background: #F6F6F4; }
.donation-card--orange .donation-card__right { background: #F8B074; }

.donation-card__row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--sp-5);
  align-items: flex-start;
}
.donation-card__field { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.donation-card__field--full { grid-column: 1 / -1; }
.donation-card__field--swift {
  background: rgba(0,0,0,0.06);
  padding: 8px 12px;
  border-radius: 6px;
  align-self: start;
  flex-direction: row;
  align-items: center;
  gap: 6px;
}
.donation-card__field--swift .donation-card__label { margin: 0; }
.donation-card--orange .donation-card__field--swift { background: rgba(0,0,0,0.08); }

.donation-card__label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.55);
}
.donation-card__value {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-dark);
  word-break: break-word;
}
.donation-card__rule {
  border: 0;
  border-top: 1px solid rgba(0,0,0,0.10);
  margin: 4px 0;
}
.donation-card--orange .donation-card__rule { border-top-color: rgba(0,0,0,0.18); }

.donation-card__copy {
  margin-top: var(--sp-3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #000;
  color: #fff;
  border: 0;
  border-radius: 10px;
  height: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--t);
}
.donation-card__copy svg { width: 16px; height: 16px; }
.donation-card__copy:hover { background: var(--c-dark-2); }

/* =====================================================
   DONATE PAGE — Responsive
   ===================================================== */
@media (max-width: 1023px) {
  .donation-card {
    grid-template-columns: 1fr;
    padding: 28px 28px;
  }
  .donation-card__qr { margin-top: var(--sp-3); }
  .donation-card__row { grid-template-columns: 1fr; gap: var(--sp-3); }
  .donation-card__field--swift { align-self: stretch; }

  .hero-donate__title { font-size: 38px; letter-spacing: -1.2px; white-space: normal; }
}

@media (max-width: 767px) {
  .hero--donate { margin: 12px 12px 0; border-radius: 16px; padding: 110px 0 50px; min-height: 540px; }
  .hero-donate__title { font-size: 30px; letter-spacing: -1px; white-space: normal; }
  .hero-donate__lead  { font-size: 15px; line-height: 24px; }
  .hero-donate__stats { flex-direction: column; gap: var(--sp-4); padding-top: var(--sp-5); max-width: 320px; }
  .hero-donate__stats li { padding: 0; }
  .hero-donate__stats li + li { border-top: 1px solid rgba(255,255,255,.12); padding-top: var(--sp-4); }
  .hero-donate__stats .stat__num { font-size: 24px; }

  .donate-list { padding: var(--sp-7) 0 var(--sp-9); }
  .donate-list .container { gap: var(--sp-4); }
  .donation-card { padding: 22px 20px; border-radius: 16px; }
  .donation-card__title { font-size: 18px; }
  .donation-card__right { padding: 16px 18px; }
  .donation-card__value { font-size: 13px; }
}

@media (max-width: 374px) {
  .hero-donate__title { font-size: 24px; }
}

/* =====================================================
   CONTACT PAGE
   ===================================================== */

/* ---------- Hero (blue) with looping gallery at the bottom ----------
   Same overall block size as the homepage hero: 20px margin, 20px
   border-radius, 130px / 80px vertical padding, and 720px min-height
   so the blue area visually matches. The hero is a flex column so the
   text content centers vertically in the upper portion and the gallery
   anchors at the bottom of the hero.                                  */
.hero--contact {
  position: relative;
  isolation: isolate;
  margin: 20px 20px 0;
  border-radius: 20px;
  overflow: hidden;
  /* Bottom padding matches the inter-image gap on the carousel so the
     spacing below the carousel reads the same as between the photos. */
  padding: 130px 0 14px;
  min-height: 720px;
  background: #1E3A8A;
  color: #fff;
  /* Flex column with the carousel pinned to the bottom via margin-top:auto.
     Content (logo + heading + body) stays at the top under the header. */
  display: flex;
  flex-direction: column;
}
.hero--contact::before { display: none; }

.hero-contact__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  /* Grow to fill the space above the carousel and center the content
     (mark + title + lead + sub) vertically between top and bottom. */
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hero-contact__mark {
  display: inline-flex;
  width: 80px;
  height: 80px;
  margin: 0 auto var(--sp-3);
}
.hero-contact__mark svg,
.hero-contact__mark img { width: 100%; height: 100%; display: block; }
.hero-contact__title {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 46px;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin: 0 0 var(--sp-5);
  color: #fff;
}
.hero-contact__lead {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.25rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.85);
  max-width: 720px;
  margin: 0 auto;
}
/* Orange highlight line under the lead — mirrors .hero__sub on the
   homepage and .hero-about__sub on the about page. */
.hero-contact__sub {
  font-size: 24px;
  color: var(--c-orange);
  margin: var(--sp-5) 0 0;
}

.hero-contact__gallery {
  position: relative;
  margin-top: auto;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%);
}
.hero-contact__gallery-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: gallery-scroll 40s linear infinite;
}
.hero-contact__gallery-track img {
  width: 280px;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
  display: block;
}
@keyframes gallery-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-contact__gallery-track { animation: none; }
}

/* ---------- Our Clinics & Schools ---------- */
.clinics {
  background: #fff;
  margin: 20px 20px 0;
  border-radius: 20px;
  padding: var(--sp-10) 0;
}
.clinics__grid {
  margin-top: var(--sp-8);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
.clinic-card {
  position: relative;
  background: #F3F4F6;
  border-radius: 16px;
  padding: 28px 28px 22px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t);
}
.clinic-card:hover { transform: translateY(-3px); }
.clinic-card--featured { background: var(--c-teal); }
.clinic-card--featured .clinic-card__type { color: var(--c-muted); }

.clinic-card__type {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--c-muted);
  margin: 0 0 var(--sp-3);
}
.clinic-card__type::before {
  content: '';
  display: inline-block;
  width: 2px;
  height: 14px;
  background: var(--c-orange);
  border-radius: 1px;
  flex-shrink: 0;
}
.clinic-card h3 {
  margin: 0 0 var(--sp-4);
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: -0.6px;
  color: var(--c-dark);
}
.clinic-card__city {
  margin: 0 0 2px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-dark);
}
.clinic-card__addr {
  margin: 0 0 var(--sp-4);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 14px;
  line-height: 22px;
  color: var(--c-muted);
}
.clinic-card__phone {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 var(--sp-5);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-dark);
}
.clinic-card__phone svg {
  width: 28px;
  height: 28px;
  padding: 6px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.06);
  color: var(--c-dark);
}
.clinic-card--featured .clinic-card__phone svg {
  background: rgba(0, 0, 0, 0.08);
  color: var(--c-dark);
}
.clinic-card__btn {
  margin-top: auto;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  height: 44px;
  padding: 0 56px 0 18px;
  background: #fff;
  color: var(--c-dark);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background var(--t), color var(--t);
}
.clinic-card__btn .btn__icon { transition: background var(--t), color var(--t); }
.clinic-card__btn:hover { background: #000; color: #fff; }
.clinic-card__btn:hover .btn__icon { background: #fff; color: #000; }
.clinic-card__btn .btn__icon {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  padding: 9px;
  border-radius: 8px;
  background: #000;
  color: #fff;
  box-sizing: content-box;
  overflow: hidden;
}
.clinic-card--featured .clinic-card__btn { background: #fff; color: var(--c-dark); }
.clinic-card--featured .clinic-card__btn:hover { background: #000; color: #fff; }
.clinic-card--featured .clinic-card__btn:hover .btn__icon { background: #fff; color: #000; }

.clinic-card__watermark {
  position: absolute;
  right: -10px;
  bottom: -16px;
  width: 130px;
  height: 130px;
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}
.clinic-card--featured .clinic-card__watermark { opacity: 0.22; }
/* Keep all interactive/text content above the watermark so it never
   bleeds through the black "Get Direction" button or text. */
.clinic-card > :not(.clinic-card__watermark) { position: relative; z-index: 1; }

/* =====================================================
   CONTACT PAGE — Responsive
   ===================================================== */
@media (max-width: 1023px) {
  .clinics__grid { grid-template-columns: repeat(2, 1fr); }
  .hero-contact__title { font-size: 38px; letter-spacing: -1.2px; }
  .hero-contact__gallery-track img { width: 240px; height: 170px; }
}

@media (max-width: 767px) {
  .hero--contact { margin: 12px 12px 0; border-radius: 16px; padding: 110px 0 10px; min-height: 540px; }
  .hero-contact__title { font-size: 30px; letter-spacing: -1px; }
  .hero-contact__lead  { font-size: 15px; line-height: 24px; }
  .hero-contact__mark { width: 56px; height: 56px; }
  .hero-contact__gallery-track img { width: 180px; height: 130px; }
  .hero-contact__gallery-track { gap: 10px; }

  .clinics { margin: 12px 12px 0; border-radius: 16px; padding: var(--sp-7) 0; }
  .clinics__grid { grid-template-columns: 1fr; gap: var(--sp-4); }
  .clinic-card { padding: 22px 20px; }
  .clinic-card h3 { font-size: 19px; line-height: 25px; }
}

@media (max-width: 374px) {
  .hero-contact__title { font-size: 24px; }
}

/* =====================================================
   Mobile: normalize all body / descriptive text to 18px
   ===================================================== */
@media (max-width: 767px) {
  .hero__lead,
  .hero-about__lead,
  .hero-donate__lead,
  .hero-contact__lead,
  .section__lead,
  .solution-card p,
  .service-card p,
  .value-card p,
  .different-card p,
  .story-card__excerpt,
  .story-card__cta-sub,
  .our-story__content p,
  .our-story__highlight,
  .our-story__quote,
  .location-card p,
  .help-cta__lead,
  .help-cta__hope,
  .contact__details p,
  .donation-card__desc,
  .recognition__cell span,
  .recognition__quote,
  .clinic-card__addr,
  .site-footer__intro,
  .tier-card p {
    font-size: 18px;
    line-height: 1.5;
  }

  /* Card headings — same size for every card variant across the site */
  .solution-card h3,
  .service-card h3,
  .value-card h3,
  .different-card h3,
  .story-card h3,
  .location-card h3,
  .donation-card__title,
  .clinic-card h3,
  .info-card__title {
    font-size: 22px;
    line-height: 1.3;
    letter-spacing: -0.6px;
  }

  /* Story cards: keep the before/after images side-by-side in a single
     row, with 20px padding from the card edges so the images sit on a
     comfortable frame. */
  .story-card { padding: 20px 20px 13px 20px; }
  .story-card__images { grid-template-columns: 1fr 1fr; gap: 8px; }

  /* All section / hero headings unified at 40px on mobile across every
     page. Listed explicitly so the more-specific page-level overrides
     are beaten. */
  .hero__title,
  .hero-about__title,
  .hero-donate__title,
  .hero-contact__title,
  .section__title,
  .section__title--center,
  .section__title--light,
  .our-story__content .section__title,
  .different__intro .section__title,
  .volunteer__media .section__title,
  .end-cta .section__title {
    font-size: 40px;
    line-height: 1.15;
    letter-spacing: -1.2px;
  }
}

/* =====================================================
   DONATE MODAL (opens from hero CTA)
   ===================================================== */
.donate-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.donate-modal[hidden] { display: none; }
.donate-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 22, 30, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity .22s ease;
}
.donate-modal__dialog {
  position: relative;
  width: min(1320px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
  padding: 40px 44px 36px;
  transform: translateY(14px) scale(0.985);
  opacity: 0;
  transition: opacity .22s ease, transform .22s ease;
}
.donate-modal.is-open .donate-modal__backdrop { opacity: 1; }
.donate-modal.is-open .donate-modal__dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.donate-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--c-bg);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  color: var(--c-dark);
  transition: background .15s ease;
  z-index: 2;
}
.donate-modal__close:hover { background: #e7eaec; }
.donate-modal__close svg { width: 18px; height: 18px; display: block; }

.donate-modal__header {
  text-align: center;
  margin-bottom: 28px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.donate-modal__header .eyebrow {
  justify-content: center;
  margin-bottom: var(--sp-3);
}
.donate-modal__title {
  font-family: 'Inter', sans-serif;
  font-size: 36px;
  line-height: 1.12;
  letter-spacing: -1.2px;
  font-weight: 700;
  color: var(--c-dark);
  margin: 0 0 var(--sp-3);
}
.donate-modal__lead {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: var(--c-muted);
  margin: 0;
}

.donate-modal__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
/* Reuse the donate page card style inside the modal, but stack the
   internal left/right columns so three cards fit horizontally. */
.donate-modal__grid .donation-card {
  grid-template-columns: 1fr;
  padding: 28px 24px;
  gap: var(--sp-5);
  border: 1px solid rgba(0,0,0,0.05);
}
.donate-modal__grid .donation-card--orange { border-color: transparent; }
.donate-modal__grid .donation-card__left {
  align-items: center;
  text-align: center;
}
.donate-modal__grid .donation-card__left .donation-card__desc { max-width: 100%; }
.donate-modal__grid .donation-card__right { text-align: center; }
.donate-modal__grid .donation-card__field { align-items: center; }
.donate-modal__grid .donation-card__field--swift {
  align-self: center;
  justify-content: center;
}
.donate-modal__grid .donation-card__qr {
  width: 240px;
  height: 240px;
  margin: var(--sp-3) auto 0;
}
.donate-modal__grid .donation-card__row {
  grid-template-columns: 1fr;
  gap: var(--sp-3);
}
.donate-modal__grid .donation-card__field--swift {
  align-self: flex-start;
  width: auto;
}
.donate-modal__grid .donation-card__copy {
  width: 100%;
  height: 46px;
  font-size: 14px;
}

.donate-modal__contact {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.donate-modal__contact h4 {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  letter-spacing: -0.4px;
  font-weight: 700;
  color: var(--c-dark);
  margin: 0 0 14px;
  text-align: center;
}
.donate-modal__contact ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.donate-modal__contact li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.donate-modal__icon {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--c-bg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--c-teal-dark);
}
.donate-modal__icon svg { width: 18px; height: 18px; }
.donate-modal__contact strong { display: block; font-size: 14px; color: var(--c-dark); margin-bottom: 2px; }
.donate-modal__contact p {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 14px;
  line-height: 22px;
  color: var(--c-muted);
  margin: 0;
}
.donate-modal__contact a { color: inherit; text-decoration: none; }
.donate-modal__contact a:hover { color: var(--c-teal-dark); }

/* Tablet */
@media (max-width: 1023px) {
  .donate-modal__dialog { padding: 32px 28px 28px; }
  .donate-modal__title { font-size: 28px; }
  .donate-modal__grid { grid-template-columns: 1fr; }
  .donate-modal__grid .donation-card { padding: 28px 28px; }
  .donate-modal__grid .donation-card__qr { width: 260px; height: 260px; }
}

/* Mobile */
@media (max-width: 767px) {
  .donate-modal { padding: 12px; }
  .donate-modal__dialog {
    padding: 28px 18px 22px;
    border-radius: 16px;
    max-height: calc(100vh - 24px);
  }
  .donate-modal__title { font-size: 22px; letter-spacing: -0.6px; }
  .donate-modal__lead { font-size: 14px; line-height: 22px; }
  .donate-modal__grid .donation-card { padding: 22px 20px; border-radius: 16px; }
  .donate-modal__grid .donation-card__qr { width: 220px; height: 220px; }
  .donate-modal__contact ul { grid-template-columns: 1fr; }
}

/* =====================================================
   APPOINTMENT + SPEAK NOW modals (reuses .donate-modal*)
   ===================================================== */
.donate-modal__dialog--sm { width: min(620px, 100%); padding: 36px 36px 30px; }

.appt-form { display: flex; flex-direction: column; gap: 14px; }
.appt-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.appt-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--c-dark);
}
.appt-form input,
.appt-form select,
.appt-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.12);
  background: #fff;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 15px;
  color: var(--c-dark);
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.appt-form textarea { resize: vertical; min-height: 84px; }
.appt-form input:focus,
.appt-form select:focus,
.appt-form textarea:focus {
  border-color: var(--c-teal);
  box-shadow: 0 0 0 3px rgba(28, 175, 156, 0.18);
}
.appt-form__submit { width: 100%; justify-content: center; margin-top: 6px; }
.appt-form__note {
  margin: 4px 0 0;
  text-align: center;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 13px;
  color: var(--c-muted);
}

/* Speak Now */
.speak-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 18px;
}
.speak-card {
  background: var(--c-bg);
  border-radius: 14px;
  padding: 22px 20px;
  text-align: center;
}
.speak-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  color: var(--c-teal-dark);
  margin-bottom: 10px;
}
.speak-card__icon svg { width: 20px; height: 20px; }
.speak-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--c-dark);
  margin: 0 0 6px;
}
.speak-card p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--c-dark);
  margin: 0 0 10px;
  line-height: 24px;
}
.speak-card p a { color: inherit; text-decoration: none; }
.speak-card p a:hover { color: var(--c-teal-dark); }
.speak-card__addr {
  display: block;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 13px;
  line-height: 18px;
  color: var(--c-muted);
}
.speak-modal__cta { width: 100%; justify-content: center; }

/* Get Help form additions */
.help-form__choice {
  border: 0;
  margin: 0;
  padding: 0;
}
.help-form__choice legend {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--c-dark);
  margin-bottom: 8px;
  padding: 0;
}
.help-form__radios {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.help-form__radios label {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 10px;
  cursor: pointer;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 15px;
  color: var(--c-dark);
  background: #fff;
  transition: border-color .15s ease, background .15s ease;
}
.help-form__radios label:hover { border-color: rgba(0,0,0,0.25); }
.help-form__radios input[type="radio"] {
  width: auto;
  accent-color: var(--c-teal);
  margin: 0;
}
.help-form__radios label:has(input:checked) {
  border-color: var(--c-teal);
  background: rgba(28, 175, 156, 0.08);
}
.help-form__crisis {
  margin: 4px 0 0;
  padding: 12px 14px;
  background: #fff4ed;
  border: 1px solid #ffd9bf;
  border-radius: 10px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 13.5px;
  line-height: 20px;
  color: var(--c-dark);
}
.help-form__crisis strong { display: block; margin-bottom: 2px; color: var(--c-dark); }
.help-form__crisis a { color: var(--c-teal-dark); text-decoration: none; font-weight: 600; }
.help-form__crisis a:hover { text-decoration: underline; }

@media (max-width: 767px) {
  .donate-modal__dialog--sm { padding: 28px 18px 22px; }
  .appt-form__row { grid-template-columns: 1fr; }
  .speak-grid { grid-template-columns: 1fr; }
  .help-form__radios { flex-direction: column; }
}
