:root {
  --bg: #f7f7f2;
  --ink: #050505;
  --muted: #686864;
  --line: #d8d8d2;
  --orange: #050505;
  --page-edge: clamp(24px, 4.7vw, 60px);
  --motion-duration: 980ms;
  --motion-ease: cubic-bezier(0.68, 0, 0.08, 1);
  --image-reform-delay: 500ms;
  --inactive-title-scale: 0.667;
  --image-gap: 30px;
  --closed-row-step: 292px;
  --open-row-step: 292px;
  --image-frame: rgba(5, 5, 5, 0.34);
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--bg);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
}

body {
  cursor: auto;
}

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

.cursor-dot {
  position: fixed;
  z-index: 60;
  left: -9px;
  top: -9px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #050505;
  box-shadow: 0 0 18px rgba(5, 5, 5, 0.16), 0 0 50px rgba(5, 5, 5, 0.12);
  pointer-events: none;
  mix-blend-mode: normal;
  transition: transform 90ms linear;
}

.site-header {
  position: absolute;
  z-index: 80;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 38px clamp(32px, 2.9vw, 42px);
  color: rgba(245, 245, 240, 0.88);
  font-size: 10px;
  font-weight: 200;
  letter-spacing: 0.32em;
  line-height: 1;
  text-transform: uppercase;
}

.site-header::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 0 -18px;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.76) 0%, rgba(5, 5, 5, 0.42) 58%, rgba(5, 5, 5, 0) 100%);
  pointer-events: none;
}

.wordmark {
  font-weight: 200;
  text-shadow: 0 1px 12px rgba(5, 5, 5, 0.88);
}

.site-header .nav-links {
  margin-left: auto;
}

.nav-links {
  display: flex;
  gap: clamp(28px, 4vw, 58px);
}

.nav-links a {
  text-shadow: 0 1px 12px rgba(5, 5, 5, 0.88);
}

.nav-links a:not(:last-child)::after {
  content: "";
}

.app-shell {
  min-height: 100vh;
}

.home-intro {
  position: relative;
  display: grid;
  align-items: start;
  min-height: 100vh;
  padding: 43vh var(--page-edge) 92px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.82) 28%, rgba(5, 5, 5, 0.28) 58%, rgba(5, 5, 5, 0.04) 100%),
    url("./images/landing-page-sculpture.png") right center / min(78vw, 1180px) auto no-repeat,
    #050505;
  color: #f5f5f0;
}

.home-intro__copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 28px;
  max-width: 760px;
  margin-left: clamp(30px, 2.25vw, 36px);
  margin-top: 0;
}

.home-intro h1 {
  margin: 0;
  color: #f5f5f0;
  font-size: clamp(30px, 3.7vw, 54px);
  font-weight: 100;
  letter-spacing: 0.42em;
  line-height: 1;
  text-transform: uppercase;
}

.home-intro__copy span {
  display: block;
  width: 52px;
  height: 1px;
  background: #f5f5f0;
}

.home-intro p {
  margin: 0;
  color: rgba(245, 245, 240, 0.88);
  font-size: clamp(11px, 1vw, 15px);
  font-weight: 200;
  letter-spacing: 0.38em;
  line-height: 1.2;
  text-transform: uppercase;
}

.landing {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, var(--left, 1fr)) minmax(0, var(--right, 1fr));
  width: 100vw;
  min-height: 720vh;
  overflow: visible;
  transition: grid-template-columns var(--motion-duration) var(--motion-ease);
}

.landing[data-active="concept"] {
  --left: 1.36fr;
  --right: 0.64fr;
}

.landing[data-active="built"] {
  --left: 0.64fr;
  --right: 1.36fr;
}

.category-panel {
  position: relative;
  container-type: inline-size;
  min-width: 0;
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  text-align: left;
  overflow: hidden;
  min-height: 720vh;
}

.category-panel::before,
.category-panel::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  opacity: 0;
  filter: blur(0);
  mix-blend-mode: multiply;
  transform: translateZ(0) scaleX(0.96);
  pointer-events: none;
  will-change: opacity, transform;
}

.concept-panel::after {
  background:
    radial-gradient(ellipse 118% 86% at 100% 16%, rgba(5, 5, 5, 0.24) 0%, rgba(5, 5, 5, 0.16) 14%, rgba(5, 5, 5, 0.08) 34%, rgba(5, 5, 5, 0.025) 58%, rgba(5, 5, 5, 0) 78%),
    linear-gradient(270deg, rgba(5, 5, 5, 0.24) 0%, rgba(5, 5, 5, 0.14) 18%, rgba(5, 5, 5, 0.06) 48%, rgba(5, 5, 5, 0) 84%);
  transform-origin: right center;
}

.built-panel::before {
  background:
    radial-gradient(ellipse 118% 86% at 0% 16%, rgba(5, 5, 5, 0.24) 0%, rgba(5, 5, 5, 0.16) 14%, rgba(5, 5, 5, 0.08) 34%, rgba(5, 5, 5, 0.025) 58%, rgba(5, 5, 5, 0) 78%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.24) 0%, rgba(5, 5, 5, 0.14) 18%, rgba(5, 5, 5, 0.06) 48%, rgba(5, 5, 5, 0) 84%);
  transform-origin: left center;
}

.concept-panel::before {
  z-index: 5;
  inset: 0 0 0 auto;
  width: 3px;
  opacity: 1;
  background: linear-gradient(
    180deg,
    rgba(5, 5, 5, 0) 0,
    rgba(5, 5, 5, 0.01) 30px,
    rgba(5, 5, 5, 0.04) 48px,
    rgba(5, 5, 5, 0.14) 66px,
    rgba(5, 5, 5, 0.34) 82px,
    rgba(5, 5, 5, 0.66) 96px,
    #050505 112px,
    #050505 100%
  );
  filter: none;
  mix-blend-mode: normal;
  transform: none;
}

.landing[data-active="concept"] .concept-panel::after {
  animation: heat-burst 1180ms cubic-bezier(0.08, 0.82, 0.12, 1) both;
}

.landing[data-active="built"] .built-panel::before {
  animation: heat-burst 1180ms cubic-bezier(0.08, 0.82, 0.12, 1) both;
}

.concept-panel::after,
.built-panel::before {
  display: none;
}

@keyframes heat-burst {
  0% {
    opacity: 0;
    transform: translateZ(0) scaleX(0.86);
  }

  14% {
    opacity: 0.82;
    transform: translateZ(0) scaleX(1);
  }

  38% {
    opacity: 0.48;
    transform: translateZ(0) scaleX(1.02);
  }

  68% {
    opacity: 0.18;
    transform: translateZ(0) scaleX(1.03);
  }

  100% {
    opacity: 0;
    transform: translateZ(0) scaleX(1.04);
  }
}

.concept-panel {
  border-right: 0;
  box-shadow: none;
}

.category-panel h1 {
  position: absolute;
  z-index: 4;
  margin: 0;
  font-size: clamp(58px, 7.7vw, 104px);
  font-weight: 300;
  letter-spacing: -0.055em;
  line-height: 0.86;
  text-transform: uppercase;
  transition:
    opacity var(--motion-duration) var(--motion-ease),
    left var(--motion-duration) var(--motion-ease),
    transform var(--motion-duration) var(--motion-ease),
    font-weight var(--motion-duration) var(--motion-ease);
  will-change: transform, opacity;
}

.concept-panel h1 {
  top: 70px;
  left: var(--page-edge);
  transform: scale(var(--inactive-title-scale));
  transform-origin: left top;
}

.built-panel h1 {
  top: 70px;
  left: calc(100cqw - min(26vw, 310px) - var(--page-edge));
  max-width: none;
  transform: scale(var(--inactive-title-scale));
  transform-origin: left top;
}

.landing[data-active="concept"] .concept-panel h1 {
  font-weight: 400;
  transform: translateY(-4px) scale(1);
}

.landing[data-active="built"] .built-panel h1 {
  left: calc(100cqw - min(58vw, 760px) - var(--page-edge));
  white-space: nowrap;
  font-weight: 400;
  transform: translateY(-4px) scale(1);
  transform-origin: left top;
}

.landing[data-active="built"] .concept-panel h1 {
  transform: translateX(-2.2vw) translateY(6px) scale(var(--inactive-title-scale));
}

.landing[data-active="concept"] .built-panel h1 {
  left: calc(100cqw - min(22vw, 292px) - var(--page-edge));
  transform: translateX(2.2vw) translateY(6px) scale(var(--inactive-title-scale));
}

.landing[data-active="concept"] .built-panel,
.landing[data-active="built"] .concept-panel {
  opacity: 0.42;
}

.category-panel {
  transition: opacity var(--motion-duration) var(--motion-ease);
}

.image-field {
  position: absolute;
  z-index: 1;
  top: 170px;
  height: calc(23 * var(--closed-row-step));
  transition:
    width var(--motion-duration) var(--motion-ease) var(--image-reform-delay),
    transform var(--motion-duration) var(--motion-ease) var(--image-reform-delay);
}

.concept-panel .image-field {
  left: var(--page-edge);
  width: min(31vw, 374px);
}

.built-panel .image-field {
  right: var(--page-edge);
  width: min(26vw, 310px);
}

.landing[data-active="concept"] .concept-panel .image-field,
.landing[data-active="built"] .built-panel .image-field {
  width: min(58vw, 760px);
}

.landing[data-active="concept"] .built-panel .image-field,
.landing[data-active="built"] .concept-panel .image-field {
  width: min(22vw, 292px);
}

.image-box {
  position: absolute;
  left: 0;
  top: 0;
  overflow: visible;
  transition:
    opacity 980ms var(--motion-ease) var(--image-reform-delay),
    width var(--motion-duration) var(--motion-ease) var(--image-reform-delay),
    height var(--motion-duration) var(--motion-ease) var(--image-reform-delay),
    transform var(--motion-duration) var(--motion-ease) var(--image-reform-delay),
    filter 980ms var(--motion-ease);
  will-change: transform, opacity;
}

.image-box {
  width: 100%;
  height: 238px;
  opacity: var(--base-opacity);
  border: 1px solid var(--image-frame);
  transform: translate(0, var(--closed-y, calc(var(--i) * var(--closed-row-step))));
}

.image-box img,
.image-box video {
  display: block;
  width: 100%;
  height: auto;
}

.image-box.fit-cover {
  overflow: visible;
}

.image-box.fit-cover .media-link {
  height: 100%;
  overflow: hidden;
}

.image-box.fit-cover img,
.image-box.fit-cover video {
  height: 100%;
  object-fit: cover;
}

.image-caption {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 9px);
  display: block;
  color: rgba(5, 5, 5, 0.62);
  font-size: clamp(12px, 1.22vw, 16px);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
  pointer-events: none;
}

.built-panel .image-caption {
  text-align: right;
}

.concept-panel .image-caption {
  text-align: left;
}

.image-box video {
  background: #f7f7f2;
}

.media-link {
  display: block;
  width: 100%;
}

.image-box.has-image {
  aspect-ratio: var(--image-aspect);
  background: #e7e5de;
  height: auto;
}

.tone-a {
  background: #d8d8d2;
}

.tone-b {
  background: #a7a7a0;
}

.tone-c {
  background: #eeeeea;
}

.tone-d {
  background: #c7c7c1;
}

.tone-e {
  background: #8e8f8b;
}

.tone-f {
  background: #e7e5de;
}

.landing[data-active="concept"] .concept-panel .image-box,
.landing[data-active="built"] .built-panel .image-box {
  width: calc((100% - 20px) / 2);
  height: 238px;
  transform: translate(
    var(--open-x, calc(var(--col) * (100% + 20px))),
    var(--open-y, calc(var(--row) * var(--open-row-step)))
  );
}

.landing[data-active="concept"] .concept-panel .image-box.has-image,
.landing[data-active="built"] .built-panel .image-box.has-image {
  height: auto;
}

.category-panel:hover .image-box,
.landing[data-active="concept"] .concept-panel .image-box,
.landing[data-active="built"] .built-panel .image-box {
  opacity: 1;
}

.image-box:hover {
  opacity: 1;
  filter: brightness(0.98);
}

.landing-note a::after {
  content: " ›";
}

.archive-link-wrap {
  position: fixed;
  z-index: 32;
  left: 50%;
  bottom: clamp(22px, 4vw, 44px);
  width: min(760px, calc(100vw - (var(--page-edge) * 2)));
  transform: translateX(-50%);
}

.archive-link-wrap--tile {
  position: absolute;
  z-index: auto;
  inset: 0;
  width: auto;
  height: auto;
  transform: none;
}

.archive-link {
  position: relative;
  display: grid;
  grid-template-rows: 1fr;
  min-height: clamp(238px, 31vh, 330px);
  overflow: hidden;
  padding: clamp(8px, 1.7vw, 18px);
  border: 1px solid rgba(255, 241, 168, 0.52);
  background:
    radial-gradient(ellipse 100% 78% at 50% 50%, rgba(255, 241, 168, 0.18), rgba(255, 241, 168, 0.04) 44%, rgba(5, 5, 5, 0) 72%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012) 32%, rgba(0, 0, 0, 0.66)),
    #050505;
  box-shadow: inset 0 0 42px rgba(255, 241, 168, 0.04), 0 0 24px rgba(255, 241, 168, 0.12);
  transition: border-color 260ms ease, box-shadow 260ms ease, transform 260ms ease;
}

.archive-link-wrap--tile .archive-link {
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: clamp(2px, 1.2cqw, 8px);
  border: 0;
}

.archive-link::before,
.archive-link::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.archive-link::before {
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 241, 168, 0.16) 48%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 241, 168, 0.14) 52%, transparent 100%);
  opacity: 0.16;
  transform: translateX(-70%);
  animation: archive-projector-sweep 7s ease-in-out infinite;
}

.archive-link::after {
  display: none;
}

.archive-link:hover {
  border-color: rgba(255, 241, 168, 0.92);
  box-shadow: inset 0 0 54px rgba(255, 241, 168, 0.07), 0 0 42px rgba(255, 241, 168, 0.34);
  transform: translateY(-2px);
}

.archive-link:hover .archive-frame,
.archive-link:hover .archive-title {
  animation-play-state: paused;
}

.archive-link__grain {
  position: absolute;
  inset: 0;
  opacity: 0.21;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.4) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.22) 0 1px, transparent 1px),
    radial-gradient(circle at 46% 52%, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px);
  background-size: 31px 29px, 47px 43px, 71px 67px;
  mix-blend-mode: screen;
  animation: archive-grain 700ms steps(2) infinite;
}

.archive-link__label,
.archive-link__header,
.archive-link__cta {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(245, 245, 240, 0.74);
  font-size: clamp(10px, 1.2vw, 12px);
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.archive-link__header {
  position: absolute;
  top: clamp(10px, 4cqw, 22px);
  left: clamp(8px, 2.8cqw, 14px);
  right: clamp(8px, 2.8cqw, 14px);
  display: block;
  color: rgba(255, 241, 168, 0.88);
  font-size: clamp(18px, 8.8cqw, 42px);
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  pointer-events: none;
}

.archive-link__cta {
  justify-content: center;
  color: #fff1a8;
  letter-spacing: 0.14em;
}

.archive-link__stage {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  min-height: 0;
}

.archive-frame {
  position: absolute;
  display: block;
  width: min(94%, 680px);
  max-height: 90%;
  object-fit: contain;
  opacity: 0;
  filter: blur(18px) brightness(1.35) contrast(1.08);
  transform: scale(1.06);
  animation: archive-title-focus var(--archive-cycle-duration, 37.5s) ease-in-out infinite;
  animation-delay: var(--archive-title-delay);
  will-change: opacity, filter, transform;
}

.archive-title {
  position: absolute;
  max-width: 92%;
  color: #f5f5f0;
  font-size: clamp(38px, 7.2vw, 86px);
  line-height: 0.9;
  text-align: center;
  text-transform: uppercase;
  opacity: 0;
  filter: blur(18px);
  transform: scale(1.06);
  animation: archive-title-focus 15s ease-in-out infinite;
  animation-delay: var(--archive-title-delay);
  will-change: opacity, filter, transform;
}

/* Typography styles: change these class names in film-archive-link.js to retune each title. */
.archive-title--alien {
  color: #d7ffe5;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 300;
  letter-spacing: 0.24em;
  text-shadow: 0 0 18px rgba(125, 255, 184, 0.42);
}

.archive-title--marvel {
  color: #f5f5f0;
  font-family: Impact, "Arial Black", sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
  transform-origin: center;
  text-shadow: 0 0 18px rgba(255, 36, 36, 0.28);
}

.archive-title--blade {
  color: #e7f5ff;
  font-family: "Arial Narrow", Arial, Helvetica, sans-serif;
  font-weight: 300;
  letter-spacing: 0.32em;
  text-shadow: 0 0 16px rgba(80, 186, 255, 0.45), 0 0 28px rgba(255, 120, 44, 0.25);
}

.archive-title--super8 {
  color: #fff1a8;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-shadow: 0 0 24px rgba(255, 201, 70, 0.42);
}

.archive-title--elroyale {
  color: #f2dfc1;
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-shadow: 0 0 14px rgba(206, 47, 32, 0.34), 0 0 24px rgba(255, 241, 168, 0.24);
}

.archive-title--starship {
  color: #f5f5f0;
  font-family: Impact, "Arial Black", sans-serif;
  font-style: italic;
  letter-spacing: 0.1em;
  text-shadow: 3px 0 0 rgba(78, 120, 170, 0.64), -2px 0 0 rgba(190, 36, 28, 0.42);
}

.image-box.has-archive {
  container-type: inline-size;
  border: 0;
  background: #050505;
  min-height: 0;
}

.image-box.has-archive .archive-link__stage {
  min-height: 0;
}

.image-box.has-archive .archive-link__label,
.image-box.has-archive .archive-link__cta {
  font-size: clamp(7px, 3.2cqw, 11px);
}

.image-box.has-archive .archive-frame {
  width: 94%;
  max-height: 86%;
}

.image-box.has-archive .archive-title {
  max-width: 88%;
  font-size: clamp(23px, 11cqw, 56px);
}

.image-box.has-archive .archive-title--alien,
.image-box.has-archive .archive-title--blade {
  letter-spacing: 0.16em;
}

@keyframes archive-title-focus {
  0%,
  0.4% {
    opacity: 0;
    filter: blur(20px) brightness(1.35) contrast(1.08);
    transform: scale(1.08);
  }

  1.15%,
  6.35% {
    opacity: 1;
    filter: blur(0) brightness(1.35) contrast(1.08);
    transform: scale(1);
  }

  7.14%,
  100% {
    opacity: 0;
    filter: blur(18px) brightness(1.35) contrast(1.08);
    transform: scale(0.985);
  }
}

@keyframes archive-projector-sweep {
  0%,
  36% {
    transform: translateX(-82%);
    opacity: 0;
  }

  48% {
    opacity: 0.2;
  }

  70%,
  100% {
    transform: translateX(82%);
    opacity: 0;
  }
}

@keyframes archive-grain {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(-2%, 1%);
  }
}

.project-page {
  background: #f5f5f0;
  color: #050505;
  font-family: "Helvetica Neue", "Arial Nova Light", "Segoe UI Light", Arial, Helvetica, sans-serif;
  font-weight: 200;
}

.project-page .cursor-dot {
  display: none;
}

.project-header {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  margin: 0 var(--page-edge);
  padding: 41px 0 21px;
  border-bottom: 1px solid rgba(5, 5, 5, 0.38);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.2;
}

.project-header a {
  color: inherit;
  font-weight: 300;
  text-decoration: none;
}

.project-main {
  min-height: 100vh;
  padding: 76px var(--page-edge) 80px;
}

.project-intro {
  display: grid;
  grid-template-columns: minmax(180px, 0.45fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  max-width: 1180px;
  padding: 31px 0 34px;
  border-top: 1px solid rgba(5, 5, 5, 0.38);
  border-bottom: 1px solid rgba(5, 5, 5, 0.38);
  margin-bottom: 64px;
}

.project-intro p {
  margin: 0;
  font-size: 20px;
  font-weight: 200;
  line-height: 1.2;
}

.project-intro h1 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(58px, 8vw, 118px);
  font-weight: 100;
  line-height: 0.9;
  letter-spacing: 0;
}

.project-intro dl {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  gap: 16px 28px;
  margin: 21px 0 0;
}

.project-intro div {
  min-width: 0;
}

.project-intro dt,
.project-intro dd {
  margin: 0;
  font-size: 18px;
  font-weight: 200;
  letter-spacing: 0;
  line-height: 1.22;
}

.project-intro dt {
  color: #686864;
  margin-bottom: 6px;
  font-weight: 300;
}

.project-image {
  margin: 0;
  max-width: 1180px;
}

.project-image + .project-image {
  margin-top: 48px;
}

.project-textbox {
  display: block;
  width: min(100%, 980px);
  min-height: 180px;
  margin: 48px 0;
  padding: 18px;
  border: 1px solid #050505;
  border-radius: 0;
  background: transparent;
  color: #050505;
  font: inherit;
  font-size: 18px;
  line-height: 1.35;
  resize: vertical;
}

.project-textbox::placeholder {
  color: #686864;
}

.project-image img,
.project-image video {
  display: block;
  width: min(100%, 980px);
  height: auto;
  border: 1px solid #050505;
}

.project-image-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
  max-width: 1180px;
}

.project-image-grid .project-image {
  margin: 0;
}

.project-image-grid .project-image + .project-image {
  margin-top: 0;
}

.project-image-grid .project-image img,
.project-image-grid .project-image video {
  width: 100%;
}

.collaborators-toggle {
  max-width: 1180px;
  border-top: 1px solid rgba(5, 5, 5, 0.46);
  border-bottom: 1px solid rgba(5, 5, 5, 0.46);
}

.collaborators-toggle summary {
  cursor: pointer;
  padding: 12px 0;
  color: #050505;
  font-size: 18px;
  font-weight: 200;
  letter-spacing: 0;
  line-height: 1.2;
}

.collaborators-toggle p {
  max-width: 720px;
  margin: 0 0 14px;
  color: #686864;
  font-size: 16px;
  font-weight: 200;
  line-height: 1.3;
}

.contact-page {
  --contact-bg: #f6f4ee;
  --contact-ink: #050505;
  --contact-line: rgba(5, 5, 5, 0.38);
  --contact-edge: clamp(24px, 3.8vw, 56px);
  background: var(--contact-bg);
  color: var(--contact-ink);
  font-family: "Helvetica Neue", "Arial Nova Light", "Segoe UI Light", Arial, Helvetica, sans-serif;
  font-weight: 200;
}

.contact-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin: 0 var(--contact-edge);
  padding: 41px 0 21px;
  border-bottom: 1px solid var(--contact-line);
  color: var(--contact-ink);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.2;
}

.contact-header__identity {
  display: grid;
  gap: 5px;
}

.contact-header a {
  color: inherit;
  font-weight: 300;
  text-decoration: none;
}

.contact-header__identity p {
  margin: 0;
  font-weight: 200;
}

.contact-main {
  min-height: calc(100vh - 106px);
  padding: 0 var(--contact-edge) 38px;
}

.contact-hero {
  padding: clamp(58px, 5.1vw, 76px) 0 clamp(36px, 3.4vw, 50px);
}

.contact-hero h1 {
  max-width: 7.5ch;
  margin: 0;
  font-size: 156px;
  font-weight: 100;
  letter-spacing: 0;
  line-height: 0.86;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--contact-line);
  border-bottom: 1px solid var(--contact-line);
}

.contact-info article {
  min-height: 181px;
  padding: 31px 52px 34px 24px;
}

.contact-info article + article {
  border-left: 1px solid var(--contact-line);
}

.contact-info h2,
.contact-card p {
  margin: 0;
  font-size: 21px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.18;
}

.contact-info p {
  max-width: 430px;
  margin: 13px 0 0;
  font-size: 21px;
  font-weight: 200;
  letter-spacing: 0;
  line-height: 1.22;
}

.contact-pdf-link {
  display: inline-block;
  margin-top: 17px;
  color: inherit;
  font-size: 16px;
  font-weight: 200;
  letter-spacing: 0;
  line-height: 1;
  text-decoration: none;
  border-bottom: 1px solid rgba(5, 5, 5, 0.46);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
  border: 1px solid rgba(5, 5, 5, 0.58);
}

.contact-card {
  display: grid;
  align-content: start;
  min-height: 338px;
  padding: 38px 33px 33px;
  background: transparent;
}

.contact-card + .contact-card {
  border-left: 1px solid rgba(5, 5, 5, 0.58);
}

.contact-card p {
  display: flex;
  gap: 29px;
}

.contact-card p span {
  font: inherit;
}

.contact-card i {
  display: block;
  width: 28px;
  height: 1px;
  margin: 34px 0 37px;
  background: rgba(5, 5, 5, 0.8);
}

.contact-card a {
  display: block;
  color: inherit;
  font-size: 30px;
  font-weight: 200;
  letter-spacing: 0;
  line-height: 1.04;
  text-decoration: none;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: normal;
}

.contact-imdb-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-width: 92px;
  min-height: 42px;
  margin: -8px 0 24px;
  padding: 2px 13px 0;
  border: 1px solid rgba(5, 5, 5, 0.72);
  color: inherit;
  font-size: 28px;
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1;
}

.contact-card small {
  display: block;
  margin-top: 24px;
  font-size: 21px;
  font-weight: 200;
  letter-spacing: 0;
  line-height: 1.18;
}

.contact-card::after {
  content: "";
  align-self: end;
  display: block;
  height: 1px;
  margin-top: 58px;
  background: rgba(5, 5, 5, 0.8);
}

@media (max-width: 1080px) {
  .contact-hero h1 {
    font-size: 118px;
  }

  .contact-info article,
  .contact-card {
    padding-left: 24px;
    padding-right: 24px;
  }

  .contact-card a {
    font-size: 22px;
  }
}

@media (max-width: 760px) {
  .contact-page {
    --contact-edge: 18px;
  }

  .contact-header {
    padding: 24px 0 16px;
    font-size: 16px;
  }

  .contact-main {
    padding-bottom: 28px;
  }

  .contact-hero {
    padding: 52px 0 30px;
  }

  .contact-hero h1 {
    font-size: 72px;
  }

  .contact-info,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-info article {
    min-height: 0;
    padding: 24px 0;
  }

  .contact-info article + article,
  .contact-card + .contact-card {
    border-left: 0;
    border-top: 1px solid var(--contact-line);
  }

  .contact-info h2,
  .contact-card p {
    font-size: 18px;
  }

  .contact-info p,
  .contact-card small {
    font-size: 18px;
  }

  .contact-card {
    min-height: 260px;
    padding: 28px 24px 24px;
  }

  .contact-card a {
    font-size: 23px;
  }
}

.project-feature-media {
  display: grid;
  gap: 18px;
}

.project-feature-media .project-image {
  max-width: none;
}

.project-feature-media .project-image img {
  width: 100%;
  max-height: 76vh;
  object-fit: cover;
}

.project-video {
  aspect-ratio: 16 / 9;
  background: #050505;
}

.project-video iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.project-video-poster {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: #050505;
  cursor: pointer;
}

.project-video-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
}

.project-video-poster span {
  position: absolute;
  inset: 50% auto auto 50%;
  width: clamp(64px, 8vw, 96px);
  aspect-ratio: 1;
  border: 1px solid rgba(245, 245, 240, 0.82);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.62);
  transform: translate(-50%, -50%);
}

.project-video-poster span::before {
  content: "";
  position: absolute;
  left: 39%;
  top: 31%;
  width: 0;
  height: 0;
  border-top: clamp(12px, 1.55vw, 18px) solid transparent;
  border-bottom: clamp(12px, 1.55vw, 18px) solid transparent;
  border-left: clamp(18px, 2.2vw, 27px) solid #f5f5f0;
}

.editorial-project-main {
  display: grid;
  gap: 58px;
}

.editorial-intro {
  margin-bottom: 0;
}

.editorial-lede,
.editorial-copy {
  display: grid;
  grid-template-columns: minmax(180px, 0.32fr) minmax(0, 0.68fr);
  gap: 28px;
  max-width: 1180px;
  padding: 0 0 8px;
}

.editorial-lede p,
.editorial-copy p {
  margin: 0;
  color: #050505;
  font-size: 21px;
  font-weight: 200;
  letter-spacing: 0;
  line-height: 1.22;
}

.editorial-lede a,
.editorial-copy a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(5, 5, 5, 0.42);
}

.editorial-lede p:first-child,
.editorial-copy p:first-child {
  color: #686864;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.2;
}

.editorial-copy h2 {
  grid-column: 2;
  margin: 0;
  max-width: 820px;
  font-size: clamp(44px, 5.6vw, 82px);
  font-weight: 100;
  letter-spacing: 0;
  line-height: 0.96;
}

.editorial-copy p:last-child {
  grid-column: 2;
  max-width: 720px;
}

.editorial-section {
  display: grid;
  gap: 34px;
}

.editorial-hero img,
.project-image--wide img {
  width: min(100%, 1180px);
}

.editorial-hero img {
  width: min(80%, 944px);
}

.pinocchio-hero img {
  width: min(40%, 472px);
}

.costume-hero img {
  width: min(60%, 708px);
}

.editorial-captioned {
  display: grid;
  gap: 10px;
}

.editorial-captioned figcaption {
  color: #686864;
  font-size: 14px;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.action-vehicles-page {
  --av-blue: #050505;
  --av-sand: #f5f5f0;
  --av-paper: #f5f5f0;
  --av-grey: #d8d8d2;
  background: var(--av-blue);
  color: var(--av-paper);
}

.action-vehicles-page .project-header {
  color: var(--av-paper);
  mix-blend-mode: normal;
}

.action-vehicle-main {
  background: var(--av-blue);
  overflow: hidden;
}

.av-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  min-height: 100vh;
  padding: 112px var(--page-edge) 72px;
  background:
    linear-gradient(90deg, var(--av-blue) 0 61%, var(--av-grey) 61% 100%);
}

.av-hero__text {
  align-self: start;
  max-width: 620px;
  padding-top: 18px;
}

.av-hero__text p,
.av-band p,
.av-credit p,
.av-collage__label p {
  margin: 0;
  color: rgba(235, 229, 217, 0.72);
  font-size: clamp(15px, 1.8vw, 26px);
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.av-hero__text h1 {
  margin: 20px 0 26px;
  max-width: 760px;
  font-size: clamp(52px, 7.8vw, 118px);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 0.9;
  text-transform: uppercase;
}

.av-hero__text span {
  display: block;
  width: min(100%, 620px);
  height: 2px;
  margin-bottom: 48px;
  background: rgba(235, 229, 217, 0.7);
}

.av-hero__text h2 {
  margin: 0 0 16vh;
  max-width: 560px;
  font-size: clamp(24px, 3.1vw, 48px);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.12;
  text-transform: uppercase;
}

.av-hero__text dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin: 0;
}

.av-hero__text dt,
.av-hero__text dd {
  margin: 0;
  font-size: 15px;
  line-height: 1.35;
}

.av-hero__text dt {
  color: rgba(235, 229, 217, 0.58);
}

.av-hero__image {
  align-self: center;
  margin: 0 0 0 -8vw;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.32);
}

.av-hero__image img,
.av-wide img,
.av-duo img,
.av-strip img,
.av-collage img,
.av-collage video,
.av-credit img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.av-project {
  padding: 0 var(--page-edge) 86px;
}

.av-wide {
  margin: 0 calc(var(--page-edge) * -1);
  height: min(76vh, 820px);
}

.av-band {
  display: grid;
  gap: 28px;
  padding: 42px var(--page-edge);
  background: var(--av-blue);
  text-align: center;
}

.av-band h2,
.av-credit h2,
.av-collage__label h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 58px);
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 1.05;
  text-transform: uppercase;
}

.av-duo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
}

.av-duo img {
  aspect-ratio: 4 / 3;
}

.av-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 28px;
}

.av-strip img {
  aspect-ratio: 1.22 / 1;
}

.av-collage {
  display: grid;
  grid-template-columns: 0.22fr repeat(2, minmax(0, 1fr));
  gap: 22px;
  padding: 80px var(--page-edge) 96px;
  background:
    radial-gradient(circle at 100% 0, var(--av-blue) 0 20%, transparent 20.2%),
    var(--av-grey);
  color: var(--av-blue);
}

.av-collage__label {
  grid-row: 1 / span 3;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  align-self: stretch;
  justify-self: center;
  display: flex;
  gap: 22px;
  justify-content: space-between;
  padding: 10px 0;
}

.av-collage__label p {
  color: rgba(6, 20, 37, 0.68);
}

.av-collage__large {
  grid-column: span 2;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}

.av-collage img:not(.av-collage__large),
.av-collage video {
  aspect-ratio: 1.28 / 1;
}

.av-project--credits {
  display: grid;
  gap: 28px;
  padding-top: 80px;
  background: linear-gradient(90deg, var(--av-blue) 0 31%, var(--av-grey) 31% 100%);
}

.av-credit {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.av-credit div {
  text-align: center;
}

.av-credit img {
  aspect-ratio: 16 / 9;
}

.filmography-page {
  min-height: 100vh;
  background: #050505;
  color: #f5f5f0;
}

.filmography-page::before {
  content: "";
  position: fixed;
  z-index: 0;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.9) 0%, rgba(5, 5, 5, 0.66) 28%, rgba(5, 5, 5, 0.18) 58%, rgba(5, 5, 5, 0.08) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0) 0%, rgba(5, 5, 5, 0) 62%, #050505 100%),
    url("./images/alien-filmography-back-image.png") 72% top / auto 118vh no-repeat,
    #050505;
  pointer-events: none;
}

.filmography-page::after {
  content: "";
  position: fixed;
  z-index: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 36vh;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0), #050505 82%);
  pointer-events: none;
}

.filmography-header {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 38px clamp(32px, 2.9vw, 42px);
  color: rgba(245, 245, 240, 0.88);
  font-size: 10px;
  font-weight: 200;
  letter-spacing: 0.32em;
  line-height: 1;
  text-transform: uppercase;
}

.filmography-header nav {
  display: flex;
  gap: clamp(28px, 4vw, 58px);
}

.filmography-main {
  position: relative;
  z-index: 1;
  min-height: 180vh;
  padding: 92px clamp(32px, 6vw, 92px) 140px;
}

.filmography-copy {
  width: min(100%, 430px);
}

.filmography-copy h1 {
  margin: 0;
  color: rgba(245, 245, 240, 0.92);
  font-size: clamp(24px, 2.65vw, 42px);
  font-weight: 200;
  letter-spacing: 0.34em;
  line-height: 1;
  text-transform: uppercase;
}

.filmography-copy > span {
  display: block;
  width: 54px;
  height: 1px;
  margin: 32px 0 40px;
  background: rgba(255, 220, 118, 0.78);
}

.filmography-range,
.filmography-kicker,
.filmography-list p,
.filmography-more {
  margin: 0;
  font-size: 10px;
  font-weight: 200;
  letter-spacing: 0.28em;
  line-height: 1.45;
  text-transform: uppercase;
}

.filmography-range,
.filmography-more {
  color: rgba(255, 220, 118, 0.86);
}

.filmography-imdb {
  display: block;
  width: min(190px, 56vw);
  margin-top: 24px;
  opacity: 0.82;
  transition: opacity 180ms ease, transform 180ms ease;
}

.filmography-imdb:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.filmography-imdb img {
  display: block;
  width: 100%;
  height: auto;
}

.filmography-kicker {
  margin-top: 8px;
  color: rgba(245, 245, 240, 0.74);
}

.filmography-list {
  display: grid;
  gap: 34px;
  margin: 58px 0 44px;
  padding: 0;
  list-style: none;
}

.filmography-list li {
  display: grid;
  gap: 7px;
}

.filmography-list h2 {
  margin: 0;
  color: rgba(245, 245, 240, 0.92);
  font-size: clamp(17px, 1.75vw, 27px);
  font-weight: 200;
  letter-spacing: 0.34em;
  line-height: 1.18;
  text-transform: uppercase;
}

.filmography-list p {
  color: rgba(245, 245, 240, 0.68);
}

.filmography-list p:first-of-type {
  color: rgba(255, 220, 118, 0.82);
}

.project-archive-page {
  background: #050505;
  color: #f5f5f0;
}

.project-archive-page .project-header {
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0));
}

.project-archive-list {
  display: grid;
  max-width: 1180px;
  border-top: 1px solid rgba(255, 241, 168, 0.42);
}

.project-archive-list a {
  display: flex;
  align-items: center;
  min-height: 92px;
  border-bottom: 1px solid rgba(255, 241, 168, 0.28);
  color: rgba(245, 245, 240, 0.88);
  font-size: clamp(28px, 5.4vw, 78px);
  letter-spacing: 0.08em;
  line-height: 0.92;
  text-transform: uppercase;
  transition: color 220ms ease, padding-left 220ms ease, text-shadow 220ms ease;
}

.project-archive-list a:hover {
  color: #fff1a8;
  padding-left: 18px;
  text-shadow: 0 0 18px rgba(255, 241, 168, 0.28);
}

@media (max-width: 760px) {
  :root {
    --mobile-row-step: 160px;
    --page-edge: 18px;
  }

  .landing[data-active="concept"] .concept-panel::after,
  .landing[data-active="built"] .built-panel::before {
    animation: none;
  }

  .category-panel::before,
  .category-panel::after {
    display: none;
  }

  .cursor-dot {
    display: none;
  }

  .site-header {
    padding: 18px;
    font-size: 9px;
    letter-spacing: 0.18em;
  }

  .home-intro {
    min-height: 86vh;
    padding: 88px 18px 56px;
    background:
      linear-gradient(90deg, rgba(5, 5, 5, 0.95) 0%, rgba(5, 5, 5, 0.8) 44%, rgba(5, 5, 5, 0.34) 100%),
      url("./images/landing-page-sculpture.png") right center / auto 100% no-repeat,
      #050505;
  }

  .home-intro__copy {
    gap: 22px;
    margin-top: 16vh;
  }

  .home-intro h1 {
    font-size: clamp(26px, 7.6vw, 40px);
    letter-spacing: 0.24em;
  }

  .home-intro p {
    font-size: 10px;
    letter-spacing: 0.24em;
  }

  .nav-links {
    gap: 12px;
  }

  .nav-links a:nth-child(1),
  .nav-links a:nth-child(2) {
    display: none;
  }

  .filmography-page::before {
    background:
      linear-gradient(90deg, rgba(5, 5, 5, 0.92) 0%, rgba(5, 5, 5, 0.78) 50%, rgba(5, 5, 5, 0.38) 100%),
      linear-gradient(180deg, rgba(5, 5, 5, 0) 0%, rgba(5, 5, 5, 0) 54%, #050505 100%),
      url("./images/alien-filmography-back-image.png") 64% top / auto 100vh no-repeat,
      #050505;
  }

  .filmography-header {
    padding: 18px;
    font-size: 9px;
    letter-spacing: 0.18em;
  }

  .filmography-header nav {
    gap: 12px;
  }

  .filmography-header nav a:nth-child(1),
  .filmography-header nav a:nth-child(2) {
    display: none;
  }

  .filmography-main {
    min-height: 190vh;
    padding: 88px 18px 100px;
  }

  .filmography-copy {
    width: min(100%, 360px);
  }

  .filmography-list {
    gap: 28px;
  }

  .filmography-list h2 {
    font-size: 17px;
    letter-spacing: 0.24em;
  }

  .landing {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    min-height: auto;
  }

  .built-panel {
    order: 1;
  }

  .concept-panel {
    order: 2;
  }

  .category-panel {
    display: block;
    min-height: 2440px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .category-panel h1 {
    top: 70px;
    left: 18px;
    right: auto;
    max-width: 9ch;
    font-size: clamp(48px, 14vw, 72px);
  }

  .concept-panel .image-field,
  .built-panel .image-field,
  .landing[data-active="concept"] .concept-panel .image-field,
  .landing[data-active="built"] .built-panel .image-field,
  .landing[data-active="concept"] .built-panel .image-field,
  .landing[data-active="built"] .concept-panel .image-field {
    left: 18px;
    right: 18px;
    top: 150px;
    width: auto;
    height: 2260px;
  }

  .image-box,
  .landing[data-active="concept"] .concept-panel .image-box,
  .landing[data-active="built"] .built-panel .image-box {
    width: calc((100% - 16px) / 2);
    height: 130px;
    transform: translate(
      var(--mobile-x, calc(var(--col) * (100% + 16px))),
      var(--mobile-y, calc(var(--row) * var(--mobile-row-step)))
    );
  }

  .image-box.has-image,
  .landing[data-active="concept"] .concept-panel .image-box.has-image,
  .landing[data-active="built"] .built-panel .image-box.has-image {
    height: auto;
  }

  .archive-link-wrap {
    left: 18px;
    right: 18px;
    bottom: 14px;
    width: auto;
    transform: none;
  }

  .archive-link {
    min-height: 210px;
    padding: 16px;
  }

  .archive-link::after {
    inset: 10px;
  }

  .archive-link__label {
    display: grid;
    gap: 5px;
  }

  .archive-title {
    font-size: clamp(30px, 10vw, 48px);
    max-width: 88%;
  }

  .archive-title--alien,
  .archive-title--blade {
    letter-spacing: 0.15em;
  }

  .project-header {
    padding: 18px;
    font-size: 14px;
  }

  .project-main {
    padding: 88px 18px 56px;
  }

  .project-intro {
    display: block;
    margin-bottom: 34px;
  }

  .project-intro h1 {
    margin-top: 24px;
    font-size: clamp(44px, 16vw, 68px);
  }

  .project-intro dl {
    grid-column: auto;
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .project-image img {
    width: 100%;
  }

  .project-image-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .editorial-project-main {
    gap: 42px;
  }

  .editorial-lede,
  .editorial-copy {
    display: block;
  }

  .editorial-lede p + p,
  .editorial-copy h2,
  .editorial-copy p:last-child {
    margin-top: 18px;
  }

  .av-hero {
    display: block;
    min-height: 0;
    padding: 92px 18px 48px;
    background: var(--av-blue);
  }

  .av-hero__text {
    max-width: none;
    padding-top: 0;
  }

  .av-hero__text h1 {
    margin-top: 16px;
    font-size: clamp(52px, 16vw, 78px);
  }

  .av-hero__text h2 {
    margin-bottom: 34px;
    font-size: clamp(24px, 8vw, 34px);
  }

  .av-hero__text dl {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 30px;
  }

  .av-hero__image {
    margin: 0;
  }

  .av-project {
    padding: 0 18px 56px;
  }

  .av-wide {
    height: 54vh;
    min-height: 320px;
    margin: 0 -18px;
  }

  .av-band {
    padding: 30px 18px;
    gap: 16px;
  }

  .av-duo,
  .av-strip,
  .av-project--credits,
  .av-credit {
    grid-template-columns: 1fr;
  }

  .av-strip {
    margin-top: 18px;
  }

  .av-collage {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 54px 18px 64px;
    background: var(--av-sand);
  }

  .av-collage__label {
    grid-row: auto;
    writing-mode: horizontal-tb;
    transform: none;
    display: grid;
    justify-self: stretch;
    gap: 12px;
    padding: 0;
  }

  .av-collage__large {
    grid-column: auto;
    aspect-ratio: auto;
  }

  .av-project--credits {
    padding-top: 52px;
    background: var(--av-blue);
  }

  .av-credit {
    gap: 18px;
  }

  .av-credit div {
    text-align: left;
  }

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

  .film-card {
    min-height: 104px;
    padding: 20px;
    font-size: clamp(24px, 11vw, 44px);
  }

}
