/* ==========================================================================
   HOMEPAGE V2 / VARIANT B / "3:30 PM"

   Direction: editorial and photo led. The page opens on a full bleed image
   with the day's timeline across the bottom and one hour lit up, then runs as
   alternating image and text spreads. Where A argues with product UI, B argues
   with pictures and type.

   Loads after style.css and v2-shared.css. New classes only, except for the
   .nav overlay states, which are scoped with .nav--over so V1 pages are
   untouched.
   ========================================================================== */

/* --------------------------------------------------------------------------
   B.1  DISPLAY TYPE
   --------------------------------------------------------------------------
   B leans much harder on type than A does. Tighter tracking, heavier weight,
   larger scale, and a mono utility face for labels and times. Every size below
   comes off --font-display, so a licensed face swaps in at one token.
   -------------------------------------------------------------------------- */
.display {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.6vw, 60px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.038em;
  text-wrap: balance;
}
.display em {
  font-style: normal;
  display: block;
  color: var(--accent-2-on-dark);
}
.kicker {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.kicker--on-dark { color: rgba(255, 255, 255, 0.62); }
.kicker--accent { color: var(--accent-text); }

/* --------------------------------------------------------------------------
   B.2  TRANSPARENT HEADER OVER THE HERO
   -------------------------------------------------------------------------- */
.nav.nav--over {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: background 0.4s var(--ease-out), border-color 0.4s var(--ease-out);
}
.nav.nav--over .logo { color: #fff; }
.nav.nav--over .nav-links a { color: rgba(255, 255, 255, 0.70); }
.nav.nav--over .nav-links a:hover { color: #fff; }
.nav.nav--over .nav-cta { background: #fff; color: var(--ink); }
.nav.nav--over .nav-cta:hover { opacity: 1; background: #f0f0f3; }
.nav.nav--over .nav-toggle span,
.nav.nav--over .nav-toggle span::before,
.nav.nav--over .nav-toggle span::after { background: #fff; }
.nav.nav--over .nav-toggle[aria-expanded="true"] span { background: transparent; }

.nav.nav--over.is-scrolled {
  background: rgba(12, 15, 20, 0.78);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom-color: rgba(255, 255, 255, 0.10);
}
.nav.nav--over .nav-drawer {
  background: var(--dark-2);
  border-top-color: rgba(255, 255, 255, 0.10);
}
.nav.nav--over .nav-drawer a { color: #fff; border-bottom-color: rgba(255, 255, 255, 0.10); }
.nav.nav--over .nav-drawer .btn-primary { background: #fff; color: var(--ink); }

/* --------------------------------------------------------------------------
   B.3  FULL BLEED HERO                  → Elementor: Container, background video
   --------------------------------------------------------------------------
   The ambient loop is optional. The poster image is the real asset and carries
   the section on its own if the video never ships or the visitor is on data.
   -------------------------------------------------------------------------- */
.bhero {
  position: relative;
  min-height: min(100vh, 900px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--dark-2);
  isolation: isolate;
}
.bhero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.bhero-media img,
.bhero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.bhero-media video { position: absolute; inset: 0; }
.bhero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top, rgba(6, 9, 13, 0.94) 0%, rgba(6, 9, 13, 0.62) 34%, rgba(6, 9, 13, 0.20) 66%, rgba(6, 9, 13, 0.55) 100%),
    linear-gradient(to right, rgba(6, 9, 13, 0.70) 0%, rgba(6, 9, 13, 0.15) 62%, rgba(6, 9, 13, 0) 100%);
  pointer-events: none;
}
.bhero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 148px 0 44px;
  color: #fff;
}
.bhero-copy { max-width: 900px; }
.bhero .kicker { margin-bottom: 22px; display: block; }
.bhero .display { margin-bottom: 24px; }
.bhero-sub {
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.45;
  letter-spacing: -0.012em;
  color: rgba(255, 255, 255, 0.76);
  max-width: 560px;
  margin-bottom: 34px;
}
.bhero .cta-row { justify-content: flex-start; }
.bhero .btn-primary { background: #fff; color: var(--ink); }
.bhero .btn-primary:hover { background: #f0f0f3; }
.bhero .btn-ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.32);
}
.bhero .btn-ghost:hover { color: #fff; background: rgba(255, 255, 255, 0.10); }

/* Scroll cue, bottom right of the hero */
.scroll-cue {
  position: absolute;
  z-index: 2;
  right: var(--gutter);
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}
.scroll-cue .bar {
  display: block;
  width: 1px;
  height: 34px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
}

/* --------------------------------------------------------------------------
   B.4  STATEMENT SPREAD
   -------------------------------------------------------------------------- */
.statement {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 64px;
  align-items: center;
}
.statement-copy { min-width: 0; }
.statement-quote {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.2vw, 50px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.032em;
}
.statement-quote span { color: var(--ink-faint); display: block; }
.statement-body {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 520px;
  margin-top: 26px;
  letter-spacing: -0.008em;
}
.statement-rule {
  width: 64px; height: 2px;
  background: var(--brand-grad);
  margin-bottom: 26px;
}

/* --------------------------------------------------------------------------
   B.5  ALTERNATING SPREADS              → Elementor: 2 column Container x2
   -------------------------------------------------------------------------- */
.spread {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  border-top: 0.5px solid var(--line);
}
.spread-media { position: relative; min-height: 520px; }
.spread-media .plate { height: 100%; border-radius: 0; }
.spread-body {
  padding: 76px clamp(26px, 5.4vw, 90px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.spread-inner { max-width: 520px; }
.spread--flip .spread-media { order: 2; }
.spread-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.8vw, 44px);
  font-weight: 650;
  line-height: 1.06;
  letter-spacing: -0.032em;
  margin: 16px 0 18px;
}
.spread-body-text {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  letter-spacing: -0.008em;
  max-width: 460px;
}
.spread-list {
  margin: 26px 0 30px;
  display: flex;
  flex-direction: column;
}
.spread-list li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 14px 0;
  border-top: 0.5px solid var(--line);
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--ink);
  letter-spacing: -0.008em;
}
.spread-list li:last-child { border-bottom: 0.5px solid var(--line); }
.spread-list .ico { color: var(--accent-text); margin-top: 2px; }
.spread-body .btn { align-self: flex-start; }

/* --------------------------------------------------------------------------
   B.6  EDITORIAL CATEGORY GRID
   -------------------------------------------------------------------------- */
.egrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.egrid .cat-tile { aspect-ratio: 4 / 5; border-radius: var(--radius-sm); }
.egrid .cat-body { padding: 18px 16px 17px; }

/* --------------------------------------------------------------------------
   B.7  FULL BLEED FILM BAND
   -------------------------------------------------------------------------- */
.filmband .videoslot { border-radius: 0; }
.filmband .videoslot > img { aspect-ratio: 21 / 9; }

/* --------------------------------------------------------------------------
   B.8  NUMBERED SEQUENCE
   --------------------------------------------------------------------------
   Numbered because it is genuinely ordered: nothing can be booked before it is
   posted, and nothing is paid before it is booked.
   -------------------------------------------------------------------------- */
.seq { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.seq-item { padding-top: 22px; border-top: 1.5px solid var(--ink); }
.seq-item:nth-child(2) { border-top-color: var(--accent); }
.seq-item:nth-child(3) { border-top-color: var(--accent-2); }
.seq-num {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
  display: block;
  margin-bottom: 14px;
}
.seq-title {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.022em;
  margin-bottom: 10px;
}
.seq-body { font-size: 15.5px; line-height: 1.6; color: var(--ink-soft); letter-spacing: -0.006em; }

/* --------------------------------------------------------------------------
   B.9  FULL BLEED WAITLIST BAND
   -------------------------------------------------------------------------- */
.bandwait {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--dark-2);
}
.bandwait-media { position: absolute; inset: 0; z-index: 0; }
.bandwait-media img { width: 100%; height: 100%; object-fit: cover; }
.bandwait::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(105deg, rgba(8, 11, 16, 0.92) 0%, rgba(8, 11, 16, 0.74) 52%, rgba(8, 11, 16, 0.50) 100%);
}
.bandwait-inner {
  position: relative;
  z-index: 2;
  padding: 104px 0;
  color: #fff;
  max-width: 640px;
}
.bandwait .waitlist-eyebrow { color: var(--accent-on-dark); text-align: left; }
.bandwait-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 650;
  line-height: 1.04;
  letter-spacing: -0.036em;
  margin-bottom: 18px;
}
.bandwait-sub {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 34px;
  max-width: 480px;
}
.bandwait .form-row { margin: 0; max-width: 480px; }
.bandwait .form-fine { text-align: left; }

/* --------------------------------------------------------------------------
   B.10  DARK FOOTER
   -------------------------------------------------------------------------- */
.footer--dark {
  background: var(--dark-3);
  border-top: none;
  color: var(--ink-on-dark);
}
.footer--dark .footer-tagline { color: var(--ink-on-dark-soft); }
.footer--dark .footer-col h2 { color: #fff; }
.footer--dark .footer-col a { color: var(--ink-on-dark-soft); }
.footer--dark .footer-col a:hover { color: #fff; }
.footer--dark .footer-bottom {
  border-top-color: rgba(255, 255, 255, 0.12);
  color: var(--ink-on-dark-faint);
}
.footer--dark .footer-bottom a { color: var(--ink-on-dark-faint); }
.footer--dark .footer-bottom a:hover { color: #fff; }
.footer--dark .footer-cols { border-bottom: none; }

/* --------------------------------------------------------------------------
   B.11  RESPONSIVE
   -------------------------------------------------------------------------- */

@media (max-width: 1000px) {
  .statement { grid-template-columns: 1fr; gap: 40px; }
  .statement-media { max-width: 420px; }
  .spread-body { padding: 56px 40px; }
  .spread-media { min-height: 420px; }
  .egrid { grid-template-columns: repeat(2, 1fr); }
  .seq { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 880px) {
  .bhero { min-height: 640px; }
  .bhero-inner { padding: 124px 0 36px; }
  .scroll-cue { display: none; }
  .spread { grid-template-columns: 1fr; }
  .spread-media { min-height: 340px; order: 0 !important; }
  .spread-body { padding: 44px var(--gutter) 56px; }
  .spread-media .plate { border-radius: 0; }
}

@media (max-width: 768px) {
  .bandwait-inner { padding: 68px 0; }
  .egrid { gap: 8px; }
}

