/* ═══════════════════════════════════════════════
   GOLD STREET — Cinematic Scrollytelling
   ═══════════════════════════════════════════════ */

:root {
  --gold:        #c9a84c;
  --gold-light:  #e2c97e;
  --gold-dark:   #9a7a30;
  --ink:         #0a0a0a;
  --glass-border: rgba(201, 168, 76, 0.18);
  --ticker-height: 34px;

  /* Typography — matches brand identity: clear, grounded, not overwrought */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-ui:      'Inter', -apple-system, sans-serif;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  font-size: 16px;
  background: var(--ink);
  scrollbar-width: none;
}
html::-webkit-scrollbar { display: none; }

body {
  background: var(--ink);
  color: #fff;
  font-family: var(--font-ui);
  overflow-x: hidden;
}

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


/* ══════════════════════════════════════════════════════
   VIDEO LAYER
   ══════════════════════════════════════════════════════ */
#video-bg {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100dvh;
  z-index: 0;
  overflow: hidden;
  background: #000 url('assets/images/video-poster.jpg') center/cover no-repeat;
}

/* The <video> element is only a decode source now — never shown,
   never interactable, so it can never surface native playback UI. */
#video-bg video {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
}

#video-bg canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
}

#video-scrim {
  position: fixed;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.32);
  pointer-events: none;
}

#gs-watermark {
  position: fixed;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  pointer-events: none;
  opacity: 0.012;
  color: var(--gold);
  transition: opacity 0.8s var(--ease-out-expo);
}

#gs-watermark img {
  width: min(28vw, 220px);
  height: min(28vw, 220px);
  border-radius: 14%;
  object-fit: contain;
}


/* ══════════════════════════════════════════════════════
   LIVE MARKET TICKER
   ══════════════════════════════════════════════════════ */
.ticker {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 110;
  height: var(--ticker-height);
  overflow: hidden;
  background: rgba(10, 9, 7, 0.92);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.ticker__track {
  display: flex;
  align-items: center;
  height: 100%;
  width: max-content;
  animation: ticker-scroll 110s linear infinite;
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Ticker scroll is functional (reveals truncated content), not purely
   decorative — kept running even under prefers-reduced-motion, just
   slower, so all indices remain reachable on every device. */
@media (prefers-reduced-motion: reduce) {
  .ticker__track { animation-duration: 220s; }
}

.ticker__set {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.ticker__item {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5em;
  padding: 0 1.6rem;
  white-space: nowrap;
  border-right: 1px solid rgba(201, 168, 76, 0.12);
}

.ticker__name {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: rgba(201, 168, 76, 0.75);
}

.ticker__price {
  font-family: var(--font-ui);
  font-variant-numeric: tabular-nums;
  font-size: 0.68rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
}

.ticker__change {
  font-family: var(--font-ui);
  font-variant-numeric: tabular-nums;
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.ticker__change--up   { color: var(--gold-light); }
.ticker__change--down { color: #a86e6e; }

@media (max-width: 640px) {
  .ticker__item { padding: 0 1.1rem; }
  .ticker__name { font-size: 0.7rem; }
  .ticker__price, .ticker__change { font-size: 0.6rem; }
}


/* ══════════════════════════════════════════════════════
   LOADING SCREEN
   ══════════════════════════════════════════════════════ */
#loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  transition: opacity 0.8s var(--ease-out-expo);
}

#loader.hidden {
  opacity: 0;
  pointer-events: none;
}

.loader__top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.4rem;
}

.loader__logo-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 22%;
  object-fit: contain;
}

.loader__brand {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.9);
}

.loader__tagline {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.75;
}

.loader__bar-wrap {
  position: relative;
  width: 140px;
  height: 1px;
  background: rgba(201, 168, 76, 0.15);
  margin-top: 1rem;
}

.loader__bar {
  position: absolute;
  left: 0; top: 0;
  height: 100%;
  width: 0%;
  background: var(--gold);
  transition: width 0.3s ease;
}

.loader__pct {
  position: absolute;
  right: 0;
  top: 8px;
  font-family: var(--font-ui);
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: rgba(201,168,76,0.5);
}

.loader__cadence {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.6rem;
}

.loader__phone {
  width: 30px;
  height: 60px;
}

.loader__finger {
  animation: loader-finger-slide 1.8s ease-in-out infinite;
  transform-box: fill-box;
}

@keyframes loader-finger-slide {
  0%   { transform: translateY(0);    opacity: 0.35; }
  45%  { transform: translateY(35px); opacity: 1; }
  100% { transform: translateY(35px); opacity: 0.25; }
}

.loader__cadence-label {
  font-family: var(--font-ui);
  font-size: 0.52rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.45);
}

@media (prefers-reduced-motion: reduce) {
  .loader__finger { animation: none; }
}


/* ══════════════════════════════════════════════════════
   NAV
   ══════════════════════════════════════════════════════ */
#nav {
  position: fixed;
  top: var(--ticker-height);
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.6rem calc(2.4rem + env(safe-area-inset-right)) 1.6rem calc(2.4rem + env(safe-area-inset-left));
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo);
}

#nav.visible {
  opacity: 1;
  transform: none;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav__logo-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  border-radius: 22%;
  object-fit: contain;
}

.nav__logo-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.92);
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  position: relative;
}

.nav__cta {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.65em 1.5em;
  border-radius: 999px;
  transition: color 0.3s, border-color 0.3s;
}

.nav__cta:hover {
  color: var(--gold-light);
  border-color: var(--gold-dark);
}

/* Hamburger toggle */
.nav__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.3s;
}

.nav__burger:hover { border-color: var(--gold-dark); }

.nav__burger span {
  display: block;
  width: 14px;
  height: 1px;
  background: rgba(255,255,255,0.7);
  transition: transform 0.3s var(--ease-out-expo), opacity 0.3s;
}

.nav__burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}
.nav__burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav__burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

/* Dropdown menu */
.nav__menu {
  position: absolute;
  top: calc(100% + 0.8rem);
  right: 0;
  display: flex;
  flex-direction: column;
  min-width: 160px;
  background: rgba(15, 13, 10, 0.92);
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: 10px;
  padding: 0.5rem;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.25s var(--ease-out-expo), transform 0.25s var(--ease-out-expo), visibility 0.25s;
}

.nav__menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__menu-link {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  padding: 0.7em 1em;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}

.nav__menu-link:hover {
  background: rgba(201,168,76,0.1);
  color: var(--gold-light);
}

@media (max-width: 640px) {
  #nav { padding: 1.1rem 1.2rem; gap: 0.75rem; }
  .nav__logo-text {
    font-size: 0.92rem;
    letter-spacing: 0.06em;
  }
  .nav__cta {
    font-size: 0.54rem;
    letter-spacing: 0.12em;
    padding: 0.5em 0.9em;
    flex-shrink: 0;
  }
}

.ambient-toggle {
  position: fixed;
  bottom: calc(1.4rem + env(safe-area-inset-bottom));
  right: calc(1.4rem + env(safe-area-inset-right));
  z-index: 120;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.85rem 0.45rem 0.45rem;
  border-radius: 999px;
  border: 1px solid rgba(201,168,76,0.35);
  background: rgba(10,10,10,0.82);
  color: var(--gold-light);
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: color 0.3s, border-color 0.3s, background 0.3s, box-shadow 0.3s;
}

.ambient-toggle--pulse {
  animation: ambient-pulse 1.8s ease-in-out infinite;
}

@keyframes ambient-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(201,168,76,0.45);
    border-color: rgba(201,168,76,0.35);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(201,168,76,0);
    border-color: rgba(201,168,76,0.85);
  }
}

.ambient-toggle__inner {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(201,168,76,0.08);
}

.ambient-toggle__label {
  font-family: var(--font-ui);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding-right: 0.15rem;
}

.ambient-toggle:hover {
  color: #fff;
  border-color: var(--gold);
  background: rgba(20,18,14,0.92);
}

.ambient-toggle__icon {
  width: 15px;
  height: 15px;
}

.ambient-toggle__icon--on { display: none; }
.ambient-toggle.is-on .ambient-toggle__icon--off { display: none; }
.ambient-toggle.is-on .ambient-toggle__icon--on { display: block; }
.ambient-toggle.is-on {
  color: var(--gold);
  border-color: rgba(201,168,76,0.5);
  animation: none;
  box-shadow: none;
}


/* ══════════════════════════════════════════════════════
   SCENES
   ══════════════════════════════════════════════════════ */
.scene {
  position: relative;
  z-index: 2;
}

.scene__frame {
  position: sticky;
  top: 0;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.scene__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
  max-width: 72rem;
  width: 100%;
  pointer-events: none;
}

/* ══════════════════════════════════════════════════════
   FIRM WORDMARKS — background texture + footer variants
   ══════════════════════════════════════════════════════ */
.firm-wordmarks {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.firm-wordmarks__item {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--gold-light);
  white-space: nowrap;
}

.firm-wordmarks--bg {
  position: absolute;
  top: 12%;
  left: 0;
  right: 0;
  z-index: 1;
  gap: 2.2rem;
  padding: 0 2rem;
  opacity: 0.1;
  pointer-events: none;
}

.firm-wordmarks--bg .firm-wordmarks__item {
  font-size: clamp(1rem, 2.4vw, 1.6rem);
  letter-spacing: 0.06em;
}

.firm-wordmarks--footer {
  width: 100%;
  max-width: 480px;
  margin: 2rem auto 0;
  gap: 1.4rem;
  padding: 1.6rem 1.5rem 0;
  border-top: 1px solid rgba(201,168,76,0.08);
  opacity: 0.32;
}

.firm-wordmarks--footer .firm-wordmarks__item {
  font-size: 0.72rem;
  letter-spacing: 0.03em;
}

@media (max-width: 640px) {
  .firm-wordmarks--bg { gap: 1.2rem; top: 10%; }
  .firm-wordmarks--bg .firm-wordmarks__item { font-size: 0.85rem; }
  .firm-wordmarks--footer { gap: 0.9rem 1.1rem; }
  .firm-wordmarks--footer .firm-wordmarks__item { font-size: 0.62rem; }
}

.scene--dark-bottom .scene__frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}


/* ══════════════════════════════════════════════════════
   TYPOGRAPHY
   ══════════════════════════════════════════════════════ */
.scene__eyebrow {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.6rem;
  opacity: 0;
}

.scene__title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 8vw, 8rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: 0.01em;
  color: #fff;
  opacity: 0;
  text-shadow: 0 2px 60px rgba(0,0,0,0.5);
}

.scene__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-light);
}

.scene__sub {
  display: block;
  font-family: var(--font-ui);
  font-size: clamp(0.82rem, 1.1vw, 0.98rem);
  font-weight: 300;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5);
  margin-top: 1.6rem;
  max-width: 36ch;
  margin-inline: auto;
  line-height: 1.75;
  opacity: 0;
}

.scene__word {
  font-family: var(--font-display);
  font-size: clamp(5rem, 13vw, 12rem);
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0;
}

.scene__line {
  display: block;
  width: 1px;
  height: 54px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  margin: 1.8rem auto;
  opacity: 0;
}


/* ══════════════════════════════════════════════════════
   SCENE HEIGHTS
   ══════════════════════════════════════════════════════ */
.scene--1 { height: 400vh; }
.scene--2 { height: 400vh; }
.scene--2 .scene__content { text-align: left; padding: 0 3rem; }
.scene--3 { height: 300vh; }
.scene--4 { height: 400vh; }
.scene--5 { height: 300vh; }
.scene--6 { height: 300vh; }

.scene--7 {
  position: relative;
  z-index: 10;
  background: var(--ink);
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem;
  gap: 0;
}


/* ══════════════════════════════════════════════════════
   EYEBROW PILLS — Scenes 4 & 5
   ══════════════════════════════════════════════════════ */
.scene__eyebrow.scene__eyebrow--pills,
.scene__eyebrow.s5-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 2rem;
}

.scene--2 .scene__eyebrow--pills {
  justify-content: flex-start;
}

.scene--4 .scene__eyebrow--pills {
  margin-bottom: 0;
}

.eyebrow-pill {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  background: rgba(20, 18, 14, 0.75);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 0.36em 0.85em;
  border-radius: 999px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  will-change: transform, opacity;
}

.eyebrow-pill__dot {
  color: rgba(201,168,76,0.4);
  font-size: 0.65rem;
}


/* ══════════════════════════════════════════════════════
   CTA SECTION
   ══════════════════════════════════════════════════════ */
.cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  max-width: 480px;
  width: 100%;
}

.cta__copy {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  opacity: 0;
  transform: translateY(20px);
}

.cta__headline {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.18;
  letter-spacing: 0.01em;
  color: #fff;
}

.cta__headline em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-light);
}

.cta__sub {
  font-family: var(--font-ui);
  font-size: 0.84rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  max-width: 36ch;
}

/* PDF pill buttons */
.cta__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 0.5rem;
}

.pdf-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--gold-dark);
  padding: 0.75em 1.5em;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s, color 0.3s, box-shadow 0.3s;
}

.pdf-pill:hover {
  background: rgba(201,168,76,0.1);
  border-color: var(--gold);
  color: #fff;
  box-shadow: 0 0 24px rgba(201,168,76,0.12);
}

.pdf-pill__icon {
  width: 14px;
  height: 17px;
  color: var(--gold);
  flex-shrink: 0;
}

.pdf-pill__icon--seal {
  width: 16px;
  height: 16px;
  display: none;
}

.pdf-pill:hover .pdf-pill__icon--doc { display: none; }
.pdf-pill:hover .pdf-pill__icon--seal { display: block; }

.pdf-pill__dl {
  color: rgba(255,255,255,0.4);
  flex-shrink: 0;
  transition: transform 0.25s var(--ease-out-expo), color 0.25s;
}

.pdf-pill:hover .pdf-pill__dl {
  transform: translateY(2px);
  color: var(--gold-light);
}

.pdf-pill--ghost {
  color: rgba(255,255,255,0.5);
  border-color: rgba(255,255,255,0.12);
  background: transparent;
}

.pdf-pill--ghost .pdf-pill__icon {
  color: rgba(255,255,255,0.35);
}

.pdf-pill--ghost:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.8);
  box-shadow: none;
}


/* ══════════════════════════════════════════════════════
   FOUNDER STRIP
   ══════════════════════════════════════════════════════ */
.founder-strip {
  width: 100%;
  max-width: 480px;
  margin: 4.5rem auto 0;
  padding: 3rem 1.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
  border-top: 1px solid rgba(201,168,76,0.1);
}

.founder-portrait {
  width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.founder-portrait__ring {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(145deg, #e2c97e 0%, #c9a84c 45%, #9a7a30 100%);
  flex-shrink: 0;
}

.founder-portrait__photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(100%) contrast(1.05);
  border: 2px solid var(--ink);
  display: block;
}

.founder-portrait__caption {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding-top: 1rem;
  text-align: center;
}

.founder-portrait__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

.founder-portrait__role {
  font-family: var(--font-ui);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.72;
}

.founder-strip__tagline {
  font-family: var(--font-display);
  font-size: clamp(0.98rem, 2vw, 1.15rem);
  font-weight: 300;
  line-height: 1.65;
  text-align: center;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.01em;
}

.founder-strip__tagline em {
  font-style: italic;
  color: rgba(255,255,255,0.82);
}


/* ══════════════════════════════════════════════════════
   PRESS STRIP
   ══════════════════════════════════════════════════════ */
.press-strip {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
}

/* ══════════════════════════════════════════════════════
   SITE FOOTER
   ══════════════════════════════════════════════════════ */
.site-footer {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem calc(3rem + env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.site-footer__mark {
  width: 22px;
  height: 22px;
  border-radius: 22%;
  object-fit: contain;
  opacity: 0.85;
}

.site-footer__mission {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  max-width: 38ch;
}

.site-footer__copyright {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.press-strip__header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.press-strip__label {
  font-family: var(--font-ui);
  font-size: 0.56rem;
  font-weight: 400;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.press-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-ui);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 0.45em 0.85em;
  border-radius: 999px;
  transition: color 0.3s, border-color 0.3s, background 0.3s;
}

.press-social-link:hover {
  color: rgba(255,255,255,0.82);
  border-color: rgba(201,168,76,0.28);
  background: rgba(201,168,76,0.04);
}

.press-social-link__icon {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  opacity: 0.75;
}

/* One-time shine — plays once on scroll-in, settles back to base grey */
.press-strip__label.shine-once {
  animation: gs-label-shine 1.7s cubic-bezier(0.16, 1, 0.3, 1) 0.15s 1 both;
}

.press-social-link.shine-once {
  animation: gs-link-shine 1.7s cubic-bezier(0.16, 1, 0.3, 1) 0.35s 1 both;
}

@keyframes gs-label-shine {
  0%   { color: rgba(255,255,255,0.5); }
  40%  { color: var(--gold-light); text-shadow: 0 0 14px rgba(201,168,76,0.5); }
  100% { color: rgba(255,255,255,0.5); text-shadow: none; }
}

@keyframes gs-link-shine {
  0%   { color: rgba(255,255,255,0.5); border-color: rgba(255,255,255,0.08); background: transparent; }
  40%  { color: var(--gold-light); border-color: rgba(201,168,76,0.4); background: rgba(201,168,76,0.06); }
  100% { color: rgba(255,255,255,0.5); border-color: rgba(255,255,255,0.08); background: transparent; }
}

.press-strip__links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  width: 100%;
}

.press-link {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.9rem;
  padding: 0.9rem 1.1rem;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 6px;
  background: rgba(255,255,255,0.02);
  transition: border-color 0.3s, background 0.3s;
  text-decoration: none;
  color: inherit;
}

.press-link:hover {
  border-color: rgba(201,168,76,0.22);
  background: rgba(201,168,76,0.03);
}

.press-link__source {
  flex-shrink: 0;
}

.press-link__pub {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 600;
  white-space: nowrap;
}

.press-link__pub--yahoo {
  color: rgba(255,255,255,0.65);
}

.press-link__pub--pr {
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  font-size: 0.62rem;
  letter-spacing: 0.04em;
}

.press-link__headline {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.35;
  font-style: italic;
  min-width: 0;
}

.press-link__arrow {
  flex-shrink: 0;
  color: rgba(201,168,76,0.4);
  transition: transform 0.25s var(--ease-out-expo), color 0.25s;
}

.press-link:hover .press-link__arrow {
  color: var(--gold);
  transform: translate(2px, -2px);
}


/* ══════════════════════════════════════════════════════
   SCROLL PROGRESS
   ══════════════════════════════════════════════════════ */
#scroll-progress {
  position: fixed;
  right: 0;
  top: 0;
  width: 1.5px;
  height: 0%;
  background: linear-gradient(to bottom, transparent, var(--gold) 30%, var(--gold-light));
  z-index: 200;
  opacity: 0.4;
  pointer-events: none;
}


/* ══════════════════════════════════════════════════════
   SCENE DOTS + SCROLL ARROW — right-side cluster
   ══════════════════════════════════════════════════════ */
#scene-dots {
  position: fixed;
  top: 50%;
  right: calc(1.6rem + env(safe-area-inset-right));
  transform: translateY(-50%);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  opacity: 0;
  transition: opacity 0.6s;
}

#scene-dots.visible { opacity: 1; }

.dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: background 0.4s, transform 0.4s var(--ease-out-expo);
}

.dot.active {
  background: var(--gold);
  transform: scale(1.4);
}

.scroll-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.6rem;
  color: rgba(255, 255, 255, 0.68);
  opacity: 0;
  transition: opacity 0.6s var(--ease-out-expo);
  pointer-events: none;
}

.scroll-arrow__label {
  font-family: var(--font-ui);
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.scroll-arrow svg {
  width: 26px;
  height: 16px;
}

.scroll-arrow.idle {
  opacity: 1;
  animation: scroll-arrow-nudge 1.6s ease-in-out infinite;
}

/* Bold entrance — plays once on first reveal, then hands off to the
   quieter .idle behavior above after a few seconds. */
.scroll-arrow.intro {
  opacity: 1;
  color: rgba(255, 255, 255, 0.92);
  animation: scroll-arrow-nudge-intro 1.3s ease-in-out infinite;
}

.scroll-arrow.intro .scroll-arrow__label {
  color: var(--gold-light);
}

.scroll-arrow.intro svg {
  width: 32px;
  height: 20px;
  filter: drop-shadow(0 0 10px rgba(201, 168, 76, 0.45));
}

@keyframes scroll-arrow-nudge {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(6px); }
}

@keyframes scroll-arrow-nudge-intro {
  0%, 100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(10px) scale(1.08); }
}

@media (max-width: 640px) {
  #scene-dots { right: 1rem; gap: 0.5rem; }
  .scroll-arrow svg { width: 20px; height: 13px; }
  .scroll-arrow.intro svg { width: 26px; height: 16px; }
  .scroll-arrow__label { font-size: 0.5rem; letter-spacing: 0.22em; }
}


/* ══════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .scene--1, .scene--2, .scene--4 { height: 350vh; }
  .scene--3, .scene--5, .scene--6 { height: 280vh; }
  .scene__content { padding: 0 1.5rem; }
  .scene--2 .scene__content { padding: 0 1.5rem; }
}

@media (max-width: 480px) {
  .scene__title { letter-spacing: 0; }
  .cta__buttons { flex-direction: column; align-items: center; }
  .scene__eyebrow.scene__eyebrow--pills,
  .scene__eyebrow.s5-eyebrow { gap: 0.35rem; }
  .eyebrow-pill {
    font-size: 0.52rem;
    letter-spacing: 0.12em;
    padding: 0.32em 0.65em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-arrow {
    animation: none !important;
  }

  #loader,
  #nav,
  .pdf-pill,
  .press-link,
  .ambient-toggle,
  .ambient-toggle--pulse {
    transition: none !important;
    animation: none !important;
  }
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}
