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

/* Hide default cursor on non-touch devices */
@media (hover: hover) {
  *, *::before, *::after { cursor: none !important; }
}

:root {
  --black:    #080808;
  --dark:     #0f0f0f;
  --gold:     #c4a45a;
  --gold-dim: #6a5830;
  --white:    #f0ece4;
  --muted:    #8a8a8a;   /* raised from #4a4a4a → ~5.8:1 on black for WCAG AA */
  --font:     'Montserrat', sans-serif;
}

html { overflow-x: hidden; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  height: 700vh; /* scroll proxy — more dwell per station */
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; cursor: pointer; }
ul { list-style: none; }
button { background: none; border: none; cursor: pointer; font-family: var(--font); color: inherit; }

/* ─── PRELOADER ─────────────────────────────────────────────── */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  pointer-events: none;
}

#preloader-name {
  display: flex;
  gap: 0.12em;
  overflow: hidden;
}

#preloader-name span {
  display: inline-block;
  font-size: clamp(48px, 10vw, 120px);
  font-weight: 200;
  letter-spacing: 0.25em;
  color: var(--white);
  opacity: 0;
  transform: translateY(40px);
}

#preloader-title {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.5em;
  color: var(--gold);
  opacity: 0;
}

/* ─── CUSTOM CURSOR ─────────────────────────────────────────── */
#cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.3s, height 0.3s, background 0.3s;
  mix-blend-mode: difference;
}

#cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(196,164,90,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.4s cubic-bezier(0.25,0.46,0.45,0.94),
              height 0.4s cubic-bezier(0.25,0.46,0.45,0.94),
              border-color 0.3s, opacity 0.3s;
}

body.cursor-hover #cursor {
  width: 12px;
  height: 12px;
  background: var(--white);
}

body.cursor-hover #cursor-ring {
  width: 56px;
  height: 56px;
  border-color: rgba(196,164,90,0.8);
}

body.cursor-video #cursor-ring {
  width: 72px;
  height: 72px;
  border-color: var(--gold);
}

body.cursor-video #cursor::after {
  content: '▶';
  position: absolute;
  top: 50%;
  left: 60%;
  transform: translate(-50%, -50%);
  font-size: 10px;
  color: var(--gold);
}

/* ─── AVAILABILITY BADGE ────────────────────────────────────── */
#availability {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 32px;
}

.avail-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4caf50;
  animation: pulse-avail 2.5s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-avail {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(76,175,80,0.4); }
  50%       { opacity: 0.7; box-shadow: 0 0 0 5px rgba(76,175,80,0); }
}

/* Set to red when unavailable: .avail-dot.unavailable { background: #e53935; } */

.avail-text {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: #4caf50;
  white-space: nowrap;
}

/* ─── THREE.JS CANVAS ───────────────────────────────────────── */
#bg {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  background: transparent;
}

/* ─── STAGE (fixed viewport) ────────────────────────────────── */
#stage {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100vh;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

/* ─── STATIONS ──────────────────────────────────────────────── */
.station {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  will-change: opacity, transform;
  background-size: cover;
  background-position: center;
}

.station.active { pointer-events: auto; }

/* Honor the [hidden] attribute even though .station sets display:flex
   (e.g. THE VOID, hidden for launch) — keeps it out of layout, the
   a11y tree, and the keyboard tab order. */
.station[hidden] { display: none !important; }

.station-inner {
  width: 100%;
  max-width: 1200px;
  padding: 100px 60px 60px;
  margin: 0 auto;
}

/* ─── NAV ───────────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 60px;
  pointer-events: auto;
}

.nav-logo {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4em;
  color: var(--white);
  cursor: pointer;
  transition: color 0.3s;
}
.nav-logo:hover { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.3s;
}

.nav-links a:hover { color: var(--white); }

.nav-links a.active {
  color: var(--gold);
  position: relative;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

/* ─── MOBILE NAV TOGGLE ─────────────────────────────────────── */
#nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
  align-items: flex-end;
  padding: 8px;
  margin-left: 16px;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--white);
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
}

#nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
#nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
#nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ─── PROGRESS DOTS ─────────────────────────────────────────── */
#progress-dots {
  position: fixed;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: auto;
}

.dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(240,236,228,0.2);
  border: none;
  cursor: pointer;
  transition: background 0.4s, transform 0.4s, box-shadow 0.4s;
  padding: 0;
}

.dot:hover { background: rgba(240,236,228,0.5); }

.dot.active {
  background: var(--gold);
  transform: scale(1.6);
  box-shadow: 0 0 8px rgba(196,164,90,0.6);
}

/* ─── SHARED ELEMENTS ───────────────────────────────────────── */
.eyebrow {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.45em;
  color: var(--gold);
  margin-bottom: 20px;
}

.rule {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold-dim);
  margin: 16px 0 32px;
}

.section-head {
  margin-bottom: 40px;
}

/* ─── HERO ──────────────────────────────────────────────────── */
.btn-void {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 40px;
  border: 1px solid var(--gold-dim);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.35em;
  color: var(--gold);
  transition: background 0.35s, color 0.35s, border-color 0.35s;
}

.btn-void:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

/* ─── REEL ──────────────────────────────────────────────────── */
.reel-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* The portal — hovering summons the screen from the cosmos */
#s-reel .eyebrow {
  cursor: pointer;
  font-size: 11px;
  letter-spacing: 0.55em;
  transition: opacity 0.4s ease, letter-spacing 0.4s ease;
  user-select: none;
  position: relative;
}

/* Subtle pulsing underline to hint interactivity */
#s-reel .eyebrow::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
  animation: reel-pulse 2.8s ease-in-out infinite;
}

@keyframes reel-pulse {
  0%, 100% { width: 16px; opacity: 0.25; }
  50%       { width: 36px; opacity: 0.65; }
}

#s-reel .eyebrow:hover {
  color: var(--white);
  letter-spacing: 0.35em;
  text-shadow: 0 0 20px rgba(196,164,90,0.5), 0 0 60px rgba(196,164,90,0.2);
}

#s-reel .eyebrow:hover::after {
  width: 48px;
  opacity: 0.9;
  animation: none;
}

.reel-frame {
  width: 100%;
  max-width: 960px;
  aspect-ratio: 16 / 9;
  position: relative;
  border: 1px solid var(--gold-dim);
}

.reel-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ─── SCROLL NUDGE ──────────────────────────────────────────── */
.scroll-nudge {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  opacity: 0.45;
  transition: opacity 1s ease;
  pointer-events: none;
}

.scroll-nudge.hidden { opacity: 0; }

.nudge-line {
  display: block;
  width: 1px;
  height: 36px;
  background: var(--gold);
  transform-origin: top center;
  animation: nudge-drop 2.2s ease-in-out infinite;
}

.nudge-label {
  font-size: 0.5rem;
  font-weight: 300;
  letter-spacing: 0.28em;
  color: var(--gold);
}

@keyframes nudge-drop {
  0%       { transform: scaleY(0); opacity: 0; }
  25%, 65% { transform: scaleY(1); opacity: 1; }
  100%     { transform: scaleY(0); opacity: 0; }
}

/* ─── WORK ──────────────────────────────────────────────────── */
.work-inner {
  max-height: 100vh;
  overflow: hidden;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

/* Empty thumbnails — gradient treatment so they don't look broken */
.project-thumb:not(.still) {
  background: linear-gradient(135deg, #111 0%, #1a1a1a 50%, #0d0d0d 100%) !important;
}

.project-thumb:not(.still)::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 40%, rgba(196,164,90,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.project-card {
  display: block;
  cursor: pointer;
}

.project-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-thumb.still {
  background-size: cover;
  background-position: center;
}

.project-thumb.still::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(8,8,8,0.45);
  transition: background 0.4s;
}

.project-card:hover .project-thumb.still::after {
  background: rgba(8,8,8,0.2);
}

.project-thumb.still .project-play {
  position: relative;
  z-index: 1;
}

.project-card:hover .project-thumb { transform: scale(1.04); }

.project-play {
  font-size: 16px;
  color: rgba(196,164,90,0);
  transition: color 0.3s;
}

.project-card:hover .project-play { color: rgba(196,164,90,0.7); }

.project-meta {
  padding: 10px 0 16px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.project-client {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.35em;
  color: var(--gold);
}

.project-title {
  font-size: 13px;
  font-weight: 300;
  color: var(--white);
}

.project-type {
  font-size: 8px;
  letter-spacing: 0.25em;
  color: var(--muted);
}

/* ─── THE VOID ──────────────────────────────────────────────── */
.void-deck {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: #8a8a8a;
  line-height: 1.9;
  margin-bottom: 40px;
  max-width: 520px;
}

.void-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 10px;
}

.void-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px;
  border: 1px solid #1a1a1a;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s;
  background: rgba(10,10,10,0.6);
  backdrop-filter: blur(4px);
}

.void-card:hover {
  border-color: var(--gold-dim);
  background: rgba(196,164,90,0.04);
}

.void-card--large {
  grid-row: 1 / 3;
  justify-content: flex-end;
  background: linear-gradient(160deg, #0f0f0f 0%, #080808 60%, rgba(196,164,90,0.03) 100%);
  min-height: 260px;
}

.void-tag {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  padding: 4px 10px;
  align-self: flex-start;
}

.void-title {
  font-size: 18px;
  font-weight: 200;
  letter-spacing: 0.05em;
  color: var(--white);
}

.void-card--large .void-title { font-size: 26px; }

.void-sub {
  font-size: 12px;
  color: var(--muted);
  font-weight: 300;
}

.void-status {
  font-size: 8px;
  letter-spacing: 0.3em;
  color: var(--muted);
  margin-top: auto;
}

/* ─── ABOUT ─────────────────────────────────────────────────── */
/* The About station carries the most content (bio + full client wall), so it
   top-aligns instead of centering — otherwise a tall wall pushes the heading up
   behind the fixed nav (the clip you saw). Trimmed top padding clears the nav. */
#s-about { align-items: flex-start; }
#s-about .station-inner { padding-top: 84px; padding-bottom: 44px; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-heading {
  font-size: clamp(18px, 2.2vw, 30px);
  font-weight: 200;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 18px;
}

.about-heading em {
  font-style: italic;
  color: var(--gold);
}

.about-stats {
  display: flex;
  gap: 40px;
  padding-top: 16px;
  border-top: 1px solid #1a1a1a;
}

.stat { display: flex; flex-direction: column; gap: 6px; }
.stat-n { font-size: 32px; font-weight: 200; color: var(--white); line-height: 1; }
.stat-l { font-size: 8px; letter-spacing: 0.3em; color: var(--muted); }

.about-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-right p { font-size: 13px; color: #999; line-height: 1.75; }

/* Client logo wall — white logos, muted by default, brighten + lift on hover */
.client-wall {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #1a1a1a;
}

.client-group + .client-group {
  margin-top: 16px;
}

.client-wall-label {
  display: block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.4em;
  color: var(--muted);
  margin-bottom: 10px;
}

.client-logos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 14px 18px;
  align-items: center;
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 33px;
  opacity: 0.5;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.client-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.client-logo:hover { opacity: 1; transform: translateY(-2px); }

.about-link {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--gold);
  border-bottom: 1px solid var(--gold-dim);
  padding-bottom: 4px;
  align-self: flex-start;
  transition: color 0.2s;
}
.about-link:hover { color: var(--white); }

/* ─── CONTACT ───────────────────────────────────────────────── */
.contact-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.contact-heading {
  font-size: clamp(40px, 7vw, 96px);
  font-weight: 200;
  letter-spacing: 0.04em;
  line-height: 1.15;
  color: var(--white);
}

.contact-email-row {
  display: flex;
  align-items: baseline;
  gap: 18px;
}

.contact-email {
  font-size: clamp(14px, 1.8vw, 22px);
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--gold);
  transition: color 0.2s;
}
.contact-email:hover { color: var(--white); }

.copy-email-btn {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--muted);
  border: 1px solid var(--gold-dim);
  padding: 5px 12px;
  transition: color 0.2s, border-color 0.2s;
}
.copy-email-btn:hover { color: var(--gold); border-color: var(--gold); }
.copy-email-btn.copied { color: var(--gold); border-color: var(--gold); }

.contact-location {
  font-size: 9px;
  letter-spacing: 0.4em;
  color: var(--muted);
}

.contact-social {
  display: flex;
  gap: 40px;
}

.contact-social a {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--muted);
  transition: color 0.2s;
}
.contact-social a:hover { color: var(--gold); }

.contact-foot {
  font-size: 9px;
  letter-spacing: 0.2em;
  color: #6f6f6f;
  margin-top: 20px;
}

/* ─── PROJECT MODAL ─────────────────────────────────────────── */
#project-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

#project-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(4,4,4,0.96);
  backdrop-filter: blur(6px);
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 960px;
  margin: 48px auto;
  padding: 0 0 80px;
  transform: translateY(24px);
  transition: transform 0.45s cubic-bezier(0.25,0.46,0.45,0.94);
}

#project-modal.open .modal-panel { transform: translateY(0); }

.modal-close {
  position: fixed;
  top: 28px;
  right: 36px;
  z-index: 2;
  font-size: 18px;
  color: var(--muted);
  transition: color 0.2s;
  padding: 8px;
}
.modal-close:hover { color: var(--white); }

/* VIDEO */
.modal-video-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  position: relative;
}
.modal-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* BODY */
.modal-body {
  padding: 36px 48px 0;
}

/* HEADER */
.modal-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid #1a1a1a;
  margin-bottom: 0;
}

.modal-client-label {
  display: block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-bottom: 8px;
}

.modal-title {
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 200;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 8px;
}

.modal-format-label {
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--muted);
}

.modal-key-credits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
  align-content: start;
}

.key-credit {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.kc-role {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.35em;
  color: var(--muted);
}

.kc-name {
  font-size: 13px;
  font-weight: 300;
  color: var(--white);
}

.kc-link {
  color: var(--gold);
  transition: color 0.2s;
}
.kc-link:hover { color: var(--white); }

/* TABS */
.modal-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid #1a1a1a;
  margin-top: 32px;
}

.mtab {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--muted);
  padding: 14px 24px;
  border-bottom: 1px solid transparent;
  margin-bottom: -1px;
  transition: color 0.2s, border-color 0.2s;
}

.mtab:hover { color: var(--white); }
.mtab.active { color: var(--gold); border-bottom-color: var(--gold); }

/* TAB PANELS */
.tab-panel {
  display: none;
  padding: 32px 0;
}
.tab-panel.active { display: block; }

/* CREDITS GRID */
.credits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 32px;
}

.credit-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cr-role {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--muted);
}

.cr-name {
  font-size: 13px;
  font-weight: 300;
  color: var(--white);
}

.cr-link {
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.cr-link:hover { color: var(--gold); border-bottom-color: var(--gold-dim); }

.cr-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 5px;
}

.cr-social {
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--muted);
  border: 1px solid #222;
  padding: 3px 7px;
  transition: color 0.2s, border-color 0.2s;
}

.cr-social:hover {
  color: var(--gold);
  border-color: var(--gold-dim);
}

/* DIRECTOR'S NOTE */
.directors-note {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  color: #999;
  max-width: 680px;
  font-style: italic;
  border-left: 2px solid var(--gold-dim);
  padding-left: 24px;
}

/* PRESS */
.press-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.press-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid #141414;
}

.press-type {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  padding: 3px 8px;
  white-space: nowrap;
}

.press-name {
  font-size: 13px;
  font-weight: 300;
  color: var(--white);
  flex: 1;
}

.press-link {
  font-size: 9px;
  letter-spacing: 0.25em;
  color: var(--muted);
  transition: color 0.2s;
}
.press-link:hover { color: var(--gold); }

.press-empty {
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
}

/* CTA */
.modal-cta {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid #1a1a1a;
}

.modal-cta-note {
  font-size: 11px;
  color: var(--muted);
  font-weight: 300;
}

/* MODAL RESPONSIVE */
@media (max-width: 760px) {
  .modal-panel { margin: 0; }
  .modal-body { padding: 24px 20px 0; }
  .modal-header { grid-template-columns: 1fr; gap: 24px; }
  .credits-grid { grid-template-columns: repeat(2, 1fr); }
  .modal-cta { flex-direction: column; align-items: flex-start; }
}

/* ─── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 900px) {
  #nav { padding: 20px 24px; }
  #nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    padding: 88px 24px 24px;
    background: rgba(8,8,8,0.97);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #1a1a1a;
    z-index: 90;
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid #161616; }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a { display: block; padding: 16px 0; font-size: 12px; letter-spacing: 0.25em; }
  .station-inner { padding: 80px 24px 40px; }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .void-grid { grid-template-columns: 1fr; }
  .void-card--large { grid-row: auto; }
  #progress-dots { right: 12px; }
}

@media (max-width: 560px) {
  .work-grid { grid-template-columns: 1fr; }
}

/* ─── REEL PLAYBACK UI ──────────────────────────────────────── */
#reel-playback-ui {
  position: fixed; inset: 0; z-index: 50;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.reel-fs-btn {
  position: absolute;
  pointer-events: auto;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  font-family: var(--font);
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.reel-fs-btn:hover {
  background: rgba(0,0,0,0.6);
  border-color: rgba(255,255,255,0.6);
}
#reel-exit, #reel-mute {
  top: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
}
#reel-exit { right: 32px; font-size: 14px; }
#reel-mute { right: 84px; font-size: 11px; letter-spacing: 1px; }
#reel-to-work {
  bottom: 24px; right: 32px;
  padding: 10px 18px;
  border-radius: 22px;
  font-size: 11px;
  letter-spacing: 2px;
}
#reel-caption {
  position: absolute;
  bottom: 24px; left: 0; right: 0;
  text-align: center;
  color: rgba(255,255,255,0.45);
  font-family: var(--font);
  font-size: 11px;
  letter-spacing: 3px;
}

#s-reel .eyebrow:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 6px;
}

/* Body classes for playback mode */
body.playback #nav  { opacity: 0.15; transition: opacity 0.4s ease; }
body.playback #s-reel .eyebrow { opacity: 0; }
body:not(.playback) #nav { opacity: 1; transition: opacity 0.4s ease; }

/* Reduced motion: dramatically less animation */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
}

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

/* Keyboard focus must stay visible even though the mouse cursor is hidden */
a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible,
.project-card:focus-visible,
.void-card:focus-visible,
.dot:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}
.project-card:focus-visible .project-thumb { transform: scale(1.04); }

/* ─── MODAL POSTER (shown when a film isn't embedded yet) ────── */
.modal-video-poster {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  background: linear-gradient(135deg, #111 0%, #1a1a1a 55%, #0d0d0d 100%);
  background-size: cover;
  background-position: center;
}
/* Honor [hidden] even though the base rule sets display:flex — otherwise the
   poster stays painted over the video iframe for projects that DO have a film. */
.modal-video-poster[hidden] { display: none !important; }
.modal-video-poster.has-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.85) 0%, rgba(8,8,8,0.25) 60%, rgba(8,8,8,0.10) 100%);
}
.modal-poster-label {
  position: relative;
  z-index: 1;
  margin: 24px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--gold);
}

/* ─── MOBILE / LANDSCAPE: never trap content off-screen ─────── */
/* The fixed scroll-jacked stage centers each station and hides overflow, which
   can clip content on short or narrow viewports with no way to scroll to it.
   Below these thresholds, top-align and let the active station scroll
   internally, and use dynamic viewport units so browser chrome can't cut it. */
#stage { height: 100vh; height: 100dvh; }

@media (max-width: 900px), (max-height: 680px) {
  .station {
    align-items: flex-start;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .station-inner {
    padding-top: 72px;
    padding-bottom: 48px;
    min-height: 100%;
  }
  /* Unclip the Work grid so all six projects are reachable */
  .work-inner { max-height: none; overflow: visible; }
  /* The side dots are the mobile nav affordance (labels are hidden) — enlarge */
  .dot { width: 7px; height: 7px; }
  #progress-dots { gap: 16px; right: 14px; }
}

/* Very short landscape phones: tighten vertical rhythm further */
@media (max-height: 480px) {
  .station-inner { padding-top: 60px; }
  .about-stats { padding-top: 16px; }
}
