/* =========================================
   SKYHOP GLOBAL — AKARU-INSPIRED REDESIGN
   ========================================= */

:root {
  --navy:       #003B71;
  --navy-deep:  #002855;
  --amber:      #FF9E16;
  --amber-dark: #e08800;
  --sky:        #40ADE2;
  --sky-light:  #b8dff3;
  --warm:       #D8D1CA;
  --sage:       #798e7b;
  --cream:      #f1efeb;
  --cream-deep: #e8e2da;
  --white:      #ffffff;
  --black:      #0e0e0e;
  --text:       #1a1a2e;
  --text-mid:   #5a5a6a;
  --text-light: #8a8a9a;

  --font-display: 'Raleway', 'Gotham', 'Montserrat', sans-serif;
  --font-sans:    'Gotham', 'Montserrat', sans-serif;
  --font-serif:   'Raleway', 'Gotham', 'Montserrat', sans-serif;

  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-akaru: cubic-bezier(0.165, 0.84, 0.44, 1);
  --t:          0.5s;
  --t-slow:     0.8s;

  --nav-h: 68px;
  --max-w: 1360px;
  --gap:   clamp(2rem, 4vw, 5rem);
  --r:     6px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.6;
  scrollbar-width: none;
  padding-bottom: 48px;
}

body::-webkit-scrollbar {
  display: none;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
  border-radius: 4px;
}

.circle-btn:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
}

/* ---- COMMON ELEMENTS ---- */
.eyebrow {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.5rem;
}
.eyebrow--light { color: var(--amber); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 6.5rem);
  font-weight: 400;
  line-height: 0.92;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 2rem;
}
.section-title--white { color: var(--white); }
.section-title--center { text-align: center; }

.mega-heading {
  font-family: var(--font-display);
  font-size: clamp(6rem, 14vw, 14rem);
  font-weight: 400;
  line-height: 1;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
  font-variant-numeric: lining-nums proportional-nums;
}

.mega-sub {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-mid);
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.body-text {
  font-size: 0.95rem;
  line-height: 1.78;
  color: var(--text-mid);
  font-weight: 500;
  margin-bottom: 1.25rem;
  max-width: 540px;
}
.body-text--faded { color: rgba(255,255,255,0.6); }
.body-text--center { text-align: center; margin-left: auto; margin-right: auto; }

.editorial-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 1.8vw, 1.6rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text);
  line-height: 1.55;
  max-width: 520px;
}

.thin-line {
  width: 100%;
  height: 1px;
  background: rgba(0,0,0,0.1);
}

/* ---- STAT ROW ---- */
.stat-row {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.stat-row--inline {
  margin-top: 0.5rem;
  padding-top: 0;
  border-top: none;
  margin-bottom: 2rem;
}
.stat-item__n {
  display: block;
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: #fc9c1b;
  line-height: 1;
}
.stat-item__l {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 0.3rem;
}

/* ---- CIRCLE BUTTON ---- */
.circle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  flex-shrink: 0;
}
.circle-btn svg { width: 16px; height: 16px; }
.circle-btn--amber { background: var(--amber); color: var(--white); }
.circle-btn--sky   { background: var(--sky);   color: var(--white); }
.circle-btn--warm  { background: var(--warm);  color: var(--navy); }
.circle-btn--navy  { background: var(--navy);  color: var(--white); }
.circle-btn--sm { width: 32px; height: 32px; }
.circle-btn--sm svg { width: 12px; height: 12px; }
.circle-btn--xs { width: 26px; height: 26px; }
.circle-btn--xs svg { width: 10px; height: 10px; }
.circle-btn--lg { width: 56px; height: 56px; }
.circle-btn--lg svg { width: 22px; height: 22px; }
.circle-btn:hover { transform: scale(1.12); }

.circle-link {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  transition: gap 0.3s var(--ease);
}
.circle-link:hover { gap: 1.2rem; }
.circle-link--light { color: var(--white); }
.circle-link--lg { font-size: 1rem; gap: 1.2rem; }
.circle-link--lg:hover { gap: 1.6rem; }

/* ---- LINE ITEM (Akaru award-list style) ---- */
.line-item {
  display: block;
}
.line-item__top {
  width: 100%;
  height: 1px;
  background: rgba(0,0,0,0.1);
}
.line-item__content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.6rem 0;
  transition: padding-left 0.4s var(--ease);
}
.line-item--hover:hover .line-item__content {
  padding-left: 1rem;
}
.line-item--compact .line-item__content {
  padding: 1rem 0;
  gap: 1rem;
}
.line-item__n {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--amber);
  min-width: 50px;
  flex-shrink: 0;
}
.line-item__cat {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  min-width: 100px;
  flex-shrink: 0;
}
.line-item__name {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  flex-shrink: 0;
}
.line-item__desc {
  font-size: 0.85rem;
  color: var(--text-light);
  flex: 1;
}
.line-item .circle-btn {
  margin-left: auto;
}

/* ---- SCROLL REVEAL ---- */
.reveal-up.js-reveal, .reveal-left.js-reveal, .reveal-right.js-reveal {
  opacity: 0;
  transition: opacity 1s var(--ease-akaru), transform 1s var(--ease-akaru);
  will-change: opacity, transform;
}
.reveal-up.js-reveal    { transform: translateY(60px); }
.reveal-left.js-reveal  { transform: translateX(-60px); }
.reveal-right.js-reveal { transform: translateX(60px); }

.reveal-up.in-view,
.reveal-left.in-view,
.reveal-right.in-view {
  opacity: 1;
  transform: translate(0, 0);
}

.delay-1 { transition-delay: 0.12s !important; }
.delay-2 { transition-delay: 0.24s !important; }
.delay-3 { transition-delay: 0.36s !important; }
.delay-4 { transition-delay: 0.48s !important; }
.delay-5 { transition-delay: 0.60s !important; }
.delay-6 { transition-delay: 0.72s !important; }

@media (prefers-reduced-motion: reduce) {
  .reveal-up.js-reveal, .reveal-left.js-reveal, .reveal-right.js-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .hero-nav, .hero__brand, .hero__bottom {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .hero__parallax-logo {
    transform: none !important;
  }
  .hero__parallax-map {
    transform: none !important;
  }
  .mosaic__img--main, .mosaic__block--sky, .mosaic__img--small {
    transform: none !important;
  }
  .split-line__inner {
    transform: none !important;
    transition: none !important;
  }
  .img-reveal, .img-reveal--left, .img-reveal--right {
    clip-path: none !important;
    transition: none !important;
  }
  .page-loader { display: none !important; }
  .scroll-bar { display: none !important; }
  html { scroll-behavior: auto; }
}

/* ==============================
   HERO — SCROLL SCENE (parallax wrapper)
   ============================== */
.hero-scene {
  position: relative;
  height: 300vh;
}

/* ==============================
   HERO — AKARU SPLIT LAYOUT
   ============================== */
.hero {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: block;
  background: var(--cream);
}

/* ---- Rotation cross-fade ----
 * Added during device orientation changes so parallax elements glide to
 * their recalculated positions instead of snapping. The class is removed
 * after ~300 ms by script.js so normal scroll stays 1:1 responsive.
 */
.hero--rotating #heroParallaxBrand,
.hero--rotating #heroParallaxStats,
.hero--rotating #heroParallaxMap,
.hero--rotating #mosaicSky,
.hero--rotating #mosaicSmall,
.hero--rotating #heroSplashLogo,
.hero--rotating #innovationStrap,
.hero--rotating #heroNav,
.hero--rotating .hero__bottom {
  transition: transform 200ms ease-out, opacity 200ms ease-out;
}

/* ---- PARALLAX ELEMENTS ---- */

/* Logo lives inside .hero__brand — in-flow, above the headline */
.hero__parallax-logo {
  display: block;
  width: clamp(160px, 24vw, 340px);
  margin-bottom: 1.75rem;
  pointer-events: none;
  filter: drop-shadow(0 6px 28px rgba(0,59,113,0.16));
}

/* Background video: fills the hero behind everything */
.hero__bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  transition: opacity 1.2s ease;
}
.hero__bg-video--b {
  opacity: 0;
}
/* ---- Scroll hint indicator ---- */
.hero__scroll-hint {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  color: #fff;
  opacity: 1;
  transition: opacity 0.6s ease;
  pointer-events: none;
  mix-blend-mode: normal;
}
.hero__scroll-hint.is-hidden {
  opacity: 0;
}
.hero__scroll-hint__label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}
.hero__scroll-hint__arrow {
  color: var(--amber);
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.35));
  animation: scrollBounce 1.6s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%       { transform: translateY(6px); opacity: 0.6; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__scroll-hint__arrow { animation: none; }
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0.38) 50%, rgba(255,255,255,0.20) 100%),
    linear-gradient(180deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.30) 100%);
}

/* Splash logo: centered on the hero at rest, fades on scroll */
.hero__splash-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  will-change: opacity, transform;
}
.hero__splash-logo img {
  width: clamp(400px, 60vw, 840px);
  filter: drop-shadow(0 8px 40px rgba(0,59,113,0.22));
}

/* City names column: left side, behind content, slides in from the left */
.hero__cities {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: clamp(260px, 32vw, 420px);
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  padding: 3rem 2rem 3rem 3rem;
  display: flex;
  align-items: center;
}
.hero__cities-text {
  font-family: 'Raleway', 'Gotham', 'Montserrat', sans-serif;
  font-size: clamp(1.3rem, 2vw, 1.9rem);
  line-height: 1.65;
  letter-spacing: 0.08em;
  color: rgba(91, 185, 229, 0.28);
  text-transform: uppercase;
  text-align: left;
  word-spacing: 0.5em;
  hyphens: none;
}

/* Keep parallax-map alias for any leftover references */
.hero__parallax-map {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}

.hero__left {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  text-align: right;
  padding: 2.5rem 3.5rem calc(44px + 1.5rem);
  z-index: 4;
  pointer-events: none;
}
.hero__left > * { pointer-events: auto; }

.hero-nav {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

.hero-nav__item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  transition: opacity 0.3s;
}
.hero-nav__item:hover { opacity: 0.75; }

.hero-nav__label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  text-shadow: none;
}

.hero__brand-anchor {
  position: absolute;
  top: calc(17% + 30px);
  left: clamp(180px, 22vw, 290px);
  transform: translate(-50%, -50%);
  z-index: 4;
  pointer-events: none;
}
.hero__stats-anchor {
  position: absolute;
  bottom: calc(44px + 1.5rem);
  right: 3.5rem;
  z-index: 12;
  pointer-events: none;
  max-width: min(640px, 55vw);
}
.hero__stats-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  pointer-events: auto;
  opacity: 0;
  will-change: opacity, transform;
}
.hero__brand {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0;
  pointer-events: auto;
}

.hero__headline {
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--navy);
  text-shadow: none;
  margin: 0 0 1.5rem;
  will-change: opacity, transform;
}

.hero__stats {
  display: flex;
  gap: clamp(2rem, 4vw, 4rem);
  margin-bottom: 1.75rem;
  align-items: flex-start;
}
.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
}
.hero__stat-n {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.4rem, 3.9vw, 3.6rem);
  font-weight: 800;
  line-height: 1;
  color: #ff9e1a;
  border: none;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.45);
  white-space: nowrap;
}
.hero__stat-l {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.35;
  text-shadow: none;
  white-space: nowrap;
}

.hero__tagline {
  font-family: 'Raleway', 'Gotham', 'Montserrat', sans-serif;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.43rem, 1.8vw, 1.65rem);
  line-height: 1.7;
  color: var(--navy);
  text-shadow: none;
  max-width: 620px;
  padding-bottom: 3rem;
}

.hero__bottom {
  padding-top: 1rem;
  opacity: 0;
  transform: translateY(24px);
  will-change: opacity, transform;
}

.hero__bottom-line {
  width: 100%;
  height: 1px;
  background: rgba(0,0,0,0.12);
  margin-bottom: 1rem;
}

.hero__socials { display: flex; gap: 2rem; }

.hero__social-link {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-mid);
  transition: color 0.3s;
}
.hero__social-link:hover { color: var(--navy); }

/* HERO RIGHT — MOSAIC */
.hero__right {
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.hero__mosaic {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}

.mosaic__block { position: relative; }
.mosaic__block--sky   {
  background: var(--sky-light);
  grid-column: 2/3;
  grid-row: 1/2;
}
.mosaic__block--amber { display: none; }

.mosaic__img { position: relative; overflow: hidden; }
.mosaic__img img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; }
.mosaic__img--main {
  grid-column: 1/2;
  grid-row: 1/3;
}
.mosaic__img--small {
  grid-column: 2/3;
  grid-row: 2/3;
}

/* ==============================
   STICKY NAV
   ============================== */
/* ── Floating pill nav ── */
.sticky-nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease-out);
  width: auto;
  max-width: calc(100vw - 3rem);
}
.sticky-nav.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.sticky-nav__pill {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: rgba(0, 30, 65, 0.72);
  backdrop-filter: blur(22px) saturate(1.6);
  -webkit-backdrop-filter: blur(22px) saturate(1.6);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  padding: 0.45rem 1rem 0.45rem 0.75rem;
  box-shadow:
    0 8px 40px rgba(0,0,0,0.35),
    0 1px 0 rgba(255,158,26,0.35) inset,
    0 0 0 1px rgba(255,255,255,0.04) inset;
  white-space: nowrap;
}

.sticky-nav__logo {
  flex-shrink: 0;
  line-height: 0;
}
.sticky-nav__logo img { height: 30px; width: auto; }

.sticky-nav__divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.18);
  margin: 0 0.4rem;
  flex-shrink: 0;
}

.sticky-nav__links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}
.sticky-nav__links a {
  position: relative;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  padding: 0.4rem 0.75rem;
  border-radius: 100px;
  transition: color 0.25s, background 0.25s;
}
.sticky-nav__links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 16px;
  height: 2px;
  background: var(--amber);
  border-radius: 2px;
  transition: transform 0.25s var(--ease-out);
}
.sticky-nav__links > a:last-child { padding-right: 1.8rem !important; }
.sticky-nav__links a:hover { color: #fff; }
.sticky-nav__links a:hover::after { transform: translateX(-50%) scaleX(1); }
.sticky-nav__links a.active { color: #fff; }
.sticky-nav__links a.active::after { transform: translateX(-50%) scaleX(1); }
.sticky-nav__links a.sticky-nav__link--active,
.sticky-nav__links .nav-dropdown__menu a.sticky-nav__link--active { color: var(--amber) !important; }
.sticky-nav__mobile-panel a.sticky-nav__link--active { color: var(--amber) !important; }

.sticky-nav__cta {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--amber);
  color: var(--navy) !important;
  padding: 0.45rem 1.1rem;
  border-radius: 100px;
  margin-left: 0.3rem;
  transition: background 0.25s, transform 0.2s;
  flex-shrink: 0;
}
.sticky-nav__cta:hover {
  background: var(--amber-dark);
  transform: scale(1.04);
}

.sticky-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 10px;
}
.sticky-nav__hamburger span {
  display: block; width: 20px; height: 1.5px;
  background: #fff; border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.sticky-nav__hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.sticky-nav__hamburger.open span:nth-child(2) { opacity: 0; }
.sticky-nav__hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile panel — centered card below the pill */
.sticky-nav__mobile-panel {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  background: rgba(0, 30, 65, 0.96);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 1rem 1.5rem 1.25rem;
  margin-top: 10px;
  opacity: 0;
  transform: translateY(-8px) scale(0.97);
  transition: opacity 0.3s ease, transform 0.3s var(--ease-out);
  pointer-events: none;
}
.sticky-nav__mobile-panel.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.sticky-nav__mobile-panel a {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 0.55rem 2rem;
  width: 100%;
  text-align: center;
  border-radius: 100px;
  transition: color 0.2s, background 0.2s;
}
.sticky-nav__mobile-panel a:hover { color: #fff; background: rgba(255,255,255,0.07); }
.sticky-nav__mobile-panel .sticky-nav__cta {
  margin: 0.5rem 0 0;
  width: 100%;
  text-align: center;
  display: block;
}

/* ==============================
   OUR STORY
   ============================== */
.s-story {
  padding: calc(var(--gap) * 1.5) 0;
  background: var(--cream);
}

.s-story__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gap);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.s-story__img-stack { position: relative; }

.s-story__img-main {
  width: 100%;
  height: 520px;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.s-story__accent-block {
  position: absolute;
  width: 140px; height: 140px;
  background: var(--sage);
  bottom: -24px; right: -24px;
  z-index: 0;
  opacity: 0.6;
}

.s-story__img-float {
  position: absolute;
  bottom: -40px; left: -40px;
  width: 240px; height: 240px;
  object-fit: cover;
  object-position: center 20%;
  border: 5px solid var(--cream);
  box-shadow: 0 16px 40px rgba(0,0,0,.15);
  z-index: 3;
}

/* ==============================
   VALUES — LINE LIST
   ============================== */
.s-values {
  position: relative;
  overflow: hidden;
  background: #e8eef5;
  padding: calc(var(--gap) * 1.5) 0;
}

/* ── Post-hero entrance: section starts hidden and fades up when it enters the viewport ── */
.s-values--entrance {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.s-values--entrance.post-hero-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Full-bleed background video */
.s-values__bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}

/* Light overlay — like the hero */
.s-values__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.78) 0%, rgba(240,245,255,0.62) 100%);
  z-index: 1;
}

/* ── Scroll-progress driven elements — start hidden ── */
#values .s-values__header,
#values .value-flag-item,
#coverage .cov-group {
  opacity: 0;
  will-change: opacity, transform;
}

/* City names column — mirrors hero, adapted for light overlay */
.s-values__cities {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: clamp(260px, 32vw, 420px);
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
  padding: 3rem 3rem 3rem 2rem;
  display: flex;
  align-items: center;
}
.s-values__cities-text {
  font-family: 'Raleway', 'Gotham', 'Montserrat', sans-serif;
  font-size: clamp(1.3rem, 2vw, 1.9rem);
  line-height: 1.65;
  letter-spacing: 0.08em;
  color: rgba(0, 59, 113, 0.07);
  text-transform: uppercase;
  text-align: right;
  word-spacing: 0.5em;
  hyphens: none;
}

.s-values__inner {
  position: relative;
  z-index: 3;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gap);
}

.s-values__content {
  display: flex;
  flex-direction: column;
}

/* Header text — navy on light overlay */
.s-values__header { margin-bottom: 2.5rem; }
.s-values__header .eyebrow { color: var(--navy); }
.s-coverage__content .eyebrow { color: #ffffff; }
.s-values__header .section-title { color: var(--navy); }
.s-values__header .body-text { color: var(--navy); max-width: 560px; }

/* ── Chevron flags — bleed-left, compact, hover-reveal ── */
.s-values__flags {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-left: calc(-1 * var(--gap));  /* bleed past container padding */
  margin-bottom: 0;
}

/* Wrapper holds the flag + the floating tip */
.value-flag-item {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: -12px;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.28));
  transition: filter 0.35s ease, transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1);
  transform-origin: left center;
}
.value-flag-item:last-child { margin-bottom: 0; }

/* Stack flags so the first sits on top */
.value-flag-item:nth-child(1) { z-index: 5; }
.value-flag-item:nth-child(2) { z-index: 4; }
.value-flag-item:nth-child(3) { z-index: 3; }
.value-flag-item:nth-child(4) { z-index: 2; }
.value-flag-item:nth-child(5) { z-index: 1; }

.value-flag-item:hover {
  z-index: 10;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,0.38));
  transform: scale(1.04);
}

.value-flag {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.25rem 4.5rem 1.25rem 2.4rem;
  clip-path: polygon(0 0, calc(100% - 44px) 0, 100% 50%, calc(100% - 44px) 100%, 0 100%);
  cursor: pointer;
  width: clamp(320px, 50vw, 580px);
  flex-shrink: 0;
}

.value-flag__num {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  opacity: 0.5;
  color: #fff;
  flex-shrink: 0;
}

/* Label container — flex column: eyebrow name sits above description */
.value-flag__label {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.25rem;
  flex: 1;
  min-width: 0;
}

/* Value name — always visible as a small faint eyebrow */
.value-flag__name {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0.5;
  line-height: 1;
}

/* Description — always visible beneath the eyebrow */
.value-flag__desc {
  font-family: var(--font-sans);
  font-size: clamp(0.76rem, 1.05vw, 0.92rem);
  font-weight: 500;
  color: rgba(255,255,255,0.92);
  line-height: 1.5;
}

.value-flag__caption {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.03em;
  line-height: 1.3;
  margin-top: 0.2rem;
}

/* Per-flag gradient colours — matched to brand reference */
.value-flag--1 { background: linear-gradient(105deg, #002a52 0%, #003B71 100%); }
.value-flag--2 { background: linear-gradient(105deg, #e08800 0%, #FF9E1A 100%); }
.value-flag--3 { background: linear-gradient(105deg, #3ea8d8 0%, #5BB8E5 100%); }
.value-flag--4 { background: linear-gradient(105deg, #72706a 0%, #8B8880 100%); }
.value-flag--5 { background: linear-gradient(105deg, #aabb28 0%, #C5D435 100%); }

.s-values__photos {
  display: flex;
  gap: 1.25rem;
}

.s-values__photo { object-fit: cover; }
.s-values__photo--wide { flex: 2; height: 360px; }
.s-values__photo--tall { flex: 1; height: 360px; object-position: center 20%; }

/* ==============================
   PEOPLE — EDITORIAL
   ============================== */
.s-people {
  background: var(--cream);
  padding: calc(var(--gap) * 1.5) 0;
}

.s-people__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gap);
}

.s-people__editorial {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  margin-bottom: 4rem;
  align-items: center;
}

.s-people__quote {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.s-people__mosaic {
  display: flex;
  gap: 1rem;
}

.s-people__col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.s-people__col--right { padding-top: 4rem; }

.s-people__card {
  overflow: hidden;
  position: relative;
  border-radius: 4px;
}
.s-people__card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center 15%;
  transition: transform 0.7s var(--ease);
}
.s-people__card:hover img { transform: scale(1.04); }

.s-people__card--tall img { height: 420px; }

.s-people__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  padding-top: 2rem;
}
.s-people__bottom-inner .body-text { margin-bottom: 0; }

/* ==============================
   TECHNOLOGY — EDITORIAL SPLIT
   ============================== */
.s-tech {
  background: var(--cream);
  padding: calc(var(--gap) * 1.5) 0;
}
.s-tech .split-line__inner { color: var(--navy); }
.s-values .split-line__inner { color: var(--navy); }

.s-tech__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gap);
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.s-tech__left {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}

.s-tech__spline {
  overflow: hidden;
  margin-bottom: 2rem;
  border-radius: 4px;
  background: transparent;
}
.s-tech__spline spline-viewer {
  display: block;
  width: 100%;
  height: 546px;
  background: transparent;
}
.s-tech__spline spline-viewer::part(canvas) {
  background: transparent !important;
}

.s-tech__img-main {
  overflow: hidden;
  margin-bottom: 2rem;
}
.s-tech__img-main img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center 20%;
}

.s-tech__features { margin-bottom: 2.5rem; }

.s-tech__img-float {
  position: relative;
  display: inline-block;
}
.s-tech__img-float img {
  width: 280px;
  height: 200px;
  object-fit: cover;
  object-position: center 30%;
}

.s-tech__accent-block {
  position: absolute;
  width: 100px; height: 100px;
  background: var(--sage);
  opacity: 0.4;
  top: -16px; right: -16px;
  z-index: -1;
}

/* ==============================
   COVERAGE
   ============================== */
.s-coverage {
  position: relative;
  overflow: hidden;
  padding: calc(var(--gap) * 3) 0;
}

.s-coverage__bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}

.s-coverage__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,20,45,0.72) 0%, rgba(0,20,45,0.55) 100%);
  z-index: 1;
}

.s-coverage__inner {
  position: relative;
  z-index: 3;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gap);
}

.s-coverage__content {
  max-width: 680px;
}
.s-coverage__content .mega-sub { color: #ffffff; }
.s-coverage__content .stat-item__l { color: #ffffff; }
.s-coverage__content .body-text { color: #ffffff; font-weight: 500; }
.s-coverage__content .circle-link { color: #ffffff; }

/* ==============================
   WELLNESS — EDITORIAL SPLIT
   ============================== */
.s-wellness {
  position: relative;
  overflow: hidden;
  padding: calc(var(--gap) * 2.5) 0;
}
.s-wellness .split-line__inner { color: var(--navy); }

.s-wellness__bg {
  position: absolute;
  inset: 0;
}
.s-wellness__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.s-wellness__img-vid {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.s-wellness__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,158,26,0.98) 0%, rgba(255,158,26,0.96) 100%);
}

.s-wellness__inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gap);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

/* Light text overrides for wellness dark background */
.s-wellness .eyebrow { color: var(--navy); opacity: 0.75; }
.s-wellness .body-text { color: rgba(0,20,60,0.85); }
.s-wellness .line-item__top { border-color: rgba(0,20,60,0.25); }
.s-wellness .line-item__name { color: var(--navy); }
.s-wellness .line-item--compact:hover .line-item__name { color: #fff; }

.s-wellness__img {
  position: relative;
  overflow: visible;
  aspect-ratio: 3/4;
}
.s-wellness__img img,
.s-wellness__img video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}


.s-wellness__accent-block {
  position: absolute;
  width: 100px; height: 100px;
  background: #003b71;
  bottom: -16px; right: -16px;
  z-index: -1;
}

.s-wellness__items { margin-top: 0.5rem; }

/* ==============================
   DRIVING HOPE FORWARD — CAMPAIGN BADGE
   ============================== */
.s-hope__badge {
  display: flex;
  align-items: center;
  justify-content: center;
}
.s-hope__badge-inner {
  background: var(--navy);
  color: #fff;
  padding: 3rem 2.5rem;
  border-radius: var(--r);
  text-align: center;
  width: 100%;
  max-width: 420px;
}
.s-hope__badge-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  display: block;
  margin-bottom: 1.4rem;
}
.s-hope__badge-org {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 0;
}
.s-hope__badge-divider {
  width: 40px;
  height: 2px;
  background: var(--amber);
  margin: 1.75rem auto;
  opacity: 0.6;
}
.s-hope__badge-stat {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}
.s-hope__badge-n {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 5vw, 5rem);
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
}
.s-hope__badge-l {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-align: left;
}

/* Driving Hope Forward — image background + layout overrides */
#driving-hope { padding: 2rem 0 0 !important; }
#driving-hope .s-wellness__overlay { background: transparent; }
#driving-hope .s-wellness__bg-img {
  object-fit: fill;
  object-position: unset;
  width: 100%;
  height: 100%;
}

/* Override s-wellness__inner grid for the mosaic layout */
.s-hope__inner {
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  justify-content: center;
}

/* ── Left: editorial photo mosaic ── */
.s-hope__mosaic {
  position: relative;
  height: 320px;
  overflow: visible;
}

/* Main photo — left anchor, straight */
.s-hope__mosaic-main {
  position: absolute;
  left: 0; top: 0;
  width: 58%;
  height: 100%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.45);
  z-index: 1;
}
.s-hope__mosaic-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.s-hope__mosaic-tag {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0.5rem 0.9rem;
  background: rgba(0,15,45,0.72);
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

/* Stack wrapper — right side, absolutely positioned */
.s-hope__mosaic-stack {
  position: absolute;
  right: 0; top: 0;
  width: 48%;
  height: 100%;
}

/* Top right photo — very slight tilt */
.s-hope__mosaic-sm:first-child {
  position: absolute;
  top: 0; left: 0;
  width: 105%;
  height: 44%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0,0,0,0.4);
  transform: rotate(-1.5deg);
  transform-origin: top right;
  z-index: 3;
}

/* Bottom right photo — very slight opposing tilt */
.s-hope__mosaic-sm:last-child {
  position: absolute;
  bottom: 0; left: 0;
  width: 105%;
  height: 54%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0,0,0,0.4);
  transform: rotate(1.5deg);
  transform-origin: bottom right;
  z-index: 2;
}

.s-hope__mosaic-sm img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Right: content ── */
.s-hope__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}
.s-hope__eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}
.s-hope__title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 5vw, 6rem);
  font-weight: 400;
  line-height: 0.95;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
  text-transform: uppercase;
  margin: 0 0 1.5rem;
}
.s-hope__body {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.75;
  color: rgba(255,255,255,0.85);
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
  margin-bottom: 0.85rem;
}
.s-hope__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.25s;
}
.s-hope__cta:hover { opacity: 0.75; }

/* ── 5-col photo strip variant ── */
.s-hope__photo-strip--5 {
  grid-template-columns: repeat(5, 1fr);
}

/* Responsive */
@media (max-width: 960px) {
  .s-hope__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .s-hope__mosaic { height: 260px; }
  .s-hope__photo-strip--5 { grid-template-columns: repeat(3, 1fr); }
  .s-hope__photo-strip--5 img:nth-child(n+4) { display: none; }
}
@media (max-width: 640px) {
  .s-hope__mosaic { grid-template-columns: 1fr; }
  .s-hope__mosaic-main { height: 260px; }
  .s-hope__mosaic-stack { display: none; }
  .s-hope__photo-strip--5 { grid-template-columns: repeat(2, 1fr); }
  .s-hope__photo-strip--5 img:nth-child(n+3) { display: none; }
}

.s-hope__badge-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.s-hope__badge-logo {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
  border-radius: var(--r);
  mix-blend-mode: screen;
}

/* Featured group photo — homepage section left panel */
.s-hope__featured-wrap {
  position: relative;
  width: 100%;
  border-radius: var(--r);
  overflow: hidden;
}
.s-hope__featured-img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center top;
}
.s-hope__featured-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0.75rem 1rem;
  background: rgba(0,15,45,0.72);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

/* Collab logo inline above section text */
.s-hope__inline-logo {
  display: block;
  width: 100%;
  max-width: 390px;
  height: auto;
  margin-bottom: 1.5rem;
  margin-right: auto;
  mix-blend-mode: screen;
}

.s-hope__photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-top: 3px;
}
.s-hope__photo-strip img {
  width: 100%;
  height: 70px;
  object-fit: cover;
  display: block;
}
@media (max-width: 640px) {
  .s-hope__photo-strip { grid-template-columns: 1fr; }
  .s-hope__photo-strip img { height: 200px; }
}

/* ==============================
   GIVING BACK — NAV DROPDOWN
   ============================== */
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.nav-dropdown__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
  user-select: none;
  background: none;
  border: none;
  padding: 0.4rem 0.75rem;
  line-height: 1;
}
.nav-dropdown:hover .nav-dropdown__trigger { color: #fff; }
.nav-dropdown__chevron {
  transition: transform 0.25s;
  flex-shrink: 0;
  opacity: 0.7;
}
.nav-dropdown:hover .nav-dropdown__chevron { transform: rotate(180deg); opacity: 1; }
.nav-dropdown__menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #003B71;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 0.85rem 0 0.5rem;
  min-width: 210px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  transform: translateX(-50%) translateY(-4px);
  z-index: 200;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  white-space: nowrap;
}
.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown__menu a {
  display: block;
  padding: 0.6rem 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
  border-radius: 8px;
  margin: 0 0.35rem;
}
.nav-dropdown__menu a:hover { color: #FF9E16; background: rgba(255,255,255,0.07); }

/* ==============================
   COMMUNITY — LINE LIST
   ============================== */
.s-community {
  position: relative;
  overflow: hidden;
  padding: calc(var(--gap) * 2.5) 0;
}

.s-community__bg {
  position: absolute;
  inset: 0;
}
.s-community__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.s-community__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,20,45,0.97) 0%, rgba(0,20,45,0.92) 100%);
}

.s-community__inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gap);
}

.s-community__header { margin-bottom: 2.5rem; }

.s-community__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.s-community__img {
  position: relative;
  overflow: visible;
}
.s-community__img img,
.s-community__vid {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.s-community__accent-block {
  position: absolute;
  width: 100px; height: 100px;
  background: #ff9e16;
  opacity: 1;
  bottom: -16px; right: -16px;
  z-index: -1;
}

/* Light text overrides for community dark background */
.s-community .line-item__top { border-color: rgba(255,255,255,0.18); }
.s-community .line-item__cat { color: var(--amber); }
.s-community .line-item__name { color: #fff; }
.s-community .line-item__desc { color: rgba(255,255,255,0.65); }
.s-community .line-item--hover:hover .line-item__name { color: var(--amber); }
.s-community .body-text { color: rgba(255,255,255,0.75); }

/* ==============================
   RECOGNITION — LINE LIST
   ============================== */
.s-recognition {
  background: var(--cream);
  padding: calc(var(--gap) * 1.5) 0;
}

.s-recognition__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gap);
}

.s-recognition__header { margin-bottom: 2.5rem; }

.s-recognition__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 5rem;
  align-items: center;
}

.s-recognition__img {
  position: relative;
  overflow: visible;
}
.s-recognition__img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.s-recognition__tag {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--amber);
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
}

/* ==============================
   CAREERS — DARK CTA
   ============================== */
.s-careers {
  position: relative;
  padding: calc(var(--gap) * 2.5) 0;
  overflow: hidden;
}

.s-careers__bg { position: absolute; inset: 0; }
.s-careers__bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(0.7);
}
.s-careers__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,28,60,.92), rgba(0,59,113,.85));
}

.s-careers__inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.s-careers__ctas {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 1rem;
}

/* ==============================
   FOOTER — AKARU STYLE
   ============================== */
.footer {
  background: var(--black);
  color: var(--white);
}

.footer__cta {
  padding: clamp(6rem, 12vw, 14rem) var(--gap) clamp(4rem, 8vw, 8rem);
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer__headline {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 10rem);
  font-weight: 400;
  line-height: 0.92;
  color: var(--white);
  margin-bottom: 3rem;
  letter-spacing: -0.01em;
}

.footer__info {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 3rem var(--gap);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer__logo {
  height: 42px;
  width: auto;
  margin-bottom: 1rem;
}

.footer__mission {
  font-size: 0.82rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
  max-width: 280px;
}

.footer__info .footer__col a {
  display: block;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.55rem;
  transition: color 0.3s;
}
.footer__info .footer__col a:hover { color: var(--white); }

.footer__bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.5rem var(--gap);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer__bottom p {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
}

.footer__socials { display: flex; gap: 2rem; }
.footer__socials a {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s;
}
.footer__socials a:hover { color: var(--white); }

/* ==============================
   PAGE LOADER
   ============================== */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  transition: opacity 0.6s var(--ease-akaru), visibility 0.6s;
}

.page-loader.--hide {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.page-loader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.page-loader__logo {
  height: 48px;
  width: auto;
  opacity: 0;
  animation: loaderFadeIn 0.8s var(--ease-akaru) 0.1s forwards;
}

@keyframes loaderFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.page-loader__scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: loaderFadeIn 0.8s var(--ease-akaru) 1s forwards;
}

.page-loader__scroll-label {
  font-family: var(--font-mono, monospace);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.page-loader__scroll-arrow {
  color: rgba(255,255,255,0.45);
  animation: scrollBounce 1.4s ease-in-out 1.5s infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.45; }
  50%       { transform: translateY(5px); opacity: 0.9; }
}

/* ==============================
   CUSTOM SCROLLBAR
   ============================== */
.scroll-bar {
  position: fixed;
  top: 0;
  right: 3px;
  width: 11px;
  height: 100vh;
  z-index: 1000;
  opacity: 0;
  transform-origin: center right;
  transition: opacity 0.4s var(--ease-akaru), transform 0.3s var(--ease-akaru);
  pointer-events: none;
}

.scroll-bar.--visible {
  opacity: 0.5;
}

.scroll-bar.--visible:hover,
.scroll-bar.--dragging {
  opacity: 0.8;
  transform: scaleX(1.3);
}

.scroll-bar__thumb {
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  margin: 2px;
  height: 80px;
  border-radius: 14px;
  background-color: #9e9e9e;
  opacity: 0.5;
  cursor: grab;
  will-change: transform;
  transition: opacity 0.3s var(--ease-akaru);
}

.scroll-bar.--visible .scroll-bar__thumb,
.scroll-bar:hover .scroll-bar__thumb {
  opacity: 1;
}

.scroll-bar.--dragging .scroll-bar__thumb {
  cursor: grabbing;
  opacity: 1;
}

/* ==============================
   SPLIT TEXT REVEAL
   ============================== */
.split-lines {
  overflow: hidden;
}

.split-line {
  display: block;
  overflow: hidden;
}

.split-line__inner {
  display: block;
  transform: translateY(110%);
  transition: transform 0.9s var(--ease-akaru);
  will-change: transform;
  color: #ffffff;
  background: transparent;
  border-color: #003b71;
}

.split-lines.in-view .split-line__inner {
  transform: translateY(0);
}

.split-lines.in-view .split-line:nth-child(2) .split-line__inner { transition-delay: 0.06s; }
.split-lines.in-view .split-line:nth-child(3) .split-line__inner { transition-delay: 0.12s; }
.split-lines.in-view .split-line:nth-child(4) .split-line__inner { transition-delay: 0.18s; }
.split-lines.in-view .split-line:nth-child(5) .split-line__inner { transition-delay: 0.24s; }
.split-lines.in-view .split-line:nth-child(6) .split-line__inner { transition-delay: 0.30s; }

/* ==============================
   IMAGE REVEAL (clip-path)
   ============================== */
.img-reveal.js-clip {
  clip-path: inset(100% 0 0 0);
  transition: clip-path 1.1s var(--ease-akaru);
  will-change: clip-path;
}

.img-reveal--left.js-clip {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.1s var(--ease-akaru);
  will-change: clip-path;
}

.img-reveal--right.js-clip {
  clip-path: inset(0 0 0 100%);
  transition: clip-path 1.1s var(--ease-akaru);
  will-change: clip-path;
}

.img-reveal.in-view,
.img-reveal--left.in-view,
.img-reveal--right.in-view {
  clip-path: inset(0 0 0 0);
}

/* ==============================
   ENHANCED HOVER/INTERACTION
   ============================== */
.line-item--hover {
  cursor: pointer;
}

.line-item--hover .line-item__content {
  transition: padding-left 0.5s var(--ease-akaru), background 0.4s;
}

.line-item--hover:hover .line-item__content {
  padding-left: 1.5rem;
  background: rgba(0,0,0,0.015);
}

.line-item--hover .circle-btn {
  transition: transform 0.5s var(--ease-akaru);
}

.line-item--hover:hover .circle-btn {
  transform: scale(1.15) rotate(45deg);
}

.hero-nav__item .circle-btn {
  transition: transform 0.5s var(--ease-akaru), box-shadow 0.3s;
}

.hero-nav__item:hover .circle-btn {
  transform: scale(1.18);
  box-shadow: 0 4px 18px rgba(0,0,0,0.15);
}

.hero-nav__item .hero-nav__label {
  transition: transform 0.4s var(--ease-akaru), opacity 0.3s;
}

.hero-nav__item:hover .hero-nav__label {
  transform: translateX(4px);
}

.circle-link .circle-btn {
  transition: transform 0.5s var(--ease-akaru);
}

.circle-link:hover .circle-btn {
  transform: scale(1.12) rotate(45deg);
}

/* ==============================
   RESPONSIVE — TABLET
   ============================== */
@media (max-width: 1024px) {
  .hero-scene { height: 260vh; }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero__left { padding: 2rem; min-height: 80vh; }
  .hero__right { height: 50vh; position: relative; }
  .hero__mosaic { position: relative; inset: auto; height: 100%; }

  .hero__parallax-logo {
    width: clamp(200px, 55vw, 420px);
  }
  .hero__parallax-map { width: clamp(260px, 60vw, 600px); }
  .hero__cities { width: clamp(180px, 32vw, 280px); }
  .hero__cities-text { font-size: clamp(1.1rem, 2vw, 1.6rem); }

  .s-story__inner,
  .s-tech__inner,
  .s-wellness__inner {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .s-hope__badge { justify-content: flex-start; }
  .s-hope__badge-inner { max-width: 100%; }

  .s-people__quote { gap: 1rem; }
  .s-people__editorial {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .s-people__quote { position: static; padding-top: 0; }

  .s-tech__left { position: static; }

  .s-community__grid,
  .s-recognition__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .s-story__img-float { display: none; }
  .s-story__img-main { height: 380px; }

  .footer__info { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer__headline { font-size: clamp(3rem, 10vw, 7rem); }

  .line-item__desc { display: none; }
  .line-item__content { gap: 1rem; }
}

/* ==============================
   CITY MARQUEE BAR
   ============================== */
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* INNOVATION • PASSION • SOLUTIONS strap — sits inside the hero, top */
.innovation-strap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  background: var(--navy);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transform: translateY(68px);
}
.innovation-strap__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-family: 'Raleway', 'Gotham', 'Montserrat', sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.9rem);
  letter-spacing: 0.25em;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
}
.innovation-strap__dot {
  font-size: 0.6em;
  opacity: 0.85;
}
/* WE SOLVE PROBLEMS TOGETHER strap — bottom of values section */
.values-strap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  background: var(--navy);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.values-strap__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-family: 'Raleway', 'Gotham', 'Montserrat', sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.9rem);
  letter-spacing: 0.25em;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
}
.values-strap__dot {
  font-size: 0.6em;
  opacity: 0.85;
}

@media (max-width: 768px) {
  .innovation-strap { height: 36px; }
  .innovation-strap__inner { gap: 1rem; font-size: 0.85rem; letter-spacing: 0.2em; }
}

/* ==============================
   RESPONSIVE — MOBILE
   ============================== */
@media (max-width: 768px) {
  /* Shorter scroll-lock so the parallax reveal completes within a
     comfortable thumb-flick on touch devices (vs. the desktop 300vh /
     tablet 260vh). The hero animation thresholds in script.js are
     viewport-adaptive, so the choreography still finishes cleanly. */
  .hero-scene { height: 220vh; }
  .hero { grid-template-columns: 1fr; }
  .hero__left { padding: 1.5rem; }
  .hero-nav { flex-wrap: wrap; gap: 0.75rem; }
  .hero-nav__label { font-size: 0.78rem; }
  .hero__right { display: none; }

  .hero__parallax-logo { width: clamp(180px, 70vw, 340px); }
  .hero__parallax-map { width: 90vw; }

  .sticky-nav__links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--navy-deep);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
    transform: translateY(-110%);
    transition: transform 0.35s ease;
    box-shadow: 0 8px 32px rgba(0,0,0,.3);
    z-index: 850;
  }
  .sticky-nav__links.open { transform: translateY(0); }
  .sticky-nav__links a { width: 100%; padding: 0.7rem 1rem; font-size: 0.85rem; }
  .sticky-nav__cta { margin-left: 0 !important; margin-top: 0.5rem; text-align: center; }
  .sticky-nav__hamburger { display: flex; }

  .s-people__mosaic { flex-direction: column; }
  .s-people__col--right { padding-top: 0; }
  .s-people__card img { height: 200px; }
  .s-people__card--tall img { height: 280px; }

  .s-people__bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .stat-row { flex-wrap: wrap; gap: 1.5rem; }

  .s-values__photos { flex-direction: column; }
  .s-values__photo--wide,
  .s-values__photo--tall {
    flex: unset; height: 240px; width: 100%;
  }

  .s-values__cities { display: none; }
  .s-values__flags { margin-left: 0; }
  .value-flag {
    width: 100%;
    padding: 1rem 3.5rem 1rem 1.4rem;
    clip-path: polygon(0 0, calc(100% - 32px) 0, 100% 50%, calc(100% - 32px) 100%, 0 100%);
  }
  .value-flag__name { opacity: 1; font-size: clamp(1.1rem, 5vw, 1.5rem); }
  .value-flag__desc { opacity: 0; }

  .s-careers__ctas { flex-direction: column; align-items: center; gap: 1.25rem; }

  .s-tech__img-float { display: none; }

  .footer__info { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom {
    flex-direction: column-reverse;
    gap: 0.75rem;
    align-items: flex-start;
  }

  .section-title { font-size: clamp(2.5rem, 8vw, 4rem); }
  .line-item__n { font-size: 1.4rem; min-width: 36px; }
  .line-item__cat { display: none; }

  /* Hero stats — 2×2 grid instead of overflowing row */
  .hero__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem 1.75rem;
  }
  .hero__stats-anchor {
    right: 1.5rem;
    max-width: calc(100vw - 3rem);
  }
  .hero__stats-block {
    align-items: flex-start;
    text-align: left;
  }
  .hero__stat-n { font-size: clamp(1.6rem, 5.5vw, 2.2rem); }

  /* Spline viewer — shorter on phones */
  .s-tech__spline spline-viewer { height: 280px; }

  /* Community video — don't dominate the screen */
  .s-community__img img,
  .s-community__vid { height: 260px; }

  /* Wellness image — portrait container becomes landscape on mobile.
     Use position:absolute on the video so height:100% resolves correctly
     (aspect-ratio-derived heights don't work as % parent reference in all browsers) */
  .s-wellness__img {
    aspect-ratio: 4 / 3;
    height: auto;
    overflow: hidden;
    position: relative;
  }
  .s-wellness__img-vid {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
  }

  /* Inner-page hero — reduce top padding so title is visible immediately */
  .inner-hero { padding: 5rem var(--gap) 2.5rem !important; }
  .inner-hero__title { font-size: clamp(2.2rem, 8vw, 3.5rem) !important; }
  .inner-hero__sub { font-size: 0.95rem !important; }

  /* Inner-page trust stat bar */
  .inner-trust { gap: 1.5rem !important; padding: 2rem var(--gap) !important; flex-wrap: wrap; justify-content: flex-start; }
  .inner-trust__divider { display: none; }

  /* Inner-page body grid — always single column */
  .inner-grid { grid-template-columns: 1fr !important; gap: 2.5rem !important; }

}


@media (max-width: 480px) {
  .hero-nav__label { display: none; }
  .hero-nav { gap: 0.5rem; }
  .hero__tagline { font-size: 0.85rem; }

  /* Hero headline — prevent overflow on narrow phones */
  .hero__headline { font-size: clamp(1.8rem, 7vw, 2.6rem); }

  /* Mega heading (coverage "50+") — scale down for small screens */
  .mega-heading { font-size: clamp(4.5rem, 20vw, 7rem); }

  /* Trim heavy section padding on small phones */
  .s-coverage, .s-wellness, .s-community {
    padding-top: calc(var(--gap) * 1.5);
    padding-bottom: calc(var(--gap) * 1.5);
  }

  /* Inner-page hero further tightened */
  .inner-hero { padding: 4rem var(--gap) 2rem !important; }
  .inner-hero__title { font-size: clamp(2rem, 9vw, 3rem) !important; }

  /* Inner trust stats: 2 per row on small phones */
  .inner-trust { gap: 1rem !important; }
  .inner-trust__n { font-size: 1.6rem !important; }

  /* Community & wellness section padding */
  .s-community__inner,
  .s-wellness__inner { padding-left: 1.25rem; padding-right: 1.25rem; }
}
