/* =========================================================
   Muhammad Zohaib Khan — Premium Visual Portfolio
   ========================================================= */
:root {
  --black: #050505;
  --ink: #0c0c0c;
  --white: #F7F7F5;
  --cream: #efece6;
  --gold: #B8924A;
  --gold-soft: rgba(184, 146, 74, 0.35);
  --muted: rgba(247, 247, 245, 0.62);
  --muted-dark: rgba(5, 5, 5, 0.55);
  --navy: #1a2a4a;
  --font-sans: "Manrope", system-ui, sans-serif;
  --font-serif: "Manrope", system-ui, sans-serif;
  --font-script: "Great Vibes", cursive;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 94px;
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
html, body {
  margin: 0;
  padding: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  max-width: 100%;
}
body {
  position: relative;
  overflow-x: hidden;
}
main { overflow-x: clip; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { list-style: none; margin: 0; padding: 0; }
body.menu-open { overflow: hidden; }

.page-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 100;
  background: transparent;
}
.page-progress__bar {
  display: block; height: 100%; width: 0%;
  background: var(--gold);
  transform-origin: left center;
}

/* ---------- NAV ---------- */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  min-height: var(--nav-h);
  height: auto;
  width: 100%;
  max-width: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px clamp(20px, 4vw, 56px) 36px;
  margin: 0;
  border-radius: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 5, 5, 0.72) 0%,
    rgba(5, 5, 5, 0.38) 55%,
    rgba(5, 5, 5, 0) 100%
  );
  border: 0;
  box-shadow: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: none;
  transition:
    top 0.45s var(--ease),
    left 0.45s var(--ease),
    right 0.45s var(--ease),
    width 0.45s var(--ease),
    max-width 0.45s var(--ease),
    min-height 0.45s var(--ease),
    padding 0.45s var(--ease),
    margin 0.45s var(--ease),
    border-radius 0.45s var(--ease),
    background 0.45s var(--ease),
    box-shadow 0.45s var(--ease),
    transform 0.45s var(--ease),
    backdrop-filter 0.45s var(--ease);
}
.site-nav.is-scrolled {
  top: 14px;
  left: 50%;
  right: auto;
  width: min(1400px, calc(100% - 24px));
  max-width: 1400px;
  min-height: 0;
  height: auto;
  padding: 12px 18px 12px 20px;
  margin: 0;
  border-radius: 999px;
  background: rgba(18, 18, 20, 0.78);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateX(-50%);
  gap: 12px;
}
.site-nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  color: #fff;
}
.site-nav__mark {
  font-family: var(--font-sans);
  font-size: 1.55rem; font-weight: 800; letter-spacing: 0.02em;
  color: var(--gold);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}
.site-nav__name {
  font-size: 1rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: #fff;
  opacity: 0.92;
  font-weight: 600;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}
.site-nav__links {
  display: none;
  gap: clamp(6px, 0.85vw, 14px);
  align-items: center;
  flex-wrap: nowrap;
  position: relative;
  left: auto;
  transform: none;
  flex: 1 1 auto;
  justify-content: center;
  min-width: 0;
  z-index: 1;
}
.site-nav__links a {
  font-size: 0.88rem;
  letter-spacing: 0.01em;
  font-weight: 600;
  text-transform: none;
  opacity: 0.95;
  color: #fff;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.55);
  transition: opacity 0.25s, color 0.25s;
  white-space: nowrap;
}
.site-nav.is-scrolled .site-nav__links {
  gap: clamp(6px, 0.8vw, 14px);
}
.site-nav.is-scrolled .site-nav__links a {
  font-size: 0.89rem;
  text-shadow: none;
}
.site-nav.is-scrolled .site-nav__actions {
  gap: 8px;
}
.site-nav.is-scrolled .site-nav__manifesto,
.site-nav.is-scrolled .site-nav__stories {
  flex-shrink: 0;
  min-width: 0;
  max-width: none;
  width: auto;
  height: 40px;
  min-height: 40px;
  padding: 0 14px;
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  text-align: center;
  overflow: hidden;
}
.site-nav__links a:hover { opacity: 1; color: var(--gold); }
.site-nav__links a.is-active { color: var(--gold); opacity: 1; }
.site-nav__links a:focus { outline: none; }
.site-nav__links a:focus-visible { color: var(--gold); }
.site-nav__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  margin-left: 0;
  position: relative;
  z-index: 2;
}
.site-nav__manifesto {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-sizing: border-box;
  min-width: 0;
  max-width: none;
  height: 42px;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  text-align: center;
  background: #fff;
  color: #050505;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.28);
  transition: transform 0.25s, filter 0.25s, box-shadow 0.25s, opacity 0.25s;
}
.site-nav__stories {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  height: 42px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
  text-align: center;
  border: 0;
  background: #fff;
  color: #050505;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.28);
  transition: transform 0.25s, filter 0.25s, box-shadow 0.25s;
}
.site-nav.is-scrolled .site-nav__stories {
  background: #fff;
  color: #050505;
  border: 0;
}
.site-nav__manifesto:hover {
  transform: translateY(-1px);
  filter: brightness(0.97);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.34);
}
.site-nav__stories:hover {
  transform: translateY(-1px);
  filter: brightness(0.97);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.34);
}
.site-nav__toggle {
  width: 44px; height: 44px;
  display: grid; place-content: center; gap: 7px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.site-nav__toggle span {
  display: block; width: 22px; height: 1.5px; background: var(--white);
  transition: transform 0.3s var(--ease);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}
@media (min-width: 1280px) {
  .site-nav__links { display: flex; }
  .site-nav__toggle { display: none; }
}
@media (min-width: 1180px) and (max-width: 1279px) {
  .site-nav__links { display: none; }
  .site-nav__toggle { display: grid; }
}

.mobile-menu {
  position: fixed; inset: 0; z-index: 95;
  background: rgba(5, 5, 5, 0.96);
  display: grid; place-items: center;
  padding: 48px 24px;
}
.mobile-menu[hidden] { display: none !important; }
.mobile-menu__close {
  position: absolute; top: 24px; right: 24px;
  font-size: 2.4rem; line-height: 1; color: var(--gold);
}
.mobile-menu__links {
  display: flex; flex-direction: column; gap: 22px; text-align: center;
}
.mobile-menu__links a {
  font-family: var(--font-sans);
  font-size: clamp(1.8rem, 7vw, 2.8rem);
  font-weight: 700;
  color: #fff;
}
.mobile-menu__links a.is-active {
  color: var(--gold);
}
.mobile-menu__manifesto {
  margin: 12px auto 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  background: #fff;
  color: #050505;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-align: center;
  line-height: 1.25;
  max-width: 90%;
  white-space: normal;
  border: 0;
  cursor: pointer;
}
.mobile-menu__stories {
  margin: 18px auto 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  background: #fff;
  color: #050505;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-align: center;
  line-height: 1.25;
  max-width: 90%;
  border: 0;
  cursor: pointer;
}
.mobile-menu__stories:hover {
  filter: brightness(0.97);
}

/* ---------- SECTION PRIMITIVES ---------- */
.section-index {
  font-size: 0.75rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin: 0 0 1rem;
  font-weight: 600;
}
.section-index--light { color: var(--gold); }
.section-title {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0;
  color: var(--black);
  text-transform: none;
}
.section-title--light { color: var(--white); }

.icon-btn {
  width: 48px; height: 48px; border-radius: 999px;
  border: 1px solid rgba(247, 247, 245, 0.25);
  display: grid; place-items: center;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.icon-btn:hover {
  background: var(--gold); border-color: var(--gold); color: var(--black);
  transform: translateY(-2px);
}

/* ---------- HERO + STATS ---------- */
.hero-screen {
  position: relative;
  height: 100vh;
  height: 100dvh;
  max-height: 100vh;
  max-height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #050505;
}
.hero {
  position: relative;
  flex: 1 1 auto;
  width: 100%;
  max-width: 100%;
  min-height: 0;
  height: auto;
  overflow: hidden;
  display: grid;
  place-items: end start;
}
.hero__media {
  position: absolute;
  top: 93px;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  background: #050505;
}
.hero__iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 56.25%;
  min-height: 100%;
  min-width: 177.78%;
  border: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  pointer-events: auto;
  cursor: pointer;
  background: #050505;
}
.hero__play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.94);
  color: #111;
  font-size: 1.15rem;
  line-height: 1;
  border: 0;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s var(--ease), background 0.3s, opacity 0.3s, visibility 0.3s;
}
.hero__play span {
  margin-left: 3px;
}
.hero__play:hover {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--gold);
  color: #fff;
}
.hero__play.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.hero__overlay {
  pointer-events: none;
}

/* Mobile/tablet: no fit-to-screen — video keeps natural aspect (no crop) */
@media (max-width: 900px) {
  .hero-screen {
    height: auto;
    min-height: 0;
    max-height: none;
    overflow: visible;
    display: block;
  }
  .hero {
    display: block;
    flex: none;
    min-height: 0;
    height: auto;
    overflow: visible;
  }
  .hero__media {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    overflow: hidden;
    background: #050505;
  }
  .hero__video {
    position: relative;
    inset: auto;
    display: block;
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: center center;
    /* Clear fixed header so video isn't hidden underneath */
    margin-top: calc(var(--nav-h) + 8px);
  }
  .hero__overlay {
    top: calc(var(--nav-h) + 8px);
    background:
      linear-gradient(180deg, rgba(5,5,5,0.55) 0%, rgba(5,5,5,0.12) 35%, rgba(5,5,5,0.45) 100%);
  }

  :root {
    --nav-h: 56px;
  }
  .site-nav {
    min-height: var(--nav-h);
    height: var(--nav-h);
    padding: 8px 14px;
    gap: 10px;
  }
  .site-nav.is-scrolled {
    top: 10px;
    width: calc(100% - 20px);
    max-width: none;
    padding: 6px 10px 6px 14px;
    gap: 8px;
  }
  .site-nav__mark {
    font-size: 1.25rem;
  }
  .site-nav__toggle {
    width: 40px;
    height: 40px;
    gap: 6px;
  }
  .site-nav__manifesto,
  .site-nav__stories,
  .site-nav.is-scrolled .site-nav__manifesto,
  .site-nav.is-scrolled .site-nav__stories {
    height: 36px;
    min-height: 36px;
    padding: 0 12px;
    font-size: 0.75rem;
    letter-spacing: 0;
    white-space: nowrap;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .site-nav__manifesto,
  .site-nav__stories,
  .site-nav.is-scrolled .site-nav__manifesto,
  .site-nav.is-scrolled .site-nav__stories {
    padding: 0 9px;
    font-size: 0.7rem;
  }
  .site-nav__name {
    display: none;
  }
}

@media (max-width: 360px) {
  .site-nav__manifesto,
  .site-nav__stories,
  .site-nav.is-scrolled .site-nav__manifesto,
  .site-nav.is-scrolled .site-nav__stories {
    padding: 0 8px;
    font-size: 0.64rem;
  }
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(5,5,5,0.62) 0%, rgba(5,5,5,0.28) 28%, rgba(5,5,5,0.22) 45%, rgba(5,5,5,0.78) 100%),
    radial-gradient(ellipse at 70% 30%, rgba(184,146,74,0.18), transparent 55%);
}
.hero__content {
  position: relative; z-index: 2;
  padding: clamp(28px, 6vw, 80px);
  padding-bottom: clamp(64px, 10vh, 120px);
  max-width: 920px;
}
.hero__eyebrow {
  margin: 0 0 8px;
  font-size: 0.72rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold);
}
.hero__sub {
  margin: 0 0 18px;
  font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase;
  opacity: 0.8;
}
.hero__title {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(3.4rem, 11vw, 7.5rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
}
.hero__title span { display: block; }
.hero__script {
  margin: 1.4rem 0 2rem;
  font-family: var(--font-script);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  color: var(--gold);
}
.hero__cta {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 8px;
  transition: color 0.25s, gap 0.25s;
}
.hero__cta:hover { color: var(--gold); gap: 18px; }
.hero__scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  width: 1px; height: 56px; background: rgba(247,247,245,0.2); overflow: hidden;
}
.hero__scroll span {
  display: block; width: 100%; height: 30%;
  background: var(--gold);
  animation: scrollPulse 1.6s var(--ease) infinite;
}
@keyframes scrollPulse {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(250%); }
}

/* ---------- DYNAMIC STATS ---------- */
.stats {
  position: relative;
  z-index: 5;
  flex: 0 0 auto;
  margin-top: -52px;
  padding: 0 clamp(16px, 4vw, 48px) 20px;
  background: transparent;
}
.stats__bar {
  max-width: 1280px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(5, 5, 5, 0.12);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: stretch;
  overflow: hidden;
}
.stats__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 28px 20px;
  position: relative;
}
.stats__item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 22%;
  bottom: 22%;
  width: 1px;
  background: rgba(20, 35, 70, 0.12);
}
.stats__icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
}
.stats__icon svg {
  width: 34px;
  height: 34px;
}
.stats__icon--navy { color: #1a2a4a; }
.stats__icon--gold { color: var(--gold); }
.stats__text {
  min-width: 0;
}
.stats__num {
  display: block;
  font-family: var(--font-sans);
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  font-weight: 800;
  line-height: 1.1;
  color: #1a2a4a;
  letter-spacing: -0.02em;
}
.stats__text p {
  margin: 4px 0 0;
  font-size: 0.78rem;
  line-height: 1.35;
  color: #1a2a4a;
  font-weight: 500;
}

@media (max-width: 1100px) {
  .stats__bar { grid-template-columns: repeat(3, 1fr); }
  .stats__item:nth-child(3)::after { display: none; }
}
@media (max-width: 900px) {
  .stats {
    margin-top: -20px;
    padding: 0 12px 20px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .stats__bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: visible;
    width: 100%;
    max-width: 100%;
    border-radius: 16px;
  }
  .stats__item {
    flex: none;
    width: auto;
    min-width: 0;
    max-width: 100%;
    padding: 14px 12px;
    gap: 10px;
    align-items: center;
  }
  .stats__item:nth-child(n)::after { display: none; }
  .stats__item:last-child {
    grid-column: 1 / -1;
  }
  .stats__icon {
    width: 28px;
    height: 28px;
  }
  .stats__icon svg {
    width: 22px;
    height: 22px;
  }
  .stats__text {
    flex: 1 1 auto;
    min-width: 0;
  }
  .stats__num {
    font-size: clamp(1.15rem, 4.5vw, 1.4rem);
  }
  .stats__text p {
    font-size: 0.66rem;
    line-height: 1.3;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
}
@media (max-width: 360px) {
  .stats__bar {
    grid-template-columns: 1fr;
  }
  .stats__item:last-child {
    grid-column: auto;
  }
}

/* ---------- LEADERSHIP SPLIT (50/50) — replaces old journey slider UI ---------- */
.lead {
  position: relative;
  z-index: 2;
  background:
    radial-gradient(ellipse 70% 55% at 85% 20%, rgba(184, 146, 74, 0.08), transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 90%, rgba(5, 5, 5, 0.04), transparent 60%),
    var(--white);
  color: var(--black);
  padding: clamp(64px, 9vw, 110px) 0 clamp(88px, 12vw, 140px);
  overflow: hidden;
  isolation: isolate;
}
.lead::after {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -1px;
  height: clamp(48px, 8vw, 88px);
  background: #0b0b0b;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  z-index: 3;
  pointer-events: none;
}
.lead__grid {
  position: relative;
  z-index: 4;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
}
.lead__content { min-width: 0; order: 2; }
.lead__media { order: 1; } /* mobile: image on top, content below */
@media (min-width: 900px) {
  .lead__grid {
    grid-template-columns: 1fr 1fr; /* exact 50% / 50% */
    gap: clamp(32px, 4vw, 56px);
  }
  .lead__content { order: 1; }
  .lead__media { order: 2; }
}
.lead__title {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(1.75rem, 3.6vw, 2.85rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--black);
}
.lead__rule {
  width: 72px;
  height: 1px;
  background: var(--gold);
  margin: 20px 0 18px;
}
.lead__body {
  display: grid;
  gap: 12px;
  margin: 0 0 24px;
}
.lead__body p {
  margin: 0;
  font-size: clamp(0.9rem, 1.35vw, 1.02rem);
  line-height: 1.65;
  color: rgba(5, 5, 5, 0.68);
  font-weight: 500;
}
.lead__close {
  color: #0c0c0c !important;
  font-weight: 700 !important;
}
.lead__social {
  display: flex;
  align-items: center;
  gap: 12px;
  position: sticky;
  bottom: 20px;
  z-index: 5;
  width: fit-content;
  padding: 8px;
  margin-top: 8px;
  border-radius: 999px;
  background: rgba(247, 247, 245, 0.92);
  border: 1px solid rgba(5, 5, 5, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.lead__social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(5, 5, 5, 0.18);
  display: grid;
  place-items: center;
  color: #050505;
  transition: background 0.25s, border-color 0.25s, transform 0.25s, color 0.25s;
}
.lead__social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.lead__social-link:hover {
  background: #050505;
  border-color: #050505;
  color: #fff;
  transform: translateY(-2px);
}

/* Image column: full 50% width, 3D card */
.lead__media {
  min-width: 0;
  width: 100%;
  perspective: 1400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lead__frame {
  margin: 0;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  background: #111;
  line-height: 0;
  transform: rotateY(-11deg) rotateX(2deg) translateZ(0);
  transform-style: preserve-3d;
  box-shadow:
    32px 28px 60px rgba(5, 5, 5, 0.24),
    -8px 10px 28px rgba(184, 146, 74, 0.14);
  transition: transform 0.55s var(--ease), box-shadow 0.55s var(--ease);
}
.lead__frame:hover {
  transform: rotateY(-4deg) rotateX(0deg) translateY(-4px);
  box-shadow:
    20px 30px 56px rgba(5, 5, 5, 0.28),
    -4px 12px 28px rgba(184, 146, 74, 0.18);
}
.lead__frame img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  object-position: center top;
}
@media (max-width: 899px) {
  .lead {
    padding: clamp(48px, 8vw, 72px) 0 clamp(80px, 14vw, 110px);
  }
  .lead__frame {
    transform: rotateY(-6deg);
    max-width: none;
    width: 100%;
    margin-inline: 0;
  }
}

/* ---------- JOURNEY (legacy / unused slider styles kept for reference) ---------- */
.journey {
  display: none; /* old section retired */
}
.journey::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -1px;
  height: clamp(48px, 8vw, 88px);
  background: #0b0b0b;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  z-index: 3;
  pointer-events: none;
}
.journey__layout {
  position: relative;
  z-index: 4;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}
@media (min-width: 1024px) {
  .journey__layout {
    grid-template-columns: minmax(300px, 1.15fr) minmax(260px, 0.95fr);
    gap: 48px;
    min-height: 0;
    align-items: center;
  }
}
.journey__copy { position: relative; z-index: 2; }
.journey__index { display: none; }
.journey__title {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(1.85rem, 4.2vw, 3.1rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  text-transform: none;
  color: var(--black);
}
.journey__title em {
  font-style: normal;
  color: var(--gold);
}
.journey__rule {
  width: 72px;
  height: 1px;
  background: var(--gold);
  margin: 22px 0 20px;
}
.journey__body {
  display: grid;
  gap: 14px;
  margin: 0 0 26px;
  max-width: 36rem;
}
.journey__body p {
  margin: 0;
  font-size: clamp(0.92rem, 1.5vw, 1.02rem);
  line-height: 1.65;
  color: rgba(5, 5, 5, 0.68);
  font-weight: 500;
}
.journey__body-close {
  color: #0c0c0c !important;
  font-weight: 700 !important;
}
.journey__social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
}
.journey__social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(5, 5, 5, 0.18);
  display: grid;
  place-items: center;
  color: #050505;
  transition: background 0.25s, border-color 0.25s, transform 0.25s, color 0.25s;
}
.journey__social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.journey__social-link:hover {
  background: #050505;
  border-color: #050505;
  color: #fff;
  transform: translateY(-2px);
}
.journey__cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.journey__orb {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(5, 5, 5, 0.28);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.journey__orb:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateX(3px);
}
.journey__tagline {
  margin: 0;
  max-width: 220px;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.55;
  color: rgba(5, 5, 5, 0.72);
}

.journey__stage {
  position: relative;
  min-height: 420px;
  perspective: 1200px;
  max-width: 100%;
  display: grid;
  place-items: center;
}

/* Single portrait — original proportions + 3D tilt */
.journey-hero-3d {
  margin: 0;
  width: auto;
  max-width: min(100%, 420px);
  height: auto;
  border-radius: 22px;
  overflow: hidden;
  background: transparent;
  line-height: 0;
  transform: perspective(1200px) rotateY(-12deg) rotateX(2deg);
  box-shadow:
    28px 24px 50px rgba(5, 5, 5, 0.22),
    -6px 8px 24px rgba(184, 146, 74, 0.12);
  transition: transform 0.55s var(--ease), box-shadow 0.55s var(--ease);
}
.journey-hero-3d:hover {
  transform: perspective(1200px) rotateY(-4deg) rotateX(0deg) translateY(-4px);
  box-shadow:
    18px 28px 56px rgba(5, 5, 5, 0.26),
    -4px 10px 28px rgba(184, 146, 74, 0.16);
}
.journey-hero-3d img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
}
@media (max-width: 1023px) {
  .journey-hero-3d {
    max-width: min(86vw, 340px);
    transform: perspective(900px) rotateY(-8deg);
  }
  .journey__stage {
    min-height: 0;
    padding: 12px 0 8px;
  }
}

.journey-3d {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: clamp(380px, 52vh, 520px);
  display: grid;
  place-items: center;
  transform-style: preserve-3d;
}
.journey-3d__ring {
  position: relative;
  width: 180px;
  height: 240px;
  transform-style: preserve-3d;
  will-change: transform;
}
.journey-3d__card {
  position: absolute;
  inset: 0;
  width: 200px;
  height: 260px;
  margin: auto;
  border-radius: 22px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 18px 40px rgba(5, 5, 5, 0.18);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.journey-3d__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* Phone + tablet: simple horizontal carousel (no 3D) */
@media (max-width: 1023px) {
  .journey {
    padding: clamp(40px, 7vw, 64px) 0 clamp(48px, 9vw, 80px);
    overflow: hidden;
  }
  .journey__layout {
    padding-left: 0;
    padding-right: 0;
    gap: 20px;
    min-height: 0 !important;
  }
  .journey__copy {
    padding: 0 clamp(20px, 4vw, 56px);
  }
  .journey__index { display: none; }
  .journey__title {
    font-size: clamp(1.7rem, 6vw, 2.4rem);
  }
  .journey__stage {
    min-height: 320px !important;
    height: auto !important;
    perspective: none !important;
    overflow: visible;
    padding: 0;
  }
  .journey .journey-3d {
    position: relative;
    width: 100%;
    height: auto !important;
    min-height: 320px !important;
    display: block !important;
    place-items: unset;
    transform: none !important;
    transform-style: flat !important;
    perspective: none !important;
  }
  .journey .journey-3d__ring {
    position: relative !important;
    display: flex !important;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    width: 100% !important;
    height: auto !important;
    min-height: 320px !important;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    touch-action: pan-x;
    /* side inset so active card can sit centered */
    padding: 8px max(14vw, calc((100% - min(72vw, 300px)) / 2)) 24px;
    scroll-padding-inline: max(14vw, calc((100% - min(72vw, 300px)) / 2));
    margin: 0;
    box-sizing: border-box;
    transform: none !important;
    transform-style: flat !important;
    will-change: auto !important;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .journey .journey-3d__ring::-webkit-scrollbar { display: none; height: 0; }
  .journey .journey-3d__card {
    position: relative !important;
    inset: auto !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    margin: 0 !important;
    flex: 0 0 min(72vw, 300px) !important;
    width: min(72vw, 300px) !important;
    height: 360px !important;
    min-height: 360px !important;
    border-radius: 18px;
    overflow: hidden;
    background: #ddd;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    box-shadow: 0 12px 28px rgba(5, 5, 5, 0.16);
    backface-visibility: visible !important;
    -webkit-backface-visibility: visible !important;
  }
  .journey .journey-3d__card img {
    width: 100% !important;
    height: 100% !important;
    max-width: none;
    object-fit: cover;
    object-position: center center;
    display: block !important;
  }
}

@media (max-width: 575px) {
  .journey__cta-row { flex-direction: column; align-items: flex-start; }
  .journey__tagline { max-width: none; }
}

/* ---------- PAKISTAN (dark + presence carousel) ---------- */
.pakistan {
  position: relative;
  background: var(--black);
  color: var(--white);
  padding: clamp(72px, 10vw, 120px) 0 clamp(56px, 7vw, 90px);
  overflow: hidden;
}
.pakistan .section-title { color: var(--white); }
.pakistan__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  max-width: 1500px;
  margin: 0 auto 40px;
  padding: 0 clamp(20px, 4vw, 56px);
}
.pakistan__nav {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.presence-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(247, 247, 245, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-size: 1.6rem;
  line-height: 1;
  display: grid;
  place-items: center;
  box-shadow: none;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.presence-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}
.pakistan__statement--inline {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 18px;
  margin: 18px 0 0;
  border-top: 0;
  padding-top: 0;
}
.pakistan__statement--inline span {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247, 247, 245, 0.55);
}
.pakistan__statement--inline strong {
  font-family: var(--font-sans);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--gold);
}

.presence-carousel {
  position: relative;
}
.presence-carousel .conf-carousel__track {
  gap: 22px;
  align-items: flex-start;
}
.presence-card {
  flex: 0 0 clamp(200px, 18vw, 240px);
  position: relative;
  overflow: visible;
  background: transparent;
}
.presence-card__media {
  position: relative;
  width: 100%;
  height: clamp(280px, 38vh, 360px);
  border-radius: 18px;
  overflow: hidden;
  background: #222;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
}
.presence-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.presence-card:hover .presence-card__media img {
  transform: scale(1.05);
}
.presence-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.95);
  color: #1a1a2e;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}
.presence-card__title {
  margin: 14px 0 4px;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.presence-card__sub {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(247, 247, 245, 0.6);
}

@media (max-width: 767px) {
  .pakistan__head { flex-direction: column; align-items: flex-start; }
  .presence-card { flex-basis: min(72vw, 280px); }
  .presence-card__media { height: 320px; }
}

/* ---------- CONFERENCES (white) ---------- */
.conferences {
  background: var(--white);
  color: var(--black);
  padding: clamp(72px, 10vw, 120px) 0 clamp(48px, 6vw, 80px);
  overflow: hidden;
}
.conferences .section-title { color: var(--black); }
.conferences__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px;
  padding: 0 clamp(20px, 4vw, 56px);
  margin-bottom: 40px;
  max-width: 1600px; margin-left: auto; margin-right: auto;
}
.conferences__nav { display: flex; gap: 10px; }
.conferences .icon-btn {
  border-color: rgba(5, 5, 5, 0.2);
  color: var(--black);
}
.conferences .icon-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}
.conf-carousel {
  overflow: hidden;
  cursor: grab;
}
.conf-carousel.is-dragging { cursor: grabbing; }
.conf-carousel__track {
  display: flex; gap: 18px;
  width: max-content;
  padding: 0 clamp(20px, 4vw, 56px);
  will-change: transform;
}
.conf-slide {
  flex: 0 0 clamp(240px, 28vw, 360px);
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}
.conf-slide img {
  width: 100%; height: clamp(320px, 48vh, 480px);
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.conf-slide:hover img { transform: scale(1.05); }
.conf-slide__meta {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 28px 18px 18px;
  background: linear-gradient(transparent, rgba(5,5,5,0.92));
  color: var(--white);
}
.conf-slide__meta h3 {
  margin: 0 0 4px;
  font-family: var(--font-sans);
  font-size: 1.25rem; font-weight: 700;
}
.conf-slide__meta p {
  margin: 0;
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  opacity: 0.7;
}
.conf-slide__meta span {
  display: inline-block; margin-top: 8px;
  color: var(--gold); font-size: 0.75rem; letter-spacing: 0.18em;
}
.conf-dots {
  display: flex; justify-content: center; gap: 8px;
  margin-top: 28px;
}
.conf-dots button {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(5,5,5,0.18);
}
.conf-dots button.is-active { background: var(--gold); width: 22px; border-radius: 999px; }

@media (max-width: 767px) {
  .conf-slide { flex-basis: min(78vw, 320px); }
}

/* ---------- VIDEOS ---------- */
.videos {
  background: var(--black);
  color: var(--white);
  padding: clamp(72px, 10vw, 120px) 0;
  overflow-x: hidden;
}
.videos .section-title,
.videos .video-card__title {
  color: var(--white);
}
.videos__head {
  padding: 0 clamp(20px, 4vw, 56px);
  max-width: 1400px; margin: 0 auto 36px;
}
.videos__carousel {
  display: flex; gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0 clamp(20px, 4vw, 56px) 12px;
  scrollbar-width: none;
}
.videos__carousel::-webkit-scrollbar { display: none; }
.video-card {
  flex: 0 0 clamp(280px, 38vw, 460px);
  scroll-snap-align: start;
}
.video-card__media {
  position: relative; overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #111;
}
.video-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.video-card:hover .video-card__media img { transform: scale(1.06); }
.video-card__play {
  position: absolute; inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(247,247,245,0.92); color: var(--black);
  display: grid; place-items: center;
  font-size: 0.9rem;
  transition: transform 0.35s var(--ease), background 0.35s;
}
.video-card:hover .video-card__play {
  transform: translate(-50%, -50%) scale(1.12);
  background: var(--gold);
}
.video-card__cat {
  margin: 14px 0 6px;
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold);
}
.video-card__title {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  font-weight: 700;
  line-height: 1.15;
  transition: transform 0.35s var(--ease);
}
.video-card:hover .video-card__title { transform: translateY(-4px); }

/* ---------- ACHIEVEMENTS ---------- */
.achievements {
  background: var(--white);
  color: var(--black);
  padding: clamp(72px, 10vw, 120px) 0 clamp(48px, 6vw, 80px);
  overflow: hidden;
}
.achievements__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px;
  padding: 0 clamp(20px, 4vw, 56px);
  margin-bottom: 40px;
  max-width: 1600px; margin-left: auto; margin-right: auto;
}
.achievements__nav { display: flex; gap: 10px; }
.icon-btn--dark {
  border-color: rgba(5, 5, 5, 0.2);
  color: var(--black);
}
.icon-btn--dark:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}
.achievements-carousel .conf-slide {
  box-shadow: 0 16px 40px rgba(5, 5, 5, 0.08);
}
.conf-dots--dark button {
  background: rgba(5, 5, 5, 0.18);
}
.conf-dots--dark button.is-active {
  background: var(--gold);
}

/* ---------- MOMENTS ---------- */
.moments {
  background: var(--black);
  padding: clamp(72px, 10vw, 120px) 0;
  overflow: hidden;
}
.moments__head {
  padding: 0 clamp(20px, 4vw, 56px);
  max-width: 1400px; margin: 0 auto 40px;
}
.moments__rows { display: grid; gap: 16px; }
.marquee { overflow: hidden; }
.marquee__track {
  display: flex; gap: 14px; width: max-content;
  will-change: transform;
}
.marquee--left .marquee__track {
  animation: marqueeLeft linear infinite;
  animation-duration: 55s;
}
.marquee--right .marquee__track {
  animation: marqueeRight linear infinite;
  animation-duration: 65s;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marqueeLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes marqueeRight {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee--left .marquee__track,
  .marquee--right .marquee__track { animation: none; }
}
.marquee__img {
  width: clamp(280px, 24vw, 360px);
  height: 240px;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
  border-radius: 2px;
}
.marquee__img--wide,
.marquee__img--tall,
.marquee__img--sq {
  width: clamp(280px, 24vw, 360px);
  height: 240px;
}

/* ---------- FINALE ---------- */
.finale {
  position: relative;
  z-index: 2;
  min-height: min(88vh, 820px);
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #050505;
  color: var(--white);
  isolation: isolate;
  margin-top: -40px;
  padding-top: 40px;
}
.finale__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 50% 42%, rgba(184, 146, 74, 0.16), transparent 62%),
    radial-gradient(ellipse 90% 70% at 50% 110%, rgba(255, 255, 255, 0.06), transparent 55%);
}
.finale__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: clamp(72px, 12vw, 140px) 24px;
  max-width: 820px;
}
.finale__eyebrow {
  margin: 0 0 18px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(247, 247, 245, 0.45);
}
.finale__title {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(2.75rem, 8vw, 5.25rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--white);
}
.finale__sub {
  margin: 22px auto 0;
  max-width: 28ch;
  font-family: var(--font-sans);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 400;
  line-height: 1.5;
  color: rgba(247, 247, 245, 0.55);
}
.finale__cta {
  margin-top: 40px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 12px 40px rgba(0, 0, 0, 0.35);
  transition:
    transform 0.35s var(--ease),
    background 0.35s var(--ease),
    border-color 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}
.finale__cta-arrow {
  display: inline-block;
  transition: transform 0.35s var(--ease);
}
.finale__cta:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(184, 146, 74, 0.55);
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.12) inset,
    0 18px 48px rgba(0, 0, 0, 0.45);
}
.finale__cta:hover .finale__cta-arrow {
  transform: translateX(4px);
}

/* ---------- EVENT ARCHIVE (legacy strips unused) ---------- */
/* ---------- STORIES / EVENT MARQUEES ---------- */
.stories {
  position: relative;
  z-index: 2;
  background:
    radial-gradient(ellipse 65% 45% at 50% 0%, rgba(184, 146, 74, 0.12), transparent 55%),
    radial-gradient(ellipse 40% 30% at 100% 70%, rgba(255, 255, 255, 0.04), transparent 50%),
    #0b0b0b;
  color: var(--white);
  padding: clamp(88px, 12vw, 140px) 0 clamp(88px, 12vw, 140px);
  overflow: hidden;
  isolation: isolate;
}
.stories::after {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -1px;
  height: clamp(48px, 8vw, 88px);
  background: var(--white);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  z-index: 3;
  pointer-events: none;
}
.stories--alt {
  background:
    radial-gradient(ellipse 60% 50% at 20% 10%, rgba(184, 146, 74, 0.07), transparent 55%),
    radial-gradient(ellipse 50% 40% at 90% 80%, rgba(5, 5, 5, 0.03), transparent 55%),
    var(--white);
  color: var(--black);
  border-top: 0;
}
.stories--alt::after {
  background: #0b0b0b;
}
/* Videos (dark) → In the Press (white) */
#videos.stories::after {
  background: #ffffff;
}
.stories--alt .stories__title {
  color: var(--black);
}
.stories--alt .stories__sub {
  color: rgba(5, 5, 5, 0.58);
}
.stories--alt .stories__btn {
  color: var(--black);
  background: rgba(5, 5, 5, 0.05);
  border-color: rgba(5, 5, 5, 0.14);
}
.stories--alt .stories__btn:hover {
  background: rgba(184, 146, 74, 0.18);
  border-color: rgba(184, 146, 74, 0.55);
  color: var(--black);
}
.stories__head {
  position: relative;
  z-index: 4;
  max-width: 820px;
  margin: 0 auto 44px;
  padding: 0 clamp(20px, 4vw, 56px);
  text-align: center;
}
.stories__label {
  margin: 0 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.stories__label span {
  font-size: 0.55rem;
  line-height: 1;
}
.stories__title {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(1.9rem, 4.8vw, 3.2rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--white);
}
.stories__sub {
  margin: 18px auto 0;
  max-width: 52ch;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.6;
  color: rgba(247, 247, 245, 0.58);
}
.stories__btn {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.stories__btn:hover {
  background: rgba(184, 146, 74, 0.22);
  border-color: rgba(184, 146, 74, 0.55);
  transform: translateY(-2px);
}

.stories-marquee {
  position: relative;
  z-index: 4;
  overflow: hidden;
  width: 100%;
  cursor: grab;
  touch-action: pan-y;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.stories-marquee.is-dragging { cursor: grabbing; }
.stories-marquee.is-dragging .story-card,
.stories-marquee.is-dragging .story-card img {
  pointer-events: none;
}
.stories-marquee__track {
  display: flex;
  gap: 18px;
  width: max-content;
  will-change: transform;
  animation: none; /* JS-driven */
}
.stories-marquee--rtl .stories-marquee__track,
.stories-marquee--ltr .stories-marquee__track {
  animation: none;
}
.stories-marquee:hover .stories-marquee__track {
  animation-play-state: unset;
}
@keyframes storiesRtl {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes storiesLtr {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}
@media (prefers-reduced-motion: reduce) {
  .stories-marquee--rtl .stories-marquee__track,
  .stories-marquee--ltr .stories-marquee__track { animation: none; }
}

.story-card {
  position: relative;
  flex: 0 0 auto;
  width: clamp(260px, 30vw, 340px);
  aspect-ratio: 4 / 5;
  height: auto;
  border-radius: 22px;
  overflow: hidden;
  background: #1a1a1a;
  isolation: isolate;
}
.story-card.story-card--video {
  width: 422px;
  height: 250px;
  aspect-ratio: 422 / 250;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
a.story-card.story-card--video:hover {
  color: inherit;
}
.story-card.story-card--video img {
  object-position: center center;
}
.story-card--video .story-card__more {
  display: none !important;
}
.story-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.7s var(--ease);
}
.story-card:hover img { transform: scale(1.04); }
.story-card__fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(0, 0, 0, 0.9) 100%);
  pointer-events: none;
  transition: background 0.35s var(--ease);
}
.story-card:hover .story-card__fade {
  background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.82) 100%);
}
.story-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.92);
  color: #111;
  font-size: 0.85rem;
  pointer-events: none;
  transition: transform 0.3s var(--ease), background 0.3s;
}
.story-card--video:hover .story-card__play {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--gold);
}
.story-card__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 16px 18px 8px;
  text-align: left;
  transition:
    bottom 0.55s var(--ease),
    transform 0.55s var(--ease),
    padding 0.55s var(--ease);
}
.story-card:not(.story-card--video) .story-card__body {
  padding-bottom: 8px;
}
.story-card:not(.story-card--video):hover .story-card__body,
.story-card:not(.story-card--video):focus-within .story-card__body {
  bottom: 14px;
  transform: none;
  padding: 12px 16px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  max-height: calc(100% - 28px);
  box-sizing: border-box;
  overflow: hidden;
}
.story-card__body h3 {
  margin: 0 0 4px;
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 1.8vw, 1.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
  line-height: 1.25;
  max-width: 100%;
}
.story-card__body p {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
}
.story-card__more {
  position: static;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-sizing: border-box;
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  margin-top: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(8px);
  pointer-events: none;
  cursor: pointer;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #111;
  background: #fff;
  white-space: nowrap;
  transition:
    opacity 0.4s var(--ease),
    transform 0.45s var(--ease),
    max-height 0.45s var(--ease),
    margin-top 0.45s var(--ease),
    padding 0.45s var(--ease),
    background 0.25s;
}
.story-card:not(.story-card--video):hover .story-card__more,
.story-card:not(.story-card--video):focus-within .story-card__more {
  opacity: 1;
  max-height: 48px;
  margin-top: 10px;
  margin-bottom: 2px;
  padding: 10px 16px;
  transform: translateY(0);
  pointer-events: auto;
  flex-shrink: 0;
}
.story-card__more:hover {
  background: var(--gold);
  color: #fff;
}
@media (hover: none) {
  .story-card:not(.story-card--video) .story-card__body {
    bottom: 14px;
    transform: none;
    padding: 12px 16px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    max-height: calc(100% - 28px);
    box-sizing: border-box;
    overflow: hidden;
  }
  .story-card:not(.story-card--video) .story-card__more {
    opacity: 1;
    max-height: 48px;
    margin-top: 12px;
    padding: 10px 16px;
    transform: none;
    pointer-events: auto;
  }
}

/* Gallery modal */
.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 130;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  padding: 50px;
  overflow: auto;
}
.gallery-modal[hidden] { display: none !important; }
.gallery-modal__panel {
  position: relative;
  width: min(1400px, 100%);
  height: auto;
  max-height: calc(100dvh - 100px);
  overflow: hidden;
  background: #121212;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 35px 16px 35px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-self: center;
}
.gallery-modal__close {
  position: absolute;
  top: 12px;
  right: 14px;
  z-index: 2;
  font-size: 2rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}
.gallery-modal__close:hover { color: var(--gold); }
.gallery-modal__head {
  flex: 0 0 auto;
  margin: 0 40px 16px 0;
}
.gallery-modal__title {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(1.15rem, 2.4vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.25;
  padding-right: 8px;
  word-break: break-word;
}
.gallery-modal__sub {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.95rem;
}
.gallery-modal__grid {
  flex: 0 1 auto;
  min-height: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 14px;
  align-content: start;
  overflow: visible;
  padding-right: 2px;
}
.gallery-modal__panel.is-scrollable .gallery-modal__grid {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: min(68vh, 720px);
  padding-right: 10px;
  scrollbar-width: thin;
  scrollbar-color: rgba(184, 146, 74, 0.75) rgba(255, 255, 255, 0.06);
}
.gallery-modal__panel.is-scrollable .gallery-modal__grid::-webkit-scrollbar {
  width: 8px;
}
.gallery-modal__panel.is-scrollable .gallery-modal__grid::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  margin: 4px 0;
}
.gallery-modal__panel.is-scrollable .gallery-modal__grid::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #d4b06a, #b8924a 55%, #8f6d35);
  border-radius: 999px;
  border: 2px solid transparent;
  background-clip: padding-box;
}
.gallery-modal__panel.is-scrollable .gallery-modal__grid::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #e0c07a, #c9a255 55%, #a07a3c);
  background-clip: padding-box;
}
.gallery-modal__grid figure {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #1a1a1a;
  aspect-ratio: 4 / 3;
}
.gallery-modal__grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s var(--ease);
}
.gallery-modal__grid figure:hover img { transform: scale(1.04); }

@media (max-width: 700px) {
  .gallery-modal {
    padding: 0;
    display: block;
    overflow: hidden;
  }
  .gallery-modal__panel {
    width: 100%;
    height: 100dvh;
    max-height: 100dvh;
    border-radius: 0;
    border: 0;
    padding: 12px 14px 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  .gallery-modal__close {
    top: 10px;
    right: 12px;
    font-size: 2.2rem;
  }
  .gallery-modal__head {
    margin: 0 36px 12px 0;
    flex: 0 0 auto;
  }
  .gallery-modal__title {
    font-size: 1.25rem;
    line-height: 1.25;
  }
  .gallery-modal__sub {
    margin-top: 4px;
    font-size: 0.85rem;
  }
  /* Simple one-column stack — scroll down for more images */
  .gallery-modal__grid,
  .gallery-modal__panel.is-scrollable .gallery-modal__grid {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
    gap: 12px;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    max-height: none;
    padding-right: 0;
    grid-template-columns: unset;
  }
  .gallery-modal__grid figure {
    flex: 0 0 auto;
    width: 100%;
    aspect-ratio: auto;
    border-radius: 12px;
  }
  .gallery-modal__grid img {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: center top;
    transform: none !important;
  }
  .gallery-modal__grid figure:hover img {
    transform: none;
  }
}

/* Sticky social dock — right edge */
.social-float {
  position: fixed;
  right: max(12px, env(safe-area-inset-right));
  top: 50%;
  transform: translateY(-50%);
  z-index: 95;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px 8px;
  border-radius: 999px;
  background: rgba(12, 12, 12, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}
.social-float__link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.25s;
}
.social-float__link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.social-float__link:hover,
.social-float__link:focus-visible {
  background: var(--gold);
  border-color: var(--gold);
  color: #111;
  transform: scale(1.06);
  outline: none;
}
body.menu-open .social-float {
  opacity: 0;
  pointer-events: none;
}

/* Back to top — bottom right arrow */
.back-to-top {
  position: fixed;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(20px, env(safe-area-inset-bottom));
  z-index: 96;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(12, 12, 12, 0.82);
  color: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  pointer-events: none;
  transition:
    opacity 0.3s var(--ease),
    visibility 0.3s,
    transform 0.3s var(--ease),
    background 0.25s,
    border-color 0.25s,
    color 0.25s;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover,
.back-to-top:focus-visible {
  background: var(--gold);
  border-color: var(--gold);
  color: #111;
  outline: none;
}
.back-to-top svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
body.menu-open .back-to-top {
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 700px) {
  .back-to-top {
    width: 44px;
    height: 44px;
    right: max(12px, env(safe-area-inset-right));
    bottom: max(16px, env(safe-area-inset-bottom));
  }
}

@media (max-width: 700px) {
  .social-float {
    right: max(8px, env(safe-area-inset-right));
    top: auto;
    bottom: max(88px, calc(env(safe-area-inset-bottom) + 72px));
    transform: none;
    padding: 8px 6px;
    gap: 8px;
  }
  .social-float__link {
    width: 38px;
    height: 38px;
  }
}

/* YouTube modal */
.yt-modal {
  position: fixed;
  inset: 0;
  z-index: 140;
  background: rgba(0, 0, 0, 0.9);
  display: grid;
  place-items: center;
  padding: 24px;
}
.yt-modal[hidden] { display: none !important; }
.yt-modal__close {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 2.2rem;
  color: #fff;
}
.yt-modal__frame {
  width: min(960px, 100%);
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
}
.yt-modal__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.yt-modal__note {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.page-stub {
  min-height: 70vh;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 80px 24px;
  background: #0b0b0b;
  color: var(--white);
}
.page-stub__title {
  margin: 12px 0 0;
  font-family: var(--font-sans);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}
.page-stub__sub {
  margin: 16px auto 0;
  max-width: 42ch;
  color: rgba(247, 247, 245, 0.55);
  line-height: 1.55;
}

/* ---------- ACHIEVEMENTS + MOMENTS BANDS ---------- */
.band {
  position: relative;
  z-index: 2;
  padding: clamp(88px, 12vw, 140px) 0 clamp(88px, 12vw, 140px);
  overflow: hidden;
  isolation: isolate;
}
.band--light {
  background:
    radial-gradient(ellipse 55% 45% at 70% 0%, rgba(184, 146, 74, 0.08), transparent 55%),
    var(--white);
  color: var(--black);
}
.band--light::after {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -1px;
  height: clamp(48px, 8vw, 88px);
  background: #0b0b0b;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  z-index: 3;
  pointer-events: none;
}
.band--dark {
  background:
    radial-gradient(ellipse 70% 50% at 40% 0%, rgba(184, 146, 74, 0.1), transparent 55%),
    radial-gradient(ellipse 40% 35% at 100% 60%, rgba(255, 255, 255, 0.03), transparent 50%),
    #0b0b0b;
  color: var(--white);
}
.band--dark::after {
  content: "";
  position: absolute;
  left: -12%;
  right: -12%;
  bottom: -1px;
  height: clamp(56px, 9vw, 100px);
  /* Moments → Minister videos (white) */
  background: #ffffff;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  z-index: 3;
  pointer-events: none;
}
.band__head {
  position: relative;
  z-index: 4;
  max-width: 820px;
  margin: 0 auto 40px;
  padding: 0 clamp(20px, 4vw, 56px);
  text-align: center;
}
.band--light .stories__title { color: var(--black); }
.band--light .stories__sub { color: rgba(5, 5, 5, 0.58); }
.band--light .stories__btn {
  color: var(--black);
  background: rgba(5, 5, 5, 0.05);
  border-color: rgba(5, 5, 5, 0.14);
}
.band--light .stories__btn:hover {
  background: rgba(184, 146, 74, 0.18);
  border-color: rgba(184, 146, 74, 0.55);
  color: var(--black);
}
.band--dark .stories__title { color: var(--white); }
.band--dark .stories__sub { color: rgba(247, 247, 245, 0.58); }

.logo-marquee {
  position: relative;
  z-index: 4;
  overflow: hidden;
  width: 100%;
  cursor: grab;
  touch-action: pan-y;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.logo-marquee.is-dragging { cursor: grabbing; }
.logo-marquee__track {
  display: flex;
  gap: 16px;
  width: max-content;
  padding: 6px 0;
  animation: none;
  will-change: transform;
}
.logo-marquee:hover .logo-marquee__track {
  animation-play-state: unset;
}
.logo-chip {
  flex: 0 0 auto;
  width: clamp(200px, 42vw, 260px);
  min-height: 148px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  padding: 22px 20px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(5, 5, 5, 0.08);
  box-shadow: 0 10px 28px rgba(5, 5, 5, 0.05);
}
.logo-chip__mark {
  display: inline-grid;
  place-items: center;
  min-width: 44px;
  height: 44px;
  padding: 0 10px;
  border-radius: 12px;
  background: rgba(5, 5, 5, 0.06);
  color: var(--black);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.logo-chip__mark--gold {
  background: rgba(184, 146, 74, 0.16);
  color: #8a6a2e;
}
.logo-chip strong {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--black);
  line-height: 1.25;
}
.logo-chip span {
  font-size: 0.78rem;
  line-height: 1.4;
  color: rgba(5, 5, 5, 0.55);
}

.moments-stack {
  position: relative;
  z-index: 4;
  display: grid;
  gap: 14px;
}
.img-marquee {
  overflow: hidden;
  width: 100%;
  cursor: grab;
  touch-action: pan-y;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.img-marquee.is-dragging { cursor: grabbing; }
.img-marquee.is-dragging img { pointer-events: none; }
.img-marquee__track {
  display: flex;
  gap: 14px;
  width: max-content;
  will-change: transform;
  animation: none;
}
.img-marquee--rtl .img-marquee__track,
.img-marquee--ltr .img-marquee__track {
  animation: none;
}
.img-marquee:hover .img-marquee__track {
  animation-play-state: unset;
}
.img-marquee__track img {
  flex: 0 0 auto;
  width: clamp(220px, 36vw, 320px);
  height: clamp(150px, 24vw, 210px);
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
  background: #1a1a1a;
  cursor: zoom-in;
  user-select: none;
  -webkit-user-drag: none;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.img-marquee__track img:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

@media (max-width: 700px) {
  .logo-chip {
    width: min(78vw, 240px);
    min-height: 136px;
    padding: 18px 16px;
  }
  .img-marquee__track img {
    width: min(72vw, 260px);
    height: 150px;
  }
  .moments-stack { gap: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .logo-marquee__track,
  .img-marquee--rtl .img-marquee__track,
  .img-marquee--ltr .img-marquee__track { animation: none; }
}

.site-footer {
  background: var(--black);
  color: #f7f7f5;
  border-top: 1px solid rgba(247,247,245,0.08);
  padding: 28px clamp(20px, 4vw, 56px);
}
.site-footer__inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.site-footer__brand {
  margin: 0; font-family: var(--font-sans); font-size: 1.1rem; font-weight: 700;
  color: #f7f7f5;
}
.site-footer__copy {
  margin: 0; font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: #f7f7f5;
  opacity: 0.5;
}
.site-footer__copy a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}
.site-footer__copy a:hover {
  opacity: 1;
}

/* ---------- LIGHTBOX ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 120;
  background: rgba(0,0,0,0.92);
  display: grid; place-items: center;
  padding: 24px;
}
.lightbox[hidden] { display: none !important; }
.lightbox__close {
  position: absolute; top: 20px; right: 24px;
  font-size: 2.4rem; color: var(--gold);
}
.lightbox__video {
  width: min(1100px, 100%);
  max-height: 80vh;
  background: #000;
}

.img-lightbox {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 40px);
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.img-lightbox[hidden] { display: none !important; }
.img-lightbox__close {
  position: absolute;
  top: 16px;
  right: 20px;
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 2rem;
  line-height: 1;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: color 0.2s, background 0.2s;
}
.img-lightbox__close:hover {
  color: var(--gold);
  background: rgba(255, 255, 255, 0.14);
}
.img-lightbox__img {
  max-width: min(1100px, 100%);
  max-height: min(86vh, 900px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
}

/* Manifesto lightbox — fit screen, 20px top/bottom, L/R auto */
.manifesto-lightbox {
  position: fixed;
  inset: 0;
  z-index: 145;
  display: grid;
  place-items: center;
  padding: 20px 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.manifesto-lightbox[hidden] { display: none !important; }
.manifesto-lightbox__close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 2rem;
  line-height: 1;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: color 0.2s, background 0.2s;
}
.manifesto-lightbox__close:hover {
  color: var(--gold);
  background: rgba(255, 255, 255, 0.16);
}
.manifesto-lightbox__img {
  display: block;
  width: auto;
  height: auto;
  max-height: calc(100vh - 40px);
  max-width: min(100%, calc(100vw - 24px));
  margin: 0 auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
}

/* ---------- SUCCESS STORIES MODAL ---------- */
.stories-modal {
  position: fixed;
  inset: 0;
  z-index: 146;
  background: rgb(0 0 0 / 82%);
  display: grid;
  place-items: center;
  padding: 24px;
}
.stories-modal[hidden] { display: none !important; }
.stories-modal__panel {
  position: relative;
  width: min(710px, 94vw);
  max-height: min(88vh, 760px);
  overflow: auto;
  padding: clamp(30px, 5vw, 48px) clamp(26px, 4.5vw, 44px);
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(5, 5, 5, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  color: #0c0c0c;
}
.stories-modal__close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: #8a6a2e;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}
.stories-modal__close:hover { color: #0c0c0c; }
.stories-modal__title {
  margin: 0 0 26px;
  padding-right: 36px;
  font-family: var(--font-sans);
  font-size: clamp(1.65rem, 3.8vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #0c0c0c;
}
.stories-modal__list {
  margin: 0;
  padding: 0 0 0 1.2em;
  display: grid;
  gap: 18px;
}
.stories-modal__list li {
  font-size: clamp(1.2rem, 2.6vw, 1.48rem);
  font-weight: 700;
  line-height: 1.5;
  color: #0c0c0c;
}
.stories-modal__list li::marker {
  color: var(--gold);
  font-weight: 800;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero__scroll span { animation: none; }
}

/* ---------- PRESS / NEWS ---------- */
.press {
  position: relative;
  z-index: 2;
  background:
    radial-gradient(ellipse 60% 40% at 10% 0%, rgba(184, 146, 74, 0.12), transparent 55%),
    radial-gradient(ellipse 50% 45% at 90% 100%, rgba(184, 146, 74, 0.06), transparent 50%),
    #050505;
  color: #fff;
  padding: clamp(72px, 10vw, 120px) 0 clamp(64px, 9vw, 100px);
  overflow: hidden;
}
.press--page {
  padding-top: clamp(28px, 4vw, 48px);
  background: #050505;
}
.press__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}
.press__head {
  max-width: 640px;
  margin: 0 auto 44px;
  text-align: center;
}
.press__title {
  margin: 0 0 12px;
  font-family: var(--font-sans);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
}
.press__sub {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.6;
  color: rgba(247, 247, 245, 0.62);
}

.press-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 500px));
  gap: clamp(16px, 2.5vw, 28px);
  justify-content: center;
}
.press-card {
  position: relative;
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  width: 500px;
  max-width: 100%;
  height: 430px;
  max-height: 430px;
  aspect-ratio: 500 / 430;
  min-height: 0;
  background: #111;
  isolation: isolate;
}
@media (max-width: 1100px) {
  .press-card {
    width: 100%;
    height: auto;
    max-height: none;
  }
}
.press-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.7s var(--ease);
}
.press-card:hover img { transform: scale(1.04); }
.press-card__fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.88) 100%);
  pointer-events: none;
  transition: background 0.35s var(--ease);
}
.press-card:hover .press-card__fade {
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.82) 100%);
}
.press-card__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 18px 18px 16px;
  text-align: left;
  transition: padding 0.35s var(--ease), text-align 0.35s;
}
.press-card:hover .press-card__body,
.press-card:focus-within .press-card__body {
  text-align: center;
  padding-bottom: 20px;
}
.press-card__body h3 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: #fff;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
}
.press-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  margin-top: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(8px);
  pointer-events: none;
  padding: 0 16px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  color: #111;
  background: #fff;
  text-decoration: none;
  white-space: nowrap;
  transition:
    opacity 0.4s var(--ease),
    transform 0.45s var(--ease),
    max-height 0.45s var(--ease),
    margin-top 0.45s var(--ease),
    padding 0.45s var(--ease),
    background 0.25s;
}
.press-card:hover .press-card__btn,
.press-card:focus-within .press-card__btn {
  opacity: 1;
  max-height: 48px;
  margin-top: 14px;
  padding: 10px 18px;
  transform: translateY(0);
  pointer-events: auto;
}
.press-card__btn:hover {
  background: var(--gold);
  color: #fff;
}

@media (max-width: 767px), (hover: none) {
  .press-cards {
    grid-template-columns: minmax(0, 500px);
    justify-content: center;
  }
  .press-card {
    width: min(500px, 100%);
    height: auto;
    aspect-ratio: 500 / 430;
    min-height: 0;
  }
  .press-card__body {
    text-align: center;
    padding: 16px 14px 14px;
  }
  .press-card__btn {
    opacity: 1;
    max-height: 48px;
    margin-top: 12px;
    padding: 10px 18px;
    transform: none;
    pointer-events: auto;
  }
}

.press-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: stretch;
  padding: clamp(16px, 2vw, 22px);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}
.press-feature__media {
  position: relative;
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  min-height: 280px;
  background: #111;
}
.press-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 320px;
}
.press-feature__badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.72);
  border: 1px solid rgba(184, 146, 74, 0.45);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}
.press-feature__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(8px, 1.5vw, 18px) 4px clamp(8px, 1.5vw, 18px) 0;
}
.press-feature__kicker {
  margin: 0 0 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.press-feature__headline {
  margin: 0 0 14px;
  font-family: var(--font-sans);
  font-size: clamp(1.35rem, 2.6vw, 1.95rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.press-feature__copy {
  margin: 0 0 22px;
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(247, 247, 245, 0.68);
}
.press-feature__outlets {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}
.press-outlet {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.press-outlet:hover {
  background: rgba(184, 146, 74, 0.14);
  border-color: rgba(184, 146, 74, 0.45);
  transform: translateY(-1px);
}
.press-outlet__name {
  font-weight: 700;
  font-size: 0.95rem;
}
.press-outlet__go {
  color: var(--gold);
  font-size: 1.05rem;
}
.press-feature .stories__btn {
  align-self: flex-start;
}

.press-clips {
  margin-top: clamp(40px, 6vw, 64px);
}
.press-clips__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.press-clips__title {
  margin: 0;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.press-clips__note {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(247, 247, 245, 0.5);
}
.press-clips__rail {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 6px 2px 14px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(184, 146, 74, 0.7) rgba(255, 255, 255, 0.06);
}
.press-clips__rail::-webkit-scrollbar { height: 8px; }
.press-clips__rail::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
}
.press-clips__rail::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, #d4b06a, #b8924a);
  border-radius: 999px;
}
.press-clips__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.press-clip {
  flex: 0 0 auto;
  width: clamp(180px, 28vw, 240px);
  aspect-ratio: 3 / 4;
  padding: 0;
  border: 0;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  background: #1a1a1a;
  scroll-snap-align: start;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.press-clips__grid .press-clip {
  width: auto;
}
.press-clip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s var(--ease);
}
.press-clip:hover {
  transform: translateY(-4px) rotate(-0.6deg);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
}
.press-clip:hover img { transform: scale(1.04); }

@media (max-width: 900px) {
  .press-feature {
    display: flex;
    flex-direction: column;
    grid-template-columns: none;
  }
  .press-feature__media {
    order: -1; /* image on top on mobile */
  }
  .press-feature__media img { min-height: 240px; }
  .press-clips__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .press-clips__grid { grid-template-columns: 1fr 1fr; gap: 10px; }
}

/* ---------- PRESS — white + iOS frost glass ---------- */
.press--frost {
  background: #ffffff;
  color: #0c0c0c;
  isolation: isolate;
  overflow: hidden;
  padding-bottom: clamp(72px, 10vw, 120px);
}
.press--frost::after {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -1px;
  height: clamp(48px, 8vw, 88px);
  /* Press → Moments (dark) */
  background: #0b0b0b;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  z-index: 3;
  pointer-events: none;
}
.press--frost .press__shade {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}
.press--frost .press__shade--a {
  width: min(520px, 80vw);
  height: min(520px, 80vw);
  top: -12%;
  left: -10%;
  background: rgba(184, 146, 74, 0.22);
}
.press--frost .press__shade--b {
  width: min(420px, 70vw);
  height: min(420px, 70vw);
  top: 28%;
  right: -14%;
  background: rgba(26, 42, 74, 0.1);
}
.press--frost .press__shade--c {
  width: min(380px, 65vw);
  height: min(380px, 65vw);
  bottom: -8%;
  left: 30%;
  background: rgba(184, 146, 74, 0.14);
}
.press--frost .press__inner {
  position: relative;
  z-index: 1;
}
.press--frost .stories__label {
  color: var(--gold);
}
.press--frost .press__title {
  color: #0c0c0c;
}
.press--frost .press__sub {
  color: rgba(5, 5, 5, 0.55);
}

.press--frost .press-feature {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow:
    0 8px 32px rgba(20, 30, 50, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  border-radius: 32px;
}
.press--frost .press-feature__media {
  background: rgba(5, 5, 5, 0.04);
  border-radius: 22px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}
.press--frost .press-feature__badge {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(184, 146, 74, 0.35);
  color: #8a6a2e;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.press--frost .press-feature__headline {
  color: #0c0c0c;
}
.press--frost .press-feature__copy {
  color: rgba(5, 5, 5, 0.62);
}
.press--frost .press-outlet {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.75);
  color: #0c0c0c;
  border-radius: 16px;
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  box-shadow: 0 4px 16px rgba(20, 30, 50, 0.05);
}
.press--frost .press-outlet:hover {
  background: rgba(184, 146, 74, 0.16);
  border-color: rgba(184, 146, 74, 0.4);
  color: #0c0c0c;
}
.press--frost .press-feature .stories__btn {
  color: #0c0c0c;
  border-color: rgba(5, 5, 5, 0.2);
}
.press--frost .press-feature .stories__btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.press--frost .press-clips__title {
  color: #0c0c0c;
}
.press--frost .press-clips__note {
  color: rgba(5, 5, 5, 0.45);
}
.press--frost .press-clips__rail {
  scrollbar-color: rgba(184, 146, 74, 0.75) rgba(5, 5, 5, 0.06);
}
.press--frost .press-clips__rail::-webkit-scrollbar-track {
  background: rgba(5, 5, 5, 0.06);
}
.press--frost .press-clip {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 18px;
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  box-shadow: 0 10px 28px rgba(20, 30, 50, 0.1);
}
.press--frost .press-clip:hover {
  box-shadow: 0 16px 36px rgba(20, 30, 50, 0.14);
}

/* Print coverage — standalone section below Moments */
/* ---------- MINISTER VIDEOS (white band after Moments) ---------- */
.minister-videos.band--light::after {
  /* Minister videos → Print coverage cream */
  background: #ebe7df;
}
.minister-videos__head {
  margin-bottom: clamp(32px, 4.5vw, 48px);
}
.minister-videos__row {
  position: relative;
  z-index: 4;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 40px);
  display: grid;
  grid-template-columns: minmax(160px, 1fr) 493px 493px minmax(160px, 1fr);
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
}
.townhall-video {
  position: relative;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.townhall-video__media {
  position: relative;
  width: 493px;
  max-width: 100%;
  height: 280px;
  border-radius: 14px;
  overflow: visible;
  background: transparent;
  isolation: isolate;
}
.townhall-video__media::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 17px;
  z-index: 0;
  background: linear-gradient(
    125deg,
    #f0d9a0 0%,
    #b8924a 18%,
    #ffffff 32%,
    #d4b06a 48%,
    #1a2a4a 62%,
    #b8924a 78%,
    #f5e6c8 100%
  );
  background-size: 300% 300%;
  animation: townhallLedShift 4.5s linear infinite;
  box-shadow:
    0 0 10px rgba(212, 176, 106, 0.75),
    0 0 24px rgba(184, 146, 74, 0.45),
    0 0 48px rgba(184, 146, 74, 0.22);
  pointer-events: none;
}
@keyframes townhallLedShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.townhall-video__video {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  border-radius: 14px;
  background: #050505;
}
.townhall-video__play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.94);
  color: #111;
  font-size: 1.05rem;
  line-height: 1;
  border: 0;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s var(--ease), background 0.3s, opacity 0.3s, visibility 0.3s;
}
.townhall-video__play span {
  margin-left: 3px;
}
.townhall-video__play:hover {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--gold);
  color: #fff;
}
.townhall-video__play.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.townhall-video__title {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(0.92rem, 1.15vw, 2.05rem);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: #0c0c0c;
}
.townhall-video__title--left {
  text-align: right;
  padding-right: 4px;
}
.townhall-video__title--right {
  text-align: left;
  padding-left: 4px;
}
@media (prefers-reduced-motion: reduce) {
  .townhall-video__media::before {
    animation: none;
    background: linear-gradient(135deg, #d4b06a, #b8924a, #1a2a4a, #d4b06a);
  }
}
@media (max-width: 1280px) {
  .minister-videos__row {
    grid-template-columns: minmax(120px, 1fr) minmax(320px, 493px) minmax(320px, 493px) minmax(120px, 1fr);
  }
  .townhall-video__media {
    width: 100%;
    height: auto;
    aspect-ratio: 493 / 280;
  }
}
@media (max-width: 980px) {
  .minister-videos__row {
    grid-template-columns: 1fr;
    max-width: 560px;
    gap: 14px;
  }
  .townhall-video__title--left {
    order: 1;
    text-align: center;
    padding: 0;
  }
  .townhall-video:nth-of-type(1) {
    order: 2;
  }
  .townhall-video:nth-of-type(2) {
    order: 4;
  }
  .townhall-video__title--right {
    order: 3;
    text-align: center;
    padding: 0;
  }
  .townhall-video__media {
    width: min(493px, 100%);
    margin: 0 auto;
  }
  .townhall-video__title {
    font-size: clamp(0.95rem, 3.8vw, 1.1rem);
  }
  .townhall-video__play {
    width: 56px;
    height: 56px;
    font-size: 0.95rem;
  }
}
@media (max-width: 480px) {
  .townhall-video__play {
    width: 52px;
    height: 52px;
  }
}

.press-clips-section {
  position: relative;
  z-index: 2;
  background:
    radial-gradient(ellipse 55% 45% at 8% 20%, rgba(184, 146, 74, 0.16), transparent 58%),
    radial-gradient(ellipse 50% 40% at 92% 80%, rgba(26, 42, 74, 0.08), transparent 55%),
    linear-gradient(180deg, #ebe7df 0%, #f3f0ea 45%, #e8e4db 100%);
  color: #0c0c0c;
  padding: clamp(64px, 9vw, 110px) 0 clamp(88px, 12vw, 130px);
  overflow: hidden;
  isolation: isolate;
}
.press-clips-section::after {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -1px;
  height: clamp(48px, 8vw, 88px);
  background: #050505;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  z-index: 3;
  pointer-events: none;
}
.press-clips-section__inner {
  position: relative;
  z-index: 4;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}
.press-clips-section .press-clips {
  margin-top: 0;
  padding: clamp(22px, 3vw, 32px);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow:
    0 18px 48px rgba(40, 35, 25, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
}
.press-clips-section .stories__label {
  margin: 0 0 8px;
  color: var(--gold);
}
.press-clips-section .press-clips__title {
  color: #0c0c0c;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
}
.press-clips-section .press-clips__note {
  color: rgba(5, 5, 5, 0.5);
}
.press-clips-section .press-clips__rail {
  display: none;
}
.press-clips-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  cursor: grab;
  touch-action: pan-y;
  margin-top: 6px;
  mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
}
.press-clips-marquee.is-dragging { cursor: grabbing; }
.press-clips-marquee.is-dragging .press-clip {
  pointer-events: none;
}
.press-clips-marquee__track {
  display: flex;
  gap: 16px;
  width: max-content;
  will-change: transform;
  animation: none;
}
.press-clips-marquee .press-clip {
  flex: 0 0 auto;
  width: clamp(180px, 26vw, 240px);
  aspect-ratio: 3 / 4;
  padding: 0;
  border: 1px solid rgba(184, 146, 74, 0.28);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  background: #1a1814;
  box-shadow: 0 14px 36px rgba(20, 16, 10, 0.22);
  transition: transform 0.35s var(--ease), box-shadow 0.35s, border-color 0.35s;
}
.press-clips-marquee .press-clip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.press-clips-marquee:not(.is-dragging) .press-clip:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 44px rgba(20, 16, 10, 0.3);
  border-color: rgba(184, 146, 74, 0.55);
}

.stories__title--oneline {
  white-space: nowrap;
}
@media (max-width: 560px) {
  .stories__title--oneline {
    white-space: normal;
  }
}

/* ---------- INNER PAGES ---------- */

.page-hero {
  position: relative;
  padding: clamp(130px, 16vh, 170px) clamp(20px, 5vw, 64px) clamp(40px, 7vw, 64px);
  background: #050505;
  color: #fff;
  text-align: center;
  overflow: hidden;
}
body.inner-page:has(.card-grid--videos) .page-hero {
  padding-bottom: clamp(20px, 4vh, 36px);
}
body.inner-page:has(.card-grid--videos) .page-block--dark {
  padding-top: 0;
}
.page-hero--light {
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(184,146,74,0.1), transparent 55%),
    #f7f7f5;
  color: #111;
}
.page-hero__title {
  margin: 0 0 14px;
  font-family: var(--font-sans);
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.page-hero__title em {
  font-style: italic;
  font-weight: 600;
  color: var(--gold);
}
.page-hero__sub {
  margin: 0 auto;
  max-width: 52ch;
  font-size: clamp(0.98rem, 1.5vw, 1.1rem);
  line-height: 1.65;
  opacity: 0.72;
}
.page-hero__social {
  margin-top: 28px;
  justify-content: center;
  position: sticky;
  top: calc(var(--nav-h) + 16px);
  z-index: 5;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(12, 12, 12, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.page-hero--light .page-hero__social {
  background: rgba(247, 247, 245, 0.92);
  border-color: rgba(5, 5, 5, 0.08);
}
.page-hero--light .page-hero__social .journey__social-link {
  color: #050505;
  border-color: rgba(5, 5, 5, 0.18);
}
.page-hero:not(.page-hero--light) .page-hero__social .journey__social-link {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.page-block {
  position: relative;
  padding: clamp(48px, 7vw, 88px) clamp(20px, 5vw, 64px);
}
.page-block--dark { background: #050505; color: #fff; }
.page-block--light {
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(184,146,74,0.07), transparent 55%),
    #f7f7f5;
  color: #111;
}
.page-block--light .stories__title { color: #050505; }
.page-block--light .stories__sub { color: rgba(5, 5, 5, 0.58); }
.page-block__head {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}
.page-block__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.page-block__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
}
.page-block--light .stories__btn {
  color: var(--black);
  background: rgba(5, 5, 5, 0.05);
  border-color: rgba(5, 5, 5, 0.14);
}
.page-copy {
  margin: 16px auto 0;
  max-width: 54ch;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(247, 247, 245, 0.72);
}
.page-copy--dark { color: rgba(5, 5, 5, 0.68); }

.stats--page {
  position: relative;
  z-index: 2;
  margin: -8px 0 0;
  padding: 0 clamp(16px, 3vw, 40px) clamp(28px, 4vw, 48px);
  background: #f7f7f5;
}
.stats--page .stats__bar {
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.card-grid .story-card {
  width: 100%;
  flex: none;
}
.card-grid--videos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(20px, 2.5vw, 32px);
  max-width: min(1280px, 94vw);
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 40px) clamp(48px, 8vh, 96px);
}
.card-grid--videos .story-card.story-card--video {
  width: min(600px, calc(50% - 16px));
  max-width: 600px;
  height: auto;
  aspect-ratio: 16 / 9;
  flex: 1 1 420px;
}
.card-grid--videos-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  max-width: min(1280px, 94vw);
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 40px) clamp(48px, 8vh, 96px);
}
.card-grid--videos:has(+ .card-grid--videos-3) {
  padding-bottom: clamp(20px, 3vh, 40px);
}
.card-grid--videos-3 .story-card.story-card--video {
  width: 100%;
  max-width: none;
  flex: none;
  aspect-ratio: 16 / 9;
}
.card-grid--videos-3 .story-card__body h3 {
  font-size: clamp(0.85rem, 1.4vw, 1.05rem);
  -webkit-line-clamp: 3;
  line-clamp: 3;
}
@media (max-width: 900px) {
  .card-grid--videos-3 {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 720px) {
  .card-grid--videos .story-card.story-card--video {
    width: 100%;
    max-width: 100%;
    flex: 1 1 100%;
  }
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 1280px;
  margin: 0 auto;
}
.photo-grid--about {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.photo-grid__item {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #1a1a1a;
  cursor: pointer;
}
.photo-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}
.photo-grid__item:hover img { transform: scale(1.05); }

/* Recognition Moments — image only, single lightbox (no titles / gallery) */
.recognition-moments .recognition-moments__card {
  aspect-ratio: 4 / 5;
  border-radius: 22px;
  margin: 0;
}

.logo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}
.logo-grid .logo-chip {
  flex: 0 1 calc((100% - 48px) / 4);
  width: calc((100% - 48px) / 4);
  max-width: 260px;
  min-width: 200px;
  min-height: 160px;
}

.page-empty {
  min-height: calc(100dvh - 120px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(120px, 18vh, 160px) clamp(20px, 5vw, 64px) 80px;
  background:
    radial-gradient(ellipse 60% 40% at 50% 30%, rgba(184,146,74,0.12), transparent 60%),
    #050505;
}
.page-empty .page-hero__title { color: #fff; }
.page-empty .page-hero__sub { color: rgba(247, 247, 245, 0.65); }

@media (max-width: 980px) {
  .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .photo-grid,
  .photo-grid--about { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .logo-grid .logo-chip {
    flex-basis: calc((100% - 16px) / 2);
    width: calc((100% - 16px) / 2);
    max-width: none;
  }
}
@media (max-width: 640px) {
  .card-grid,
  .photo-grid,
  .photo-grid--about { grid-template-columns: 1fr; }
  .logo-grid .logo-chip {
    flex-basis: 100%;
    width: 100%;
    min-width: 0;
  }
  .stats--page { margin-top: 0; }
}

/* ---------- CONTACT US — iOS frost glass ---------- */
.contact-page {
  background: #f4f5f7;
  color: #0c0c0c;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}
.contact-page main {
  flex: 1 0 auto;
}
.contact-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 0;
  padding: calc(var(--nav-h) + 36px) clamp(20px, 4vw, 56px) clamp(48px, 8vw, 90px);
  background:
    linear-gradient(180deg, #ffffff 0%, #f3f5f8 55%, #e9edf3 100%);
}
.contact-hero__shade {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  pointer-events: none;
  z-index: 0;
}
.contact-hero__shade--a {
  width: min(560px, 85vw);
  height: min(560px, 85vw);
  top: -18%;
  left: -12%;
  background: rgba(184, 146, 74, 0.28);
}
.contact-hero__shade--b {
  width: min(460px, 75vw);
  height: min(460px, 75vw);
  top: 18%;
  right: -16%;
  background: rgba(90, 140, 220, 0.18);
}
.contact-hero__shade--c {
  width: min(420px, 70vw);
  height: min(420px, 70vw);
  bottom: -12%;
  left: 28%;
  background: rgba(184, 146, 74, 0.16);
}
.contact-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}
.contact-hero__eyebrow {
  margin: 0 0 10px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8a6a2e;
}
.contact-hero__title {
  margin: 0 0 12px;
  font-family: var(--font-sans);
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0c0c0c;
}
.contact-hero__sub {
  margin: 0 0 28px;
  font-size: 1.02rem;
  line-height: 1.6;
  color: rgba(5, 5, 5, 0.58);
}
.contact-hero__sub strong {
  color: #0c0c0c;
  font-weight: 700;
}
.contact-glass {
  padding: clamp(22px, 3vw, 34px);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow:
    0 18px 50px rgba(20, 30, 50, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(28px) saturate(165%);
  -webkit-backdrop-filter: blur(28px) saturate(165%);
}
.contact-form {
  display: grid;
  gap: 16px;
}
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-field {
  display: grid;
  gap: 8px;
}
.contact-field span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(5, 5, 5, 0.55);
}
.contact-field input,
.contact-field textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  color: #0c0c0c;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  outline: none;
  resize: vertical;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}
.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: rgba(5, 5, 5, 0.38);
}
.contact-field input:focus,
.contact-field textarea:focus {
  border-color: rgba(184, 146, 74, 0.65);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 0 0 3px rgba(184, 146, 74, 0.18);
}
.contact-form__honey {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}
.contact-form__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 6px;
}
.contact-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  border: 0;
  background: #0c0c0c;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}
.contact-form__submit:hover:not(:disabled) {
  background: var(--gold);
  color: #111;
  transform: translateY(-1px);
}
.contact-form__submit:disabled {
  opacity: 0.65;
  cursor: wait;
}
.contact-form__status {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
}
.contact-form__status.is-pending { color: rgba(5, 5, 5, 0.55); }
.contact-form__status.is-success { color: #1f7a45; }
.contact-form__status.is-error { color: #b42318; }
.contact-recaptcha {
  margin-top: 4px;
  min-height: 78px;
}
.contact-recaptcha__hint {
  margin: 8px 0 0;
  font-size: 0.85rem;
  color: rgba(5, 5, 5, 0.55);
}
.contact-page .mobile-menu__links a {
  color: #fff;
}
.contact-page .mobile-menu__links a.is-active {
  color: var(--gold);
}
.contact-page .site-nav__brand,
.contact-page .site-nav__name {
  color: #fff;
}
.contact-page .site-nav__mark {
  color: var(--gold);
}
.contact-page .site-footer {
  background: #050505;
  color: #f7f7f5;
  border-top: 1px solid rgba(247, 247, 245, 0.08);
}
.contact-page .site-footer__brand,
.contact-page .site-footer__copy {
  color: #f7f7f5;
}
.contact-page .site-footer__copy {
  opacity: 0.5;
}
.contact-page .site-footer__copy a {
  color: inherit;
}
@media (max-width: 700px) {
  .contact-form__row { grid-template-columns: 1fr; }
  .contact-glass { padding: 18px 16px; border-radius: 22px; }
}

