:root {
  --ink: #f3f0e7;
  --black: #0b0b0a;
  --yellow: #ffda0d;
  --pad: clamp(20px, 4vw, 64px);
  --texture: url("assets/blue-paper-texture.webp");
  --futura-book: "Futura PT", "Jost", Futura, "Avenir Next", Avenir, "Century Gothic", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background-color: #62c9f7;
  background-image: linear-gradient(rgba(24, 158, 235, .15), rgba(24, 158, 235, .15)), var(--texture);
  background-blend-mode: color, normal;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  font-family: Manrope, Arial, sans-serif;
  font-weight: 300;
  text-shadow: 0 2px 7px rgba(6, 35, 49, .34);
}

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

.site-copyright {
  position: fixed;
  z-index: 40;
  bottom: clamp(9px, 1.5vh, 15px);
  left: 50%;
  margin: 0;
  color: rgba(255, 255, 255, .72);
  pointer-events: none;
  transform: translateX(-50%);
}

.site-copyright small {
  display: block;
  white-space: nowrap;
  font-family: var(--futura-book);
  font-size: clamp(9px, .68vw, 11px);
  font-weight: 700;
  letter-spacing: .14em;
  line-height: 1;
  text-transform: uppercase;
}

/* A single Super 16 frame grades and textures the complete composited page. */
.grain {
  position: fixed;
  z-index: 1000;
  inset: 0;
  pointer-events: none;
  background: rgba(255, 255, 255, .001);
  -webkit-backdrop-filter: saturate(1.3) contrast(1.018);
  backdrop-filter: saturate(1.3) contrast(1.018);
}

.grain::after {
  position: absolute;
  inset: 0;
  background: url("assets/s16-fine-grain-frame.webp") center / cover no-repeat;
  content: "";
  opacity: .22;
  mix-blend-mode: soft-light;
}

/* Homepage */
.hero {
  position: relative;
  height: 100svh;
  min-height: 650px;
  overflow: hidden;
  background: transparent;
}

.hero-title {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 100%;
  padding: 0 var(--pad);
  text-align: center;
  transform: translate(-50%, -50%);
}

.hero .eyebrow {
  color: var(--yellow);
  font: 400 clamp(15px, 1.35vw, 20px) / 1.3 "DM Mono", monospace;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.hero h1 {
  display: flex;
  justify-content: center;
  gap: .15em;
  margin: 28px 0 0;
  font-size: clamp(82px, 13vw, 205px);
  font-weight: 300;
  line-height: .75;
  letter-spacing: -.075em;
  text-shadow: 0 3px 28px rgba(0, 0, 0, .45);
}

.hero h1 > .name-word {
  display: inline-flex;
  color: var(--ink);
  font-family: Manrope, Arial, sans-serif;
  font-style: normal;
}

.hero h1 > .name-word:last-child { color: var(--yellow); }

.hero h1 .glitch-letter {
  display: inline-block;
  color: inherit;
  font-style: normal;
  line-height: .78;
  pointer-events: auto;
  overflow: visible;
  transition: transform 320ms cubic-bezier(.16, 1, .3, 1), filter 280ms ease, text-shadow 320ms ease;
  will-change: transform;
}

body.is-ready .hero.is-scene-present h1 .glitch-letter {
  animation: hero-letter-drift 3s cubic-bezier(.45, 0, .55, 1) var(--letter-drift-delay, 0s) infinite alternate;
}

.hero h1 .name-word:first-child .glitch-letter:nth-child(1) { --letter-drift-delay: -.15s; }
.hero h1 .name-word:first-child .glitch-letter:nth-child(2) { --letter-drift-delay: -.42s; }
.hero h1 .name-word:first-child .glitch-letter:nth-child(3) { --letter-drift-delay: -.76s; }
.hero h1 .name-word:first-child .glitch-letter:nth-child(4) { --letter-drift-delay: -1.08s; }
.hero h1 .name-word:first-child .glitch-letter:nth-child(5) { --letter-drift-delay: -1.36s; }
.hero h1 .name-word:last-child .glitch-letter:nth-child(1) { --letter-drift-delay: -1.68s; }
.hero h1 .name-word:last-child .glitch-letter:nth-child(2) { --letter-drift-delay: -1.96s; }
.hero h1 .name-word:last-child .glitch-letter:nth-child(3) { --letter-drift-delay: -2.28s; }

@keyframes hero-letter-drift {
  from { translate: 0 -2px; }
  to { translate: 0 7px; }
}

.hero h1 .glitch-letter:hover {
  filter: brightness(1.08);
  text-shadow: 8px 12px 16px rgba(0, 0, 0, .38);
  transform: translate3d(0, -12px, 0) scale(1.035);
}

.hero h1.is-font-shuffling .glitch-letter { will-change: transform, text-shadow, filter; }

.hero h1 .glitch-letter.is-glitching {
  animation:
    hero-letter-drift 3s cubic-bezier(.45, 0, .55, 1) var(--letter-drift-delay, 0s) infinite alternate,
    hero-letter-glitch 180ms steps(2, end) both;
}

@keyframes hero-letter-glitch {
  0%, 100% {
    filter: none;
    text-shadow: 0 3px 28px rgba(0, 0, 0, .45);
    transform: translate3d(0, 0, 0) skewX(0);
  }
  30% {
    filter: contrast(1.05);
    text-shadow: 1.5px 0 rgba(255, 35, 90, .3), -1.5px 0 rgba(0, 220, 255, .3);
    transform: translate3d(-1px, .4px, 0) skewX(-1deg);
  }
  65% {
    filter: contrast(1.03);
    text-shadow: -1px 0 rgba(255, 35, 90, .22), 1px 0 rgba(0, 220, 255, .22);
    transform: translate3d(.8px, -.3px, 0) skewX(.7deg);
  }
}

.hero-nav {
  position: absolute;
  z-index: 3;
  bottom: clamp(96px, 14vh, 140px);
  left: 50%;
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  margin: 0;
  font: 700 clamp(11px, 1vw, 14px) "DM Mono", monospace;
  letter-spacing: .14em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.hero-nav a {
  position: relative;
  min-width: clamp(88px, 10vw, 132px);
  padding: 10px 22px;
  border: 1.5px solid rgba(255, 255, 255, .68);
  border-radius: 999px;
  background: rgba(255, 255, 255, .015);
  box-shadow: 0 3px 10px rgba(0, 0, 0, .055);
  text-shadow: 0 2px 6px rgba(0, 0, 0, .7);
  text-align: center;
  transition: color .25s ease, background-color .25s ease, border-color .25s ease, transform .3s cubic-bezier(.16, 1, .3, 1);
}

.hero-nav a:hover,
.hero-nav a:focus-visible {
  border-color: rgba(255, 255, 255, .88);
  color: var(--yellow);
  background: rgba(255, 255, 255, .065);
  transform: translateY(-2px);
}

.scroll-hint {
  position: relative;
  z-index: 2;
  margin: clamp(34px, 5vw, 65px) 0 0;
  opacity: 0;
  color: rgba(255, 255, 255, .94);
  font: 700 clamp(16px, 1.4vw, 21px) / 1 "DM Mono", monospace;
  letter-spacing: .16em;
  pointer-events: none;
  text-transform: uppercase;
  transform: translateY(8px);
  white-space: nowrap;
}

body.is-ready .scroll-hint {
  animation: scroll-hint-in .8s cubic-bezier(.22, 1, .36, 1) .45s both, scroll-hint-drift 3s cubic-bezier(.45, 0, .55, 1) 1.25s infinite alternate;
}

@keyframes scroll-hint-in {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scroll-hint-drift {
  from { transform: translateY(-2px); }
  to { transform: translateY(7px); }
}

body.is-loading .hero-title {
  opacity: 0 !important;
}

body.is-ready .hero-title {
  opacity: 1;
}

body.is-ready .hero h1 {
  overflow: visible;
  animation: opening-name-glitch 400ms steps(1, end) .12s both;
}

body.is-ready .hero .eyebrow,
body.is-ready .hero-nav {
  animation: opening-title-support 700ms cubic-bezier(.16, 1, .3, 1) .18s both;
}

@keyframes opening-name-glitch {
  0% { opacity: 0; filter: contrast(1.8); text-shadow: none; transform: translate3d(-14px, 3px, 0) skewX(-8deg); }
  12% { opacity: 1; text-shadow: 8px 0 #ffda0d, -7px 0 rgba(255, 255, 255, .9); transform: translate3d(11px, -2px, 0) skewX(5deg); }
  24% { opacity: .46; text-shadow: -9px 0 #ffda0d, 6px 0 rgba(255, 255, 255, .85); transform: translate3d(-8px, 2px, 0) skewX(-3deg); }
  38% { opacity: 1; text-shadow: 5px 0 rgba(255, 255, 255, .8), -5px 0 #ffda0d; transform: translate3d(6px, 0, 0); }
  52% { opacity: .68; text-shadow: -4px 0 rgba(255, 255, 255, .82), 4px 0 #ffda0d; transform: translate3d(-4px, 1px, 0) skewX(2deg); }
  68% { opacity: 1; text-shadow: 3px 0 #ffda0d, -3px 0 rgba(255, 255, 255, .78); transform: translate3d(3px, 0, 0); }
  82% { opacity: .84; text-shadow: -2px 0 #ffda0d, 2px 0 rgba(255, 255, 255, .74); transform: translate3d(-2px, 0, 0); }
  100% { opacity: 1; filter: none; text-shadow: 0 3px 28px rgba(0, 0, 0, .45); transform: translate3d(0, 0, 0) skewX(0); }
}

@keyframes opening-title-support {
  from { opacity: 0; filter: blur(6px); }
  to { opacity: 1; filter: none; }
}

/* Timed, sticky scene system */
body.cinematic-scroll {
  --reel-black: 0;
  isolation: isolate;
}

body.cinematic-scroll::before {
  content: "";
  position: fixed;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  opacity: var(--reel-black);
  background: #030303;
}

.cinematic-scroll main {
  position: relative;
  z-index: 3;
  pointer-events: none;
}

.cinematic-scroll main a,
.cinematic-scroll main button,
.cinematic-scroll main iframe { pointer-events: auto; }

.scene-track {
  position: relative;
  height: 200svh;
  background: transparent;
}

.scene-track.about-scene-track { height: 340svh; }
.scene-track.reel-scene-track { height: 280svh; }

.scene-track + .scene-track,
.scene-track + .scene-sequence,
.scene-sequence + .scene-track { margin-top: -100svh; }

.scene-panel {
  --scene-drift-y: 0px;
  position: sticky !important;
  z-index: 1;
  top: 0;
  height: 100svh !important;
  min-height: 100svh !important;
  overflow: hidden;
  transform: translate3d(0, var(--scene-drift-y), 0);
}

.scene-panel.is-transitioning,
.scene-panel.is-scene-pinned {
  position: fixed !important;
  top: 0 !important;
  left: var(--scene-pin-left) !important;
  width: var(--scene-pin-width) !important;
  height: var(--scene-pin-height) !important;
  margin: 0 !important;
}

.scene-panel.is-transitioning {
  will-change: opacity, transform;
}

.scene-sequence {
  padding: 0;
  color: #121313;
  background: transparent;
}

.paper { color: #121313; }
.paper .section-label { color: #2c667f; }

.cinematic-scroll .scene-panel.paper,
.cinematic-scroll .scene-sequence { background: transparent !important; }

.cinematic-scroll .scene-panel:not(.hero),
.cinematic-scroll .scene-panel:not(.hero) * { font-family: var(--futura-book) !important; }

.cinematic-scroll .scene-panel .scene-home-link {
  position: absolute;
  z-index: 8;
  top: clamp(30px, 5vh, 50px);
  right: clamp(36px, 6.5vw, 90px);
  padding: 8px 1px;
  color: var(--yellow);
  font-family: Manrope, Arial, sans-serif !important;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: .9;
  text-transform: uppercase;
  transition: color .25s ease, opacity .25s ease, transform .3s cubic-bezier(.16, 1, .3, 1);
}

.scene-home-link:hover,
.scene-home-link:focus-visible {
  color: var(--yellow);
  opacity: .72;
  transform: translateY(-2px);
}

/* About */
.scene-panel.about-intro {
  display: grid;
  grid-template-columns: minmax(390px, 520px) minmax(390px, 540px);
  justify-content: center;
  align-items: center;
  gap: clamp(16px, 1.8vw, 28px);
  padding: 7vh clamp(48px, 6vw, 100px);
}

.about-intro-copy { width: 100%; max-width: 520px; min-width: 0; }

.scene-panel.about-intro .section-label {
  display: inline-block;
  width: max-content;
  padding: 0;
  color: #fff;
  background: transparent;
  box-shadow: none;
  font-size: clamp(16px, 1.5vw, 22px);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.about-intro-bio {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(20px, 3vh, 34px);
  max-width: 720px;
  margin-top: clamp(36px, 6vh, 72px);
  color: var(--ink);
}

.about-intro-bio p { margin: 0; }

.about-intro-bio .bio-lead {
  color: #fff;
  font-size: clamp(22px, 2.3vw, 34px);
  line-height: 1.25;
  letter-spacing: -.035em;
}

.about-intro-bio .bio-detail {
  max-width: 620px;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.5;
}

.about-intro-visual {
  position: relative;
  width: 100%;
  max-width: 540px;
  overflow: visible;
}

.about-intro-image {
  position: relative;
  width: 100%;
  aspect-ratio: 2386 / 1545;
  margin: 0;
  padding: 0;
  background: transparent;
  box-shadow: 17px 22px 34px rgba(24, 61, 78, .34), 0 7px 12px rgba(20, 44, 56, .16);
}

.about-intro-image img { filter: contrast(1.04); object-position: center; }

.about-intro-tape {
  position: absolute;
  z-index: 4;
  top: -54px;
  width: 68px;
  height: 132px;
  object-fit: contain;
  pointer-events: none;
  opacity: 0;
  filter: drop-shadow(3px 6px 4px rgba(24, 50, 62, .34));
}

.about-intro-tape-left { left: -28px; transform: rotate(-39deg); }
.about-intro-tape-right { right: -28px; transform: rotate(39deg); }

.scene-panel.about-intro:not(.is-scene-present) .about-intro-image {
  opacity: 0;
  transform: translate(72vw, -10vh) rotate(7deg) scale(.92);
}

.scene-panel.about-intro.is-scene-present .about-intro-image {
  animation: about-photo-arrive 1.25s cubic-bezier(.22, 1, .36, 1) both;
}

.scene-panel.about-intro.is-scene-present .about-intro-tape-left {
  animation: about-tape-left .42s cubic-bezier(.22, 1, .36, 1) 1.18s both;
}

.scene-panel.about-intro.is-scene-present .about-intro-tape-right {
  animation: about-tape-right .42s cubic-bezier(.22, 1, .36, 1) 1.43s both;
}

@keyframes about-photo-arrive {
  0% { opacity: 0; transform: translate(72vw, -10vh) rotate(7deg) scale(.92); }
  78% { opacity: 1; transform: translate(-.7vw, .3vh) rotate(-.35deg) scale(1.004); }
  100% { opacity: 1; transform: none; }
}

@keyframes about-tape-left {
  from { opacity: 0; transform: translate(-9px, -13px) rotate(-47deg) scale(1.1); }
  to { opacity: 1; transform: rotate(-39deg) scale(1); }
}

@keyframes about-tape-right {
  from { opacity: 0; transform: translate(9px, -13px) rotate(47deg) scale(1.1); }
  to { opacity: 1; transform: rotate(39deg) scale(1); }
}

body.is-about-exit-locked { overscroll-behavior: none; }

.scene-panel.about-intro.is-about-exiting .about-intro-tape-right {
  animation: about-tape-right-exit .42s cubic-bezier(.25, .46, .45, .94) both !important;
}

.scene-panel.about-intro.is-about-exiting .about-intro-tape-left {
  animation: about-tape-left-exit .42s cubic-bezier(.25, .46, .45, .94) .12s both !important;
}

.scene-panel.about-intro.is-about-exiting .about-intro-image {
  animation: about-photo-exit 1.05s cubic-bezier(.45, .05, .25, 1) .34s both !important;
}

.scene-panel.about-intro.is-about-exiting .about-intro-image,
.scene-panel.about-intro.is-about-exiting .about-intro-tape {
  will-change: transform, opacity;
  backface-visibility: hidden;
}

@keyframes about-tape-right-exit {
  from { opacity: 1; transform: translate3d(0, 0, 0) rotate(39deg) scale(1); }
  to { opacity: 0; transform: translate3d(20px, -38px, 0) rotate(57deg) scale(1.08); }
}

@keyframes about-tape-left-exit {
  from { opacity: 1; transform: translate3d(0, 0, 0) rotate(-39deg) scale(1); }
  to { opacity: 0; transform: translate3d(-20px, -38px, 0) rotate(-57deg) scale(1.08); }
}

@keyframes about-photo-exit {
  0% { opacity: 1; transform: translate3d(0, 0, 0) rotate(0) scale(1); }
  35% { opacity: 1; }
  100% { opacity: 0; transform: translate3d(76vw, 14vh, 0) rotate(8deg) scale(.93); }
}

/* Reel */
.reel { position: relative; min-height: 620px; overflow: hidden; }

.scene-panel.reel {
  display: grid;
  place-items: center;
  padding: 6vh var(--pad);
  background: transparent;
}

.reel-content {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(520px, 1.28fr);
  align-items: center;
  gap: clamp(38px, 5vw, 78px);
  width: min(1160px, 92vw);
}

.reel-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.reel-kicker {
  font-size: clamp(19px, 1.8vw, 27px);
  font-weight: 700 !important;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.reel-link {
  --reel-link-x: clamp(-48px, -3vw, -34px);
  position: relative;
  isolation: isolate;
  display: inline-block;
  overflow: hidden;
  margin-top: clamp(24px, 4vh, 42px);
  padding: clamp(7px, .8vw, 10px) clamp(13px, 1.35vw, 20px);
  border: 2px solid rgba(255, 255, 255, .82);
  border-radius: 999px;
  background: rgba(255, 255, 255, .025);
  box-shadow: inset 0 0 0 0 rgba(255, 255, 255, 0), 0 0 0 rgba(0, 0, 0, 0);
  transform: translate3d(var(--reel-link-x), 0, 0) scale(1);
  transition: background-color .38s ease, border-color .38s ease, box-shadow .5s cubic-bezier(.16, 1, .3, 1), transform .5s cubic-bezier(.16, 1, .3, 1);
}

.reel-link::after {
  position: absolute;
  z-index: 0;
  top: -80%;
  bottom: -80%;
  left: -55%;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .3), transparent);
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: skewX(-18deg);
  transition: left .75s cubic-bezier(.16, 1, .3, 1), opacity .25s ease;
}

.reel-link:hover,
.reel-link:focus-visible {
  border-color: rgba(255, 255, 255, .98);
  background: rgba(255, 255, 255, .1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .16), 0 18px 34px rgba(0, 0, 0, .22), 0 0 30px rgba(255, 242, 0, .12);
  transform: translate3d(var(--reel-link-x), -6px, 0) scale(1.025);
}

.reel-link:hover::after,
.reel-link:focus-visible::after { left: 121%; opacity: 1; }

.reel-link:active {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .12), 0 7px 14px rgba(0, 0, 0, .18);
  transform: translate3d(var(--reel-link-x), -1px, 0) scale(.99);
  transition-duration: 100ms;
}

.reel-link strong {
  position: relative;
  display: inline-grid;
  place-items: center;
  isolation: isolate;
  z-index: 1;
  margin: 0;
  color: var(--yellow);
  cursor: pointer;
  white-space: nowrap;
  font-family: var(--futura-book);
  font-size: clamp(40px, 4.6vw, 68px);
  font-style: normal;
  font-weight: 700;
  line-height: .86;
  letter-spacing: -.075em;
  text-transform: uppercase;
  transition: color .24s ease;
}

.reel-link strong::after {
  content: "PLAY REEL";
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  display: block;
  opacity: 0;
  color: var(--ink);
  pointer-events: none;
  white-space: nowrap;
  filter: blur(7px);
  font-family: "DM Mono", "Courier New", monospace !important;
  font-size: .62em;
  font-style: normal;
  font-weight: 400;
  letter-spacing: .16em;
  transform: translate(-47%, -43%) scale(.96);
  transition: opacity .22s ease, filter .3s ease, letter-spacing .38s cubic-bezier(.16, 1, .3, 1), transform .38s cubic-bezier(.16, 1, .3, 1);
}

.reel-link strong::before {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: -14px;
  left: 0;
  height: 3px;
  background: var(--yellow);
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: left center;
  transition: opacity .16s ease, transform .42s cubic-bezier(.16, 1, .3, 1) .04s;
}

.reel-link strong:hover { color: transparent; }
.reel-link strong:hover::after {
  opacity: 1;
  filter: blur(0);
  letter-spacing: .035em;
  transform: translate(-50%, -50%) scale(1);
}
.reel-link strong:hover::before { opacity: 1; transform: scaleX(1); }

.reel-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #090909;
  box-shadow: 16px 20px 35px rgba(24, 61, 78, .3);
}

.reel-poster {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
  color: #fff;
  background: #090909;
}

.reel-poster::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .06), rgba(0, 0, 0, .04) 55%, rgba(0, 0, 0, .64));
  content: "";
  transition: background-color 280ms ease;
}

.reel-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(.16, 1, .3, 1);
}

.reel-poster-play {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: clamp(58px, 6vw, 82px);
  aspect-ratio: 1;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, .92);
  border-radius: 50%;
  background: rgba(0, 0, 0, .34);
  color: #fff;
  font-size: clamp(22px, 2.2vw, 31px);
  line-height: 1;
  padding-left: .16em;
  transform: translate(-50%, -50%);
  transition: color 240ms ease, background-color 240ms ease, transform 320ms cubic-bezier(.16, 1, .3, 1);
}

.reel-poster-label {
  position: absolute;
  z-index: 2;
  right: clamp(18px, 2.5vw, 34px);
  bottom: clamp(16px, 2.2vw, 30px);
  color: #fff;
  font-size: clamp(14px, 1.2vw, 18px);
  font-weight: 700;
  text-transform: uppercase;
}

.reel-poster:hover img,
.reel-poster:focus-visible img { transform: scale(1.018); }

.reel-poster:hover .reel-poster-play,
.reel-poster:focus-visible .reel-poster-play {
  color: #111;
  background: var(--yellow);
  transform: translate(-50%, -50%) scale(1.07);
}

/* Selected work */
.scene-panel.projects-heading {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  align-items: baseline;
  justify-content: center;
  gap: 0 .15em;
  margin: 0;
  padding: 8vh var(--pad);
  font-size: clamp(72px, 13vw, 190px);
  line-height: .68;
  letter-spacing: -.08em;
  text-align: center;
  transform: translate3d(0, var(--scene-drift-y), 0);
}

.scene-panel.projects-heading.is-transitioning { will-change: opacity, transform; }

.projects-heading > span {
  display: inline-flex;
  font-weight: 700;
}
.projects-heading > span:first-of-type { color: #fff; }
.projects-heading > span:last-of-type { color: var(--yellow); font-style: normal; }

.scene-panel.projects-heading.is-scene-present .selected-letter {
  display: inline-block;
  color: inherit;
  animation: hero-letter-drift 3s cubic-bezier(.45, 0, .55, 1) var(--selected-letter-delay, 0s) infinite alternate;
}

.projects-heading small {
  width: 100%;
  margin-top: 42px;
  color: #fff;
  font-size: clamp(14px, 1.25vw, 18px);
  font-weight: 700;
  letter-spacing: .12em;
  text-align: center;
}

.selected-all-work-link {
  margin-top: 24px;
  padding: 12px 24px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 999px;
  color: #fff;
  font-size: clamp(13px, 1.05vw, 16px);
  font-weight: 700;
  letter-spacing: .1em;
  line-height: 1;
  text-transform: uppercase;
  transition: color 220ms ease, background-color 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.selected-all-work-link:hover,
.selected-all-work-link:focus-visible {
  border-color: var(--yellow);
  color: var(--black);
  background: var(--yellow);
  transform: translateY(-2px);
}

.selected-scroll-hint {
  position: absolute;
  bottom: clamp(50px, 7vh, 72px);
  left: 50%;
  margin: 0;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(13px, 1.1vw, 16px);
  font-weight: 700;
  letter-spacing: .14em;
  line-height: 1;
  pointer-events: none;
  text-transform: uppercase;
  transform: translateX(-50%);
  white-space: nowrap;
  animation: selected-scroll-drift 1.8s ease-in-out infinite alternate;
}

@keyframes selected-scroll-drift {
  from { transform: translate(-50%, 0); }
  to { transform: translate(-50%, 5px); }
}

.scene-panel.project {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: visible;
  width: min(72%, 880px);
  max-width: none;
  margin: 0 auto;
  padding: 7vh 0;
}

.project-media {
  position: relative;
  display: block;
  flex: none;
  height: min(60vh, 610px);
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 0;
  background: #171715;
  box-shadow: 12px 7px 18px rgba(0, 0, 0, .14), 24px 10px 34px rgba(0, 0, 0, .18);
  transform: translate3d(0, 0, 0) scale(1);
  transition: box-shadow .5s cubic-bezier(.16, 1, .3, 1), transform .55s cubic-bezier(.16, 1, .3, 1);
}

.project-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 4px #fff, inset 0 0 70px rgba(0, 0, 0, .15);
}

.project-media img {
  position: absolute;
  inset: 0;
  filter: saturate(.78);
  opacity: 1;
  transform: scale(1.055);
  transition: opacity .48s cubic-bezier(.22, 1, .36, 1), transform .8s cubic-bezier(.16, 1, .3, 1), filter .6s ease;
}

.project-media .project-media-rollover { opacity: 0; transform: scale(1.075); }

.project-media:hover,
.project-media:focus-visible {
  z-index: 4;
  box-shadow: 24px 8px 26px rgba(0, 0, 0, .24), 46px 14px 58px rgba(0, 0, 0, .32);
  transform: translate3d(0, -12px, 0) scale(1.012);
}

.project-media:hover .project-media-normal,
.project-media:focus-visible .project-media-normal { filter: saturate(1); opacity: 0; transform: scale(.985); }
.project-media:hover .project-media-rollover,
.project-media:focus-visible .project-media-rollover { filter: saturate(1); opacity: 1; transform: scale(1); }

.project-media:active { transform: translate3d(0, -4px, 0) scale(1.004); transition-duration: 110ms; }

.project-number {
  position: absolute;
  z-index: 2;
  top: 20px;
  left: 20px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.view-project {
  position: absolute;
  z-index: 2;
  right: 25px;
  bottom: 25px;
  padding: 15px 18px;
  opacity: 0;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 999px;
  color: #fff;
  background: rgba(8, 16, 20, .22);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  transform: translateY(8px);
  transition: opacity .35s, transform .35s;
}

.project-media:hover .view-project { opacity: 1; background: rgba(8, 16, 20, .42); transform: none; }

.scene-panel.project.project-like-fog .project-media {
  height: min(54vh, 540px);
}

.project-info {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: baseline;
  gap: 4vw;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(15, 30, 35, .34);
}

.project-info h2 {
  margin: 0;
  color: var(--yellow);
  font-size: clamp(28px, 4vw, 60px);
  font-weight: 700;
  letter-spacing: -.05em;
}

.project-info h2 .project-title-letter {
  display: inline-block;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-transform: none;
}

.scene-panel.project.is-scene-present .project-title-letter {
  animation: hero-letter-drift 3s cubic-bezier(.45, 0, .55, 1) var(--project-title-delay, 0s) infinite alternate;
}

.project-info h2 .project-title-space { width: .3em; }

.project-info h2[aria-label="Figures"] { white-space: nowrap; }

.project-info .single-line-title {
  white-space: nowrap;
  font-size: clamp(28px, 3.4vw, 52px);
}

.project-info.project-info-stacked {
  grid-template-columns: 1fr auto;
  row-gap: 8px;
}

.project-info.project-info-stacked h2 { grid-column: 1 / -1; }

.project-info p,
.project-info span {
  color: #fff;
  font-size: clamp(14px, 1.1vw, 17px);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.project-note {
  max-width: 580px;
  margin: 35px 0 0 auto;
  color: #fff;
  font-size: clamp(16px, 1.25vw, 19px);
  font-weight: 500;
  line-height: 1.65;
}

/* Archive */
.scene-panel.archive {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(540px, 1.28fr);
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 3vw, 46px);
  padding: 7vh clamp(48px, 7vw, 110px);
}

.archive-heading p {
  margin: 0 0 clamp(28px, 5vh, 54px);
  color: #fff;
  font-size: clamp(14px, 1.25vw, 18px);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.archive-heading h2 {
  margin: 0;
  font-size: clamp(54px, 7vw, 104px);
  font-weight: 700;
  line-height: .86;
  letter-spacing: -.06em;
}

.archive-heading h2 span,
.archive-heading h2 strong { display: block; }
.archive-heading h2 span { color: #fff; }
.archive-heading h2 strong { color: var(--yellow); font-weight: 700; }

.archive-list {
  margin: 0;
  counter-reset: archive-item;
}

.archive-list a {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto 26px;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  margin: 10px 0;
  padding: clamp(17px, 2.5vh, 25px) clamp(18px, 2vw, 28px);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .58);
  border-radius: 999px;
  counter-increment: archive-item;
  transition: color .25s, padding .35s cubic-bezier(.16, 1, .3, 1), background .25s;
}

.archive-list a::before {
  content: counter(archive-item, decimal-leading-zero);
  color: var(--yellow);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
}

.archive-list a:hover {
  padding-right: 16px;
  padding-left: 16px;
  color: var(--yellow);
  background: rgba(255, 255, 255, .1);
}

.archive-list span {
  font-size: clamp(22px, 2.65vw, 38px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.035em;
}

.archive-list small {
  font-size: clamp(12px, 1vw, 15px);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.archive-list b { color: var(--yellow); font-size: 20px; text-align: right; }

.archive-list .all-work {
  margin-top: 18px;
  color: var(--yellow);
  background: rgba(255, 242, 0, .08);
  border-color: rgba(255, 255, 255, .72);
}

.archive-list .all-work:hover { color: #111; background: var(--yellow); }
.archive-list .all-work:hover::before,
.archive-list .all-work:hover b { color: #111; }

/* Acknowledgement / end credits */
.scene-panel.acknowledgement {
  display: grid;
  place-items: center;
  padding: 8vh clamp(48px, 8vw, 128px);
}

.acknowledgement-inner {
  width: min(1080px, 100%);
}

.acknowledgement-kicker {
  margin: 0 0 clamp(48px, 8vh, 82px);
  color: #fff;
  font-size: clamp(14px, 1.25vw, 18px);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.acknowledgement h2 {
  margin: 0;
  font-size: clamp(76px, 10.5vw, 164px);
  font-weight: 700;
  line-height: .82;
  letter-spacing: -.065em;
  text-align: center;
}

.acknowledgement h2 span,
.acknowledgement h2 strong { display: block; }
.acknowledgement h2 span { color: #fff; }
.acknowledgement h2 strong { color: var(--yellow); font-weight: 700; }

.acknowledgement-meta {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: end;
  align-items: center;
  gap: 24px;
  margin-top: clamp(56px, 9vh, 92px);
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .55);
  color: #fff;
  font-size: clamp(12px, 1vw, 15px);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.acknowledgement-meta a {
  position: relative;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, .62);
  border-radius: 999px;
  color: var(--yellow);
  white-space: nowrap;
  transition: background-color .25s ease, border-color .25s ease, transform .3s cubic-bezier(.16, 1, .3, 1);
}

.acknowledgement-meta a:hover,
.acknowledgement-meta a:focus-visible { border-color: rgba(255, 255, 255, .95); background: rgba(255, 255, 255, .1); transform: translateY(-2px); }

/* One static 35mm matte frame over the paper background. */
.global-film-background {
  position: fixed;
  z-index: 2;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.global-film-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  object-fit: fill;
}

.global-film-matte-edge {
  z-index: 1;
  opacity: .68;
  mix-blend-mode: multiply;
}

/* Fixed paper collage: visually behind every scene, interactive through empty space. */
.cutout-collage {
  position: fixed;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.cutout-item {
  --drag-x: 0px;
  --drag-y: 0px;
  --float-x: 0px;
  --float-y: 0px;
  --responsive-scale: 1;
  position: absolute;
  top: var(--cutout-y);
  left: var(--cutout-x);
  width: var(--cutout-size);
  cursor: grab;
  pointer-events: auto;
  touch-action: none;
  transform: translate(-50%, -50%) translate3d(calc(var(--drag-x) + var(--float-x)), calc(var(--drag-y) + var(--float-y)), 0) rotate(var(--cutout-rotation)) scale(var(--responsive-scale));
  transform-origin: center;
  user-select: none;
  -webkit-user-drag: none;
  will-change: transform;
}

.cutout-item img {
  width: 100%;
  height: auto;
  opacity: 0;
  filter: drop-shadow(7px 9px 6px rgba(10, 35, 48, .28));
  pointer-events: none;
  transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  transform-origin: center;
  transition: filter .32s ease, transform .36s cubic-bezier(.16, 1, .3, 1);
}

body.is-ready .cutout-item.is-loaded img {
  animation: cutout-fade-in .85s cubic-bezier(.22, 1, .36, 1) var(--cutout-delay) both;
}

.cutout-item.has-entered img {
  opacity: .82;
  animation: none;
}

.cutout-item:hover img {
  opacity: .98;
  filter: drop-shadow(14px 17px 10px rgba(8, 29, 40, .38));
  transform: translate3d(0, -7px, 0) rotate(var(--cutout-hover-rotation)) scale(1.055);
}

.cutout-item.is-dragging {
  z-index: 20;
  cursor: grabbing;
}

.cutout-item.is-dragging img {
  opacity: 1;
  filter: brightness(1.14) saturate(1.12) drop-shadow(24px 30px 16px rgba(5, 22, 31, .58));
  transform: translate3d(0, -17px, 0) rotate(var(--cutout-hover-rotation)) scale(1.15);
  transition-duration: 120ms;
}

@keyframes cutout-fade-in {
  from { opacity: 0; filter: blur(5px) drop-shadow(0 2px 2px rgba(10, 35, 48, 0)); }
  to { opacity: .82; filter: blur(0) drop-shadow(7px 9px 6px rgba(10, 35, 48, .28)); }
}

@media (max-width: 900px) {
  body { background-attachment: scroll; }

  .scene-panel.about-intro {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 4vh;
    padding: 5vh var(--pad);
  }

  .about-intro-copy { max-width: none; }
  .about-intro-bio { gap: 2vh; margin-top: 3vh; }
  .about-intro-bio .bio-lead { font-size: clamp(21px, 3.4vw, 30px); }
  .about-intro-bio .bio-detail { font-size: clamp(14px, 2.3vw, 18px); }
  .about-intro-visual { justify-self: center; width: min(72vw, 620px); }
}

@media (max-width: 850px) {
  .scene-panel.reel { padding: 5vh var(--pad); }
  .reel-content { grid-template-columns: 1fr; gap: 4vh; width: 88vw; }
  .reel-heading { align-items: center; text-align: center; }
  .reel-link { --reel-link-x: 0px; margin-top: 2vh; }
  .reel-link strong { font-size: clamp(40px, 11vw, 66px); }
  .reel-embed { justify-self: center; width: min(88vw, 680px); }
}

@media (max-width: 700px) {
  .cutout-item { --responsive-scale: .72; }
  .hero-title { top: 52%; }
  .hero .eyebrow { max-width: 310px; margin-right: auto; margin-left: auto; font-size: 16px; }
  .hero h1 { gap: .1em; font-size: 19vw; }
  .hero-nav { gap: 25px; margin-top: 35px; }

  .scene-panel.projects-heading { padding: 7vh var(--pad); }

  .scene-panel.project {
    width: 86%;
    margin-right: auto;
    margin-left: auto;
    padding: 7vh 0;
  }

  .project-media { height: min(48vh, 480px); aspect-ratio: 1; }
  .project-info { grid-template-columns: 1fr auto; }
  .project-info p { grid-row: 2; }
  .project-info span { grid-row: 1; grid-column: 2; }
  .project-info.project-info-stacked span { grid-row: 2; }

  .scene-panel.archive {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 2vh;
    padding: 5vh var(--pad);
  }

  .archive-heading p { margin-bottom: 2vh; }
  .archive-heading h2 { font-size: clamp(46px, 12vw, 70px); }
  .archive-list a { grid-template-columns: 30px minmax(0, 1fr) auto 20px; gap: 10px; padding: 14px 5px; }
  .archive-list span { font-size: clamp(19px, 5.5vw, 27px); }
  .archive-list small { font-size: 10px; }
  .archive-list a::before { font-size: 11px; }
  .archive-list .all-work { margin-top: 12px; }

  .scene-panel.acknowledgement { padding: 6vh var(--pad); }
  .acknowledgement-kicker { margin-bottom: 7vh; }
  .acknowledgement h2 { font-size: clamp(58px, 17vw, 94px); }
  .acknowledgement-meta {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 8vh;
    font-size: 11px;
  }
  .acknowledgement-meta a { width: max-content; margin-top: 8px; }
}

@media (max-width: 600px) {
  .scene-panel.about-intro { gap: 3vh; padding: 4vh var(--pad); }
  .scene-panel.about-intro .section-label { font-size: 15px; }
  .about-intro-bio { gap: 1.4vh; }
  .about-intro-bio .bio-lead { font-size: clamp(19px, 5vw, 25px); line-height: 1.2; }
  .about-intro-bio .bio-detail { font-size: 12px; line-height: 1.4; }
  .about-intro-visual { width: 82vw; }
  .about-intro-tape { top: -40px; width: 52px; height: 100px; }
  .about-intro-tape-left { left: -20px; }
  .about-intro-tape-right { right: -20px; }

  .scene-panel.about-intro:not(.is-scene-present) .about-intro-image {
    transform: translate(105vw, -6vh) rotate(6deg) scale(.94);
  }

  @keyframes about-photo-arrive {
    0% { opacity: 0; transform: translate(105vw, -6vh) rotate(6deg) scale(.94); }
    78% { opacity: 1; transform: translate(-.8vw, .2vh) rotate(-.3deg) scale(1.003); }
    100% { opacity: 1; transform: none; }
  }

  @keyframes about-photo-exit {
    0% { opacity: 1; transform: translate3d(0, 0, 0) rotate(0) scale(1); }
    35% { opacity: 1; }
    100% { opacity: 0; transform: translate3d(110vw, 10vh, 0) rotate(7deg) scale(.94); }
  }
}

@media (prefers-reduced-motion: reduce) {
  body:not([data-motion="on"]) .scene-track { height: auto; margin-top: 0; }
  body:not([data-motion="on"]) .scene-panel {
    position: relative !important;
    min-height: 100svh !important;
    opacity: 1 !important;
  }
  body:not([data-motion="on"]).is-loading .hero-title { opacity: 1 !important; filter: none !important; }
  body:not([data-motion="on"]).is-ready .hero-title { animation: none; }
}
