/* ═══════════════════════════════════════════════════
   Burnt Toast Theory — Weave-inspired fluid version
   ═══════════════════════════════════════════════════ */

:root {
  --pink: #ff6bb6;
  --cream: #fbfaf8;
  --ink: #101010;
  --night: #0a0a0c;
  --muted: rgba(16, 16, 16, 0.6);
  --ghost: rgba(255, 255, 255, 0.12);
  --nav-bg: rgba(8, 8, 10, 0.88);
  --radius: 20px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  /* Section flow (Motion-style timing) */
  --enter-duration: 0.7s;
  --enter-stagger: 0.08s;
  --typewriter-step: 38ms;
  /* Side doodles — pizza sticker scale site-wide */
  --doodle-width: min(306px, 36vw);
  --doodle-width-mobile: min(150px, 34.5vw);
}

@font-face {
  font-family: "GI";
  src: url("assets/fonts/GlacialIndifference-Regular.woff2") format("woff2"),
       url("assets/fonts/GlacialIndifference-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "GI";
  src: url("assets/fonts/GlacialIndifference-Italic.woff2") format("woff2"),
       url("assets/fonts/GlacialIndifference-Italic.woff") format("woff");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "GI";
  src: url("assets/fonts/GlacialIndifference-Bold.woff2") format("woff2"),
       url("assets/fonts/GlacialIndifference-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scrollbar-color: var(--pink) transparent;
  scrollbar-width: thin;
}
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: var(--pink);
  border-radius: 999px;
  border: 2px solid transparent;
  background-clip: padding-box;
}
::-webkit-scrollbar-thumb:hover {
  background: color-mix(in srgb, var(--pink) 80%, white);
  background-clip: padding-box;
  border: 2px solid transparent;
}

/* ─── Custom fork cursor (desktop, fine pointer only) ─── */
@media (hover: hover) and (pointer: fine) {
  html,
  body {
    cursor: url("assets/cursor-fork-32.png") 0 6, auto;
  }
  a,
  button,
  [role="button"],
  .pill,
  .nav__link,
  .taste-chip,
  summary {
    cursor: url("assets/cursor-fork-32.png") 0 6, pointer;
  }
  input,
  textarea,
  [contenteditable="true"] {
    cursor: text;
  }
}

body {
  margin: 0;
  font-family: GI, system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--night);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

body.preloader-active {
  overflow: hidden;
}

/* Slow, dramatic post-intro reveal — wide opacity ramp + soft lift + tiny zoom-out */
#main.site-content--hold {
  opacity: 0;
  transform: translateY(28px) scale(1.02);
  filter: blur(6px);
  transition: opacity 2.4s cubic-bezier(0.22, 1, 0.36, 1),
              transform 2.4s cubic-bezier(0.22, 1, 0.36, 1),
              filter 2.0s cubic-bezier(0.22, 1, 0.36, 1);
}

#main.site-content--hold.site-content--visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* Hero contents cascade in just behind the page fade */
.body--intro-done .scene--hero .scene__content--center > * {
  animation: heroRiseIn 1.3s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.body--intro-done .scene--hero .scene__content--center > *:nth-child(1) { animation-delay: 0.6s; }
.body--intro-done .scene--hero .scene__content--center > *:nth-child(2) { animation-delay: 0.85s; }
.body--intro-done .scene--hero .scene__content--center > *:nth-child(3) { animation-delay: 1.1s; }
.body--intro-done .scene--hero .scene__content--center > *:nth-child(4) { animation-delay: 1.35s; }
.body--intro-done .scene--hero .scene__content--center > *:nth-child(5) { animation-delay: 1.6s; }

@keyframes heroRiseIn {
  from { opacity: 0; transform: translateY(22px); filter: blur(6px); }
  to   { opacity: 1; transform: translateY(0);    filter: blur(0); }
}

@media (prefers-reduced-motion: reduce) {
  #main.site-content--hold {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
  .body--intro-done .scene--hero .scene__content--center > * {
    animation: none !important;
  }
}

/* ─── DotLottie intro ─── */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 420;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 28px;
  padding: clamp(24px, 6vw, 48px);
  background: radial-gradient(
      120% 80% at 50% 35%,
      rgba(255, 107, 182, 0.12),
      transparent 55%
    ),
    var(--night);
  transition: opacity 0.48s var(--ease), visibility 0.48s var(--ease);
}

.preloader.preloader--hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__lottie {
  width: min(440px, 88vw);
  height: min(440px, 88vw);
  max-height: min(440px, 72dvh);
}

.preloader__skip {
  margin: 0;
  cursor: pointer;
  border-color: rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
}

.preloader__skip:hover {
  border-color: rgba(255, 107, 182, 0.65);
  color: var(--pink);
}

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

.skip {
  position: absolute;
  left: -999px;
  top: 12px;
  padding: 10px 14px;
  background: #fff;
  border-radius: 10px;
  z-index: 9999;
}
.skip:focus { left: 12px; }

/* ─── WRAP ─── */
.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}
.wrap--narrow { max-width: 780px; }
.wrap--center-narrow {
  max-width: 520px;
  margin: 0 auto;
}
.wrap--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
}

/* ─── NAV (solid bar so logo lockup stays pink on light + dark pages) ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px clamp(20px, 4vw, 48px);
  background: var(--nav-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: opacity 0.4s var(--ease);
}

.nav__lockup {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--nav-bg);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.nav__lockup img {
  display: block;
  height: clamp(22px, 3.2vw, 30px);
  width: auto;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: saturate(1.05) contrast(1.05);
}

.nav__links {
  display: flex;
  gap: 6px;
}
.nav__links a {
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.02em;
  transition: background 0.2s;
}
.nav__links a:hover {
  background: rgba(255, 255, 255, 0.1);
  text-decoration: none;
}

.nav__toggle {
  display: none;
}

.nav__backdrop {
  display: none;
}

@media (max-width: 780px) {
  .nav {
    flex-wrap: nowrap;
    align-items: center;
    gap: 10px;
  }

  .nav__toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 38px;
    height: 38px;
    padding: 0 8px;
    border-radius: 999px;
    background: var(--nav-bg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    cursor: inherit;
    margin-left: auto;
  }
  .nav__toggle-bar {
    height: 2px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 2px;
    transition: transform 0.25s var(--ease), opacity 0.2s linear;
  }
  .nav.nav--open .nav__toggle-bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .nav.nav--open .nav__toggle-bar:nth-child(2) {
    opacity: 0;
  }
  .nav.nav--open .nav__toggle-bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .nav__links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(80vw, 280px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 88px 22px 24px;
    background: rgba(8, 8, 8, 0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateX(100%);
    transition: transform 0.32s var(--ease);
    z-index: 110;
    overflow-y: auto;
    mask: none;
    -webkit-mask: none;
  }
  .nav__links a {
    padding: 12px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 1rem;
    border-radius: 0;
  }
  .nav.nav--open .nav__links {
    transform: translateX(0);
  }

  .nav__backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.42);
    opacity: 0;
    transition: opacity 0.25s linear;
    z-index: 105;
    pointer-events: none;
  }
  .nav__backdrop[data-open] {
    opacity: 1;
    pointer-events: auto;
  }
  body.body--nav-open {
    overflow: hidden;
  }
}

/* ─── SCENES ─── */
.scene {
  position: relative;
  padding: clamp(80px, 12vh, 160px) 0;
  overflow-y: hidden;
  overflow-x: visible;
}
.scene--full {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.scene--dark {
  background: var(--night);
  color: rgba(255, 255, 255, 0.92);
}
.scene--cream {
  background: var(--cream);
  color: var(--ink);
}
.scene--pink {
  background: var(--pink);
  color: rgba(0, 0, 0, 0.88);
}

/* hero bg — still + looping video (video hidden when prefers-reduced-motion) */
.scene__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.scene__bgmedia {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0.25;
  transform: scale(1.08);
  filter: saturate(0.6);
  transition: transform 8s linear, opacity 2s;
  will-change: transform, opacity;
  pointer-events: none;
}
.scene__bg-fallback,
.scene__bgvideo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.scene__bg-fallback {
  z-index: 0;
  display: none;
}
.scene__bgvideo {
  z-index: 1;
}
@media (prefers-reduced-motion: reduce) {
  .scene__bg-fallback {
    display: block;
  }
  .scene__bgvideo {
    display: none;
  }
}
.scene__fade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, var(--night) 0%, transparent 30%),
    linear-gradient(0deg, var(--night) 0%, transparent 30%),
    radial-gradient(ellipse at center, transparent 40%, var(--night) 100%);
}
.scene__content {
  position: relative;
  z-index: 3;
}

.scene > .wrap {
  position: relative;
  z-index: 3;
}

main {
  position: relative;
  z-index: 2;
}

/* ─── Side doodles (transparent PNGs, gutter collage) ─── */
.scene-side-doodles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

/* Trailer: keep food doodle behind copy + Vimeo (not overlapping the player) */
#trailer-embed .scene-side-doodles {
  z-index: 0;
}

#trailer-embed .trailer-reveal {
  position: relative;
  z-index: 1;
  transition: opacity 1.1s var(--ease), transform 1.1s var(--ease);
}
@media (prefers-reduced-motion: no-preference) {
  #trailer-embed:not(.scene--entered) .trailer-reveal {
    opacity: 0;
    transform: translateY(28px);
  }
  #trailer-embed.scene--entered .trailer-reveal {
    opacity: 1;
    transform: translateY(0);
  }
}

#trailer-embed .trailer-reveal .wrap {
  position: relative;
  z-index: 2;
}

#trailer-embed .video-frame {
  position: relative;
  z-index: 2;
}

.scene-doodle {
  position: absolute;
  height: auto;
  image-rendering: auto;
}

.scene-doodle--dark {
  opacity: 0.48;
  filter: invert(1);
  mix-blend-mode: screen;
}

.scene-doodle--cream {
  opacity: 0.4;
  filter: none;
}

.scene-doodle--pink {
  opacity: 0.42;
  filter: none;
}

/* Vecteezy SVG food stickers — fixed placement per section (width unified) */
.scene-doodle--landing-hotdog {
  bottom: clamp(12px, 6vh, 56px);
  right: clamp(12px, 4vw, 40px);
  width: var(--doodle-width);
  transform: rotate(-11deg);
}

.scene-doodle--trailer-donut {
  top: clamp(16px, 7vh, 48px);
  left: clamp(12px, 4vw, 36px);
  width: var(--doodle-width);
  transform: rotate(10deg);
}

.scene-doodle--director-pizza {
  top: clamp(16px, 6vh, 52px);
  right: clamp(12px, 4vw, 32px);
  width: var(--doodle-width);
  transform: rotate(-9deg);
}

.scene-doodle--director-salad {
  bottom: clamp(14px, 5vh, 48px);
  left: clamp(12px, 4vw, 32px);
  width: var(--doodle-width);
  transform: rotate(12deg);
}

.scene-doodle--menu-burger {
  left: clamp(8px, 3.5vw, 32px);
  top: clamp(14%, 12vh, 32%);
  width: var(--doodle-width);
  transform: rotate(-10deg);
}

.scene-doodle--menu-fries {
  right: clamp(8px, 3.5vw, 32px);
  bottom: clamp(12%, 14vh, 34%);
  top: auto;
  width: var(--doodle-width);
  transform: rotate(11deg);
}

/* CV: slot reels — small stickers flanking copy (flex row, no viewport overlap) */
.director-cv__layout {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  gap: clamp(12px, 3vw, 32px);
  max-width: min(960px, 100%);
  margin: 0 auto;
  padding: 0 clamp(8px, 2.5vw, 24px);
}

.director-cv__wrap {
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.director-cv__reel {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  gap: clamp(12px, 2.8vh, 30px);
  flex: 0 0 min(64px, 13vw);
  align-self: stretch;
}

.director-cv__slot-img--dark {
  display: block;
  width: min(60px, 12.5vw);
  height: auto;
  flex-shrink: 0;
  opacity: 0.34;
  image-rendering: auto;
  filter: invert(1);
  mix-blend-mode: screen;
}

.director-cv__reel--l .director-cv__slot-img:nth-child(1) {
  transform: rotate(-11deg);
}
.director-cv__reel--l .director-cv__slot-img:nth-child(2) {
  transform: rotate(5deg);
}
.director-cv__reel--l .director-cv__slot-img:nth-child(3) {
  transform: rotate(-7deg);
}
.director-cv__reel--r .director-cv__slot-img:nth-child(1) {
  transform: rotate(9deg);
}
.director-cv__reel--r .director-cv__slot-img:nth-child(2) {
  transform: rotate(-10deg);
}
.director-cv__reel--r .director-cv__slot-img:nth-child(3) {
  transform: rotate(6deg);
}

@media (max-width: 700px) {
  .scene-doodle--landing-hotdog {
    width: var(--doodle-width-mobile);
    bottom: clamp(8px, 4vh, 28px);
  }

  .scene-doodle--trailer-donut,
  .scene-doodle--director-pizza,
  .scene-doodle--director-salad,
  .scene-doodle--menu-burger,
  .scene-doodle--menu-fries {
    width: var(--doodle-width-mobile);
  }

  .director-cv__reel {
    flex-basis: min(50px, 11vw);
    gap: clamp(8px, 2vh, 22px);
  }

  .director-cv__slot-img--dark {
    width: min(46px, 10.5vw);
    opacity: 0.3;
  }

  .scene-doodle--menu-burger {
    top: clamp(8%, 10vh, 24%);
  }

  .scene-doodle--menu-fries {
    bottom: clamp(6%, 12vh, 26%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .scene-side-doodles {
    display: none;
  }
  .director-cv__reel {
    display: none;
  }
  .director-cv__layout {
    gap: 0;
  }
}

.scene__content--center {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.scene__kicker {
  font-size: clamp(0.75rem, 1.2vw, 0.9rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(22px);
  animation: fadeUpSlow 1.75s var(--ease) 0.35s forwards;
}

/* ─── HERO TITLE ─── */
.hero-title {
  margin: 0;
  font-size: clamp(3rem, 10vw, 8rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
  font-weight: 700;
  color: #fff;
  opacity: 0;
  transform: translateY(36px);
  animation: fadeUpSlow 2s var(--ease) 0.65s forwards;
}

.hero-sub {
  margin: clamp(16px, 3vh, 32px) 0 0;
  font-size: clamp(0.85rem, 1.4vw, 1.05rem);
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.08em;
  opacity: 0;
  transform: translateY(22px);
  animation: fadeUpSlow 1.75s var(--ease) 1.05s forwards;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: clamp(24px, 4vh, 48px);
  opacity: 0;
  transform: translateY(22px);
  animation: fadeUpSlow 1.75s var(--ease) 1.45s forwards;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUpSlow {
  to { opacity: 1; transform: translateY(0); }
}

/* ─── Song section stagger (matches hero pacing) ─── */
@media (prefers-reduced-motion: no-preference) {
  #song:not(.scene--entered) .song-enter {
    opacity: 0;
    transform: translateY(28px);
  }

  #song.scene--entered .song-enter {
    opacity: 1;
    transform: translateY(0);
    transition:
      opacity 1.65s var(--ease),
      transform 1.65s var(--ease);
  }

  #song.scene--entered .song-enter--1 {
    transition-delay: 0.1s;
  }

  #song.scene--entered .song-enter--2 {
    transition-delay: 0.38s;
  }

  /* Soft fade + rise for laurels image and credits menu card on scene enter */
  #festivals-feedback:not(.scene--entered) .laurels--small,
  #credits:not(.scene--entered) .menu-card {
    opacity: 0;
    transform: translateY(16px);
  }
  #festivals-feedback.scene--entered .laurels--small,
  #credits.scene--entered .menu-card {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  }
  #festivals-feedback.scene--entered .laurels--small {
    transition-delay: 0.15s;
  }
  #credits.scene--entered .menu-card {
    transition-delay: 0.1s;
  }
}

/* ─── Scroll progress bar ─── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: 0 50%;
  z-index: 200;
  pointer-events: none;
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  .scroll-progress { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  #song .song-enter {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ─── PILLS ─── */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s;
}
.pill:hover {
  transform: translateY(-2px);
  text-decoration: none;
}
.pill--glow {
  background: var(--pink);
  color: #000;
  border-color: rgba(255, 107, 182, 0.6);
  box-shadow: 0 0 40px rgba(255, 107, 182, 0.25);
}
.pill--glow:hover {
  box-shadow: 0 0 60px rgba(255, 107, 182, 0.45);
}
.pill--outline {
  border-color: var(--ghost);
  color: inherit;
}
.pill--outline:hover {
  background: rgba(255, 255, 255, 0.08);
}
.pill--sm {
  padding: 8px 16px;
  font-size: 0.82rem;
}

/* ─── SECTION LABELS ─── */
.section-label {
  margin: 0 0 clamp(24px, 4vh, 48px);
  font-size: clamp(0.7rem, 1vw, 0.8rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  padding-left: 28px;
}
.section-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 18px;
  height: 1.5px;
  background: var(--pink);
}
.section-label--light {
  color: rgba(255, 255, 255, 0.45);
}
.section-label--light::before {
  background: var(--pink);
}

/* ─── Trailer intro copy ─── */
.trailer-head {
  max-width: 640px;
  margin: 0 auto 28px;
  text-align: center;
}
.trailer-head__eyebrow {
  margin: 0 0 6px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.45);
}
.trailer-head__title {
  margin: 0;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: rgba(0, 0, 0, 0.88);
}
.trailer-head__sub {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(0, 0, 0, 0.55);
  text-align: center;
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
}

@media (prefers-reduced-motion: reduce) {
  .trailer-reveal {
    clip-path: none !important;
    opacity: 1 !important;
  }

  .trailer-reveal .wrap {
    transform: none !important;
  }
}

.hero-trail-canvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

/* ─── Poster + synopsis ─── */
.poster-story__copy {
  color: rgba(255, 255, 255, 0.92);
  max-width: 42rem;
}
.poster-story__h {
  margin: 0 0 16px;
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 600;
}
.poster-story__lead {
  margin: 0 0 14px;
  font-size: clamp(0.95rem, 1.35vw, 1.05rem);
  line-height: 1.6;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.78);
}
.poster-story__body {
  margin: 0;
  font-size: clamp(0.88rem, 1.2vw, 0.98rem);
  line-height: 1.65;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
}
.poster-story__copy .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.6em);
  will-change: opacity, transform;
}
@media (prefers-reduced-motion: reduce) {
  .poster-story__copy .word {
    opacity: 1 !important;
    transform: none !important;
  }
}
.poster-story__meta {
  margin: 18px 0 6px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.38);
}
.text-xl--on-dark {
  color: rgba(255, 255, 255, 0.92);
}
.text-lg--on-dark {
  color: rgba(255, 255, 255, 0.62);
}
.reveal-block--static > *,
.reveal-block--static.is-visible > * {
  opacity: 1;
  transform: none;
  transition: none;
}

/* ─── VIDEO FRAME ─── */
.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(0, 0, 0, 0.15);
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ─── Full film — Tasting notes game ─── */
.game-intro {
  margin: 8px 0 0;
  max-width: none;
  width: 100%;
  font-size: 0.98rem;
  color: rgba(16, 16, 16, 0.72);
}

.game-intro__badge {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px dashed rgba(16, 16, 16, 0.22);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pink);
}

.game-intro__copy {
  margin: 0;
  max-width: none;
  line-height: 1.55;
}

.taste-game {
  display: grid;
  gap: 24px;
}

.taste-game__panel {
  border-radius: var(--radius);
  padding: clamp(20px, 4vw, 32px);
  border: 1px solid rgba(255, 107, 182, 0.42);
  background:
    linear-gradient(165deg, rgba(255, 107, 182, 0.26) 0%, rgba(255, 255, 255, 0.82) 52%, rgba(255, 107, 182, 0.12) 100%);
  box-shadow: 0 20px 60px rgba(255, 107, 182, 0.12), 0 8px 28px rgba(0, 0, 0, 0.05);
}

.taste-game__round {
  display: inline-block;
  margin: 0 0 12px;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(42, 12, 28, 0.88);
  background: rgba(255, 107, 182, 0.55);
  border: 1px solid rgba(180, 40, 100, 0.22);
}

.taste-game__prompt {
  margin: 0 0 18px;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.45;
  color: rgba(16, 16, 16, 0.85);
}

.taste-game__choices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 10px;
}

@media (min-width: 560px) {
  .taste-game__choices {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.taste-game__choices--four {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 520px) {
  .taste-game__choices--four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.taste-chip {
  appearance: none;
  border: 1px solid rgba(16, 16, 16, 0.14);
  border-radius: 14px;
  padding: 14px 12px;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 650;
  text-align: center;
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.2s var(--ease);
}
.taste-chip:hover {
  border-color: rgba(255, 107, 182, 0.55);
  background: rgba(255, 107, 182, 0.08);
  transform: translateY(-1px);
}
.taste-chip:focus-visible {
  outline: 3px solid rgba(255, 107, 182, 0.45);
  outline-offset: 2px;
}
.taste-chip[disabled] {
  opacity: 0.45;
  cursor: default;
  transform: none;
}

.taste-game__feedback {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 6px;
  min-height: 0;
  color: rgba(16, 16, 16, 0.65);
}

.taste-game__feedback:not([hidden]) {
  min-height: 36px;
}

.taste-game__feedback-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.taste-game__feedback-icon svg {
  display: block;
  width: 36px;
  height: 36px;
}

.taste-game__feedback--ok {
  color: #15803d;
}

.taste-game__feedback--bad {
  color: #b91c1c;
}

.taste-game__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.taste-game__btn {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.taste-game__embed[hidden] {
  display: none !important;
}

/* ─── Festival laurels image ─── */
.laurels {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(16, 16, 16, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.5);
}
.laurels img {
  width: 100%;
  height: auto;
  display: block;
}
.laurels--small {
  max-width: min(340px, 80vw);
  margin: 0 auto;
}
.laurels--festival-poster {
  max-width: min(400px, 86vw);
}
.laurels--small img {
  width: 100%;
}

/* ─── Song story copy ─── */
.song-story {
  margin: 0 0 22px;
  max-width: none;
  width: 100%;
  font-size: clamp(1rem, 1.5vw, 1.08rem);
  line-height: 1.65;
  color: rgba(16, 16, 16, 0.78);
}

.song-story p {
  margin: 0;
  max-width: none;
}

/* ─── POSTER SECTION ─── */
.poster-float {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

@media (prefers-reduced-motion: no-preference) {
  #story.scene--entered .poster-float {
    box-shadow:
      0 46px 118px rgba(0, 0, 0, 0.62),
      0 0 0 1px rgba(255, 255, 255, 0.08);
    transition: box-shadow 1.05s var(--ease);
  }
}
.poster-float img {
  width: 100%;
  height: auto;
}

.poster-info {
  color: rgba(255, 255, 255, 0.88);
}
.poster-info__tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 18px;
}
.poster-info__title {
  margin: 0 0 16px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: -0.03em;
}
.poster-info__body {
  color: rgba(255, 255, 255, 0.6);
  max-width: 38ch;
  margin: 0 0 24px;
}
.poster-info__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 820px) {
  .wrap--split {
    grid-template-columns: 1fr;
  }
  .poster-float { max-width: 400px; margin: 0 auto; }
  .poster-info { text-align: center; }
  .poster-info__body { margin: 0 auto 24px; }
  .poster-info__ctas { justify-content: center; }
}

/* ─── SPOTIFY ─── */
.spotify-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(16, 16, 16, 0.08);
}

.spotify-card[data-song-reveal]:not(.spotify-card--visible) {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
}

.spotify-card[data-song-reveal].spotify-card--visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition:
    opacity var(--enter-duration) var(--ease-out),
    transform var(--enter-duration) var(--ease-out);
}
.spotify-card iframe {
  display: block;
  width: 100%;
}

/* ─── MUSIC VIDEO CARD ─── */
.video-card--song {
  margin-top: 18px;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}
.video-card__caption {
  margin: 0;
  padding: 10px 14px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.55);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.video-card__frame {
  position: relative;
  aspect-ratio: 16 / 9;
}
.video-card__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-card--song[data-song-reveal]:not(.video-card--visible) {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
}
.video-card--song[data-song-reveal].video-card--visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition:
    opacity var(--enter-duration) var(--ease-out),
    transform var(--enter-duration) var(--ease-out);
}

/* ─── FILMSTRIP (horizontal scroll gallery) ─── */
.filmstrip {
  outline: none;
}
.filmstrip__track {
  display: flex;
  gap: clamp(10px, 1.5vw, 18px);
  align-items: stretch;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 8px 4px 20px;
  min-height: min(48vh, 420px);
}
.filmstrip__track::-webkit-scrollbar { display: none; }

.filmstrip__slide {
  flex: 0 0 auto;
  width: clamp(240px, 30vw, 380px);
  min-height: 260px;
  scroll-snap-align: center;
  border-radius: calc(var(--radius) - 4px);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.5s var(--ease), opacity 0.5s;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  align-self: stretch;
}
.filmstrip__slide img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

@media (min-width: 900px) {
  .filmstrip__track {
    padding-left: 0;
    scroll-padding-left: 0;
  }
}

/* Festivals + feedback (merged section) */
.festivals-feedback__sub {
  margin: 6px 0 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(16, 16, 16, 0.55);
  max-width: min(72ch, 100%);
}
.scene--festivals-feedback {
  background-image:
    radial-gradient(ellipse 120% 80% at 50% 0%, rgba(255, 107, 182, 0.07), transparent 55%),
    repeating-linear-gradient(
      -9deg,
      transparent,
      transparent 44px,
      rgba(255, 255, 255, 0.45) 44px,
      rgba(255, 255, 255, 0.45) 45px
    );
}
.scene--festivals-feedback .laurels {
  margin: 4px auto 16px;
}
.napkins--merged {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
@media (max-width: 640px) {
  .napkins--merged {
    grid-template-columns: 1fr;
  }
}
.napkin--compact {
  padding: 16px 18px 14px;
}
.napkin--compact blockquote {
  font-size: 0.92rem;
  line-height: 1.45;
}

/* Stills only — larger strip */
.stills-only__lede {
  margin: 6px 0 20px;
  max-width: none;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.95rem;
}
.filmstrip--large .filmstrip__slide {
  width: clamp(280px, 38vw, 480px);
  min-height: 300px;
}
.filmstrip--large .filmstrip__slide img {
  min-height: 300px;
}
.filmstrip__slide:hover {
  transform: scale(1.03);
}

/* Stills — autoplay marquee (duplicate track in JS) */
.stills-marquee {
  outline: none;
}
.stills-marquee__viewport {
  overflow: hidden;
  width: 100%;
  padding: 8px 0 4px;
}
.stills-marquee:not(.stills-marquee--static) .stills-marquee__track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: clamp(10px, 1.5vw, 18px);
  align-items: stretch;
  width: max-content;
  min-height: min(52vh, 520px);
  padding-top: 4px;
  animation: stillsMarqueeDrift var(--marquee-duration, 55s) linear infinite;
  animation-delay: var(--marquee-start-delay, 0s);
  will-change: transform;
}
.stills-marquee:hover:not(.stills-marquee--static):not(.is-paused) .stills-marquee__track {
  animation-play-state: paused;
}
.stills-marquee.is-paused .stills-marquee__track {
  animation-play-state: paused !important;
}

.stills-marquee--manual .stills-marquee__track {
  animation: none !important;
  animation-delay: 0s !important;
  will-change: transform;
}

.stills-marquee__progress {
  height: 4px;
  margin: 10px clamp(20px, 4vw, 48px) 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.stills-marquee__progress-fill {
  display: block;
  height: 100%;
  width: 100%;
  transform-origin: left center;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--pink), rgba(255, 255, 255, 0.45));
  animation: stillsMarqueeProgress var(--marquee-duration, 55s) linear infinite;
  animation-delay: var(--marquee-start-delay, 0s);
}

.stills-marquee:hover:not(.stills-marquee--static):not(.is-paused) .stills-marquee__progress-fill {
  animation-play-state: paused;
}

.stills-marquee.is-paused .stills-marquee__progress-fill {
  animation-play-state: paused !important;
}

.stills-marquee--static .stills-marquee__progress {
  display: none;
}

@keyframes stillsMarqueeProgress {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

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

.stills-marquee--static .stills-marquee__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  min-height: min(52vh, 520px);
  padding: 8px 4px 12px;
}
.stills-marquee--static .stills-marquee__viewport::-webkit-scrollbar {
  display: none;
}
.stills-marquee--static .stills-marquee__track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: clamp(10px, 1.5vw, 18px);
  align-items: stretch;
  animation: none !important;
  animation-delay: 0s !important;
  min-height: min(52vh, 520px);
  padding: 8px 4px 20px;
}

.filmstrip__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding-top: 16px;
}
.filmstrip__btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s var(--ease);
  display: grid;
  place-items: center;
}
.filmstrip__btn:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: scale(1.08);
}
.filmstrip__counter {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.45);
  font-variant-numeric: tabular-nums;
}

/* ─── MENU CARD (credits) ─── */
.menu-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.menu-card--compact .menu-card__mega {
  font-size: clamp(2rem, 8vw, 3.8rem);
}
.menu-card--compact .menu-card__mega-sub {
  font-size: clamp(0.88rem, 1.6vw, 1rem);
}
.menu-card--compact .menu-card__head--mega {
  padding: clamp(16px, 3vw, 24px);
}
.menu-card--compact .menu-card__col {
  padding: 16px 18px;
}
.menu-card--compact .menu-card__body--wide .menu-card__col {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-bottom: clamp(18px, 4vw, 32px);
}
.menu-card--compact .menu-card__cat {
  font-size: 0.68rem;
  margin: 14px 0 6px;
}
.menu-card--compact .menu-line {
  font-size: 0.84rem;
  margin-bottom: 8px;
}
.menu-card__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: linear-gradient(180deg, rgba(255, 107, 182, 0.1), transparent 80%);
}
.menu-card__head--mega {
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  padding: clamp(22px, 4vw, 36px);
}
.menu-card__mega-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.menu-card__mega {
  display: block;
  font-size: clamp(2.8rem, 12vw, 6rem);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.88);
}

@media (prefers-reduced-motion: no-preference) {
  #credits:not(.scene--entered) .menu-card__mega {
    opacity: 0;
    transform: translateY(14px) scale(0.97);
    clip-path: inset(0 100% 0 0);
  }

  #credits.scene--entered .menu-card__mega {
    opacity: 1;
    transform: translateY(0) scale(1);
    clip-path: inset(0 0 0 0);
    transition:
      clip-path 1s var(--ease),
      opacity 0.95s var(--ease),
      transform 0.95s var(--ease);
  }
}

@media (prefers-reduced-motion: reduce) {
  .menu-card__mega {
    clip-path: none !important;
  }
}
.menu-card__mega-sub {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  line-height: 1.45;
  color: rgba(0, 0, 0, 0.55);
  max-width: 52ch;
}
.menu-card__head--mega .menu-card__tagline {
  align-self: flex-end;
}
.menu-card__eyebrow {
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: rgba(0, 0, 0, 0.6);
}
.menu-card__tagline {
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 0.66rem;
  color: rgba(0, 0, 0, 0.4);
}
.menu-card__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.menu-card__body--wide {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}
.menu-card__col {
  padding: 20px 24px;
}
.menu-card__col + .menu-card__col {
  border-left: 1px solid rgba(0, 0, 0, 0.07);
}

.menu-line {
  margin: 0 0 10px;
  font-size: 0.92rem;
  line-height: 1.45;
  color: rgba(0, 0, 0, 0.82);
}
.menu-line--wrap {
  display: block;
}
.menu-line--note {
  font-size: 0.88rem;
  color: rgba(0, 0, 0, 0.65);
}
/* ─── Unified menu rows ───
   Stacked layout: role on top spans full width, then name | dots | price below.
   Lines without a role tag collapse the empty top row automatically. */
.menu-line--leader,
.menu-line--cast-row {
  display: grid;
  grid-template-columns: minmax(0, max-content) minmax(20px, 1fr) auto;
  grid-template-areas:
    "role role role"
    "name dots price";
  column-gap: 10px;
  row-gap: 2px;
  align-items: baseline;
  width: 100%;
  margin: 0 0 14px;
  font-size: 0.95rem;
  line-height: 1.45;
  color: rgba(0, 0, 0, 0.82);
}

/* Make .menu-leader__left transparent for layout so its children become
   direct grid items of the surrounding menu line. */
.menu-leader__left {
  display: contents;
}

/* Role/tag — top row */
.menu-tag,
.menu-stack-role {
  grid-area: role;
  margin: 0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.5);
}
.menu-stack-role .menu-tag {
  display: inline;
  grid-area: auto;
  margin: 0;
}
.menu-stack-role .menu-tag--sub {
  margin-left: 4px;
  opacity: 0.85;
}
.menu-line--wrap .menu-tag {
  display: block;
  margin-bottom: 4px;
}

/* Name / value — bottom-left */
.menu-name,
.menu-val,
.menu-line-text,
.menu-val--stack {
  grid-area: name;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.82);
  min-width: 0;
  white-space: nowrap;
}

/* Dot leader — bottom-middle */
.menu-leader__dots {
  grid-area: dots;
  align-self: baseline;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.28);
  height: 0.55em;
  transform: translateY(-2px);
}

/* Price — bottom-right */
.menu-price {
  grid-area: price;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  font-size: 0.88rem;
  color: rgba(0, 0, 0, 0.42);
  white-space: nowrap;
  text-align: right;
}
.menu-line--bar-extras-names .menu-price--extra {
  color: rgba(0, 0, 0, 0.5);
}

/* Cast: character labels match department small-caps (Hair & makeup, etc.) */
.menu-tag--character {
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(0, 0, 0, 0.5);
}

.menu-line--cast-row .menu-name,
.menu-line--cast-row .menu-val {
  color: rgba(0, 0, 0, 0.7);
}
.menu-line--cast-row .menu-tag,
.menu-line--cast-row .menu-tag--character {
  color: rgba(0, 0, 0, 0.5);
}

/* Bar extras — block header above an inner stacked row */
.menu-line--leader-bar {
  display: block;
  margin: 0 0 14px;
}
.menu-line--leader-bar > .menu-tag {
  display: block;
  margin-bottom: 6px;
}
.menu-line--leader-sub {
  margin-bottom: 0;
}
.menu-line--bar-extras-names .menu-val {
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.7);
}

/* Music credit — single full-width line */
.menu-line--music-credit {
  margin: 0 0 12px;
  font-size: 0.95rem;
  line-height: 1.45;
  color: rgba(0, 0, 0, 0.82);
}
.menu-line--music-credit .menu-line-text {
  display: block;
  grid-area: auto;
}
.menu-song-title {
  font-size: 0.78em;
  letter-spacing: 0.04em;
  font-weight: 600;
  vertical-align: 0.06em;
}

.menu-val--nowrap-name {
  white-space: normal;
}

@media (max-width: 520px) {
  .menu-line--leader,
  .menu-line--cast-row {
    column-gap: 8px;
    margin-bottom: 12px;
  }
  .menu-leader__dots {
    display: none;
  }
  .menu-name,
  .menu-val,
  .menu-line-text,
  .menu-val--stack {
    white-space: normal;
  }
}
.menu-card__cat {
  margin: 18px 0 8px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.5);
}
.menu-card__cat:first-child { margin-top: 0; }
.menu-card__cat--hl {
  margin: 20px -8px 10px;
  padding: 8px 10px 6px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: rgba(0, 0, 0, 0.75);
  background: linear-gradient(90deg, rgba(255, 107, 182, 0.22), rgba(255, 107, 182, 0.04));
  border-left: 3px solid var(--pink);
  border-radius: 0 8px 8px 0;
}
.menu-card__col > .menu-card__cat--hl:first-child {
  margin-top: 0;
}
.menu-card__row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 8px;
  align-items: baseline;
  padding: 3px 0;
  font-size: 0.92rem;
}
.menu-card__row em {
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.4);
  margin-left: 4px;
}
.dots {
  border-bottom: 1px dotted rgba(0, 0, 0, 0.22);
  transform: translateY(-3px);
}
.menu-card__row > span:last-child {
  font-variant-numeric: tabular-nums;
  color: rgba(0, 0, 0, 0.4);
  font-weight: 600;
}

@media (max-width: 1100px) {
  .menu-card__body--wide {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  .menu-card__body { grid-template-columns: 1fr; }
  .menu-card__body--wide { grid-template-columns: 1fr; }
  .menu-card__col + .menu-card__col {
    border-left: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
  }
}

/* ─── NAPKINS (quotes) ─── */
.napkins {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.napkin {
  margin: 0;
  padding: 22px 24px 20px;
  border-radius: 16px;
  background:
    radial-gradient(600px 200px at 8% 0%, rgba(255, 107, 182, 0.1), transparent 60%),
    rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(16, 16, 16, 0.08);
  box-shadow: 0 16px 40px rgba(16, 16, 16, 0.06);
  position: relative;
  transition: transform 0.4s var(--ease);
}
.napkin:nth-child(odd) { transform: rotate(-0.6deg); }
.napkin:nth-child(even) { transform: rotate(0.5deg); }
.napkin:hover { transform: rotate(0deg) translateY(-2px); }

/* Notifications-stack style depth (festivals napkins only) */
#festivals-feedback .napkins--merged .napkin:nth-child(1) {
  z-index: 4;
  transform: rotate(-0.6deg) translateY(0) scale(1);
  box-shadow: 0 22px 52px rgba(16, 16, 16, 0.1);
}

#festivals-feedback .napkins--merged .napkin:nth-child(2) {
  z-index: 3;
  transform: rotate(0.5deg) translateY(12px) scale(0.99);
}

#festivals-feedback .napkins--merged .napkin:nth-child(3) {
  z-index: 2;
  transform: rotate(-0.6deg) translateY(18px) scale(0.985);
}

#festivals-feedback .napkins--merged .napkin:nth-child(4) {
  z-index: 1;
  transform: rotate(0.5deg) translateY(24px) scale(0.98);
}

#festivals-feedback .napkins--merged .napkin:hover {
  transform: rotate(0deg) translateY(-4px) scale(1.01);
  z-index: 12;
  box-shadow: 0 28px 64px rgba(16, 16, 16, 0.12);
}

@media (max-width: 700px) {
  #festivals-feedback .napkins--merged .napkin:nth-child(2) {
    transform: rotate(0.5deg) translateY(5px) scale(0.993);
  }

  #festivals-feedback .napkins--merged .napkin:nth-child(3) {
    transform: rotate(-0.6deg) translateY(10px) scale(0.987);
  }

  #festivals-feedback .napkins--merged .napkin:nth-child(4) {
    transform: rotate(0.5deg) translateY(14px) scale(0.982);
  }
}

/* Napkin notes — initial hidden state for Motion-driven stagger reveal (JS).
   Opacity-only so the rotated stack offsets (defined above) stay intact. */
@media (prefers-reduced-motion: no-preference) {
  [data-feedback-stack] [data-feedback-card] {
    opacity: 0;
    will-change: opacity;
  }
}
.napkin::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 14px;
  width: 30px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 107, 182, 0.28);
  transform: rotate(5deg);
}
.napkin blockquote {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
}

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

/* ─── CHEF'S NOTE (director) ─── */
.chefs-note {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: clamp(28px, 5vw, 56px);
}
.chefs-note__eyebrow {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
  opacity: 0.8;
}
.chefs-note__title {
  margin: 8px 0 0;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  letter-spacing: -0.01em;
}
.chefs-note__rule {
  margin: 16px 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), transparent);
}
.chefs-note p {
  color: rgba(255, 255, 255, 0.65);
  max-width: 60ch;
  margin: 0 0 16px;
}

.chefs-note__word {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.35em);
  transition:
    opacity 0.45s var(--ease-out),
    transform 0.45s var(--ease-out);
  transition-delay: calc(var(--tw-i, 0) * var(--typewriter-step));
}

.chefs-note--visible .chefs-note__word {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .chefs-note__word {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

.chefs-note__sig {
  margin-top: 24px;
  font-weight: 700;
  color: var(--pink);
  opacity: 0.8;
}

/* Director CV — tighter scene, soft wash, doodles, socials */
#director-cv.scene--director-cv {
  padding: clamp(36px, 5.5vh, 72px) 0 clamp(40px, 6vh, 80px);
  background:
    radial-gradient(ellipse 72% 48% at 14% 16%, rgba(255, 107, 182, 0.1), transparent 58%),
    radial-gradient(ellipse 65% 42% at 90% 86%, rgba(255, 255, 255, 0.05), transparent 52%),
    var(--night);
}

.chefs-note--cv p {
  max-width: none;
}

.chefs-note--cv .chefs-note__p-accent {
  margin: 0 0 16px;
  padding: 14px 16px 14px 18px;
  border-left: 3px solid rgba(255, 107, 182, 0.5);
  background: rgba(255, 107, 182, 0.055);
  border-radius: 0 12px 12px 0;
  color: rgba(255, 255, 255, 0.78);
}

.cv-hl {
  color: var(--pink);
  font-weight: 600;
}

.director-cv__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}

/* ─── TEXT SIZES ─── */
.text-xl {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.35;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  font-weight: 600;
}
.text-lg {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--muted);
  max-width: 58ch;
  margin: 0;
}

/* ─── SCROLL REVEAL ─── */
.reveal-block > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal-block.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}
.reveal-block > *:nth-child(2) { transition-delay: 0.12s; }
.reveal-block > *:nth-child(3) { transition-delay: 0.24s; }
.reveal-block > *:nth-child(4) { transition-delay: 0.36s; }

/* ─── TILT MICRO-INTERACTION ─── */
[data-tilt] {
  transition: transform 0.5s var(--ease);
}

/* ─── FOOTER ─── */
.foot {
  position: relative;
  z-index: 2;
  padding: 32px 0 48px;
  background: var(--night);
  color: rgba(255, 255, 255, 0.8);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.foot__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(28px, 5vw, 56px);
  align-items: stretch;
  justify-content: space-between;
}

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

.foot__main {
  min-width: 0;
}

.foot__title {
  font-weight: 700;
  letter-spacing: -0.01em;
}

.foot__aside .foot__tagline {
  margin: 12px 0 0;
  max-width: 42ch;
  font-size: 0.88rem;
  line-height: 1.45;
  font-style: italic;
  color: var(--pink);
  text-align: right;
}

.foot__meta-hint {
  margin: 8px 0 0;
  font-size: 0.72rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.38);
  max-width: 36ch;
  text-align: right;
}

.foot__appreciate {
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}

.foot__appreciate:hover {
  text-decoration: none;
}

.foot__links {
  margin-top: 16px;
}

.foot__copyright {
  margin: 8px 0 0;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.55);
}
.foot__link {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.88rem;
}
.foot__link--ig {
  margin-top: 10px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--pink);
}
.foot__link--ig:hover {
  color: #ff8ec8;
}
.foot__link--director {
  margin-top: 10px;
}
.foot__link--vecteezy {
  margin-top: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.35);
}
.foot__aside {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
  padding-top: 2px;
  min-height: 100%;
}

@media (max-width: 820px) {
  .foot__aside {
    align-items: flex-start;
    padding-top: 24px;
  }

  .foot__aside .foot__tagline {
    text-align: left;
    max-width: 52ch;
  }

  .foot__meta-hint {
    text-align: left;
    max-width: 52ch;
  }
}

/* ─── LIGHTBOX ─── */
.lightbox {
  position: fixed;
  z-index: 400;
  border: none;
  padding: 0;
  background: transparent;
  max-width: 100vw;
  max-height: 100vh;
}
.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
}
.lightbox__wrap {
  margin: 0;
  padding: 24px;
  min-height: 100vh;
  display: grid;
  place-items: center;
}
.lightbox__img {
  max-width: min(1000px, 92vw);
  max-height: 82vh;
  border-radius: 16px;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.5);
}
.lightbox__x {
  position: fixed;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.lightbox__arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.lightbox__arrow--l { left: 16px; }
.lightbox__arrow--r { right: 16px; }

/* ─── MOTION ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Mobile: keep header logo; hide hamburger, drawer, backdrop. Nav fade (script.js) uses
   inline opacity on scroll — !important keeps the bar visible on small screens. */
@media (max-width: 780px) {
  [data-nav] {
    opacity: 1 !important;
    pointer-events: auto !important;
  }
  .nav__toggle {
    display: none !important;
  }
  .nav__links {
    display: none !important;
  }
  .nav__backdrop {
    display: none !important;
  }
}
