/* ============ TOKENS ============ */
:root {
  --bg: #0e0d0c;
  --bg-2: #171513;
  --card: #1b1917;
  --line: rgba(241, 236, 227, 0.12);
  --text: #f1ece3;
  --muted: #a39d93;
  --rec: #ff3b2f;
  --amber: #f5b642;

  --serif: "Instrument Serif", Georgia, serif;
  --sans: "Inter", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;

  --pad: clamp(16px, 5vw, 72px);
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
em { font-family: var(--serif); font-style: italic; font-weight: 400; }
.mono { font-family: var(--mono); font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
::selection { background: var(--rec); color: #fff; }

/* ============ CURSOR ============ */
@media (hover: hover) and (pointer: fine) {
  body.has-cursor, body.has-cursor a, body.has-cursor button { cursor: none; }
}
.cursor, .cursor-dot { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999; opacity: 0; transition: opacity .3s; }
body.has-cursor .cursor, body.has-cursor .cursor-dot { opacity: 1; }
.cursor {
  width: 38px; height: 38px;
  margin: -19px 0 0 -19px;
  transition: width .35s var(--ease), height .35s var(--ease), margin .35s var(--ease), opacity .3s;
}
.cursor .c, .hero-frame .c { position: absolute; width: 10px; height: 10px; border-color: var(--text); border-style: solid; border-width: 0; }
.c.tl { top: 0; left: 0; border-top-width: 1.5px; border-left-width: 1.5px; }
.c.tr { top: 0; right: 0; border-top-width: 1.5px; border-right-width: 1.5px; }
.c.bl { bottom: 0; left: 0; border-bottom-width: 1.5px; border-left-width: 1.5px; }
.c.br { bottom: 0; right: 0; border-bottom-width: 1.5px; border-right-width: 1.5px; }
.cursor-dot { width: 6px; height: 6px; margin: -3px 0 0 -3px; border-radius: 50%; background: var(--rec); }
.cursor-label {
  position: absolute; inset: 0; display: grid; place-items: center;
  font: 500 11px var(--mono); letter-spacing: .12em; color: var(--text);
  opacity: 0; transition: opacity .2s;
}
.cursor.is-big { width: 96px; height: 64px; margin: -32px 0 0 -48px; }
.cursor.is-big .cursor-label { opacity: 1; }
.cursor.is-big + .cursor-dot { opacity: 0; }
.cursor.is-link { width: 26px; height: 26px; margin: -13px 0 0 -13px; }
.cursor.is-link .c { border-color: var(--rec); }

/* ============ GRAIN ============ */
.grain {
  position: fixed; inset: -50%; z-index: 9000; pointer-events: none; opacity: .07;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 1s steps(4) infinite;
}
@keyframes grain {
  0% { transform: translate(0, 0); } 25% { transform: translate(-3%, 2%); }
  50% { transform: translate(2%, -3%); } 75% { transform: translate(-2%, -1%); } 100% { transform: translate(1%, 3%); }
}

/* ============ HUD ============ */
.hud {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px var(--pad);
  transition: background .4s, backdrop-filter .4s, padding .4s;
}
.hud.scrolled { background: rgba(14, 13, 12, .72); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); padding-top: 12px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.hud-logo { display: flex; align-items: center; gap: 8px; font: 500 12px var(--mono); letter-spacing: .08em; }
.rec-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--rec); animation: blink 1.4s steps(1) infinite; box-shadow: 0 0 12px var(--rec); }
@keyframes blink { 50% { opacity: .15; } }
.tc { color: var(--muted); font-variant-numeric: tabular-nums; }
.hud-nav { display: flex; align-items: center; gap: clamp(12px, 2.4vw, 32px); font-size: 14px; }
.hud-nav a { position: relative; color: var(--muted); transition: color .2s; }
.hud-nav a span { font: 10px var(--mono); color: var(--rec); margin-right: 4px; vertical-align: 2px; }
.hud-nav a:hover, .hud-nav a.active { color: var(--text); }
.hud-cta { padding: 7px 14px; border: 1px solid var(--line); border-radius: 99px; color: var(--text) !important; }
.hud-cta:hover { background: var(--text); color: var(--bg) !important; }
@media (max-width: 760px) {
  .hud-nav { display: none; }
}

/* ============ HERO ============ */
.hero { position: relative; height: 100svh; min-height: 560px; overflow: hidden; display: flex; align-items: flex-end; }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 50%; transform: scale(1.08); animation: heroIn 2.4s var(--ease) forwards; filter: contrast(1.03); }
@keyframes heroIn { to { transform: scale(1); } }
.hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(14,13,12,.45) 0%, rgba(14,13,12,0) 22%, rgba(14,13,12,.9) 100%); }
.hero-frame { position: absolute; inset: clamp(70px, 10vh, 96px) var(--pad) clamp(24px, 5vh, 48px); pointer-events: none; }
.hero-frame .c { width: 26px; height: 26px; border-color: rgba(241,236,227,.65); }
.hero-meta { position: absolute; top: 12px; font: 11px var(--mono); letter-spacing: .1em; color: rgba(241,236,227,.7); }
.hero-meta.left { left: 38px; } .hero-meta.right { right: 38px; }
.hero-content { position: relative; padding: 0 var(--pad) clamp(64px, 12vh, 120px); width: 100%; }
.eyebrow { font: 500 12px var(--mono); letter-spacing: .2em; text-transform: uppercase; color: var(--amber); margin: 0 0 12px; }
.hero-title { margin: 0; font-family: var(--serif); font-weight: 400; font-size: clamp(64px, 14vw, 220px); line-height: .86; letter-spacing: -.02em; }
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line:nth-child(2) { padding-left: clamp(24px, 12vw, 220px); }
.hero-role { margin: 22px 0 0; font-size: clamp(18px, 2.4vw, 28px); color: var(--muted); }
.role { color: var(--text); font-family: var(--serif); font-style: italic; font-size: 1.25em; }
.caret { display: inline-block; width: 2px; height: 1em; margin-left: 3px; background: var(--rec); vertical-align: -3px; animation: blink 1s steps(1) infinite; }
.scroll-cue { position: absolute; right: var(--pad); bottom: clamp(64px, 12vh, 120px); display: flex; flex-direction: column; align-items: center; gap: 10px; font: 11px var(--mono); letter-spacing: .2em; text-transform: uppercase; writing-mode: vertical-rl; color: var(--muted); }
.scroll-cue span { width: 1px; height: 56px; background: linear-gradient(var(--text), transparent); animation: drip 2s var(--ease) infinite; }
@keyframes drip { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }
@media (max-width: 600px) { .scroll-cue { display: none; } .hero-meta { display: none; } }

/* ============ SECTIONS ============ */
.section { position: relative; padding: clamp(56px, 9vh, 110px) var(--pad); }
@media (max-width: 760px) { .section { padding-top: 44px; padding-bottom: 44px; scroll-margin-top: 48px; } }
.slate-label { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 36px; font: 500 12px var(--mono); letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.slate-label span { padding: 4px 9px; background: var(--text); color: var(--bg); border-radius: 3px; }
.section-title { margin: 0 0 clamp(28px, 4vw, 48px); max-width: 16ch; font-family: var(--serif); font-weight: 400; font-size: clamp(40px, 6.5vw, 96px); line-height: 1; letter-spacing: -.01em; }
.section-title em { color: var(--amber); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ============ ABOUT ============ */
.intro { margin: 0; max-width: 22ch; font-family: var(--serif); font-size: clamp(34px, 5.6vw, 84px); line-height: 1.08; letter-spacing: -.01em; }
.intro .w { display: inline-block; opacity: .14; transition: opacity .5s; }
.intro .w.lit { opacity: 1; }
.intro mark {
  background: none; color: var(--text); font-style: italic;
  background-image: linear-gradient(var(--rec), var(--rec)); background-size: 0% 3px; background-repeat: no-repeat; background-position: 0 92%;
  transition: background-size .5s var(--ease), color .3s; cursor: help;
}
.intro mark.lit { background-size: 100% 3px; }
.intro mark:hover, .intro mark:focus { color: var(--amber); outline: none; }
.tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 48px; max-width: 900px; }
.tag { padding: 9px 16px; border: 1px solid var(--line); border-radius: 99px; font-size: 14px; background: var(--bg-2); transition: transform .3s var(--ease), border-color .3s; }
.tag:hover { transform: translateY(-3px) rotate(-2deg); border-color: var(--amber); }
.note-pop {
  position: fixed; z-index: 500; max-width: 260px; padding: 12px 14px;
  background: var(--text); color: var(--bg); border-radius: 10px;
  font-size: 14px; line-height: 1.4; pointer-events: none;
  opacity: 0; transform: translateY(6px) rotate(-1.5deg); transition: opacity .2s, transform .2s var(--ease);
}
.note-pop.show { opacity: 1; transform: translateY(0) rotate(-1.5deg); }
.note-pop::before { content: "NOTE"; display: block; font: 500 10px var(--mono); letter-spacing: .14em; color: var(--rec); margin-bottom: 4px; }

/* ============ FILMS ============ */
.featured { display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px; margin-bottom: clamp(48px, 6vw, 80px); }
.featured .film:nth-child(1) { grid-column: span 12; }
.featured .film:nth-child(1) .thumb { aspect-ratio: 21 / 9; }
.featured .film:nth-child(2), .featured .film:nth-child(3) { grid-column: span 6; }
@media (max-width: 760px) { .featured .film { grid-column: span 12 !important; } .featured .film:nth-child(1) .thumb { aspect-ratio: 16 / 9; } }

.film { display: block; text-align: left; width: 100%; }
.thumb { position: relative; aspect-ratio: 16 / 9; overflow: hidden; border-radius: 6px; background: var(--card); }
.thumb img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.02); transition: transform .8s var(--ease), filter .6s; filter: saturate(.8) brightness(.85); }
.film:hover .thumb img, .film:focus-visible .thumb img { transform: scale(1.07); filter: saturate(1) brightness(1); }
.thumb::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px var(--line); border-radius: 6px; }
.thumb .play { position: absolute; left: 16px; bottom: 16px; display: flex; align-items: center; gap: 8px; padding: 6px 12px 6px 8px; border-radius: 99px; background: rgba(14,13,12,.7); backdrop-filter: blur(8px); font: 500 11px var(--mono); letter-spacing: .1em; }
.thumb .play::before { content: ""; width: 0; height: 0; border-left: 8px solid var(--rec); border-top: 5px solid transparent; border-bottom: 5px solid transparent; margin-left: 4px; }
.film-info { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; margin-top: 14px; }
.film-info h3 { margin: 0; font-family: var(--serif); font-weight: 400; font-size: clamp(22px, 2.4vw, 32px); line-height: 1.1; }
.featured .film:nth-child(1) .film-info h3 { font-size: clamp(28px, 4vw, 52px); }
.film-tag { flex-shrink: 0; font: 11px var(--mono); letter-spacing: .1em; text-transform: uppercase; color: var(--amber); }
.film p { margin: 6px 0 0; color: var(--muted); font-size: 15px; max-width: 60ch; }

.film-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.film-filters button { padding: 8px 16px; border: 1px solid var(--line); border-radius: 99px; font-size: 14px; color: var(--muted); transition: all .25s; }
.film-filters button:hover { color: var(--text); border-color: var(--text); }
.film-filters button[aria-selected="true"] { background: var(--text); color: var(--bg); border-color: var(--text); }
.film-filters button sup { font: 10px var(--mono); margin-left: 3px; opacity: .6; }
.film-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 40px 20px; }
.film-grid .film { animation: pop .5s var(--ease) both; }
.film-grid .film-info h3 { font-size: 22px; }
@keyframes pop { from { opacity: 0; transform: translateY(16px); } }

/* ============ PHOTOS ============ */
.gallery { columns: 3 320px; column-gap: 14px; }
.gallery button { display: block; width: 100%; margin-bottom: 14px; break-inside: avoid; border-radius: 4px; overflow: hidden; background: var(--card); }
.gallery img { width: 100%; height: auto; transition: transform .8s var(--ease), filter .6s; filter: grayscale(.25) brightness(.9); }
.gallery button:hover img, .gallery button:focus-visible img { transform: scale(1.04); filter: none; }

/* ============ PERSONAL ============ */
.bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.card { background: var(--card); border: 1px solid var(--line); border-radius: 18px; padding: clamp(20px, 2.4vw, 32px); position: relative; overflow: hidden; }
.card h3 { margin: 0 0 20px; font: 500 12px var(--mono); letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.facts { grid-column: span 7; }
.callsheet { grid-column: span 5; grid-row: span 2; background: #f1ece3; color: #1b1917; }
.callsheet h3 { color: #1b1917; margin: 0; }
.player { grid-column: span 4; }
.currently { grid-column: span 3; }
.bucket { grid-column: span 12; }
.bucket ul { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)) !important; }
.card[hidden] { display: none; }
.bento.no-callsheet .facts { grid-column: span 12; }
.bento.no-callsheet .player, .bento.no-callsheet .currently { grid-column: span 6; }
@media (max-width: 1000px) {
  .facts, .callsheet, .bucket { grid-column: span 12; }
  .player, .currently { grid-column: span 6; }
  .callsheet { grid-row: auto; }
}
@media (max-width: 600px) { .player, .currently { grid-column: span 12; } }

.facts-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 600px) { .facts-list { grid-template-columns: 1fr; } }
.fact { position: relative; padding: 18px; border-radius: 12px; background: var(--bg-2); border: 1px solid var(--line); transition: transform .35s var(--ease); }
.fact:hover { transform: rotate(-1.5deg) scale(1.02); }
.fact .clap { display: flex; height: 12px; margin: -18px -18px 14px; border-radius: 12px 12px 0 0; overflow: hidden;
  background: repeating-linear-gradient(-45deg, var(--text) 0 10px, var(--bg-2) 10px 20px); opacity: .9; transform-origin: 0 100%; transition: transform .3s var(--ease); }
.fact:hover .clap { transform: rotate(-6deg); }
.fact span { font: 500 10px var(--mono); letter-spacing: .14em; text-transform: uppercase; color: var(--rec); }
.fact p { margin: 6px 0 0; font-size: 15px; line-height: 1.45; }

.callsheet-head { display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; gap: 8px; padding-bottom: 16px; border-bottom: 2px solid #1b1917; margin-bottom: 8px; }
.callsheet .mono { color: #6f685e; }
.schedule { list-style: none; margin: 0; padding: 0; }
.schedule li { display: grid; grid-template-columns: 64px 1fr; gap: 16px; padding: 14px 0; border-bottom: 1px dashed rgba(27,25,23,.25); }
.schedule li:last-child { border-bottom: 0; }
.schedule time { font: 500 14px var(--mono); }
.schedule strong { display: block; font-weight: 600; }
.schedule small { color: #6f685e; font-size: 13px; }
.schedule li.now { position: relative; }
.schedule li.now time { color: var(--rec); }
.schedule li.now::before { content: "● NOW"; position: absolute; right: 0; top: 16px; font: 500 10px var(--mono); letter-spacing: .12em; color: var(--rec); }

.player { display: flex; flex-direction: column; }
.vinyl-wrap { display: grid; place-items: center; padding: 8px 0 18px; }
.vinyl { width: min(170px, 64%); aspect-ratio: 1; border-radius: 50%; display: grid; place-items: center; padding: 0;
  background: repeating-radial-gradient(circle, #1f1f1f 0 2px, #0c0c0c 2px 4px);
  box-shadow: 0 10px 40px rgba(0,0,0,.5), inset 0 0 0 1px rgba(255,255,255,.06);
  animation: spin 4s linear infinite; animation-play-state: paused; transition: box-shadow .3s; }
.player.playing .vinyl { animation-play-state: running; }
.vinyl:hover { box-shadow: 0 10px 40px rgba(0,0,0,.5), 0 0 0 2px var(--rec); }
.vinyl-label { position: relative; width: 44%; aspect-ratio: 1; border-radius: 50%; background: var(--rec) center/cover no-repeat; box-shadow: 0 0 0 3px #0c0c0c; }
.vinyl-label::after { content: ""; position: absolute; left: 50%; top: 50%; width: 10%; height: 10%; margin: -5% 0 0 -5%; border-radius: 50%; background: var(--card); }
.spotify { margin-top: auto; min-height: 80px; }
.spotify iframe { display: block; border-radius: 12px; }
@keyframes spin { to { transform: rotate(360deg); } }
.song strong { display: block; font-family: var(--serif); font-weight: 400; font-size: 26px; line-height: 1.1; }
.song span { color: var(--muted); font-size: 14px; }
.bars { display: flex; align-items: flex-end; gap: 3px; height: 22px; margin: 14px 0; }
.bars i { width: 4px; height: 20%; background: var(--amber); border-radius: 2px; animation: eq 1s ease-in-out infinite alternate; animation-play-state: paused; }
.player.playing .bars i { animation-play-state: running; }
.bars i:nth-child(2) { animation-delay: -.3s; } .bars i:nth-child(3) { animation-delay: -.6s; } .bars i:nth-child(4) { animation-delay: -.15s; }
.bars i:nth-child(5) { animation-delay: -.75s; } .bars i:nth-child(6) { animation-delay: -.45s; } .bars i:nth-child(7) { animation-delay: -.9s; }
@keyframes eq { to { height: 100%; } }
.btn-small { align-self: flex-start; margin-top: auto; padding: 8px 14px; border-radius: 99px; background: var(--text); color: var(--bg); font-size: 13px; font-weight: 500; }

.currently dl, .currently dl { margin: 0; }
.currently dt { font: 10px var(--mono); letter-spacing: .14em; text-transform: uppercase; color: var(--amber); }
.currently dd { margin: 2px 0 16px; font-size: 15px; }
.currently dd:last-child { margin-bottom: 0; }

.bucket ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 4px 24px; }
@media (max-width: 600px) { .bucket ul { grid-template-columns: 1fr; } }
.bucket li { display: flex; gap: 12px; align-items: flex-start; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.bucket li::before { content: ""; flex-shrink: 0; width: 18px; height: 18px; margin-top: 2px; border: 1.5px solid var(--muted); border-radius: 5px; }
.bucket li.done { color: var(--muted); text-decoration: line-through; text-decoration-color: var(--rec); }
.bucket li.done::before { border-color: var(--rec); background: var(--rec) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3.5 8.5l3 3 6-7' fill='none' stroke='white' stroke-width='2'/%3E%3C/svg%3E") center/80% no-repeat; }

/* ============ CONTACT ============ */
.contact { text-align: center; padding-bottom: 120px; }
.wrap-label { color: var(--rec); }
.contact-title { margin: 12px 0 36px; font-family: var(--serif); font-weight: 400; font-size: clamp(56px, 11vw, 180px); line-height: .9; }
.contact-title em { color: var(--amber); }
.contact-mail { display: inline-block; padding: 16px 28px; border: 1px solid var(--text); border-radius: 99px; font-size: clamp(16px, 2vw, 20px); transition: background .3s, color .3s; overflow-wrap: anywhere; }
.contact-mail:hover { background: var(--text); color: var(--bg); }
.socials { display: flex; justify-content: center; flex-wrap: wrap; gap: 28px; margin-top: 40px; }
.socials a { font: 12px var(--mono); letter-spacing: .12em; text-transform: uppercase; color: var(--muted); border-bottom: 1px solid transparent; transition: color .2s, border-color .2s; }
.socials a:hover { color: var(--text); border-color: var(--rec); }

.credits { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; padding: 28px var(--pad); border-top: 1px solid var(--line); color: var(--muted); font-size: 14px; }
.credits p { margin: 0; }
.credits strong { color: var(--text); font-weight: 500; }

/* ============ LIGHTBOX ============ */
.lightbox { position: fixed; inset: 0; z-index: 8000; display: grid; place-items: center; padding: 64px 16px; background: rgba(8,8,7,.94); backdrop-filter: blur(6px); opacity: 0; visibility: hidden; transition: opacity .35s, visibility .35s; }
.lightbox.open { opacity: 1; visibility: visible; }
.lb-stage { width: min(1200px, 100%); max-height: 100%; display: grid; place-items: center; }
.lb-stage iframe { width: 100%; aspect-ratio: 16 / 9; border: 0; border-radius: 6px; background: #000; }
.lb-stage img { max-width: 100%; max-height: calc(100svh - 128px); width: auto; border-radius: 4px; }
.lb-close, .lb-prev, .lb-next { position: absolute; width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line); font-size: 22px; display: grid; place-items: center; transition: background .2s; }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(241,236,227,.1); }
.lb-close { top: 12px; right: 12px; font-size: 28px; }
.lb-prev { left: 12px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 12px; top: 50%; transform: translateY(-50%); }
.lightbox:not(.gallery-mode) .lb-prev, .lightbox:not(.gallery-mode) .lb-next { display: none; }
@media (max-width: 600px) { .lb-prev, .lb-next { top: auto; bottom: 12px; transform: none; } }

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001s !important; animation-iteration-count: 1 !important; transition-duration: .001s !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* An odd number of fun facts: the last one fills the row */
.facts-list .fact:last-child:nth-child(odd) { grid-column: 1 / -1; }

[hidden] { display: none !important; }

/* ============ ACTING ============ */
.acting-grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: clamp(40px, 6vw, 96px); align-items: center; }
.acting-grid.no-headshots { grid-template-columns: minmax(0, 1fr); max-width: 900px; }
@media (max-width: 860px) { .acting-grid { grid-template-columns: minmax(0, 1fr); } }

.headshots { display: flex; flex-direction: column; align-items: center; }
.stack { position: relative; width: min(420px, 78%); aspect-ratio: 4 / 5.4; outline: none; }
.print {
  position: absolute; inset: 0; margin: 0; padding: 12px 12px 44px;
  background: #f4efe6; border-radius: 3px;
  box-shadow: 0 24px 60px rgba(0,0,0,.55), 0 2px 6px rgba(0,0,0,.4);
  transition: transform .6s var(--ease), opacity .38s, box-shadow .4s;
}
.print img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 25%; filter: contrast(1.03); }
.print figcaption { position: absolute; left: 14px; right: 14px; bottom: 12px; font: 500 11px var(--mono); letter-spacing: .1em; text-transform: uppercase; color: #3b3630; }
.print[data-pos="0"] { transform: rotate(-1.5deg); }
.print[data-pos="1"] { transform: translate(-7%, 3%) rotate(-7deg); }
.print[data-pos="2"] { transform: translate(8%, 4%) rotate(6deg); }
.print[data-pos="3"] { transform: translate(0, 5%) rotate(1deg); opacity: 0; }
.stack:hover .print[data-pos="1"], .stack:focus-visible .print[data-pos="1"] { transform: translate(-16%, 2%) rotate(-11deg); }
.stack:hover .print[data-pos="2"], .stack:focus-visible .print[data-pos="2"] { transform: translate(17%, 3%) rotate(10deg); }
.stack:focus-visible .print[data-pos="0"] { box-shadow: 0 0 0 3px var(--rec), 0 24px 60px rgba(0,0,0,.55); }
.print.fly { transform: translate(-130%, -6%) rotate(-24deg) !important; opacity: 0; }
.stack-caption { display: flex; gap: 16px; margin: 40px 0 0; }
.stack-caption span:first-child { color: var(--rec); }

.acting-info { display: flex; flex-direction: column; gap: 32px; }
.monologue { display: block; width: 100%; text-align: left; }
.monologue:hover .thumb img, .monologue:focus-visible .thumb img { transform: scale(1.05); filter: none; }
.monologue p { margin: 6px 0 0; color: var(--muted); font-size: 15px; }
.monologue .film-info h3 { font-size: clamp(26px, 3vw, 40px); }
.casting { margin: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 24px; border-top: 1px solid var(--line); }
.casting div { padding: 14px 0; border-bottom: 1px solid var(--line); }
.casting dt { font: 10px var(--mono); letter-spacing: .14em; text-transform: uppercase; color: var(--amber); }
.casting dd { margin: 2px 0 0; font-size: 15px; }
.btn-outline { align-self: flex-start; padding: 12px 22px; border: 1px solid var(--text); border-radius: 99px; font-size: 15px; transition: background .3s, color .3s; }
.btn-outline:hover { background: var(--text); color: var(--bg); }

/* ============ MUSIC: cassette tapes ============ */
.tapes { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(340px, 100%), 1fr)); gap: 40px 28px; }
.tape { display: block; width: 100%; transform: rotate(var(--tilt)); transition: transform .5s var(--ease); }
.tape:hover, .tape:focus-visible, .tape.playing { transform: rotate(0) translateY(-6px) scale(1.02); }
.tape-body {
  position: relative; aspect-ratio: 1.6; padding: 7% 6% 0; border-radius: 12px; text-align: left;
  background: linear-gradient(160deg, #2a2724, #1a1816); border: 1px solid var(--line);
  box-shadow: 0 20px 40px rgba(0,0,0,.45);
}
.tape-body::before, .tape-body::after { content: ""; position: absolute; top: 10px; width: 7px; height: 7px; border-radius: 50%; background: #0e0d0c; box-shadow: inset 0 0 0 1px var(--line); }
.tape-body::before { left: 10px; } .tape-body::after { right: 10px; }
.tape-label { position: relative; height: 72%; padding: 10px 14px; border-radius: 6px; background: #f1ece3; color: #1b1917; overflow: hidden; }
.tape-label::after { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 8px; background: repeating-linear-gradient(90deg, var(--rec) 0 33%, var(--amber) 33% 66%, #1b1917 66% 100%); }
.tape-side { display: block; margin-top: 6px; font-size: 9px; color: #6f685e; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tape-label strong { display: block; margin-top: 2px; font: 400 clamp(20px, 2vw, 26px)/1.05 var(--serif); font-style: italic; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tape-window {
  position: absolute; left: 26%; right: 26%; top: 58%; height: 20%;
  display: flex; justify-content: space-between; align-items: center; padding: 0 8%;
  background: rgba(14,13,12,.92); border-radius: 99px; border: 1px solid var(--line);
}
.reel { width: 30%; aspect-ratio: 1; border-radius: 50%; background: repeating-conic-gradient(#f1ece3 0 20deg, #3a3632 20deg 60deg); border: 3px solid #8a8378; animation: spin 2s linear infinite; animation-play-state: paused; }
.tape:hover .reel, .tape.playing .reel { animation-play-state: running; }
.tape-progress { position: absolute; left: 8%; right: 8%; bottom: 8%; height: 3px; border-radius: 3px; background: var(--line); overflow: hidden; }
.tape-progress i { display: block; width: 0; height: 100%; background: var(--rec); transition: width .25s linear; }

/* ============ LATEST VLOG ============ */
.vlog { grid-column: span 12; }
.vlog-head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 20px; }
.vlog-head h3 { margin: 0; display: flex; align-items: center; gap: 8px; }
.vlog-head a:hover { color: var(--text); }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--rec); animation: blink 1.4s steps(1) infinite; }
.vlog-body { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(20px, 3vw, 40px); align-items: start; }
@media (max-width: 760px) { .vlog-body { grid-template-columns: minmax(0, 1fr); } }
.vlog-main { display: block; width: 100%; }
.vlog-main:hover .thumb img { transform: scale(1.05); filter: none; }
.new-badge { position: absolute; top: 14px; left: 14px; padding: 4px 10px; border-radius: 4px; background: var(--rec); font: 600 11px var(--mono); letter-spacing: .14em; }
.vlog-text h4 { margin: 6px 0 0; font: 400 clamp(26px, 3vw, 40px)/1.08 var(--serif); }
.vlog-more { margin: 28px 0 10px; }
.vlog-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.vlog-list button { display: flex; gap: 14px; align-items: center; width: 100%; text-align: left; font-size: 14px; line-height: 1.35; }
.vlog-list img { width: 112px; aspect-ratio: 16 / 9; object-fit: cover; border-radius: 4px; flex-shrink: 0; filter: brightness(.85); transition: filter .3s; }
.vlog-list button:hover img { filter: none; }
.vlog-list small { display: block; margin-top: 3px; color: var(--muted); font-size: 12px; }
.vlog-fallback { grid-column: 1 / -1; display: flex; align-items: center; gap: 16px; padding: 28px; width: 100%; border-radius: 12px; background: var(--bg-2); border: 1px dashed var(--line); font: 400 28px var(--serif); }
.vlog-fallback .play { font: 500 11px var(--mono); letter-spacing: .1em; padding: 6px 12px; border-radius: 99px; background: var(--rec); }

/* ============ ON SET: credits ============ */
.section-sub { max-width: 52ch; margin: -12px 0 32px; color: var(--muted); font-size: 17px; }
.credits-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.credit { border-bottom: 1px solid var(--line); }
.credit-head {
  display: grid; grid-template-columns: 48px minmax(0, 1fr) auto 28px; align-items: baseline; gap: 20px;
  width: 100%; padding: 22px 0; text-align: left; transition: padding .4s var(--ease);
}
.credit-head:hover { padding-left: 12px; }
.credit-no { color: var(--rec); }
.credit-title { font-family: var(--serif); font-size: clamp(24px, 3.2vw, 44px); line-height: 1.1; transition: color .3s; }
.credit-head:hover .credit-title, .credit.open .credit-title { color: var(--amber); }
.credit-role { text-align: right; }
.credit-plus { position: relative; width: 18px; height: 18px; align-self: center; }
.credit-plus::before, .credit-plus::after { content: ""; position: absolute; left: 0; right: 0; top: 50%; height: 1.5px; background: var(--text); transition: transform .4s var(--ease); }
.credit-plus::after { transform: rotate(90deg); }
.credit.open .credit-plus::after { transform: rotate(0); }
.credit-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .5s var(--ease); }
.credit.open .credit-body { grid-template-rows: 1fr; }
.credit-body > div { overflow: hidden; padding-left: 68px; max-width: 820px; }
.credit-body p { margin: 0 0 12px; font-size: 16px; color: var(--text); }
.credit-body p:last-child { margin-bottom: 26px; }
.credit-note { color: var(--muted) !important; font-size: 14px !important; }
.credit-note::before { content: "↳ "; color: var(--amber); }
@media (max-width: 700px) {
  .credit-head { grid-template-columns: 32px minmax(0, 1fr) 20px; gap: 6px 12px; }
  .credit-role { grid-column: 2; grid-row: 2; text-align: left; }
  .credit-plus { grid-column: 3; grid-row: 1; }
  .credit-body > div { padding-left: 44px; }
}
@media (max-width: 1100px) and (min-width: 761px) { .hud-nav { font-size: 13px; gap: 14px; } .hud-nav a span { display: none; } }
.acting-bio { margin: 0; padding-left: 20px; border-left: 2px solid var(--rec); font: italic 400 clamp(22px, 2.4vw, 32px)/1.25 var(--serif); }

/* ============ ABOUT: labeled facts ============ */
.tag { display: inline-flex; flex-direction: column; gap: 2px; border-radius: 14px; padding: 10px 16px; max-width: 100%; line-height: 1.35; }
.tag small { font: 500 10px var(--mono); letter-spacing: .14em; text-transform: uppercase; color: var(--amber); }

/* ============ PHOTOS: highlights ============ */
.highlights { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-rows: clamp(160px, 18vw, 280px); gap: 14px; }
.highlights > button { border-radius: 4px; overflow: hidden; background: var(--card); }
.highlights > button:first-child { grid-column: span 2; grid-row: span 2; }
.highlights img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease), filter .6s; filter: grayscale(.25) brightness(.9); }
.highlights > button:hover img, .highlights > button:focus-visible img { transform: scale(1.04); filter: none; }
.see-all { grid-column: span var(--span, 2); position: relative; display: grid; place-items: center; }
.see-all::before { content: ""; position: absolute; inset: 0; background: center / cover no-repeat; background-image: var(--img); filter: blur(6px) brightness(.4); transform: scale(1.1); transition: filter .5s; }
.see-all:hover::before { filter: blur(3px) brightness(.55); }
.see-all span { position: relative; display: flex; flex-direction: column; align-items: center; gap: 4px; font: 500 12px var(--mono); letter-spacing: .14em; text-transform: uppercase; }
.see-all strong { font: 400 clamp(40px, 5vw, 64px)/1 var(--serif); letter-spacing: 0; text-transform: none; }
.gallery { margin-top: 14px; }
@media (max-width: 700px) {
  .highlights { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 150px; gap: 10px; }
  .see-all { grid-column: span var(--span-m, 2); }
}

/* ============ PHONE MENU ============ */
.menu-btn { display: none; padding: 7px 14px; border-radius: 99px; background: var(--text); color: var(--bg); font-size: 14px; font-weight: 500; position: relative; z-index: 2; }
@media (max-width: 760px) { .menu-btn { display: block; } }
.scene-menu {
  position: fixed; inset: 0; z-index: 99; display: flex; flex-direction: column; justify-content: center;
  padding: 80px var(--pad) 40px; background: rgba(14,13,12,.97); backdrop-filter: blur(10px);
  opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s;
}
.scene-menu.open { opacity: 1; visibility: visible; }
.scene-menu > .mono { color: var(--rec); margin: 0 0 16px; }
.scene-menu ol { list-style: none; margin: 0; padding: 0; }
.scene-menu li { border-bottom: 1px solid var(--line); transform: translateY(12px); opacity: 0; transition: transform .4s var(--ease), opacity .4s; }
.scene-menu.open li { transform: none; opacity: 1; }
.scene-menu.open li:nth-child(2) { transition-delay: .03s; } .scene-menu.open li:nth-child(3) { transition-delay: .06s; }
.scene-menu.open li:nth-child(4) { transition-delay: .09s; } .scene-menu.open li:nth-child(5) { transition-delay: .12s; }
.scene-menu.open li:nth-child(6) { transition-delay: .15s; } .scene-menu.open li:nth-child(7) { transition-delay: .18s; }
.scene-menu a { display: flex; align-items: baseline; gap: 16px; padding: 14px 0; font: 400 clamp(34px, 9vw, 48px)/1.1 var(--serif); }
.scene-menu a span { color: var(--rec); font-size: 12px; }

/* ============ VIDEO PLAYER backup link ============ */
.lb-video { width: 100%; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.lb-yt { color: var(--muted); border-bottom: 1px solid var(--line); padding-bottom: 2px; }
.lb-yt:hover { color: var(--text); }

/* ============ ACTING: special skills ============ */
.skills h3 { margin: 0 0 6px; color: var(--muted); font-weight: 500; }
.skill-row { display: grid; grid-template-columns: 150px minmax(0, 1fr); gap: 16px; align-items: baseline; padding: 12px 0; border-bottom: 1px solid var(--line); }
.skill-row > .mono { font-size: 10px; letter-spacing: .14em; color: var(--amber); }
.skill-row ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.skill-row li { padding: 4px 11px; border: 1px solid var(--line); border-radius: 99px; font-size: 13px; background: var(--bg-2); }
@media (max-width: 600px) { .skill-row { grid-template-columns: minmax(0, 1fr); gap: 8px; } }

/* Keep text readable over the bright hero photo without darkening it */
.hud:not(.scrolled) .hud-logo, .hud:not(.scrolled) .hud-nav a:not(.hud-cta) { text-shadow: 0 1px 10px rgba(0,0,0,.7), 0 0 2px rgba(0,0,0,.5); }
.hud:not(.scrolled) .hud-nav a:not(.hud-cta) { color: var(--text); }
.hud:not(.scrolled) .hud-cta { background: rgba(14,13,12,.35); backdrop-filter: blur(6px); }
.hero-content, .hero-meta { text-shadow: 0 2px 18px rgba(0,0,0,.55); }
