/* ═══════════════════════════════════════════════════
   BECKER v1 — HOMEPAGE BUILD PASS 2
   Cinematic / Sharp / Premium 2027-forward
   ═══════════════════════════════════════════════════ */

/* ─── RESET & BASE ─────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Dark Canvas */
  --bg-deep: #0A0A0C;
  --bg-surface: #111114;
  --bg-elevated: #18181C;
  --bg-hover: #1F1F24;

  /* Text */
  --text-primary: #F0F0F2;
  --text-secondary: #7A7A82;
  --text-tertiary: #3E3E45;

  /* Accents */
  --purple: hsl(260, 100%, 73%);
  --purple-dim: hsl(260, 60%, 40%);
  --purple-glow: hsl(260, 100%, 73% / 0.15);
  --purple-glow-strong: hsl(260, 100%, 73% / 0.3);
  --lavender: hsl(280, 80%, 82%);
  --gold: #D4A853;
  --gold-glow: hsl(43, 70%, 55% / 0.12);

  /* Heartlake pastel palette */
  --heartlake-pink: hsl(330, 55%, 68%);
  --heartlake-lavender: hsl(270, 50%, 72%);
  --heartlake-sky: hsl(200, 55%, 68%);
  --heartlake-glow: hsl(310, 45%, 60% / 0.1);

  /* Skeleton Crew — cinematic gold */
  --skeleton-gold: hsl(38, 70%, 52%);
  --skeleton-glow: hsl(38, 70%, 52% / 0.08);

  /* Working Artist — warm ember */
  --artist-ember: hsl(15, 60%, 52%);
  --artist-glow: hsl(15, 60%, 52% / 0.08);

  /* Type — Anton display, Inter body, no serif */
  --font-display: 'Anton', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Easing — cubic */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-snap: cubic-bezier(0.22, 0.68, 0, 1.04);
  --ease-cinematic: cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Easing — Motion spring (generated via Motion MCP) */
  --spring-snappy: linear(0, 0.2459, 0.6526, 0.9468, 1.0764, 1.0915, 1.0585, 1.0219, 0.9993, 0.9914, 0.9921, 0.9957, 0.9988, 1.0004, 1);
  --spring-snappy-dur: 450ms;

  /* Layout */
  --page-max: 1400px;
  --page-pad: clamp(1.5rem, 5vw, 4rem);

  --spring-bounce: linear(0, 0.0008, 0.0031, 0.0069, 0.0123, 0.0193, 0.0278, 0.0378, 0.0494, 0.0625, 0.0772, 0.0934, 0.1111, 0.1304, 0.1512, 0.1736, 0.1975, 0.223, 0.25, 0.2785, 0.3086, 0.3403, 0.3735, 0.4082, 0.4444, 0.4823, 0.5216, 0.5625, 0.6049, 0.6489, 0.6944, 0.7415, 0.7901, 0.8403, 0.892, 0.9452, 1, 0.973, 0.9475, 0.9236, 0.9012, 0.8804, 0.8611, 0.8434, 0.8272, 0.8125, 0.7994, 0.7878, 0.7778, 0.7693, 0.7623, 0.7569, 0.7531, 0.7508, 0.75, 0.7508, 0.7531, 0.7569, 0.7623, 0.7693, 0.7778, 0.7878, 0.7994, 0.8125, 0.8272, 0.8434, 0.8611, 0.8804, 0.9012, 0.9236, 0.9475, 0.973, 1, 0.9869, 0.9753, 0.9653, 0.9568, 0.9498, 0.9444, 0.9406, 0.9383, 0.9375, 0.9383, 0.9406, 0.9444, 0.9498, 0.9568, 0.9653, 0.9753, 0.9869, 1, 0.9938, 0.9892, 0.9861, 0.9846, 0.9846, 0.9861, 0.9892, 0.9938, 1);
}

html {
  scroll-behavior: smooth;
  background: var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--bg-deep);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ─── PREMIUM FOCUS-VISIBLE RING ─────────────── */
:focus-visible {
  outline: 2px solid hsl(260, 100%, 73%);
  outline-offset: 3px;
  border-radius: 4px;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid hsl(260, 100%, 73%);
  outline-offset: 3px;
}

:focus:not(:focus-visible) {
  outline: none;
}

/* ─── REVEAL ANIMATION BASE — Motion spring ──── */
/* Progressive enhancement: hidden prep states only apply when JS+Motion loaded */
.js-motion .reveal-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.5s ease,
              transform var(--spring-snappy-dur) var(--spring-snappy);
  transition-delay: var(--delay, 0s);
}

.js-motion .reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Alternate reveal: scale-in for cards */
.js-motion .reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.5s ease,
              transform var(--spring-snappy-dur) var(--spring-snappy);
  transition-delay: var(--delay, 0s);
}

.js-motion .reveal-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* ═══════════════════════════════════════════════════
   SITE HEADER
   ═══════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, padding 0.4s ease;
}

.site-header.is-scrolled {
  background: hsl(240 5% 5% / 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.6rem 0;
  border-bottom: 1px solid hsl(0 0% 100% / 0.04);
}

.site-header__inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 var(--page-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header__home {
  font-family: var(--font-display);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--text-primary);
  transition: color 0.3s ease;
}

.site-header__home:hover {
  color: var(--gold);
}

.site-header__nav {
  display: flex;
  gap: 2.25rem;
}

.site-header__nav a {
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.site-header__nav a:hover,
.site-header__nav a.is-active {
  color: var(--text-primary);
}

.site-header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px;
  min-width: 48px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.site-header__burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-primary);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.site-header__burger.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.site-header__burger.is-open span:nth-child(2) {
  opacity: 0;
}
.site-header__burger.is-open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ═══════════════════════════════════════════════════
   COUNTDOWN BANNER — centered timer + stacked sub
   ═══════════════════════════════════════════════════ */
.countdown-banner {
  position: relative;
  z-index: 1001;
  background: var(--bg-deep);
  border-bottom: 1px solid hsl(0 0% 100% / 0.04);
}

.countdown-banner__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.75rem var(--page-pad);
  gap: 0.3rem;
}

.countdown-banner__timer {
  display: flex;
  align-items: center;
  gap: 0;
  font-family: var(--font-body);
  font-variant-numeric: tabular-nums;
}

.cd-block {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-primary);
}

.cd-sep {
  font-size: 0.75rem;
  color: var(--text-tertiary);
  margin: 0 0.15rem;
}

.countdown-banner__cap {
  font-size: 0.55rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-secondary);
}

/* ═══════════════════════════════════════════════════
   HERO — THE BECKER MOMENT (Cinematic Entry)
   ═══════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 6vh;
}

/* ─── ATMOSPHERIC LIGHT SYSTEM ───────────────────
   Layered, diffuse, cinematic depth — NOT a blob.
   Multiple ultra-wide gradients at low opacity,
   offset positions, varied hues. Drift independently.
   Easing validated via Motion MCP visualise-cubic-bezier.
   ─────────────────────────────────────────────── */
.hero__atmosphere {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Phase 1: atmosphere fades in */
.hero.is-phase-1 .hero__atmosphere {
  opacity: 1;
}

/* Layer 0 — full-width near-neutral wash, barely tinted
   Sets the faintest cool tone across the entire hero zone */
.hero__atmo-wash {
  position: absolute;
  inset: -25% -20%;
  background: radial-gradient(
    ellipse 140% 100% at 50% 58%,
    hsl(250 20% 14% / 0.06) 0%,
    hsl(240 15% 10% / 0.02) 45%,
    transparent 75%
  );
  filter: blur(100px);
}

/* Layer 1 — cool purple, offset left-high, drifts right */
.hero__atmo-drift {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  will-change: transform;
}

.hero__atmo-drift--1 {
  top: 10%;
  left: -10%;
  width: 70%;
  height: 60%;
  background: radial-gradient(
    ellipse,
    hsl(255 25% 30% / 0.035) 0%,
    hsl(250 18% 22% / 0.015) 40%,
    transparent 70%
  );
  filter: blur(120px);
  animation: atmoDrift1 30s cubic-bezier(0.33, 0, 0.15, 1) infinite alternate;
}

/* Layer 2 — faint cool rose, offset right-low, drifts left */
.hero__atmo-drift--2 {
  bottom: 5%;
  right: -12%;
  width: 60%;
  height: 55%;
  background: radial-gradient(
    ellipse,
    hsl(270 18% 32% / 0.03) 0%,
    hsl(280 12% 25% / 0.012) 38%,
    transparent 65%
  );
  filter: blur(130px);
  animation: atmoDrift2 26s cubic-bezier(0.33, 0, 0.15, 1) infinite alternate;
}

/* Layer 3 — near-neutral deep blue, high and wide, whisper-faint */
.hero__atmo-drift--3 {
  top: -15%;
  left: 15%;
  width: 75%;
  height: 45%;
  background: radial-gradient(
    ellipse,
    hsl(230 20% 22% / 0.03) 0%,
    hsl(240 12% 16% / 0.012) 35%,
    transparent 60%
  );
  filter: blur(140px);
  animation: atmoDrift3 35s cubic-bezier(0.33, 0, 0.15, 1) infinite alternate;
}

/* Layer 4 — wide diffuse warmth near center, NOT a focused halo */
.hero__atmo-halo {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 50%;
  border-radius: 50%;
  background: radial-gradient(
    ellipse 100% 80%,
    hsl(250 12% 20% / 0.025) 0%,
    hsl(245 8% 15% / 0.01) 30%,
    transparent 55%
  );
  filter: blur(140px);
  animation: haloBreathe 20s ease-in-out infinite;
}

/* Drift keyframes — glacial, barely perceptible
   Easing: cubic-bezier(0.33,0,0.15,1) validated via Motion MCP visualise-cubic-bezier */
@keyframes atmoDrift1 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(3%, 1.5%) scale(1.02); }
}

@keyframes atmoDrift2 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-2.5%, -2%) scale(1.015); }
}

@keyframes atmoDrift3 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(1.5%, 1%) scale(1.01); }
}

@keyframes haloBreathe {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50%      { opacity: 0.85; transform: translate(-50%, -50%) scale(1.03); }
}

/* Phase 3: Cinematic flash when letters land */
.hero__flash {
  position: absolute;
  inset: 0;
  z-index: 50;
  background: radial-gradient(ellipse at center, hsl(240 10% 90% / 0.06) 0%, transparent 50%);
  opacity: 0;
  pointer-events: none;
}

.hero__flash.is-active {
  animation: cinematicFlash 0.6s var(--ease-out-expo) forwards;
}

@keyframes cinematicFlash {
  0% { opacity: 0; }
  30% { opacity: 1; }
  100% { opacity: 0; }
}

/* ─── LETTER TILES ────────────────────────────── */
.hero__tiles {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  width: 92%;
  max-width: 1340px;
  height: 56vh;
  min-height: 360px;
  gap: 5px;
}

.hero__letter-block {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  perspective: 1200px;
  transition: flex var(--spring-snappy-dur) var(--spring-snappy);
}

.hero__letter-block:hover {
  flex: 1.8;
}

.hero__letter-block:active {
  flex: 2.2;
}

/* ─── VIDEO CONTAINER — Cinematic snap-in ─────── */
.hero__video-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 5;
  /* Start state: scattered in 3D space */
  opacity: 0;
  transform-style: preserve-3d;
}

/* Each letter starts from a unique direction — top/bottom/left/right/depth */
.hero__letter-block[data-index="0"] .hero__video-container {
  /* B — flies in from far left */
  transform: translate3d(-350px, 30px, -300px) rotateY(35deg) rotateZ(-8deg) scale(0.5);
}
.hero__letter-block[data-index="1"] .hero__video-container {
  /* E — drops from above */
  transform: translate3d(20px, -300px, -200px) rotateX(25deg) rotateZ(6deg) scale(0.55);
}
.hero__letter-block[data-index="2"] .hero__video-container {
  /* C — rises from below */
  transform: translate3d(-30px, 280px, -250px) rotateX(-20deg) rotateZ(-5deg) scale(0.5);
}
.hero__letter-block[data-index="3"] .hero__video-container {
  /* K — punches in from depth */
  transform: translate3d(0, 0, -600px) rotateY(-30deg) rotateX(15deg) scale(0.3);
}
.hero__letter-block[data-index="4"] .hero__video-container {
  /* e — flies in from far right */
  transform: translate3d(320px, -40px, -200px) rotateY(-35deg) rotateZ(10deg) scale(0.5);
}
.hero__letter-block[data-index="5"] .hero__video-container {
  /* R — drops from top-right */
  transform: translate3d(180px, -260px, -350px) rotateY(-15deg) rotateX(20deg) rotateZ(-12deg) scale(0.45);
}

/* Snap into formation — aggressive spring */
.hero__letter-block.is-loaded .hero__video-container {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotateY(0) rotateX(0) rotateZ(0) scale(1);
  transition: opacity 0.4s ease,
              transform 500ms var(--spring-snappy);
}

/* Staggered delays — tight choreography */
.hero__letter-block[data-index="0"] .hero__video-container { transition-delay: 0s; }
.hero__letter-block[data-index="1"] .hero__video-container { transition-delay: 0.07s; }
.hero__letter-block[data-index="2"] .hero__video-container { transition-delay: 0.14s; }
.hero__letter-block[data-index="3"] .hero__video-container { transition-delay: 0.21s; }
.hero__letter-block[data-index="4"] .hero__video-container { transition-delay: 0.28s; }
.hero__letter-block[data-index="5"] .hero__video-container { transition-delay: 0.35s; }

/* Video overlay — moody desaturation by default */
.hero__video-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  background: linear-gradient(180deg, hsl(260 5% 8% / 0.7) 0%, hsl(260 5% 6% / 0.82) 100%);
  opacity: 1;
  transition: opacity 0.7s ease-out;
  pointer-events: none;
}

.hero__letter-block:hover .hero__video-overlay {
  opacity: 0;
}

.hero__video-wrap {
  position: absolute;
  inset: 0;
  filter: grayscale(100%) brightness(0.3) saturate(0.15);
  transition: filter 0.7s ease-out;
}

.hero__letter-block:hover .hero__video-wrap {
  filter: grayscale(0%) brightness(1.15) saturate(1.3) contrast(1.08);
}

.hero__video-wrap video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}

/* Glow border on hover */
.hero__glow-border {
  position: absolute;
  inset: 0;
  z-index: 20;
  box-shadow: none;
  transition: box-shadow 0.5s ease;
  pointer-events: none;
}

.hero__letter-block:hover .hero__glow-border {
  box-shadow: inset 0 0 60px hsl(250 30% 60% / 0.10),
              0 0 40px hsl(250 25% 55% / 0.06),
              0 0 100px hsl(245 20% 50% / 0.03);
}

/* ─── LETTER TYPE — Cinematic snap ────────────── */
.hero__letter {
  position: relative;
  z-index: 20;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 15vw, 20vw);
  line-height: 0.85;
  color: white;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 40px rgba(0,0,0,0.9);
  pointer-events: none;
  user-select: none;
  opacity: 0;
  transform-style: preserve-3d;
  transition: opacity 0.4s ease,
              transform 500ms var(--spring-snappy),
              text-shadow 0.5s ease;
}

/* Scattered start positions for letters — varied directions */
.hero__letter-block[data-index="0"] .hero__letter {
  transform: translate3d(-350px, 30px, -300px) rotateY(35deg) rotateZ(-8deg);
}
.hero__letter-block[data-index="1"] .hero__letter {
  transform: translate3d(20px, -300px, -200px) rotateX(25deg) rotateZ(6deg);
}
.hero__letter-block[data-index="2"] .hero__letter {
  transform: translate3d(-30px, 280px, -250px) rotateX(-20deg) rotateZ(-5deg);
}
.hero__letter-block[data-index="3"] .hero__letter {
  transform: translate3d(0, 0, -600px) rotateY(-30deg) rotateX(15deg);
}
.hero__letter-block[data-index="4"] .hero__letter {
  transform: translate3d(320px, -40px, -200px) rotateY(-35deg) rotateZ(10deg);
}
.hero__letter-block[data-index="5"] .hero__letter {
  transform: translate3d(180px, -260px, -350px) rotateY(-15deg) rotateX(20deg) rotateZ(-12deg);
}

/* Snap into place — aggressive */
.hero__letter-block.is-loaded .hero__letter {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotateY(0) rotateX(0) rotateZ(0);
}

.hero__letter-block[data-index="0"] .hero__letter { transition-delay: 0s; }
.hero__letter-block[data-index="1"] .hero__letter { transition-delay: 0.07s; }
.hero__letter-block[data-index="2"] .hero__letter { transition-delay: 0.14s; }
.hero__letter-block[data-index="3"] .hero__letter { transition-delay: 0.21s; }
.hero__letter-block[data-index="4"] .hero__letter { transition-delay: 0.28s; }
.hero__letter-block[data-index="5"] .hero__letter { transition-delay: 0.35s; }

/* Hover: letter breathes with restrained warmth */
.hero__letter-block:hover .hero__letter {
  text-shadow: 0 0 80px hsl(250 30% 60% / 0.18),
               0 0 40px rgba(255, 255, 255, 0.12),
               0 4px 20px rgba(0,0,0,0.5);
  transform: translate3d(0, 0, 20px) scaleX(1.15) scaleY(1.1);
}

/* Idle: subtle depth breathe */
.hero.is-idle .hero__letter-block .hero__video-container {
  animation: depthBreathe 6s ease-in-out infinite;
  animation-delay: calc(var(--breathe-offset, 0) * 1s);
}

@keyframes depthBreathe {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(0, 0, 8px) scale(1.005); }
}

.hero__letter-block[data-index="0"] { --breathe-offset: 0; }
.hero__letter-block[data-index="1"] { --breathe-offset: 0.4; }
.hero__letter-block[data-index="2"] { --breathe-offset: 0.8; }
.hero__letter-block[data-index="3"] { --breathe-offset: 1.2; }
.hero__letter-block[data-index="4"] { --breathe-offset: 1.6; }
.hero__letter-block[data-index="5"] { --breathe-offset: 2.0; }

/* ─── TAGLINE ─────────────────────────────────── */
.hero__tagline {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-top: clamp(2rem, 4vh, 3rem);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.js-motion .hero__tagline {
  opacity: 0;
  transform: translateY(15px);
}

.js-motion .hero__tagline.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero__tagline p {
  color: var(--lavender);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: clamp(0.55rem, 1vw, 0.75rem);
  font-weight: 400;
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.hero__tagline-dot {
  display: inline-block;
  margin: 0 0.7em;
  opacity: 0.35;
}

/* ─── SCROLL HINT ─────────────────────────────── */
.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.35;
  transition: opacity 0.6s ease;
}

.js-motion .hero__scroll-hint {
  opacity: 0;
}

.js-motion .hero__scroll-hint.is-visible {
  opacity: 0.35;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--text-secondary), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ═══════════════════════════════════════════════════
   AUTHORITY TICKER — 3D poster rail cloned from intensive page
   ═══════════════════════════════════════════════════ */
.authority-ticker {
  position: relative;
  z-index: 2;
  margin-top: 0;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background:
    radial-gradient(ellipse at 50% 50%, rgba(139, 92, 246, 0.06), transparent 60%),
    var(--bg-deep);
  padding: 18px 0 28px;
}

.authority-ticker--homepage {
  margin-top: -1px;
}

.ticker-perspective {
  perspective: 1200px;
  perspective-origin: center center;
  overflow: hidden;
  padding: 14px 0;
}

.ticker-track {
  display: flex;
  gap: 3px;
  width: max-content;
  transform-style: preserve-3d;
  will-change: transform;
  touch-action: pan-y;
}

.ticker-item {
  --item-shift-y: 0px;
  --item-rotate: 0deg;
  --item-scale: 1;
  --item-depth: 0px;
  --item-glow: 0.1;
  flex-shrink: 0;
  width: clamp(140px, 14vw, 200px);
  aspect-ratio: 0.67;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
  transform:
    translate3d(0, var(--item-shift-y), var(--item-depth))
    rotateY(var(--item-rotate))
    scale(var(--item-scale));
  transition:
    transform 240ms ease,
    opacity 220ms ease,
    filter 220ms ease,
    box-shadow 220ms ease;
  filter: saturate(0.86) brightness(0.9);
}

.ticker-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 14px;
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(255, 255, 255, 0.06);
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
}

.ticker-item.is-active {
  opacity: 1;
  filter: saturate(1.05) brightness(1.03);
}

/* ═══════════════════════════════════════════════════
   CURRENT AUTHORITY BLOCK — HEARTLAKE
   ═══════════════════════════════════════════════════ */
.current-authority {
  position: relative;
  padding: clamp(8rem, 18vh, 16rem) 0;
  overflow: hidden;
  transition: opacity 0.15s ease-out;
}

/* Heartlake pastel glow */
.current-authority--heartlake .current-authority__glow {
  background: radial-gradient(ellipse,
    var(--heartlake-glow) 0%,
    hsl(270 50% 70% / 0.06) 35%,
    hsl(200 55% 68% / 0.04) 60%,
    transparent 72%
  );
  animation: heartlakeGlow 7s ease-in-out infinite;
}

@keyframes heartlakeGlow {
  0%, 100% { opacity: 0.35; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.55; transform: translate(-50%, -50%) scale(1.04); }
}

.current-authority__glow {
  position: absolute;
  top: 50%;
  left: 30%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 80%;
  border-radius: 50%;
  background: radial-gradient(ellipse,
    var(--gold-glow) 0%,
    var(--purple-glow) 40%,
    transparent 70%
  );
  filter: blur(100px);
  opacity: 0.5;
  pointer-events: none;
}

.current-authority__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

/* Heartlake label — softer pastel */
.current-authority--heartlake .current-authority__label {
  color: var(--heartlake-lavender);
  border-color: hsl(270 50% 72% / 0.25);
}

.current-authority__label {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  padding: 0.3rem 0.8rem;
  border: 1px solid hsl(43 50% 50% / 0.25);
  margin-bottom: 1.5rem;
}

.current-authority__headline {
  font-family: var(--font-body);
  font-size: clamp(1.5rem, 2.8vw, 2.25rem);
  font-weight: 300;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

/* Heartlake project name */
.current-authority--heartlake .current-authority__project {
  color: var(--heartlake-pink);
  text-shadow: 0 0 50px hsl(330 55% 68% / 0.2);
}

.current-authority__project {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.current-authority__body {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 520px;
}

/* Authority media */
.current-authority__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.current-authority--heartlake .current-authority__image-glow {
  background: radial-gradient(ellipse,
    hsl(30 70% 55% / 0.14) 0%,
    hsl(330 55% 68% / 0.10) 30%,
    hsl(270 50% 72% / 0.06) 55%,
    transparent 72%
  );
  animation: warmGlowPulse 5s ease-in-out infinite;
}

@keyframes warmGlowPulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 0.75; transform: scale(1.03); }
}

.current-authority__image-glow {
  position: absolute;
  inset: -25%;
  border-radius: 50%;
  background: radial-gradient(ellipse,
    var(--purple-glow-strong) 0%,
    var(--gold-glow) 50%,
    transparent 70%
  );
  filter: blur(50px);
  opacity: 0.5;
}

.current-authority__media-frame {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-surface);
  border: 1px solid hsl(270 50% 72% / 0.08);
  box-shadow: 0 0 60px hsl(30 60% 50% / 0.08), 0 0 120px hsl(330 50% 60% / 0.05);
}

/* Gold pulse drop-shadow — activates after heartlake reveal */
.current-authority__media-frame.is-gold-pulse {
  animation: goldPulseShadow 3.5s ease-in-out 0.8s infinite;
}

@keyframes goldPulseShadow {
  0%, 100% {
    box-shadow:
      0 0 60px hsl(30 60% 50% / 0.08),
      0 0 120px hsl(330 50% 60% / 0.05),
      0 8px 30px hsl(40 65% 50% / 0.12);
  }
  50% {
    box-shadow:
      0 0 60px hsl(30 60% 50% / 0.15),
      0 0 120px hsl(330 50% 60% / 0.08),
      0 12px 50px hsl(40 65% 50% / 0.25),
      0 0 80px hsl(40 70% 55% / 0.10);
  }
}

.current-authority__media-asset {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.current-authority__media-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at center,
    transparent 50%,
    hsl(270 25% 6% / 0.5) 100%
  );
}

/* ─── HEARTLAKE CINEMATIC REVEAL ─────────────────── */
/* Curtain: horizontal wipe from center outward */
.current-authority__curtain {
  position: absolute;
  inset: 0;
  z-index: 5;
  background: var(--bg-deep);
  pointer-events: none;
  transform-origin: center center;
  transition: clip-path 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  clip-path: inset(0 0 0 0);
}
.current-authority__curtain.is-wiping {
  clip-path: inset(0 50% 0 50%);
  opacity: 0;
  transition: clip-path 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease 0.8s;
}

/* Heartlake reveal elements — spring entrance */
.js-motion .heartlake-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 600ms var(--spring-snappy);
}
.js-motion .heartlake-reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════
   WHAT PAUL DOES — FOUR LANES
   ═══════════════════════════════════════════════════ */
.what-paul-does {
  position: relative;
  padding: clamp(6rem, 12vh, 9rem) 0;
  background: linear-gradient(180deg, transparent 0%, var(--bg-surface) 8%, hsl(260 6% 7%) 92%, transparent 100%);
}

.what-paul-does__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.what-paul-does__label {
  display: block;
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #EDEDED;
  margin-bottom: 2.5rem;
  text-align: center;
}

.what-paul-does__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.lane {
  position: relative;
  padding: 2.5rem 2rem 2rem;
  background: transparent;
  border: none;
  border-left: 1px solid hsl(0 0% 100% / 0.05);
  text-align: left;
  transition: background 0.5s ease, transform var(--spring-snappy-dur) var(--spring-snappy);
  overflow: hidden;
}

.lane:first-child {
  border-left: none;
}

.lane:hover {
  transform: translateY(-5px);
}

.lane:hover .lane__title {
  color: #FFFFFF;
}

.lane:hover .lane__desc {
  color: var(--text-primary);
}

/* Accent stripe */
.lane__accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out-expo);
}

.lane:hover .lane__accent {
  transform: scaleX(1);
}

.lane--director .lane__accent { background: var(--purple); }
.lane--choreographer .lane__accent { background: var(--gold); }
.lane--writer .lane__accent { background: var(--heartlake-pink); }
.lane--ai .lane__accent { background: var(--heartlake-sky); }

.lane--director:hover { background: hsl(260 100% 73% / 0.02); }
.lane--choreographer:hover { background: hsl(43 70% 55% / 0.02); }
.lane--writer:hover { background: hsl(330 55% 68% / 0.02); }
.lane--ai:hover { background: hsl(200 55% 68% / 0.02); }

.lane__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.lane__desc {
  font-size: 0.8125rem;
  line-height: 1.65;
  color: var(--text-secondary);
  font-family: var(--font-body);
  transition: color 0.3s ease;
}

/* ═══════════════════════════════════════════════════
   PATHWAYS — TRAIN WITH PAUL
   ═══════════════════════════════════════════════════ */
.pathways {
  padding: clamp(6rem, 12vh, 10rem) 0;
}

.pathways__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.pathways__header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vh, 5rem);
}

.pathways__label {
  display: block;
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #EDEDED;
  margin-bottom: 1rem;
}

.pathways__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #F0F0F2;
  text-shadow: 0 0 40px hsl(260 80% 70% / 0.12);
}

/* ─── PATHWAY CARDS — SHARP EDGES ────────────── */
.pathways__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: hsl(0 0% 100% / 0.04);
}

.pathway-card {
  position: relative;
  overflow: hidden;
  transition: transform var(--spring-snappy-dur) var(--spring-snappy),
              box-shadow 0.5s ease;
}

.pathway-card:hover {
  transform: translateY(-8px);
  z-index: 2;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4),
              0 0 0 1px hsl(260 100% 73% / 0.08);
}

.pathway-card__inner {
  position: relative;
  padding: clamp(2rem, 3vw, 2.75rem);
  background: var(--bg-elevated);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: background 0.5s ease;
}

.pathway-card:hover .pathway-card__inner {
  background: var(--bg-hover);
}

/* Badge */
.pathway-card__badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.25rem 0.6rem;
  margin-bottom: 1rem;
  color: #4ade80;
  background: hsl(142 70% 50% / 0.08);
  border: 1px solid hsl(142 70% 50% / 0.15);
}

.pathway-card__badge--rare {
  color: var(--skeleton-gold);
  background: var(--skeleton-glow);
  border-color: hsl(38 70% 52% / 0.2);
}

.pathway-card__badge--intimate {
  color: var(--artist-ember);
  background: var(--artist-glow);
  border-color: hsl(15 60% 52% / 0.2);
}

/* PRIMARY CARD */
.pathway-card--primary .pathway-card__inner {
  border-left: 2px solid hsl(260 100% 73% / 0.2);
  background: linear-gradient(160deg, var(--bg-elevated) 0%, hsl(260 25% 11%) 100%);
}

.pathway-card--primary:hover .pathway-card__inner {
  border-left-color: hsl(260 100% 73% / 0.5);
  background: linear-gradient(160deg, var(--bg-hover) 0%, hsl(260 25% 14%) 100%);
}

.pathway-card__glow-accent {
  position: absolute;
  top: -50%;
  right: -30%;
  width: 80%;
  height: 80%;
  border-radius: 50%;
  background: radial-gradient(ellipse, var(--purple-glow) 0%, transparent 70%);
  filter: blur(60px);
  opacity: 0.3;
  pointer-events: none;
}

/* SKELETON CREW CARD */
.pathway-card--skeleton .pathway-card__inner {
  border-left: 2px solid hsl(38 70% 52% / 0.1);
  background: linear-gradient(160deg, var(--bg-elevated) 0%, hsl(38 15% 9%) 100%);
}

.pathway-card--skeleton:hover .pathway-card__inner {
  border-left-color: hsl(38 70% 52% / 0.35);
  background: linear-gradient(160deg, var(--bg-hover) 0%, hsl(38 15% 12%) 100%);
}

.pathway-card--skeleton:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.4),
              0 0 40px hsl(38 70% 52% / 0.04);
}

/* WORKING ARTIST CARD */
.pathway-card--artist .pathway-card__inner {
  border-left: 2px solid hsl(15 60% 52% / 0.08);
  background: linear-gradient(160deg, var(--bg-elevated) 0%, hsl(15 12% 9%) 100%);
}

.pathway-card--artist:hover .pathway-card__inner {
  border-left-color: hsl(15 60% 52% / 0.3);
  background: linear-gradient(160deg, var(--bg-hover) 0%, hsl(15 12% 12%) 100%);
}

.pathway-card--artist:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.4),
              0 0 40px hsl(15 60% 52% / 0.04);
}

.pathway-card__label {
  font-size: 0.5625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--purple);
  margin-bottom: 1.25rem;
}

.pathway-card--skeleton .pathway-card__label { color: var(--skeleton-gold); }
.pathway-card--artist .pathway-card__label { color: var(--artist-ember); }

.pathway-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.125rem);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.pathway-card__desc {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  flex: 1;
}

.pathway-card__meta {
  margin-bottom: 1.25rem;
}

.pathway-card__cities {
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pathway-card__status {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pathway-card__cta {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--lavender);
  transition: color 0.3s ease, letter-spacing 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pathway-card__cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    hsl(260 100% 73% / 0.15),
    transparent
  );
  animation: ctaShimmer 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes ctaShimmer {
  0% { left: -100%; }
  40% { left: 150%; }
  100% { left: 150%; }
}

.pathway-card__cta:hover {
  color: var(--purple);
  letter-spacing: 0.04em;
}

.pathway-card--skeleton .pathway-card__cta { color: hsl(38 45% 65%); }
.pathway-card--skeleton .pathway-card__cta:hover { color: var(--skeleton-gold); }
.pathway-card--artist .pathway-card__cta { color: hsl(15 40% 65%); }
.pathway-card--artist .pathway-card__cta:hover { color: var(--artist-ember); }

/* Texture overlays */
.pathway-card__texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.pathway-card:hover .pathway-card__texture {
  opacity: 1;
}

.pathway-card__texture--primary {
  background:
    radial-gradient(circle at 80% 20%, hsl(260 100% 73% / 0.05) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, hsl(280 80% 65% / 0.03) 0%, transparent 40%);
}

.pathway-card__texture--skeleton {
  background:
    radial-gradient(circle at 70% 30%, hsl(38 70% 52% / 0.04) 0%, transparent 50%),
    linear-gradient(135deg, transparent 40%, hsl(38 40% 40% / 0.02) 100%);
}

.pathway-card__texture--artist {
  background:
    radial-gradient(circle at 30% 70%, hsl(15 60% 52% / 0.04) 0%, transparent 50%),
    linear-gradient(180deg, transparent 50%, hsl(15 25% 28% / 0.03) 100%);
}

/* ═══════════════════════════════════════════════════
   TOUR MOMENTUM
   ═══════════════════════════════════════════════════ */
.tour {
  position: relative;
  padding: clamp(6rem, 12vh, 10rem) 0;
  background: linear-gradient(180deg, hsl(260 5% 7%) 0%, var(--bg-surface) 30%, var(--bg-surface) 70%, hsl(260 5% 6%) 100%);
  overflow: hidden;
}

.tour__glow {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 55%;
  height: 35%;
  border-radius: 50%;
  background: radial-gradient(ellipse,
    hsl(260 80% 65% / 0.06) 0%,
    hsl(200 55% 50% / 0.03) 50%,
    transparent 70%
  );
  filter: blur(100px);
  opacity: 0.5;
  pointer-events: none;
}

.tour__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  position: relative;
  text-align: center;
}

.tour__header {
  position: relative;
  margin-bottom: clamp(3rem, 6vh, 4rem);
}

.tour__ghost {
  font-family: var(--font-display);
  font-size: clamp(4rem, 14vw, 12rem);
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px hsl(260 100% 73% / 0.06);
  line-height: 0.85;
  pointer-events: none;
  user-select: none;
  animation: ghostShimmer 8s ease-in-out infinite;
}

@keyframes ghostShimmer {
  0%, 100% { -webkit-text-stroke-color: hsl(260 100% 73% / 0.04); }
  50% { -webkit-text-stroke-color: hsl(260 100% 73% / 0.1); }
}

.tour__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  text-transform: uppercase;
  color: var(--text-primary);
  margin-top: -0.5em;
  position: relative;
}

.tour__subtitle {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin-top: 0.75rem;
  line-height: 1.6;
}

/* Featured city — sharp, premium */
.tour-featured {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 1.75rem 2rem;
  margin-bottom: 0;
  background: linear-gradient(135deg, hsl(260 18% 10%) 0%, hsl(260 12% 8%) 100%);
  border: 1px solid hsl(260 100% 73% / 0.1);
  text-align: left;
  transition: border-color 0.4s ease, transform 0.4s var(--ease-out-expo), background 0.4s ease;
  overflow: hidden;
}

.tour-featured:hover {
  border-color: hsl(260 100% 73% / 0.25);
  transform: translateY(-2px);
  background: linear-gradient(135deg, hsl(260 22% 12%) 0%, hsl(260 12% 9%) 100%);
}

.tour-featured__glow {
  position: absolute;
  top: -60%;
  left: 30%;
  transform: translateX(-50%);
  width: 40%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(ellipse, var(--purple-glow) 0%, transparent 70%);
  filter: blur(50px);
  opacity: 0.3;
  pointer-events: none;
  animation: featuredPulse 6s ease-in-out infinite;
}

@keyframes featuredPulse {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.4; }
}

.tour-featured__content {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.tour-featured__label {
  font-size: 0.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--purple);
  background: hsl(260 100% 73% / 0.06);
  padding: 0.2rem 0.5rem;
}

.tour-featured__city {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2.5vw, 1.625rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-primary);
}

.tour-featured__date {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 400;
}

.tour-featured__status {
  font-size: 0.5625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #4ade80;
  background: hsl(142 70% 50% / 0.08);
  padding: 0.2rem 0.5rem;
}

.tour-featured__cta {
  position: relative;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--lavender);
  white-space: nowrap;
  transition: color 0.3s ease, letter-spacing 0.3s ease;
}

.tour-featured:hover .tour-featured__cta {
  color: var(--purple);
  letter-spacing: 0.04em;
}

/* Tour rows */
.tour__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  text-align: left;
}

.tour-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  align-items: center;
  gap: 2rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid hsl(0 0% 100% / 0.05);
  transition: background 0.3s ease, padding-left 0.3s ease;
}

.tour-row:first-child {
  border-top: 1px solid hsl(0 0% 100% / 0.05);
}

.tour-row:hover {
  background: hsl(260 100% 73% / 0.02);
  padding-left: 1rem;
}

.tour-row__name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.tour-row__date {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  font-weight: 400;
}

.tour-row__status {
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.6rem;
}

.tour-row__status--open {
  color: #4ade80;
  background: hsl(142 70% 50% / 0.08);
}

.tour-row__status--filling {
  color: var(--gold);
  background: hsl(43 70% 50% / 0.08);
  animation: statusPulse 3s ease-in-out infinite;
}

@keyframes statusPulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

.tour-row__arrow {
  color: var(--text-tertiary);
  font-size: 1.125rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.tour-row:hover .tour-row__arrow {
  color: var(--purple);
  transform: translateX(6px);
  transition: color 0.3s ease, transform var(--spring-snappy-dur) var(--spring-snappy);
}

/* Left edge accent on hover */
.tour-row::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--purple);
  transform: scaleY(0);
  transition: transform 0.4s var(--ease-out-expo);
}

.tour-row:hover::before {
  transform: scaleY(1);
}

.tour__view-all {
  display: inline-block;
  margin-top: 2rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--lavender);
  transition: color 0.3s ease;
}

.tour__view-all:hover {
  color: var(--purple);
}

/* ═══════════════════════════════════════════════════
   ABOUT TEASER
   ═══════════════════════════════════════════════════ */
.about-teaser {
  position: relative;
  padding: clamp(8rem, 18vh, 14rem) 0;
  overflow: hidden;
  border-top: 1px solid hsl(0 0% 100% / 0.03);
}

.about-teaser__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 45%;
  height: 55%;
  border-radius: 50%;
  background: radial-gradient(ellipse,
    hsl(260 80% 65% / 0.05) 0%,
    hsl(330 45% 55% / 0.03) 40%,
    transparent 70%
  );
  filter: blur(80px);
  pointer-events: none;
}

.about-teaser__inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  text-align: center;
  position: relative;
}

.about-teaser__label {
  display: block;
  font-size: 0.5625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--text-tertiary);
  margin-bottom: 2.5rem;
}

.about-teaser__quote {
  margin-bottom: 2.5rem;
}

.about-teaser__quote p {
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(1.375rem, 2.8vw, 2.25rem);
  line-height: 1.4;
  color: var(--text-primary);
}

.about-teaser__cta {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--lavender);
  transition: color 0.3s ease;
}

.about-teaser__cta:hover {
  color: var(--purple);
}

/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
.footer {
  padding: clamp(4rem, 8vh, 6rem) 0 2rem;
  border-top: 1px solid hsl(0 0% 100% / 0.04);
  background: linear-gradient(180deg, hsl(260 5% 7%) 0%, var(--bg-deep) 100%);
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.footer__brand {
  text-align: center;
}

.footer__wordmark {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--text-primary);
  display: block;
  margin-bottom: 0.5rem;
}

.footer__tagline {
  font-size: 0.6875rem;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.25rem;
}

.footer__nav a {
  font-size: 0.75rem;
  color: hsl(0 0% 90%);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.footer__nav a:hover {
  color: #FFFFFF;
  text-shadow: 0 0 12px hsl(280 80% 82% / 0.5), 0 0 24px hsl(280 80% 82% / 0.2);
}

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

.footer__social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: hsl(0 0% 90%);
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.footer__social-link:hover {
  color: #FFFFFF;
  text-shadow: 0 0 12px hsl(280 80% 82% / 0.5), 0 0 24px hsl(280 80% 82% / 0.2);
}

.footer__social-link svg {
  flex-shrink: 0;
}

.footer__contact {
  padding-top: 1rem;
  border-top: 1px solid hsl(0 0% 100% / 0.03);
  width: 100%;
  text-align: center;
}

.footer__contact-link {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.footer__contact-link:hover {
  color: var(--gold);
}

.footer__contact-line {
  padding-top: 1.25rem;
  border-top: 1px solid hsl(0 0% 100% / 0.04);
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.footer__email {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
  transition: color 0.3s ease;
}

.footer__email:hover {
  color: var(--gold);
}

.footer__inquiries {
  font-size: 0.75rem;
  color: var(--text-tertiary);
  letter-spacing: 0.04em;
}

.footer__bottom {
  padding-top: 0.75rem;
  text-align: center;
}

.footer__bottom span {
  font-size: 0.6875rem;
  color: var(--text-tertiary);
  letter-spacing: 0.02em;
}

.footer__copy {
  font-size: 0.6875rem;
  color: var(--text-tertiary);
  text-align: center;
}

/* PRIVATES CARD */
.pathway-card--privates .pathway-card__inner {
  border-left: 2px solid hsl(200 55% 68% / 0.08);
  background: linear-gradient(160deg, var(--bg-elevated) 0%, hsl(200 12% 9%) 100%);
}

.pathway-card--privates:hover .pathway-card__inner {
  border-left-color: hsl(200 55% 68% / 0.3);
  background: linear-gradient(160deg, var(--bg-hover) 0%, hsl(200 12% 12%) 100%);
}

.pathway-card--privates:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.4),
              0 0 40px hsl(200 55% 68% / 0.04);
}

.pathway-card__badge--selective {
  color: var(--heartlake-sky);
  background: hsl(200 55% 68% / 0.08);
  border-color: hsl(200 55% 68% / 0.15);
}

.pathway-card--privates .pathway-card__label { color: var(--heartlake-sky); }
.pathway-card--privates .pathway-card__cta { color: hsl(200 40% 65%); }
.pathway-card--privates .pathway-card__cta:hover { color: var(--heartlake-sky); }

.pathway-card__texture--privates {
  background:
    radial-gradient(circle at 60% 40%, hsl(200 55% 68% / 0.04) 0%, transparent 50%),
    linear-gradient(180deg, transparent 50%, hsl(200 20% 30% / 0.03) 100%);
}

/* ═══════════════════════════════════════════════════
   ENDORSED PROGRAMS
   ═══════════════════════════════════════════════════ */
.endorsed {
  padding: 0 0 clamp(4rem, 8vh, 6rem);
}

.endorsed__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.endorsed__header {
  text-align: center;
  margin-bottom: clamp(2rem, 4vh, 3rem);
}

.endorsed__label {
  display: block;
  font-size: 0.5625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--text-tertiary);
  margin-bottom: 0.75rem;
}

.endorsed__title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text-secondary);
}

.endorsed__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: hsl(0 0% 100% / 0.04);
}

.endorsed-card {
  position: relative;
  padding: clamp(2rem, 3vw, 2.5rem);
  background: var(--bg-elevated);
  transition: background 0.4s ease, transform var(--spring-snappy-dur) var(--spring-snappy);
  overflow: hidden;
}

.endorsed-card:hover {
  background: var(--bg-hover);
  transform: translateY(-4px);
}

.endorsed-card__badge {
  display: inline-block;
  font-size: 0.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.2rem 0.5rem;
  margin-bottom: 1rem;
  color: var(--lavender);
  background: hsl(280 80% 82% / 0.06);
  border: 1px solid hsl(280 80% 82% / 0.1);
}

.endorsed-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text-primary);
  margin-bottom: 0.375rem;
}

.endorsed-card__instructor {
  font-size: 0.8125rem;
  color: var(--lavender);
  margin-bottom: 0.75rem;
  font-style: italic;
  font-family: var(--font-body);
}

.endorsed-card__desc {
  font-size: 0.8125rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

.endorsed-card__cta {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--lavender);
  transition: color 0.3s ease, letter-spacing 0.3s ease;
}

.endorsed-card:hover .endorsed-card__cta {
  color: var(--purple);
  letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — MOBILE
   ═══════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .poster-carousel--3d .poster-carousel__slide {
    width: clamp(100px, 28vw, 140px);
  }

  .poster-carousel {
    padding: 2rem 0;
  }

  .poster-carousel--3d .poster-carousel__track {
    padding: 1rem 2rem;
    gap: 14px;
  }

  .site-header__nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: hsl(240 5% 5% / 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid hsl(0 0% 100% / 0.05);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 var(--page-pad);
    gap: 0;
    transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.35s ease,
                padding 0.35s ease;
  }

  .site-header__nav.is-open {
    max-height: 400px;
    opacity: 1;
    padding: 1.5rem var(--page-pad);
    gap: 0.25rem;
  }

  .site-header__nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
  }

  .site-header__burger {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding-top: 80px;
    padding-bottom: 2rem;
  }

  .hero__tiles {
    height: 45vh;
    min-height: 280px;
    gap: 3px;
    width: 98%;
  }

  .hero__letter {
    font-size: clamp(2rem, 12vw, 5rem);
  }

  /* Disable hover expand on mobile — use tap-to-expand JS instead */
  .hero__letter-block:hover {
    flex: 1;
  }
  .hero__letter-block:hover .hero__letter {
    transform: none;
  }
  .hero__letter-block:hover .hero__video-overlay {
    opacity: 0.5;
  }

  /* JS-driven tap-to-expand */
  .hero__letter-block.is-tapped {
    flex: 2.2;
  }
  .hero__letter-block.is-tapped .hero__video-overlay {
    opacity: 0.15;
  }
  .hero__letter-block.is-tapped .hero__video-wrap {
    filter: brightness(1.1) saturate(1.2);
  }
  .hero__letter-block.is-tapped .hero__glow-border {
    opacity: 1;
  }
  .hero__letter-block.is-tapped .hero__letter {
    transform: translateY(-6px) scale(1.08);
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
  }

  /* Reduce 3D scatter on mobile */
  .hero__letter-block[data-index="0"] .hero__video-container,
  .hero__letter-block[data-index="1"] .hero__video-container,
  .hero__letter-block[data-index="2"] .hero__video-container,
  .hero__letter-block[data-index="3"] .hero__video-container,
  .hero__letter-block[data-index="4"] .hero__video-container,
  .hero__letter-block[data-index="5"] .hero__video-container {
    transform: translateY(40px) scale(0.85);
  }

  .hero__letter-block[data-index="0"] .hero__letter,
  .hero__letter-block[data-index="1"] .hero__letter,
  .hero__letter-block[data-index="2"] .hero__letter,
  .hero__letter-block[data-index="3"] .hero__letter,
  .hero__letter-block[data-index="4"] .hero__letter,
  .hero__letter-block[data-index="5"] .hero__letter {
    transform: translateY(40px);
  }

  .current-authority__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .current-authority__media {
    order: -1;
  }

  .current-authority__media-frame {
    max-width: 320px;
    margin: 0 auto;
  }

  .what-paul-does__grid {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .lane {
    border-left: none;
    border-bottom: 1px solid hsl(0 0% 100% / 0.05);
  }

  .lane:nth-child(odd) {
    border-right: 1px solid hsl(0 0% 100% / 0.05);
  }

  .pathways__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1px;
  }

  .endorsed__grid {
    grid-template-columns: 1fr;
    gap: 1px;
  }

  .tour-featured {
    flex-direction: column;
    padding: 1.5rem;
    text-align: center;
  }

  .tour-featured__content {
    justify-content: center;
  }

  .tour-row {
    grid-template-columns: 1fr auto auto;
    gap: 1rem;
  }

  .tour-row__arrow {
    display: none;
  }

  .footer__nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .footer__social-link {
    min-height: 44px;
  }

  .footer__social {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 70px;
    padding-bottom: 1rem;
  }

  .hero__tiles {
    height: 35vh;
    min-height: 220px;
  }

  .what-paul-does__grid {
    grid-template-columns: 1fr;
  }

  .pathways__grid {
    grid-template-columns: 1fr;
  }

  .lane {
    border-right: none !important;
  }

  .tour-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 1rem 0;
  }

  .tour-row__date,
  .tour-row__status {
    justify-self: start;
  }
}

/* ─── TOUCH DEVICES — disable sticky hover + add tap feedback ── */
@media (hover: none) {
  .hero__letter-block:hover {
    flex: 1;
  }
  .hero__letter-block:hover .hero__letter {
    transform: none;
    filter: none;
  }
  .hero__letter-block:hover .hero__video-overlay {
    opacity: 0.5;
  }

  .lane:hover {
    transform: none;
  }
  .lane:active {
    transform: scale(0.98);
    transition: transform 0.12s ease;
  }

  .pathway-card:hover .pathway-card__inner {
    transform: none;
  }
  .pathway-card:active .pathway-card__inner {
    transform: scale(0.97);
    transition: transform 0.12s ease;
  }

  .pathway-card__cta:active,
  .about-teaser__cta:active {
    opacity: 0.7;
    transition: opacity 0.1s ease;
  }
}

/* ─── REDUCED MOTION — respect user preference ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .hero__tiles {
    transform: none !important;
  }

  .poster-carousel__slide {
    transform: none !important;
    filter: brightness(0.8) saturate(0.9) !important;
  }

  .reveal-up,
  .js-motion .reveal-up {
    opacity: 1 !important;
    transform: none !important;
  }
}
