@font-face {
  font-family: "League Gothic";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/league-gothic-400.ttf") format("truetype");
}

@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/ibm-plex-mono-400.ttf") format("truetype");
}

@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("fonts/ibm-plex-mono-500.ttf") format("truetype");
}

:root {
  --ink: #080808;
  --ink-soft: #121212;
  --paper: #efede5;
  --paper-dim: #c5c2b8;
  --accent: #ff4b16;
  --line-dark: rgba(8, 8, 8, 0.22);
  --line-light: rgba(239, 237, 229, 0.25);
  --display: "League Gothic", "Arial Narrow", sans-serif;
  --mono: "IBM Plex Mono", "Courier New", monospace;
  --pad: clamp(1rem, 2.25vw, 2.25rem);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-cut: cubic-bezier(0.76, 0, 0.24, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--mono);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body.is-transitioning::after {
  position: fixed;
  z-index: 150;
  inset: 0;
  content: "";
  pointer-events: none;
  background: var(--accent);
  animation: page-cut 540ms var(--ease-cut) forwards;
}

::selection {
  color: var(--ink);
  background: var(--accent);
}

img,
video {
  display: block;
  max-width: 100%;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 300;
  top: 0;
  left: 0;
  padding: 0.75rem 1rem;
  color: var(--ink);
  background: var(--paper);
  transform: translateY(-120%);
}

.skip-link:focus {
  transform: none;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.mono-label,
.eyebrow {
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.grain {
  position: fixed;
  z-index: 120;
  inset: -60%;
  width: 220%;
  height: 220%;
  pointer-events: none;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.95'/%3E%3C/svg%3E");
  animation: grain-shift 0.22s steps(2) infinite;
}


.site-header {
  position: absolute;
  z-index: 40;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  width: 100%;
  padding: 1.15rem var(--pad);
  color: var(--paper);
  mix-blend-mode: difference;
}

.brand {
  display: inline-flex;
  align-items: flex-start;
  width: max-content;
  line-height: 1;
}

.brand strong {
  font-family: var(--display);
  font-size: 2.6rem;
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.72;
}

.brand span {
  margin: 0.05rem 0 0 0.35rem;
  font-size: 0.54rem;
  font-weight: 500;
  letter-spacing: 0.13em;
}

.site-header__status {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.6rem;
  letter-spacing: 0.09em;
}

.site-header__status i {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(255, 75, 22, 0.15);
  animation: record-pulse 1.5s infinite;
}

.site-nav {
  display: flex;
  justify-content: flex-end;
  gap: clamp(1rem, 2.5vw, 2.75rem);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.site-nav a {
  position: relative;
  padding-bottom: 0.25rem;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav sup {
  color: var(--accent);
  font-size: 0.5rem;
}

.site-nav__instagram {
  display: grid;
  width: 1rem;
  height: 1rem;
  place-items: center;
}

.site-nav__instagram svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.site-nav__instagram::after { bottom: -0.35rem; }

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  background: #101010;
  isolation: isolate;
}

.hero__media,
.hero__wash {
  position: absolute;
  inset: 0;
}

.hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.76) contrast(1.12) brightness(0.76);
  transform: translateZ(0) scale(1.035);
  animation: hero-scale 8s var(--ease-out) forwards;
  backface-visibility: hidden;
  will-change: transform;
}

.hero__wash {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.48) 0%, transparent 28%, transparent 63%, rgba(0, 0, 0, 0.72) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.25), transparent 42%, rgba(0, 0, 0, 0.08));
}


.hero__topline {
  align-self: start;
  min-height: 1px;
  margin-top: 5.25rem;
}

.hero__title {
  position: relative;
  z-index: 3;
  display: grid;
  align-self: center;
  justify-self: center;
  width: max-content;
  margin: -2vh 0 0;
  color: var(--paper);
  text-align: center;
  mix-blend-mode: difference;
}

.hero__digits {
  display: flex;
  justify-content: center;
  height: min(44vw, 70vh);
  width: max-content;
  overflow: hidden;
  padding: 0 0.045em;
  font-family: var(--display);
  font-size: min(58vw, 54rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.74;
}

.hero__digits span {
  display: block;
  animation: hero-number-in 1.05s 0.08s var(--ease-out) both;
}

.hero__digits span:nth-child(2) { animation-delay: 0.16s; }
.hero__digits span:nth-child(3) { animation-delay: 0.24s; }

.hero__world {
  display: flex;
  justify-content: space-between;
  width: 90%;
  margin: clamp(0.35rem, 1vw, 0.85rem) 1.5% 0 8.5%;
  color: var(--accent);
  font-family: var(--display);
  font-size: clamp(2.6rem, 6.2vw, 6.4rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.72;
  text-shadow: 0 0 1.5rem rgba(255, 75, 22, 0.18);
  animation: world-track 1.1s 0.36s var(--ease-out) both;
}

.hero__footer {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  align-self: end;
  padding: 0 var(--pad) 1.35rem;
}



.hero__time {
  display: flex;
  justify-content: flex-end;
  gap: 1.2rem;
}

.hero__time span {
  color: var(--accent);
}

.work {
  position: relative;
  z-index: 2;
  padding: clamp(1rem, 2vw, 2rem) var(--pad) clamp(3.5rem, 4vw, 4rem);
  color: var(--ink);
  background: var(--paper);
}

.section-head {
  display: block;
  margin-bottom: clamp(2rem, 4vw, 4rem);
}

.section-head h2,
.manifesto h2,
.contact h2,
.project-title,
.next-project__name {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.section-head h2 {
  font-size: clamp(5.5rem, 13vw, 13rem);
  line-height: 0.78;
  white-space: nowrap;
}

.section-head p {
  max-width: 28rem;
  margin: 0 0 0.5rem;
  font-size: clamp(0.72rem, 0.9vw, 0.9rem);
  line-height: 1.65;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(2.5rem, 4vw, 4.5rem) clamp(0.75rem, 1.2vw, 1.25rem);
  align-items: start;
}

.project-card {
  min-width: 0;
}

.project-card:nth-child(1) { grid-column: 1 / 9; }
.project-card:nth-child(2) { grid-column: 9 / 13; margin-top: 12vw; }
.project-card:nth-child(3) { grid-column: 2 / 7; }
.project-card:nth-child(4) { grid-column: 7 / 13; margin-top: 7vw; }
.project-card:nth-child(5) { grid-column: 1 / 13; }
.project-card:nth-child(6) { grid-column: 1 / 6; }
.project-card:nth-child(7) { grid-column: 6 / 12; margin-top: 10vw; }
.project-card:nth-child(8) { grid-column: 2 / 8; }
.project-card:nth-child(9) { grid-column: 8 / 13; margin-top: 8vw; }
.project-card:nth-child(10) { grid-column: 1 / 7; }
.project-card:nth-child(11) { grid-column: 7 / 13; margin-top: 7vw; }
.project-card:nth-child(12) { grid-column: 2 / 11; }

.project-card:nth-child(n) {
  grid-column: auto;
  margin-top: 0;
}

.project-card__link {
  display: block;
}

.project-card__visual {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--ink-soft);
  isolation: isolate;
}

.project-card--wide .project-card__visual { aspect-ratio: 16 / 9; }
.project-card--portrait .project-card__visual { aspect-ratio: 4 / 5; }

.project-card__visual::after {
  position: absolute;
  z-index: 3;
  inset: 0;
  content: "";
  pointer-events: none;
  border: 1px solid rgba(239, 237, 229, 0.14);
  box-shadow: inset 0 0 0 0 var(--accent);
  transition: box-shadow 0.45s var(--ease-out);
}

.project-card__image,
.project-card__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.35s linear, filter 0.65s var(--ease-out), transform 0.9s var(--ease-out);
}

.project-card__image {
  filter: saturate(0.72) contrast(1.08);
}

.project-card__video {
  z-index: 1;
  opacity: 0;
  filter: saturate(0.9) contrast(1.06);
}

.project-card__index,
.project-card__runtime {
  position: absolute;
  z-index: 4;
  top: 0.85rem;
  padding: 0.38rem 0.48rem;
  color: var(--paper);
  background: rgba(8, 8, 8, 0.72);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  backdrop-filter: blur(8px);
}

.project-card__index { left: 0.85rem; }
.project-card__runtime { right: 0.85rem; }

.project-card__play {
  position: absolute;
  z-index: 4;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--accent);
  font-family: var(--display);
  font-size: clamp(5rem, 10vw, 10rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.75;
  text-transform: uppercase;
  text-shadow: 0 0.08em 0.3em rgba(8, 8, 8, 0.22);
  transform: scale(0.72);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.45s var(--ease-out), opacity 0.25s ease;
}

.project-card__meta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: end;
  padding-top: 0.85rem;
  border-bottom: 1px solid var(--line-dark);
  padding-bottom: 0.95rem;
}

.project-card__name {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.2rem, 3.6vw, 3.8rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.84;
  text-transform: uppercase;
}

.project-card__name span {
  color: #706e67;
}

.project-card__arrow {
  display: inline-block;
  padding-bottom: 0.25rem;
  font-size: 1.25rem;
  transition: transform 0.4s var(--ease-out);
}

.project-card__link:hover .project-card__image,
.project-card__link:focus-visible .project-card__image {
  filter: saturate(1) contrast(1);
  transform: scale(1.035);
}

.project-card__link:hover .project-card__video,
.project-card__link:focus-visible .project-card__video,
.project-card.is-playing .project-card__video {
  opacity: 1;
}

.project-card__link:hover .project-card__visual::after,
.project-card__link:focus-visible .project-card__visual::after {
  box-shadow: inset 0 0 0 5px var(--accent);
}

.project-card__link:hover .project-card__play,
.project-card__link:focus-visible .project-card__play {
  opacity: 1;
  transform: scale(1) rotate(0);
}

.project-card__link:hover .project-card__arrow,
.project-card__link:focus-visible .project-card__arrow {
  transform: translate(0.25rem, -0.25rem);
}

.manifesto {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
  height: 100svh;
  overflow: hidden;
  padding: clamp(2.5rem, 3vw, 3rem) var(--pad) 2rem;
  background: var(--ink);
}

.manifesto__index {
  grid-column: 1 / 3;
  border-top: 1px solid var(--line-light);
  padding-top: 0.8rem;
}

.manifesto__copy {
  position: relative;
  z-index: 2;
  grid-column: 3 / 13;
}

.manifesto h2 {
  font-size: clamp(4.5rem, 10vw, 10rem);
  line-height: 0.78;
}

.manifesto h2 span,
.manifesto h2 em {
  display: block;
}

.manifesto h2 span {
  white-space: nowrap;
}

.manifesto h2 em {
  color: var(--accent);
  font-style: normal;
}

.manifesto__copy p {
  max-width: 28rem;
  margin: clamp(6.5rem, 10vw, 10rem) auto 0 25%;
  color: var(--paper-dim);
  font-size: clamp(1.15rem, 1.5vw, 1.5rem);
  font-weight: 500;
  line-height: 1.5;
}

.manifesto__copy p strong {
  color: var(--paper);
  font-weight: 600;
}

.manifesto__orbit {
  position: absolute;
  right: -5vw;
  bottom: 5rem;
  display: grid;
  place-items: center;
  width: clamp(18rem, 36vw, 36rem);
  aspect-ratio: 1;
  border: 1px solid var(--line-light);
  border-radius: 50%;
}

.manifesto__orbit::before,
.manifesto__orbit::after {
  position: absolute;
  content: "";
  background: var(--line-light);
}

.manifesto__orbit::before { width: 130%; height: 1px; }
.manifesto__orbit::after { width: 1px; height: 130%; }

.manifesto__orbit > span {
  font-family: var(--display);
  font-size: clamp(8rem, 19vw, 20rem);
  line-height: 0.7;
}

.orbit-text {
  position: absolute;
  z-index: 2;
  inset: 50%;
  width: 0;
  height: 0;
  animation: orbit-spin 18s linear infinite;
}

.orbit-text span {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 1em;
  height: clamp(8.5rem, 17vw, 17rem);
  font-size: clamp(0.48rem, 0.62vw, 0.64rem);
  text-align: center;
  transform-origin: 50% 100%;
}

.capabilities {
  position: absolute;
  z-index: 3;
  left: var(--pad);
  bottom: 2rem;
  margin: 0;
  width: min(32rem, 32vw);
  transform: translateY(-2.5rem);
  padding: 0;
  list-style: none;
}

.capabilities li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  padding: 0.7rem 0;
  border-top: 1px solid var(--line-light);
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1;
}

.capabilities li span {
  padding-top: 0.25rem;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 0.55rem;
}

.contact {
  min-height: 100svh;
  overflow: hidden;
  padding: clamp(3rem, 6vw, 6rem) var(--pad) 2rem;
  color: var(--ink);
  background: var(--paper);
}

.contact__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(8, 8, 8, 0.42);
  padding-top: 0.8rem;
}


.contact h2 {
  margin-top: clamp(2rem, 3vw, 3.5rem);
  font-size: clamp(6rem, 15vw, 15rem);
  line-height: 0.7;
}

.contact h2 em {
  color: var(--accent);
  font-style: normal;
}

.contact__bottom {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  margin-top: clamp(3rem, 5vw, 5rem);
}


.contact__links {
  grid-column: 5 / 13;
  min-width: 0;
}

.contact__channel {
  display: grid;
  grid-template-columns: 7rem minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 0.9rem 0 1.1rem;
  border-top: 1px solid rgba(8, 8, 8, 0.42);
  color: var(--ink);
  transition: color 0.25s ease, background 0.25s ease, padding 0.35s var(--ease-out);
}

.contact__channel strong {
  overflow-wrap: anywhere;
  font-family: var(--display);
  font-size: clamp(2.7rem, 5vw, 5.25rem);
  font-weight: 400;
  line-height: 0.88;
}

.contact__arrow {
  display: grid;
  place-items: center;
  width: 2.8rem;
  aspect-ratio: 1;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 1rem;
  transition: transform 0.35s var(--ease-out);
}

.contact__channel:hover,
.contact__channel:focus-visible,
.contact__channel.is-copied {
  padding-right: 1rem;
  padding-left: 1rem;
  color: var(--paper);
  background: var(--ink);
}

.contact__channel:hover .contact__arrow,
.contact__channel:focus-visible .contact__arrow,
.contact__channel.is-copied .contact__arrow {
  transform: rotate(45deg);
}

.contact__channel.is-copied .contact__arrow {
  transform: none;
}

.contact__copy-status {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}


.footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  padding: 1rem var(--pad);
  color: var(--paper);
  background: var(--ink);
}

.footer > :last-child {
  text-align: right;
}


.js .reveal,
.js .project-card {
  opacity: 0;
  transform: translateY(3rem);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.js .reveal.is-visible,
.js .project-card.is-visible {
  opacity: 1;
  transform: none;
}

.noscript {
  border: 1px solid var(--line-dark);
  padding: 1rem;
}

/* Project page */
.project-page {
  color: var(--paper);
  background: var(--ink);
}

.project-page--locked {
  height: 100svh;
  overflow: hidden;
}

.project-page .site-header {
  position: fixed;
}

.project-main {
  padding-top: 5rem;
}

.project-intro {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
  align-items: center;
  padding: clamp(1.5rem, 2.5vw, 2.5rem) var(--pad) clamp(1.25rem, 2vw, 2rem);
}

.project-intro__index,
.project-intro__archive {
  grid-column: 1 / 3;
  color: var(--paper);
}

.project-title {
  grid-column: 3 / 11;
  font-size: clamp(4.5rem, 8vw, 8rem);
  line-height: 0.7;
  text-align: center;
}

.project-title span {
  display: block;
  color: #77746d;
}

.project-title .project-title__artist {
  color: var(--paper);
}

.project-intro__runtime,
.project-intro__next {
  grid-column: 11 / 13;
  color: var(--paper);
  text-align: right;
}

.project-intro__archive,
.project-intro__next {
  transition: color 0.25s ease;
}

.project-intro__archive:hover,
.project-intro__archive:focus-visible,
.project-intro__next:hover,
.project-intro__next:focus-visible {
  color: var(--accent);
}

.film-stage {
  position: relative;
  width: min(calc(100% - var(--pad) - var(--pad)), 123svh);
  margin: 0 auto;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  max-height: calc(100svh - 17rem);
  background: #000;
}

.film-stage::before {
  display: none;
}

.film-stage video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.film-stage__play {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  padding: 0;
  border: 0;
  color: var(--accent);
  background: transparent;
  font-family: var(--display);
  font-size: clamp(5rem, 12vw, 11rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.75;
  text-shadow: 0 0.08em 0.35em rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transform: translate(-50%, -50%) scale(0.92);
  transition: transform 0.4s var(--ease-out), opacity 0.25s ease;
  will-change: transform, opacity;
}

.film-stage__play:hover,
.film-stage__play:focus-visible {
  color: var(--accent);
  transform: translate(-50%, -50%) scale(1.04);
}

.film-stage.is-starting .film-stage__play {
  opacity: 0.72;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.96);
}

.film-stage.is-playing .film-stage__play,
.film-stage.is-ended .film-stage__play {
  opacity: 0;
  pointer-events: none;
}

.film-stage__label {
  position: absolute;
  z-index: 2;
  right: 1rem;
  bottom: 1rem;
  padding: 0.45rem 0.55rem;
  color: var(--paper);
  background: rgba(8, 8, 8, 0.65);
  font-size: 0.55rem;
  letter-spacing: 0.08em;
}

.film-stage__seek {
  position: absolute;
  z-index: 6;
  right: 1rem;
  bottom: 2rem;
  left: 1rem;
  width: calc(100% - 2rem);
  height: 1.25rem;
  margin: 0;
  padding: 0;
  appearance: none;
  border: 0;
  background: transparent;
  cursor: ew-resize;
  accent-color: var(--accent);
}

.film-stage__seek::-webkit-slider-runnable-track {
  height: 0.16rem;
  border-radius: 1rem;
  background: rgba(239, 237, 229, 0.38);
}

.film-stage__seek::-webkit-slider-thumb {
  width: 0.7rem;
  height: 0.7rem;
  margin-top: -0.27rem;
  appearance: none;
  border: 0;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0.7rem rgba(255, 75, 22, 0.42);
}

.film-stage__seek::-moz-range-track {
  height: 0.16rem;
  border-radius: 1rem;
  background: rgba(239, 237, 229, 0.38);
}

.film-stage__seek::-moz-range-thumb {
  width: 0.7rem;
  height: 0.7rem;
  border: 0;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0.7rem rgba(255, 75, 22, 0.42);
}

.film-stage.is-ended .film-stage__seek {
  opacity: 0;
  pointer-events: none;
}

.film-viewer {
  position: relative;
  width: 100%;
}

.film-side-navigation {
  position: absolute;
  z-index: 4;
  inset: 0;
  pointer-events: none;
}

.film-side {
  position: absolute;
  top: 50%;
  display: grid;
  gap: 0.25rem;
  width: clamp(6rem, 10vw, 10rem);
  padding: 0;
  border: 0;
  color: var(--paper);
  background: transparent;
  text-align: left;
  cursor: pointer;
  pointer-events: auto;
  transform: translateY(-50%);
  transition: opacity 0.25s ease, transform 0.35s var(--ease-out);
}

.film-side--left {
  left: var(--pad);
}

.film-side--right {
  right: var(--pad);
  text-align: right;
}

.film-side__direction {
  font-size: 1rem;
}

.film-side__index {
  color: var(--paper);
  opacity: 0.55;
}

.film-side strong {
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 3.5rem);
  font-weight: 400;
  line-height: 0.82;
  text-transform: uppercase;
}

.film-side--left:hover,
.film-side--left:focus-visible {
  transform: translate(-0.4rem, -50%);
}

.film-side--right:hover,
.film-side--right:focus-visible {
  transform: translate(0.4rem, -50%);
}

.film-stage__next {
  position: absolute;
  z-index: 5;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr auto 1fr;
  place-items: center;
  padding: clamp(1rem, 2vw, 2rem);
  overflow: hidden;
  color: var(--paper);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  isolation: isolate;
  transform: scale(1.025);
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.8s var(--ease-out);
}

.film-stage__next img,
.film-stage__next-shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
}

.film-stage__next img {
  object-fit: cover;
  filter: saturate(0.72) contrast(1.08) brightness(0.62);
  transform: scale(1.04);
  transition: filter 0.7s ease, transform 1.1s var(--ease-out);
}

.film-stage__next-shade {
  z-index: -1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.28) 50%, rgba(0, 0, 0, 0.72));
}

.film-stage__next strong {
  grid-column: 1;
  grid-row: 1;
  align-self: end;
  margin-bottom: clamp(1rem, 2vw, 2rem);
  color: var(--accent);
  font-family: var(--display);
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.78;
  text-align: center;
  text-transform: uppercase;
  transition: transform 0.35s var(--ease-out);
}

.film-stage__next-action {
  grid-column: 1;
  grid-row: 2;
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(2rem, 4.5vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 0.8;
  text-transform: uppercase;
  transition: transform 0.35s var(--ease-out);
}

.film-stage.is-ended .film-stage__next {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: scale(1);
}

.film-stage.is-ended .film-stage__label {
  opacity: 0;
}

.film-stage__next:hover img,
.film-stage__next:focus-visible img {
  filter: saturate(0.95) contrast(1.05) brightness(0.72);
  transform: scale(1);
}

.film-stage__next:hover strong,
.film-stage__next:focus-visible strong {
  transform: scale(1.1);
}

.film-stage__next:hover .film-stage__next-action,
.film-stage__next:focus-visible .film-stage__next-action {
  transform: scale(1.12);
}

.film-stage video:fullscreen,
.film-stage video:-webkit-full-screen {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  background: #000;
}

.project-footer {
  display: flex;
  justify-content: space-between;
  padding: 1rem var(--pad);
}

.project-error {
  display: grid;
  min-height: 80svh;
  place-items: center;
  padding: var(--pad);
  text-align: center;
}

.project-error h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(7rem, 20vw, 18rem);
  font-weight: 400;
}


@media (max-width: 1100px) {
  .film-stage {
    max-height: calc(100svh - 21rem);
  }

  .film-side-navigation {
    position: static;
    display: flex;
    align-items: flex-start;
    min-height: 4rem;
    padding: 0.8rem var(--pad) 0;
  }

  .film-side {
    position: static;
    display: grid;
    width: min(45%, 11rem);
    transform: none;
  }

  .film-side--right {
    margin-left: auto;
  }

  .film-side--left:hover,
  .film-side--left:focus-visible {
    transform: translateX(-0.3rem);
  }

  .film-side--right:hover,
  .film-side--right:focus-visible {
    transform: translateX(0.3rem);
  }
}

@media (max-width: 800px) {
  :root { --pad: 1rem; }

  .site-header {
    grid-template-columns: 1fr auto;
    padding-top: 1rem;
  }

  .site-header__status { display: none; }
  .brand strong { font-size: 2.35rem; }
  .site-nav { gap: 1.2rem; }



  .hero__topline { margin-top: 4.5rem; }

  .hero__title { margin-top: -4rem; }
  .hero__digits {
    height: 58vw;
    font-size: 76vw;
    line-height: 0.76;
  }

  .hero__world {
    margin-top: 0.35rem;
    font-size: 8.2vw;
  }

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

  .hero__time { display: none; }

  .section-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .section-head h2 {
    font-size: clamp(4.5rem, 22vw, 6rem);
  }

  .section-head p { max-width: 22rem; }

  .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem 0.65rem;
  }

  .project-card:nth-child(n) { grid-column: auto; }
  .project-card__name { font-size: clamp(1.75rem, 8vw, 2.6rem); }
  .project-card__play {
    display: none;
  }

  .manifesto {
    display: block;
    min-height: 100svh;
    padding-top: 3rem;
  }

  .manifesto__copy { margin-top: 2rem; }
  .manifesto h2 { font-size: clamp(2.6rem, 13vw, 4rem); }
  .manifesto__copy p { margin: 1.5rem 0 0 18%; }

  .manifesto__orbit {
    display: none;
  }

  .orbit-text span { height: 11.4rem; }

  .capabilities {
    position: relative;
    z-index: 4;
    left: auto;
    bottom: auto;
    width: 100%;
    margin: 3rem 0 0;
    transform: none;
  }

  .contact {
    min-height: auto;
    padding-top: 3rem;
  }


  .contact h2 {
    margin-top: 2.5rem;
    font-size: clamp(3.4rem, 14.5vw, 5rem);
    line-height: 0.74;
  }

  .contact__bottom {
    grid-template-columns: 1fr;
    margin-top: 3rem;
  }

  .contact__links {
    grid-column: 1;
  }


  .contact__channel {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.6rem;
  }

  .contact__channel > .mono-label {
    grid-column: 1;
    grid-row: 1;
  }

  .contact__channel strong {
    grid-column: 1;
    grid-row: 2;
    font-size: clamp(1.9rem, 10vw, 3rem);
  }

  .contact__arrow {
    grid-column: 2;
    grid-row: 1 / 3;
    width: 2.5rem;
  }

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

  .footer > :last-child { display: none; }
  .footer a { text-align: right; }

  .project-main { padding-top: 4rem; }

  .project-intro {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    padding-top: 2rem;
    padding-bottom: 1.25rem;
  }

  .project-intro__index,
  .project-intro__archive {
    grid-column: 1 / 4;
    grid-row: 1;
  }

  .project-title {
    grid-column: 1 / 7;
    grid-row: 2;
    margin-top: 1.5rem;
    font-size: clamp(3.25rem, 15vw, 5.25rem);
  }

  .project-intro__runtime,
  .project-intro__next {
    grid-column: 4 / 7;
    grid-row: 1;
  }

  .film-stage {
    width: 100%;
    aspect-ratio: 16 / 9;
  }

  .film-stage__play {
    font-size: clamp(4.5rem, 26vw, 7rem);
  }

  .film-stage__next strong {
    font-size: clamp(3.5rem, 18vw, 7rem);
  }

}

@media (max-width: 480px) {
  .section-head { margin-bottom: 3.5rem; }
  .project-card--portrait .project-card__visual { aspect-ratio: 4 / 4.5; }
  .manifesto__copy p { margin-left: 0; }
  .capabilities { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .grain { animation: none; }
  .js .reveal,
  .js .project-card { opacity: 1; transform: none; }
}


@keyframes hero-number-in {
  from { transform: translateY(112%); }
  to { transform: translateY(0); }
}

@keyframes world-track {
  from { opacity: 0; filter: blur(0.45rem); transform: scaleX(0.68); }
  to { opacity: 1; filter: blur(0); transform: scaleX(1); }
}

@keyframes hero-scale {
  from { transform: translateZ(0) scale(1.12); }
  to { transform: translateZ(0) scale(1.035); }
}

@keyframes record-pulse {
  50% { opacity: 0.35; }
}

@keyframes grain-shift {
  0% { transform: translate3d(0, 0, 0); }
  25% { transform: translate3d(3%, -4%, 0); }
  50% { transform: translate3d(-5%, 2%, 0); }
  75% { transform: translate3d(2%, 5%, 0); }
  100% { transform: translate3d(-3%, -2%, 0); }
}

@keyframes orbit-spin {
  to { transform: rotate(360deg); }
}

@keyframes page-cut {
  0% { transform: scaleY(0); transform-origin: bottom; }
  45% { transform: scaleY(1); transform-origin: bottom; }
  55% { transform: scaleY(1); transform-origin: top; }
  100% { transform: scaleY(0); transform-origin: top; }
}
