/* ==========================================================================
   ASAP AMERICA — Global stylesheet
   Sets the visual template for the whole site.

   CONTENTS
   00  Design tokens (:root)
   01  Base / reset / typography helpers
   02  Reusable components (buttons, dots, eyebrow, reveal)
   03  Preloader
   04  Navigation (desktop) + mobile fullscreen menu
   05  Hero slider
   06  Marquee
   07  Counters (stats)
   08  Our Mission
   09  Video Overview
   10  Big Numbers
   11  Only at ASAP (pinned timeline + cards)
   12  ASAP in Action (carousel)
   13  Reviews
   14  Request CTA
   15  Footer
   16  Reduced motion
   ========================================================================== */


/* ==========================================================================
   00 — DESIGN TOKENS
   ========================================================================== */
:root {
  /* Brand */
  --asap-blue:        #4D6995;
  --asap-blue-dark:   #3C5478;  /* nav solid / hovers            */
  --asap-blue-deep:   #2E4160;  /* video band                    */
  --asap-red:         #EA0028;
  --asap-red-dark:    #C40022;

  /* Neutrals */
  --ink:              #16202F;
  --ink-soft:         #52607A;
  --line:             #E3E7ED;
  --bg:               #FFFFFF;
  --bg-alt:           #F5F7FA;
  --white:            #FFFFFF;

  /* Type */
  --font-head: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Layout */
  --nav-h:        96px;   /* transparent state, desktop */
  --nav-h-solid:  70px;   /* scrolled state, desktop    */
  --nav-h-mobile: 72px;
  --radius:       24px;
  --radius-sm:    16px;
  --radius-pill:  999px;

  /* Section rhythm */
  --section-y: clamp(4rem, 9vw, 8rem);

  /* Shadows */
  --shadow-sm: 0 6px 18px rgba(22, 32, 47, .08);
  --shadow-md: 0 18px 44px rgba(22, 32, 47, .14);
  --shadow-lg: 0 30px 70px rgba(22, 32, 47, .20);

  /* Motion */
  --ease: cubic-bezier(.22, .61, .36, 1);
}


/* ==========================================================================
   01 — BASE
   ========================================================================== */
* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;              /* never allow sideways scroll on phones */
  -webkit-font-smoothing: antialiased;
}

/* Lenis smooth scroll requirements (subset of lenis.css).
   NOTE: we deliberately omit lenis' `.lenis-smooth iframe {pointer-events:none}`
   rule so the Streamable video embed stays clickable. */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

/* Body scroll lock while the mobile menu is open */
body.is-locked { overflow: hidden; }

/* --- Section rhythm ------------------------------------------------------ */
.section { padding-block: var(--section-y); position: relative; }

.section-head { max-width: 46rem; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.section-head--center { margin-inline: auto; text-align: center; }

/* --- Headings ------------------------------------------------------------ */
h1, h2, h3, h4, .h-display { font-family: var(--font-head); font-weight: 600; line-height: 1.12; letter-spacing: -.01em; margin: 0 0 1rem; }

.h-display { font-size: clamp(1.9rem, 4vw, 3.1rem); }

/* Default eyebrow sits on a LIGHT background (accent red).
   Use .eyebrow--light on the blue/dark bands. */
.eyebrow {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--asap-red);
  margin: 0 0 .9rem;
}
.eyebrow--light { color: rgba(255, 255, 255, .8); }

.lead-text { color: var(--ink-soft); font-size: 1.05rem; margin-bottom: 1.75rem; }


/* ==========================================================================
   02 — REUSABLE COMPONENTS
   ========================================================================== */

/* --- Pill buttons -------------------------------------------------------- */
.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .72rem 1.6rem;
  border: 2px solid transparent;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  cursor: pointer;
  transition: background-color .25s var(--ease), color .25s var(--ease),
              border-color .25s var(--ease), transform .25s var(--ease);
}
.btn-pill:hover { transform: translateY(-2px); }

.btn-pill--accent  { background: var(--asap-red); color: #fff; }
.btn-pill--accent:hover { background: var(--asap-red-dark); color: #fff; }

.btn-pill--outline { border-color: var(--asap-blue); color: var(--asap-blue); background: transparent; }
.btn-pill--outline:hover { background: var(--asap-blue); color: #fff; }

.btn-pill--lg { padding: .95rem 2.2rem; font-size: 1.02rem; }

/* --- Arrow link ---------------------------------------------------------- */
.link-arrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 600; color: var(--asap-blue);
  border-bottom: 2px solid transparent;
  transition: border-color .25s var(--ease), gap .25s var(--ease);
}
.link-arrow::after { content: "→"; transition: transform .25s var(--ease); }
.link-arrow:hover { border-color: var(--asap-red); color: var(--asap-red); }
.link-arrow:hover::after { transform: translateX(4px); }

/* --- Round icon buttons (carousel arrows) -------------------------------- */
.circle-btn {
  width: 52px; height: 52px;
  display: inline-grid; place-items: center;
  border-radius: 50%;
  border: none;
  background: var(--asap-red);
  color: #fff;
  cursor: pointer;
  transition: background-color .25s var(--ease), transform .25s var(--ease);
}
.circle-btn:hover { background: var(--asap-red-dark); transform: scale(1.06); }
.circle-btn svg { width: 22px; height: 22px; }

/* --- Dots (active dot elongates) ----------------------------------------- */
.dots { display: flex; align-items: center; justify-content: center; gap: .5rem; }
.dot {
  width: 10px; height: 10px;
  padding: 0; border: none;
  border-radius: var(--radius-pill);
  background: rgba(22, 32, 47, .22);
  cursor: pointer;
  transition: width .35s var(--ease), background-color .35s var(--ease);
}
.dot.is-active { width: 34px; background: var(--asap-red); }
.dots--light .dot { background: rgba(255, 255, 255, .38); }
.dots--light .dot.is-active { background: #fff; }

/* --- Scroll reveal -------------------------------------------------------
   Elements start hidden ONLY when JS is available; GSAP animates them in.
   ------------------------------------------------------------------------- */
html.js [data-reveal] { opacity: 0; will-change: transform, opacity; }


/* ==========================================================================
   03 — PRELOADER
   ========================================================================== */
.preloader {
  position: fixed; inset: 0;
  z-index: 9999;
  background: var(--asap-blue);
  display: grid; place-items: center;
}
.preloader.is-done { opacity: 0; visibility: hidden; transition: opacity .5s var(--ease), visibility .5s; }

.preloader__inner { width: min(320px, 72vw); text-align: center; }
.preloader__logo { width: 100%; height: auto; margin: 0 auto 1.6rem; }

.preloader__bar {
  height: 3px;
  width: 100%;
  background: rgba(255, 255, 255, .25);
  border-radius: var(--radius-pill);
  overflow: hidden;
}
.preloader__fill { display: block; height: 100%; width: 0%; background: #fff; }

.preloader__count {
  margin-top: .85rem;
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .12em;
  color: rgba(255, 255, 255, .85);
}


/* ==========================================================================
   04 — NAVIGATION
   ========================================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 300;                       /* sits ABOVE the mobile overlay */
  background: transparent;
  transition: background-color .35s var(--ease), box-shadow .35s var(--ease), padding .35s var(--ease);
}
.nav__bar {
  display: flex; align-items: center; gap: 1rem;
  padding-block: calc((var(--nav-h) - 56px) / 2);
  padding-inline: clamp(1rem, 3vw, 2.5rem);
  transition: padding .35s var(--ease);
}

/* Scrolled state — solid ASAP blue, tighter, subtle shadow */
.nav.is-solid { background: var(--asap-blue); box-shadow: 0 4px 24px rgba(22, 32, 47, .18); }
.nav.is-solid .nav__bar { padding-block: calc((var(--nav-h-solid) - 46px) / 2); }
.nav.is-solid .nav__logo img { height: 46px; }

.nav__logo img { height: 56px; width: auto; transition: height .35s var(--ease); }

.nav__links { display: none; margin-inline: auto; gap: clamp(1rem, 2.2vw, 2.2rem); }
.nav__links a {
  color: #fff; font-weight: 500; font-size: .98rem;
  position: relative; padding-block: .25rem;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--asap-red);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav__links a:hover::after { transform: scaleX(1); }

.nav__right { display: flex; align-items: center; gap: .75rem; margin-left: auto; }
.nav__donate { display: none; }

/* --- Hamburger ----------------------------------------------------------- */
.burger {
  position: relative;
  width: 48px; height: 48px;
  display: grid; place-content: center; gap: 6px;
  background: transparent; border: none; cursor: pointer;
  padding: 0;
}
.burger span {
  display: block;
  width: 28px; height: 2.5px;
  background: #fff; border-radius: 2px;
  transition: transform .35s var(--ease), opacity .2s var(--ease);
}
/* Morph to X */
.burger.is-active span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.burger.is-active span:nth-child(2) { opacity: 0; }
.burger.is-active span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

/* --- Mobile fullscreen menu ---------------------------------------------- */
.mobile-menu {
  position: fixed; inset: 0;
  z-index: 200;
  background: var(--asap-blue);
  transform: translateY(-100%);
  opacity: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  transition: transform .5s var(--ease), opacity .45s var(--ease);
}
.mobile-menu.is-open { transform: translateY(0); opacity: 1; }

/* Red circular close button — sits just under the nav bar, top-right */
.mobile-menu__close {
  position: absolute;
  top: calc(var(--nav-h-mobile) + 22px);
  right: clamp(1rem, 4vw, 2rem);
  width: 52px; height: 52px;        /* >= 48x48 tap target */
  min-width: 48px; min-height: 48px;
  display: grid; place-items: center;
  border: none; border-radius: 50%;
  background: var(--asap-red);
  color: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .28);
  cursor: pointer;
  transition: background-color .25s var(--ease), transform .25s var(--ease);
}
.mobile-menu__close:hover { background: var(--asap-red-dark); transform: scale(1.06); }
.mobile-menu__close svg { width: 24px; height: 24px; fill: none; }

.mobile-menu__nav {
  min-height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: clamp(1.1rem, 4vw, 1.8rem);
  padding: calc(var(--nav-h-mobile) + 96px) 1.25rem 3.5rem;
  text-align: center;
}
.mobile-menu__link {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(2rem, 9vw, 3.4rem);
  line-height: 1.08;
  color: #fff;
  max-width: 100%;
  transition: color .25s var(--ease);
}
.mobile-menu__link:hover { color: rgba(255, 255, 255, .75); }
.mobile-menu__link--accent { color: var(--asap-red); }
.mobile-menu__link--accent:hover { color: #fff; }

/* Keep the nav chrome readable on top of the open overlay */
body.is-locked .nav { background: transparent; box-shadow: none; }

/* Desktop nav */
@media (min-width: 992px) {
  .nav__links  { display: flex; }
  .nav__donate { display: inline-flex; }
  .burger      { display: none; }
  .mobile-menu { display: none; }
}


/* ==========================================================================
   05 — HERO SLIDER
   ========================================================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--asap-blue-deep);
}
/* Use dynamic viewport height where supported (mobile browser chrome) */
@supports (height: 100svh) { .hero { height: 100svh; } }

.hero__slides { position: absolute; inset: 0; }
.hero__slide {
  position: absolute; inset: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.4s var(--ease);
  will-change: opacity, transform;
}
.hero__slide.is-active { opacity: 1; animation: kenburns 7.5s ease-out forwards; }

/* Slow Ken Burns zoom on the active slide */
@keyframes kenburns {
  from { transform: scale(1.0); }
  to   { transform: scale(1.12); }
}

.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 26, 43, .62) 0%, rgba(16, 26, 43, .30) 42%, rgba(16, 26, 43, .80) 100%),
    linear-gradient(90deg, rgba(46, 65, 96, .55) 0%, rgba(46, 65, 96, 0) 65%);
}

.hero__content { position: relative; z-index: 2; padding-top: var(--nav-h-mobile); }
.hero__copy { max-width: 46rem; color: #fff; }

.hero__title {
  font-size: clamp(2.2rem, 6.2vw, 4.6rem);
  color: #fff;
  margin-bottom: 1.1rem;
  text-shadow: 0 2px 26px rgba(0, 0, 0, .3);
}
.hero__sub {
  font-size: clamp(1rem, 1.7vw, 1.28rem);
  color: rgba(255, 255, 255, .92);
  max-width: 38rem;
  margin-bottom: 2rem;
}

.hero__dots {
  position: absolute;
  left: 50%; transform: translateX(-50%);
  bottom: clamp(1.5rem, 4vh, 3rem);
  z-index: 3;
  display: flex; gap: .55rem;
}
.hero__dots .dot { background: rgba(255, 255, 255, .45); }
.hero__dots .dot.is-active { background: var(--asap-red); width: 34px; }

@media (min-width: 992px) {
  .hero__content { padding-top: var(--nav-h); }
  .hero__dots { left: auto; right: clamp(2rem, 5vw, 4rem); transform: none; }
}


/* ==========================================================================
   06 — MARQUEE
   ========================================================================== */
.marquee {
  overflow: hidden;
  background: var(--bg-alt);
  border-block: 1px solid var(--line);
  padding-block: clamp(.9rem, 2vw, 1.4rem);
  white-space: nowrap;
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 34s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }

.marquee__group { display: flex; align-items: center; flex: 0 0 auto; }

.marquee__item {
  font-family: var(--font-head);
  font-size: clamp(1.05rem, 2.3vw, 1.75rem);
  font-weight: 500;
  color: var(--asap-blue);
  padding-inline: clamp(.8rem, 2vw, 1.6rem);
}
.marquee__sep {
  color: var(--asap-red);
  font-size: clamp(.55rem, 1.1vw, .8rem);
  transform: translateY(-.15em);
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }   /* exactly one duplicated group */
}


/* ==========================================================================
   07 — COUNTERS (social-problem statistics)
   ========================================================================== */
.stats { background: var(--asap-blue); color: #fff; }

.stat { text-align: center; padding-inline: .5rem; }
.stat__num {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(2.1rem, 5.2vw, 3.6rem);
  line-height: 1;
  color: #fff;
  margin-bottom: .6rem;
}
.stat__label {
  margin: 0;
  font-size: clamp(.85rem, 1.4vw, .98rem);
  color: rgba(255, 255, 255, .86);
  max-width: 17rem;
  margin-inline: auto;
}

/* Thin separators between stats on desktop */
@media (min-width: 992px) {
  .stats .col-lg-3 + .col-lg-3 .stat { border-left: 1px solid rgba(255, 255, 255, .22); }
}


/* ==========================================================================
   08 — OUR MISSION
   ========================================================================== */
.mission { background: var(--bg); }

.mission__media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;                 /* reserved space — prevents layout shift */
  background: var(--bg-alt);
}
.mission__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s var(--ease);
}
.mission__img.is-active { opacity: 1; }

.mission__copy .h-display { color: var(--ink); }


/* ==========================================================================
   09 — VIDEO OVERVIEW
   ========================================================================== */
.video { background: var(--asap-blue-deep); color: #fff; text-align: center; }

.video__head { margin-bottom: clamp(1.75rem, 4vw, 2.75rem); }
.video__logo { height: 62px; width: auto; margin: 0 auto 1.5rem; }
.video__title { color: #fff; margin: 0; }

.video__frame {
  max-width: 980px;
  margin-inline: auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #000;
}


/* ==========================================================================
   10 — BIG NUMBERS (impact)
   ========================================================================== */
.bignums { background: var(--bg-alt); }
.bignums .section-head { margin-inline: auto; text-align: center; }

.bignum { text-align: center; }
.bignum__value {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 1;
  color: var(--asap-blue);
  margin-bottom: .5rem;
}
.bignum__label { margin: 0; color: var(--ink-soft); font-size: .98rem; }

.bignums__note {
  margin: clamp(2rem, 4vw, 3rem) 0 0;
  text-align: center;
  font-size: .82rem;
  color: var(--ink-soft);
  opacity: .8;
}


/* ==========================================================================
   11 — ONLY AT ASAP (pinned timeline + scrolling cards)
   ========================================================================== */
.onlyasap { background: var(--bg); }

.onlyasap__sticky { padding-top: 1rem; }

/* --- Vertical timeline --------------------------------------------------- */
.timeline {
  position: relative;
  list-style: none;
  margin: clamp(1.75rem, 4vw, 2.5rem) 0 2rem;
  padding: 0;
}

/* Track + animated fill. Geometry (top/height) is set by JS from the
   first and last dot so the line always spans dot-centre to dot-centre. */
.timeline__track {
  position: absolute;
  left: 9px;
  width: 2px;
  background: rgba(77, 105, 149, .22);
  border-radius: 2px;
}
.timeline__progress {
  display: block;
  width: 100%; height: 0%;
  background: var(--asap-red);
  border-radius: 2px;
  transition: height .5s var(--ease);
}

.timeline__step {
  position: relative;
  padding-left: 2.6rem;
  padding-bottom: clamp(1.4rem, 3vw, 2.2rem);
}
.timeline__step:last-child { padding-bottom: 0; }

.timeline__dot {
  position: absolute;
  left: 0; top: .28em;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(77, 105, 149, .35);
  transition: background-color .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
}
.timeline__label {
  font-family: var(--font-head);
  font-size: clamp(1.25rem, 2.6vw, 1.7rem);
  font-weight: 600;
  color: rgba(22, 32, 47, .35);
  transition: color .35s var(--ease);
}

/* Active step */
.timeline__step.is-active .timeline__label { color: var(--asap-blue); }
.timeline__step.is-active .timeline__dot {
  background: var(--asap-red);
  border-color: var(--asap-red);
  transform: scale(1.12);
}

/* --- Right-hand cards ---------------------------------------------------- */
.onlyasap__cards { display: flex; flex-direction: column; }

.oacard { position: relative; margin-bottom: clamp(2.5rem, 7vh, 6rem); }
.oacard:last-child { margin-bottom: 0; }

.oacard__img {
  width: 100%;
  height: auto;                       /* beat the img height attribute so... */
  aspect-ratio: 4 / 5;                /* ...this reserved ratio actually applies */
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  background: var(--bg-alt);
}
.oacard__info {
  position: relative;
  margin: -3.5rem clamp(1rem, 4%, 2.5rem) 0;
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-sm);
}
.oacard__title { font-size: 1.45rem; margin: 0 0 .25rem; color: var(--ink); }
.oacard__teaser { margin: 0; color: var(--ink-soft); font-size: .95rem; }


/* ==========================================================================
   12 — ASAP IN ACTION (oval-card carousel)
   ========================================================================== */
.action { background: var(--bg-alt); overflow: hidden; }

.action__viewport { overflow: hidden; padding-block: 1rem 2.5rem; }
.action__track {
  display: flex;
  gap: clamp(1rem, 2.4vw, 2rem);
  will-change: transform;
  transition: transform .7s var(--ease);
  padding-inline: 1rem;
}

.acard {
  flex: 0 0 auto;
  width: min(380px, 74vw);
  opacity: .45;
  transform: scale(.88);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.acard__media {
  border-radius: 190px / 120px;        /* oval-ish rounded card */
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--asap-blue);
  aspect-ratio: 4 / 5;                 /* reserved space — prevents layout shift */
}
.acard__media img { width: 100%; height: 100%; object-fit: cover; }

/* Centre card: full opacity, scaled up, caption card revealed */
.acard.is-active { opacity: 1; transform: scale(1); }

.acard__info {
  margin: -2.4rem auto 0;
  width: min(84%, 20rem);
  background: #fff;
  border-radius: var(--radius-sm);
  padding: .9rem 1.1rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
  position: relative;
}
.acard.is-active .acard__info { opacity: 1; transform: translateY(0); }

.acard__caption {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
  margin: 0;
}

.action__controls {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(1rem, 3vw, 2rem);
  margin-top: .5rem;
}


/* ==========================================================================
   13 — REVIEWS
   ========================================================================== */
.reviews { background: var(--asap-blue); color: #fff; text-align: center; }

.reviews__mark {
  width: 76px; height: 76px;
  margin: 0 auto clamp(1.5rem, 4vw, 2.5rem);
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .45);
  display: grid; place-items: center;
}
.reviews__mark span {
  font-family: var(--font-head);
  font-size: 3.4rem;
  line-height: 1;
  color: #fff;
  transform: translateY(.22em);
}

/* Stacked slides — grid keeps the tallest quote's height reserved */
.reviews__stage { display: grid; max-width: 54rem; margin-inline: auto; }
.review {
  grid-area: 1 / 1;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity .55s var(--ease), transform .55s var(--ease), visibility .55s;
}
.review.is-active { opacity: 1; visibility: visible; transform: translateY(0); }

.review__quote {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(1.15rem, 2.5vw, 1.85rem);
  line-height: 1.4;
  color: #fff;
  margin: 0 0 1.4rem;
}
.review__author {
  font-style: normal;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .8);
}

.reviews .dots { margin-top: clamp(2rem, 5vw, 3rem); }


/* ==========================================================================
   14 — REQUEST CTA (pre-footer band)
   ========================================================================== */
.cta {
  position: relative;
  display: grid; place-items: center;
  min-height: clamp(360px, 52vh, 520px);
  padding-block: clamp(3.5rem, 8vw, 6rem);
  text-align: center;
  color: #fff;
  /* Placeholder band image — swap for the final asset when supplied */
  background: var(--asap-blue-deep) url('/assets/img/hero-2.webp') center / cover no-repeat;
  background-attachment: scroll;
}
.cta__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20, 30, 48, .70), rgba(20, 30, 48, .78));
}
.cta__inner { position: relative; z-index: 2; }

.cta__title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(2rem, 5.4vw, 3.6rem);
  color: #fff;
  margin-bottom: .75rem;
}
.cta__sub { color: rgba(255, 255, 255, .88); margin-bottom: 2rem; }


/* ==========================================================================
   15 — FOOTER (compact)
   ========================================================================== */
.footer {
  position: relative;
  color: #fff;
  background: var(--asap-blue-deep) url('/assets/img/footer-bg.webp') center / cover no-repeat;
  padding-block: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
}
.footer__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(16, 24, 39, .82), rgba(16, 24, 39, .92));
}
.footer__inner { position: relative; z-index: 2; }

.footer__logo { height: 56px; width: auto; margin-bottom: 1rem; }
.footer__legal { font-size: .78rem; color: rgba(255, 255, 255, .62); max-width: 22rem; margin: 0; line-height: 1.55; }

.footer__heading { font-size: .98rem; color: rgba(255, 255, 255, .92); margin-bottom: .9rem; max-width: 26rem; }

.footer__form { display: flex; flex-wrap: wrap; gap: .6rem; }
.footer__input {
  flex: 1 1 14rem;
  min-width: 0;
  padding: .72rem 1.1rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, .35);
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-size: .95rem;
}
.footer__input::placeholder { color: rgba(255, 255, 255, .55); }
.footer__input:focus { outline: none; border-color: #fff; background: rgba(255, 255, 255, .14); }

.footer__formnote { font-size: .8rem; color: rgba(255, 255, 255, .7); margin: .6rem 0 0; min-height: 1.2em; }

.footer__social { display: flex; gap: .55rem; list-style: none; margin: 0 0 1.1rem; padding: 0; flex-wrap: wrap; }
.footer__social a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  transition: background-color .25s var(--ease), transform .25s var(--ease);
}
.footer__social a:hover { background: var(--asap-red); transform: translateY(-2px); }
.footer__social svg { width: 19px; height: 19px; }

.footer__links { display: flex; gap: .6rem; font-size: .9rem; color: rgba(255, 255, 255, .8); }
.footer__links a:hover { color: #fff; text-decoration: underline; }

.footer__bottom {
  margin-top: clamp(1.75rem, 4vw, 2.5rem);
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, .16);
  font-size: .82rem;
  color: rgba(255, 255, 255, .62);
}
.footer__bottom p { margin: 0; }

/* Subtle white tree/skyline silhouette strip along the very bottom */
.footer__silhouette {
  position: relative; z-index: 2;
  height: 26px;
  background:
    radial-gradient(circle at 10% 100%, rgba(255,255,255,.10) 0 18px, transparent 19px),
    radial-gradient(circle at 26% 100%, rgba(255,255,255,.10) 0 24px, transparent 25px),
    radial-gradient(circle at 48% 100%, rgba(255,255,255,.10) 0 16px, transparent 17px),
    radial-gradient(circle at 70% 100%, rgba(255,255,255,.10) 0 26px, transparent 27px),
    radial-gradient(circle at 90% 100%, rgba(255,255,255,.10) 0 20px, transparent 21px);
}


/* ==========================================================================
   16 — REDUCED MOTION
   Kill the heavy stuff; everything stays readable and usable.
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html.js [data-reveal] { opacity: 1 !important; transform: none !important; }

  .hero__slide.is-active { animation: none; transform: none; }
  .marquee__track { animation: none; }
  .action__track { transition: none; }

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