:root {
  color-scheme: light;
  --black: #050505;
  --white: #f8f8f4;
  --paper: #e6e8e9;
  --ink-soft: rgba(5, 5, 5, 0.54);
  --ink-body: rgba(5, 5, 5, 0.58);
  --ink-muted: rgba(5, 5, 5, 0.42);
  --white-body: rgba(248, 248, 244, 0.74);
  --white-muted: rgba(248, 248, 244, 0.58);
  --line: rgba(255, 255, 255, 0.28);
  --focus: #d8ff48;
  --body-font: "DM Sans", "DM Sans Placeholder", Inter, Arial, Helvetica, sans-serif;
  --display-font: Impact, "Arial Black", Haettenschweiler, sans-serif;
  --ease: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-cinematic: cubic-bezier(0.33, 0, 0.18, 1);
  --ease-cinematic-out: cubic-bezier(0.22, 0.61, 0.36, 1);
  --bottom-blur-height: clamp(3.4rem, 10.5vh, 6.75rem);
  --caption-clearance: calc(var(--bottom-blur-height) + clamp(0.85rem, 2vh, 1.5rem));
  --footer-bottom-clearance: calc(var(--bottom-blur-height) + clamp(3.4rem, 8vh, 6rem));
  --title-kicker-gap: clamp(0.55rem, 1.25vw, 1.25rem);
  --title-subtitle-gap: clamp(0.65rem, 1.4vw, 1.45rem);
  --display-shadow:
    0 0.035em 0 rgba(0, 0, 0, 0.4),
    0 0.09em 0.22em rgba(248, 248, 244, 0.24),
    0 0.18em 0.56em rgba(0, 0, 0, 0.9);
}

@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/dmsans/v16/rP2Yp2ywxg089UriI5-g4vlH9VoD8Cmcqbu0-K4.woff2") format("woff2");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
  color: var(--black);
  font-family: var(--body-font);
  text-rendering: geometricPrecision;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink-body);
  font-weight: 400;
  overflow-x: hidden;
}

.filmgrain-overlay {
  position: fixed;
  z-index: 520;
  inset: 0;
  width: 100vw;
  height: 100vh;
  opacity: 0.2;
  pointer-events: none;
  overflow: hidden;
  mix-blend-mode: normal;
  transform: translateZ(0);
}

.filmgrain-overlay span {
  position: absolute;
  inset: -2rem;
  opacity: 0;
  background-image: var(--grain-frame);
  background-repeat: repeat;
  background-size: var(--grain-frame-size, 64px) var(--grain-frame-size, 64px);
  transform: translate3d(var(--grain-x, 0), var(--grain-y, 0), 0);
  animation: filmgrain-frame 520ms steps(1, end) infinite;
  animation-delay: var(--grain-delay, 0ms);
  will-change: opacity, transform;
}

.filmgrain-overlay.is-static span {
  animation: none;
}

.filmgrain-overlay.is-static span:first-child {
  opacity: 1;
}

@keyframes filmgrain-frame {
  0%,
  12.49% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  12.5%,
  100% {
    opacity: 0;
    transform: translate3d(var(--grain-x, 0), var(--grain-y, 0), 0);
  }
}

.bottom-blur {
  position: fixed;
  z-index: 235;
  left: 0;
  right: 0;
  bottom: -1px;
  height: var(--bottom-blur-height);
  overflow: hidden;
  pointer-events: none;
  contain: paint;
  opacity: 1;
  visibility: visible;
  transition:
    opacity 560ms var(--ease-cinematic-out),
    visibility 0s linear 0s;
}

body.is-bottom-blur-excluded .bottom-blur {
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 560ms var(--ease-cinematic-out),
    visibility 0s linear 560ms;
}

.bottom-blur span {
  position: absolute;
  inset: 0;
  pointer-events: none;
  transform: translateZ(0);
}

.bottom-blur span:nth-child(1) {
  z-index: 1;
  -webkit-backdrop-filter: blur(0.5px);
  backdrop-filter: blur(0.5px);
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 12.5%, transparent 25%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 12.5%, transparent 25%);
}

.bottom-blur span:nth-child(2) {
  z-index: 2;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 12.5%, #000 25%, transparent 37.5%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 12.5%, #000 25%, transparent 37.5%);
}

.bottom-blur span:nth-child(3) {
  z-index: 3;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  -webkit-mask-image: linear-gradient(to bottom, transparent 12.5%, #000 25%, #000 37.5%, transparent 50%);
  mask-image: linear-gradient(to bottom, transparent 12.5%, #000 25%, #000 37.5%, transparent 50%);
}

.bottom-blur span:nth-child(4) {
  z-index: 4;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  -webkit-mask-image: linear-gradient(to bottom, transparent 25%, #000 37.5%, #000 50%, transparent 62.5%);
  mask-image: linear-gradient(to bottom, transparent 25%, #000 37.5%, #000 50%, transparent 62.5%);
}

.bottom-blur span:nth-child(5) {
  z-index: 5;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  -webkit-mask-image: linear-gradient(to bottom, transparent 37.5%, #000 50%, #000 62.5%, transparent 75%);
  mask-image: linear-gradient(to bottom, transparent 37.5%, #000 50%, #000 62.5%, transparent 75%);
}

.bottom-blur span:nth-child(6) {
  z-index: 6;
  -webkit-backdrop-filter: blur(28px);
  backdrop-filter: blur(28px);
  -webkit-mask-image: linear-gradient(to bottom, transparent 50%, #000 62.5%, #000 75%, transparent 87.5%);
  mask-image: linear-gradient(to bottom, transparent 50%, #000 62.5%, #000 75%, transparent 87.5%);
}

.bottom-blur span:nth-child(7) {
  z-index: 7;
  -webkit-backdrop-filter: blur(44px);
  backdrop-filter: blur(44px);
  -webkit-mask-image: linear-gradient(to bottom, transparent 62.5%, #000 75%, #000 87.5%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 62.5%, #000 75%, #000 87.5%, transparent 100%);
}

.bottom-blur span:nth-child(8) {
  z-index: 8;
  -webkit-backdrop-filter: blur(64px);
  backdrop-filter: blur(64px);
  -webkit-mask-image: linear-gradient(to bottom, transparent 75%, #000 87.5%, #000 100%);
  mask-image: linear-gradient(to bottom, transparent 75%, #000 87.5%, #000 100%);
}

body.menu-open {
  overflow: hidden;
}

img,
iframe {
  display: block;
}

a {
  color: inherit;
}

[data-block-align="center"] {
  text-align: center;
}

[data-block-align="center"] > * {
  justify-self: center;
}

[data-block-align="right"] {
  text-align: right;
}

[data-block-align="right"] > * {
  justify-self: end;
}

[data-text-align="center"] {
  text-align: center;
  justify-self: center;
}

[data-text-align="right"] {
  text-align: right;
  justify-self: end;
}

button,
input,
textarea {
  font: inherit;
}

button,
a,
input,
textarea {
  -webkit-tap-highlight-color: rgba(216, 255, 72, 0.22);
}

@media (pointer: fine) {
  body.custom-cursor-enabled,
  body.custom-cursor-enabled * {
    cursor: none !important;
  }
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 5px;
}

.skip-link {
  position: fixed;
  z-index: 500;
  top: 1rem;
  left: 1rem;
  transform: translateY(-140%);
  padding: 0.8rem 1rem;
  background: var(--focus);
  color: var(--black);
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  z-index: 300;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: max(1rem, env(safe-area-inset-top)) clamp(1rem, 2.2vw, 2.5rem) 1rem;
  color: #fff;
  pointer-events: none;
}

.brand,
.menu-button {
  pointer-events: auto;
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 950;
  line-height: 0;
  letter-spacing: 0;
}

.brand-logo {
  width: clamp(3rem, 4.8vw, 5.6rem);
  height: auto;
  display: block;
  filter: none;
}

.brand-split-svg {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  overflow: visible;
  pointer-events: none;
}

body.header-split-ready .brand-split-svg {
  opacity: 1;
}

.brand-split-image-dark {
  filter: brightness(0);
}

.menu-button {
  position: relative;
  width: 3.25rem;
  height: 3.25rem;
  border: 0;
  border-radius: 0;
  display: grid;
  place-items: center;
  color: var(--white);
  background: transparent;
  cursor: pointer;
  touch-action: manipulation;
}

.menu-dot {
  width: 0.75rem;
  aspect-ratio: 1;
  display: block;
  background: currentColor;
  transition:
    transform 240ms var(--ease),
    box-shadow 240ms var(--ease);
}

.menu-dot-contrast-slice,
.menu-dot-media-slice {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 0.75rem;
  aspect-ratio: 1;
  display: block;
  background: var(--black);
  opacity: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.menu-dot-media-slice {
  z-index: 2;
  background: var(--white);
}

.menu-button[aria-expanded="true"] .menu-dot {
  transform: rotate(45deg) scale(1.7);
  box-shadow:
    0 0 0 1px currentColor,
    0 0 0 12px rgba(255, 255, 255, 0.12);
}

body.menu-open .menu-button {
  color: var(--white);
}

body.header-split-ready .brand-logo,
body.header-split-ready .menu-dot {
  opacity: 0;
}

body.menu-open .brand-logo,
body.menu-open .menu-dot {
  opacity: 1;
}

body.menu-open .brand-split-svg,
body.menu-open .menu-dot-contrast-slice,
body.menu-open .menu-dot-media-slice {
  opacity: 0 !important;
}

.custom-cursor {
  position: fixed;
  z-index: 900;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 0, 0) scale(0.9);
  transform-origin: 8px 2px;
  color: #fff;
  mix-blend-mode: difference;
  transition:
    opacity 160ms ease,
    transform 220ms var(--ease);
  will-change: left, top, opacity, transform;
}

.custom-cursor.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.custom-cursor.is-pressed {
  transform: translate3d(0, 0, 0) scale(0.82) rotate(-6deg);
}

.custom-cursor-svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

.custom-cursor-layer {
  fill: currentColor;
}

.cursor-shape {
  vector-effect: non-scaling-stroke;
}

.cursor-bolt {
  animation: cursor-bolt-spark 900ms steps(2, jump-none) infinite;
  transform-box: fill-box;
  transform-origin: 10px 2px;
}

.cursor-fist {
  display: none;
  transform-box: fill-box;
  transform-origin: 16px 17px;
}

.custom-cursor[data-mode="click"] {
  transform-origin: 14px 14px;
}

.custom-cursor[data-mode="click"] .cursor-bolt {
  display: none;
}

.custom-cursor[data-mode="click"] .cursor-fist {
  display: block;
  animation: cursor-fist-smash 520ms var(--ease) infinite;
}

.cursor-fist-shape {
  fill: currentColor;
}

.cursor-fist-bolt-frame {
  opacity: 0;
  animation: cursor-fist-bolt-frame 660ms steps(1, end) infinite;
}

.cursor-fist-bolt-frame-2 {
  animation-delay: 220ms;
}

.cursor-fist-bolt-frame-3 {
  animation-delay: 440ms;
}

.cursor-fist-bolt {
  fill: currentColor;
  transform-box: fill-box;
  transform-origin: center;
  animation: cursor-fist-bolt-pop 660ms steps(2, jump-none) infinite;
}

@keyframes cursor-bolt-spark {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  40% {
    transform: translate3d(1px, -1px, 0) scale(1.05);
  }

  70% {
    transform: translate3d(-1px, 1px, 0) scale(0.98);
  }
}

@keyframes cursor-fist-smash {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  45% {
    transform: translate3d(-1px, 1px, 0) scale(0.9) rotate(-5deg);
  }

  68% {
    transform: translate3d(1px, -1px, 0) scale(1.08) rotate(3deg);
  }
}

@keyframes cursor-fist-bolt-frame {
  0%,
  33.333% {
    opacity: 1;
  }

  33.334%,
  100% {
    opacity: 0;
  }
}

@keyframes cursor-fist-bolt-pop {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(0.82);
  }

  45% {
    transform: translate3d(0.5px, -0.5px, 0) scale(1.14);
  }
}

.menu-panel {
  position: fixed;
  z-index: 250;
  inset: 0;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 28rem);
  gap: clamp(1.5rem, 4vw, 5rem);
  align-items: end;
  padding: clamp(1rem, 3vw, 3rem);
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

body.menu-open .menu-button {
  color: var(--white);
}

.menu-panel[hidden] {
  display: none;
}

.menu-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.88), rgba(5, 5, 5, 0.36)),
    url("assets/glass-hybrid.png") center / cover no-repeat;
  transform: scale(1.04);
  opacity: 0.92;
}

.menu-nav,
.menu-note {
  position: relative;
  z-index: 1;
}

.menu-nav {
  display: grid;
  gap: 0.1rem;
}

.menu-nav a {
  width: fit-content;
  color: var(--white);
  font-family: var(--display-font);
  font-size: clamp(4.3rem, 16vw, 18rem);
  line-height: 0.76;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0;
  transition:
    color 180ms ease,
    transform 220ms var(--ease);
}

.menu-nav a:hover,
.menu-nav a:focus-visible {
  color: var(--focus);
  transform: translateX(0.35rem);
}

.menu-note {
  margin: 0;
  max-width: 24rem;
  align-self: end;
  color: var(--white-body);
  font-size: clamp(1.05rem, 1.4vw, 1.5rem);
  line-height: 1.05;
  font-weight: 400;
  text-transform: uppercase;
}

.scroll-reel {
  position: relative;
  height: 520vh;
  background: var(--paper);
}

.reel-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  min-height: 100vh;
  overflow: hidden;
  background: var(--paper);
  --frame-scale: 1;
  --frame-shadow-opacity: 0;
  --studio-x: -95vw;
  --studio-opacity: 0;
}

.behind-line {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: clamp(1.6rem, 3.2vw, 4rem);
  transform: translate3d(var(--studio-x), -50%, 0);
  color: var(--black);
  opacity: var(--studio-opacity);
  width: max-content;
  white-space: nowrap;
  font-family: var(--display-font);
  font-size: clamp(3rem, 5.8vw, 7.6rem);
  line-height: 0.78;
  text-transform: uppercase;
  letter-spacing: 0;
  will-change: opacity, transform;
}

.behind-line span {
  flex: 0 0 auto;
}

.slide-track {
  position: absolute;
  z-index: 2;
  inset: 0;
  overflow: hidden;
  box-shadow: 0 2.5rem 6rem rgb(0 0 0 / var(--frame-shadow-opacity));
  transform: scale(var(--frame-scale));
  transform-origin: center;
  will-change: transform;
}

.reel-slide {
  position: absolute;
  inset: 0;
  overflow: hidden;
  transform-origin: center;
  will-change: transform, opacity;
}

.slide-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #111;
  container-type: size;
}

.slide-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.24), transparent 25%, transparent 72%, rgba(0, 0, 0, 0.22)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.24), transparent 44%);
  pointer-events: none;
}

.poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.poster {
  z-index: 1;
  object-fit: cover;
  transform: scale(var(--media-scale, 1.18));
  transition: opacity 900ms var(--ease-cinematic-out);
}

.vimeo-embed {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: auto;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) scale(var(--media-scale, 1.18));
  transition: opacity 900ms var(--ease-cinematic-out);
}

.vimeo-embed.is-vimeo-active {
  opacity: 1;
}

.slide-media:has(.vimeo-embed) .poster,
.slide-media.is-vimeo-active .poster {
  opacity: 0;
}

.media-grain {
  position: absolute;
  z-index: 5;
  inset: -20%;
  opacity: 0.14;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.9) 0 1px, transparent 1px),
    radial-gradient(circle at 70% 40%, rgba(255, 255, 255, 0.75) 0 1px, transparent 1px);
  background-size: 19px 23px, 31px 37px;
  mix-blend-mode: screen;
  animation: grain-shift 600ms steps(2, jump-none) infinite;
  pointer-events: none;
}

.mega-word {
  position: absolute;
  z-index: 120;
  top: 50%;
  left: 50%;
  margin: 0;
  transform: translate(-50%, -47%) scaleX(1.05);
  color: rgba(255, 255, 255, 0.98);
  font-family: var(--display-font);
  font-size: clamp(5.2rem, 25.4vw, 30rem);
  line-height: 0.76;
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: 0;
  pointer-events: none;
}

.project-caption {
  position: absolute;
  z-index: 8;
  left: clamp(1rem, 2.4vw, 2.6rem);
  bottom: var(--caption-clearance);
  width: min(28rem, calc(100vw - 2rem));
  max-width: min(28rem, calc(100vw - 2rem));
  color: #fff;
  text-transform: uppercase;
}

.project-caption p,
.project-caption h1,
.project-caption h2 {
  margin: 0;
}

.project-caption p {
  font-size: 0.78rem;
  font-weight: 700;
}

.project-caption h1,
.project-caption h2 {
  margin-top: 0.35rem;
  font-size: clamp(1.2rem, 2vw, 2.2rem);
  line-height: 0.95;
  font-weight: 950;
  overflow-wrap: break-word;
}

.reel-counter {
  position: absolute;
  z-index: 130;
  right: clamp(1rem, 2.4vw, 2.6rem);
  bottom: var(--caption-clearance);
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 950;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.52);
}

.project-stack {
  background: var(--black);
}

.project-stack-cta {
  display: grid;
  place-items: center;
  padding: clamp(3rem, 8vw, 8rem) clamp(1rem, 3vw, 3rem);
  background: var(--black);
  color: var(--white);
}

.project-stack-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.4rem;
  border: 1px solid currentColor;
  padding: 0.95rem 1.25rem;
  color: inherit;
  font-size: clamp(0.88rem, 1.2vw, 1.05rem);
  font-weight: 950;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background 260ms var(--ease),
    color 260ms var(--ease),
    transform 360ms var(--ease);
}

.project-stack-cta a:hover,
.project-stack-cta a:focus-visible {
  background: var(--white);
  color: var(--black);
  transform: translate3d(0, -0.12rem, 0);
}

[data-scroll-media] {
  --media-progress: 0;
  --media-scale: 1.75;
  --media-inset: 0px;
  --media-board-inset: 0px;
  overflow: hidden;
}

[data-scroll-media] > img,
[data-scroll-media] > video,
[data-scroll-media] > iframe,
[data-scroll-media] > .project-neighbor-media > img,
[data-scroll-media] > .project-neighbor-media > iframe {
  transform-origin: 50% 50%;
  will-change: transform;
}

.project-panel {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  container-type: inline-size;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: clamp(1rem, 3vw, 3rem) clamp(1rem, 3vw, 3rem)
    max(clamp(1rem, 3vw, 3rem), var(--caption-clearance));
  color: #fff;
  isolation: isolate;
}

.project-panel-media {
  position: absolute;
  z-index: -2;
  inset: -2px;
  overflow: hidden;
  background: transparent;
  container-type: size;
  will-change: inset;
}

.project-panel-media > img,
.project-panel-media > .project-panel-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border: 0;
  transform: translate(-50%, -50%) scale(var(--media-scale, 1));
  clip-path: inset(var(--media-inset, 0px));
  pointer-events: none;
}

.project-panel-media > img {
  transition: opacity 900ms var(--ease-cinematic-out);
}

.project-panel-media > img {
  object-fit: cover;
}

.project-panel-video {
  width: max(100vw, calc(100dvh * 16 / 9));
  height: max(100dvh, calc(100vw * 9 / 16));
  min-width: 100%;
  min-height: 100%;
  aspect-ratio: 16 / 9;
  opacity: 0;
  transition: opacity 900ms var(--ease-cinematic-out);
}

.project-panel-video.is-vimeo-active {
  opacity: 1;
}

.project-panel:has(.project-panel-video) .project-panel-media > img,
.project-panel.is-vimeo-active .project-panel-media > img {
  opacity: 0;
}

.project-panel-link {
  color: inherit;
}

.project-panel-link::before {
  content: "";
  position: absolute;
  z-index: 11;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 50%, rgba(248, 248, 244, 0.28), transparent 22rem),
    linear-gradient(115deg, transparent 0 36%, rgba(248, 248, 244, 0.16) 48%, transparent 62%);
  mix-blend-mode: screen;
  transform: scale(0.96);
  transition:
    opacity 500ms var(--ease),
    transform 700ms var(--ease);
}

.project-panel-link .project-panel-media > img,
.project-panel-link .project-panel-video {
  transition:
    opacity 900ms var(--ease-cinematic-out),
    filter 700ms var(--ease);
}

.project-panel-link:hover .project-panel-media > img,
.project-panel-link:hover .project-panel-video {
  filter: saturate(1.08) contrast(1.02);
}

.project-panel-hit {
  position: absolute;
  z-index: 12;
  top: 50%;
  left: 50%;
  width: clamp(9rem, 24vmin, 18rem);
  aspect-ratio: 1;
  display: block;
  border: 0;
  background: transparent;
  color: inherit;
  text-decoration: none;
  transform: translate(-50%, -50%);
}

.project-panel-link:focus-within {
  outline: 0;
}

.project-panel-link:focus-within::before {
  opacity: 1;
  transform: scale(1);
}

.project-panel-hit:focus-visible,
.project-title-link:focus-visible {
  outline: 0;
}

.project-panel::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent 54%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.36), transparent 52%);
}

.project-panel-light {
  color: var(--black);
}

.project-panel:not(.project-panel-light) .panel-copy {
  color: var(--white);
}

.project-panel-light::after {
  background:
    linear-gradient(0deg, rgba(248, 248, 244, 0.82), transparent 56%),
    linear-gradient(90deg, rgba(248, 248, 244, 0.42), transparent 54%);
}

.panel-copy {
  position: relative;
  z-index: 14;
  color: currentColor;
  max-width: min(100%, 86rem);
  text-transform: uppercase;
  text-shadow: 0 0.08em 0.9em rgba(0, 0, 0, 0.32);
  pointer-events: none;
  display: grid;
  gap: 0;
}

.project-panel-light .panel-copy {
  text-shadow: none;
}

.panel-copy p,
.panel-copy h3,
.panel-copy span {
  margin: 0;
}

.panel-copy p {
  font-weight: 700;
  font-size: clamp(0.82rem, 1.1vw, 1rem);
}

.panel-copy h3 {
  margin-top: var(--title-kicker-gap);
  font-family:
    Impact,
    "Arial Black",
    Haettenschweiler,
    sans-serif;
  font-size: clamp(4.2rem, 18cqw, 18rem);
  line-height: 0.76;
  letter-spacing: 0;
}

.project-title-link {
  position: relative;
  display: inline-block;
  color: inherit;
  text-decoration: none;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
  transition:
    color 300ms var(--ease),
    transform 600ms var(--ease),
    text-shadow 600ms var(--ease);
}

.project-title-link:hover,
.project-title-link:focus-visible {
  transform: translate3d(clamp(0.18rem, 0.8vw, 0.75rem), 0, 0);
  text-shadow:
    -0.035em 0.035em 0 rgba(5, 5, 5, 0.72),
    0 0.08em 0.72em rgba(0, 0, 0, 0.6);
}

.panel-copy span {
  display: block;
  margin-top: var(--title-subtitle-gap);
  font-weight: 400;
  font-size: clamp(0.9rem, 1.5vw, 1.4rem);
}

.about-section {
  min-height: clamp(28rem, 58vh, 42rem);
  min-height: clamp(28rem, 58svh, 42rem);
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(17rem, 0.75fr);
  gap: clamp(2rem, 6vw, 7rem);
  align-items: center;
  padding: clamp(2.6rem, 4.5vw, 4.5rem) clamp(1rem, 3vw, 3rem) clamp(2rem, 4vw, 4rem);
  background: var(--white);
  color: var(--black);
}

.about-kicker {
  grid-column: 1 / -1;
  align-self: start;
  font-weight: 950;
  text-transform: uppercase;
}

.about-section h2 {
  margin: 0;
  max-width: 14ch;
  font-family:
    Impact,
    "Arial Black",
    Haettenschweiler,
    sans-serif;
  font-size: clamp(4.2rem, 10.5vw, 14rem);
  line-height: 0.78;
  text-transform: uppercase;
  letter-spacing: 0;
}

.about-copy {
  display: grid;
  gap: 1rem;
  align-self: end;
}

.about-copy p {
  margin: 0;
  color: var(--ink-body);
  font-size: clamp(1.05rem, 1.6vw, 1.5rem);
  line-height: 1.18;
  font-weight: 400;
}

.about-link {
  width: fit-content;
  color: inherit;
  font-weight: 950;
  text-transform: uppercase;
  text-decoration-thickness: 0.12em;
  text-underline-offset: 0.24em;
}

.about-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: clamp(5rem, 8vw, 9rem) clamp(1rem, 3vw, 3rem) clamp(2rem, 4vw, 4rem);
  color: var(--white);
  isolation: isolate;
}

.about-hero img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(5, 5, 5, 0.72), transparent 54%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.38), transparent 62%);
}

.about-hero-copy {
  position: relative;
  z-index: 8;
  display: grid;
  gap: 0.7rem;
  max-width: min(92vw, 70rem);
  text-transform: uppercase;
}

.about-hero-copy p,
.about-hero-copy h1 {
  margin: 0;
}

.about-hero-copy p {
  max-width: 100%;
  font-size: clamp(0.82rem, 1.6vw, 1rem);
  font-weight: 950;
  line-height: 1;
  overflow-wrap: break-word;
}

.about-hero-copy h1 {
  font-family:
    Impact,
    "Arial Black",
    Haettenschweiler,
    sans-serif;
  font-size: clamp(4rem, 10vw, 13rem);
  line-height: 0.78;
  letter-spacing: 0;
}

.definition-section {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.9fr);
  gap: clamp(2rem, 6vw, 7rem);
  align-items: end;
  padding: clamp(5rem, 8vw, 9rem) clamp(1rem, 3vw, 3rem) clamp(2rem, 4vw, 4rem);
  background: var(--white);
  color: var(--black);
}

.definition-label {
  grid-column: 1 / -1;
  align-self: start;
  margin: 0;
  font-weight: 950;
  text-transform: uppercase;
}

.definition-section h2 {
  margin: 0;
  max-width: 13ch;
  font-family:
    Impact,
    "Arial Black",
    Haettenschweiler,
    sans-serif;
  font-size: clamp(4rem, 10vw, 13rem);
  line-height: 0.78;
  text-transform: uppercase;
  letter-spacing: 0;
}

.definition-copy {
  display: grid;
  gap: 1rem;
}

.definition-copy p,
.about-manifesto p,
.principle-section p,
.principle-section h2,
.principle-section span,
.about-manifesto h2 {
  margin: 0;
}

.definition-copy p,
.about-manifesto div p {
  color: var(--ink-body);
  font-size: clamp(1.05rem, 1.65vw, 1.55rem);
  line-height: 1.18;
  font-weight: 400;
}

.principle-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--black);
  color: var(--white);
}

.principle-section > div {
  display: grid;
  align-content: end;
  gap: 0.8rem;
  min-height: 100vh;
  min-height: 100dvh;
  padding: clamp(1rem, 3vw, 3rem);
  border-right: 1px solid rgba(248, 248, 244, 0.18);
}

.principle-section > div:last-child {
  border-right: 0;
}

.principle-section p {
  font-weight: 950;
}

.principle-section h2 {
  font-family:
    Impact,
    "Arial Black",
    Haettenschweiler,
    sans-serif;
  font-size: clamp(3.5rem, 8vw, 10rem);
  line-height: 0.78;
  text-transform: uppercase;
  letter-spacing: 0;
}

.principle-section span {
  max-width: 25rem;
  color: var(--white-body);
  font-size: clamp(1rem, 1.4vw, 1.35rem);
  line-height: 1.16;
  font-weight: 400;
}

.about-manifesto {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
  gap: clamp(2rem, 6vw, 7rem);
  align-items: end;
  padding: clamp(5rem, 8vw, 9rem) clamp(1rem, 3vw, 3rem) clamp(2rem, 4vw, 4rem);
  background: var(--paper);
  color: var(--black);
}

.about-manifesto > p {
  grid-column: 1 / -1;
  align-self: start;
  font-weight: 950;
  text-transform: uppercase;
}

.about-manifesto h2 {
  max-width: 13ch;
  font-family:
    Impact,
    "Arial Black",
    Haettenschweiler,
    sans-serif;
  font-size: clamp(4rem, 10vw, 13rem);
  line-height: 0.78;
  text-transform: uppercase;
  letter-spacing: 0;
}

.about-manifesto div {
  display: grid;
  gap: 1rem;
}

.project-detail-main {
  background: var(--paper);
  color: var(--black);
}

.project-detail-hero {
  --hero-control-bottom: max(clamp(1rem, 2.4vw, 2rem), env(safe-area-inset-bottom));
  --hero-control-height: clamp(3.6rem, 5vw, 4.8rem);
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  aspect-ratio: auto;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding:
    clamp(5rem, 8vw, 9rem)
    clamp(1rem, 3vw, 3rem)
    calc(var(--hero-control-bottom) + var(--hero-control-height) + clamp(0.8rem, 1.5vw, 1.6rem));
  color: var(--white);
  background: var(--black);
  isolation: isolate;
}

.project-hero-poster,
.project-hero-video {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  transform: none;
  border: 0;
}

.project-hero-poster {
  object-fit: contain;
  filter: saturate(0.96);
}

.project-detail-hero:has(.project-hero-video) .project-hero-poster {
  opacity: 0;
}

.project-hero-video {
  z-index: -1;
  pointer-events: none;
}

.project-detail-hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(5, 5, 5, 0.72), transparent 52%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.34), transparent 58%);
  pointer-events: none;
  opacity: 1;
  transition: opacity 1250ms var(--ease-cinematic-out);
  will-change: opacity;
}

.project-hero-copy {
  position: relative;
  z-index: 8;
  display: grid;
  gap: 0;
  margin-bottom: clamp(0.6rem, 1.8vh, 1.4rem);
  max-width: min(92vw, 80rem);
  text-transform: uppercase;
  text-shadow: 0 0.08em 0.9em rgba(0, 0, 0, 0.42);
  clip-path: inset(0);
  filter: blur(0);
  transition:
    opacity 1350ms var(--ease-cinematic-out),
    transform 1650ms var(--ease-cinematic),
    filter 1350ms var(--ease-cinematic-out),
    clip-path 1650ms var(--ease-cinematic);
  will-change: opacity, transform, filter, clip-path;
}

.project-hero-copy p,
.project-hero-copy h1,
.project-hero-copy span,
.project-detail-kicker,
.project-slogan-block h2,
.project-info-block p,
.project-editorial-section,
.project-feature-row,
.project-meta-list,
.project-meta-list div,
.project-meta-list dt,
.project-meta-list dd,
.project-story-block,
.project-media-item {
  margin: 0;
}

.project-hero-copy p,
.project-detail-kicker,
.project-meta-list dt {
  font-size: clamp(0.78rem, 1.1vw, 0.95rem);
  font-weight: 950;
  line-height: 1;
}

.project-hero-copy p {
  position: relative;
  z-index: 2;
  margin-bottom: var(--title-kicker-gap);
}

.project-hero-copy h1 {
  font-family: var(--display-font);
  font-size: clamp(6rem, 19vw, 21rem);
  line-height: 0.76;
  letter-spacing: 0;
}

.project-hero-copy span {
  display: block;
  margin-top: var(--title-subtitle-gap);
  max-width: 34rem;
  color: var(--white-body);
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  line-height: 1.08;
  font-weight: 400;
}

.project-hero-controls {
  position: absolute;
  z-index: 12;
  left: clamp(1rem, 3vw, 3rem);
  right: clamp(1rem, 3vw, 3rem);
  bottom: var(--hero-control-bottom);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(0.45rem, 1vw, 0.8rem);
  align-items: center;
  max-width: none;
  min-height: 2.75rem;
  color: var(--white);
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
  transition:
    opacity 1150ms var(--ease-cinematic-out),
    transform 1450ms var(--ease-cinematic),
    filter 1150ms var(--ease-cinematic-out);
  pointer-events: auto;
  will-change: opacity, transform, filter;
}

.project-detail-hero.has-hero-ui .project-hero-copy,
.project-detail-hero.has-hero-ui .project-hero-controls {
  opacity: 0;
  filter: blur(12px);
  transform: translate3d(0, clamp(2.6rem, 5vw, 5rem), 0) scale(0.9);
}

.project-detail-hero.has-hero-ui::after {
  opacity: 0;
}

.project-detail-hero.has-hero-ui .project-hero-copy {
  clip-path: inset(0 0 16% 0);
  transform-origin: 50% 74%;
  transition:
    opacity 1600ms var(--ease-cinematic-out),
    transform 2400ms var(--ease-cinematic),
    filter 1700ms var(--ease-cinematic-out),
    clip-path 2200ms var(--ease-cinematic);
}

.project-detail-hero.has-hero-ui .project-hero-controls > * {
  opacity: 0;
  transform: translate3d(0, 0.85rem, 0);
  transition:
    opacity 900ms var(--ease-cinematic-out),
    transform 1200ms var(--ease-cinematic);
  will-change: opacity, transform;
}

.project-detail-hero.has-hero-ui .project-hero-controls {
  pointer-events: none;
}

.project-detail-hero.has-hero-ui.is-hero-title-visible .project-hero-copy,
.project-detail-hero.has-hero-ui.is-hero-controls-visible .project-hero-controls {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

.project-detail-hero.has-hero-ui.is-hero-title-visible .project-hero-copy {
  clip-path: inset(0);
}

.project-detail-hero.has-hero-ui.is-hero-controls-visible .project-hero-controls {
  pointer-events: auto;
}

.project-detail-hero.has-hero-ui.is-hero-controls-visible::after {
  opacity: 1;
}

.project-detail-hero.has-hero-ui.is-hero-controls-visible .project-hero-controls > * {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.project-detail-hero.has-hero-ui.is-hero-controls-visible .project-hero-controls > *:nth-child(2) {
  transition-delay: 120ms;
}

.project-detail-hero.has-hero-ui.is-hero-controls-visible .project-hero-controls > *:nth-child(3) {
  transition-delay: 200ms;
}

.hero-icon-button {
  width: 2.6rem;
  min-width: 2.6rem;
  height: 2.6rem;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  color: var(--white);
  display: grid;
  place-items: center;
  cursor: pointer;
  filter: drop-shadow(0 0.08rem 0.7rem rgba(0, 0, 0, 0.48));
}

.hero-icon-button:hover,
.hero-icon-button:focus-visible {
  background: transparent;
  color: var(--white);
  outline: 0;
  filter:
    drop-shadow(0 0.08rem 0.7rem rgba(0, 0, 0, 0.58))
    drop-shadow(0 0 0.38rem rgba(248, 248, 244, 0.36));
}

.hero-icon {
  width: 1.1rem;
  height: 1.1rem;
  display: none;
  fill: currentColor;
}

.hero-icon-button.is-paused .hero-icon-play,
.hero-icon-button.is-playing .hero-icon-pause,
.hero-icon-button.is-muted .hero-icon-muted,
.hero-icon-button:not(.is-muted) .hero-icon-volume {
  display: block;
}

.hero-progress-label,
.hero-volume-popover {
  display: grid;
  align-items: center;
  gap: 0.4rem;
  min-width: 0;
}

.hero-progress-label {
  width: 100%;
}

.hero-volume-control {
  position: relative;
  display: grid;
  place-items: center;
  width: 2.8rem;
  height: 2.6rem;
  overflow: visible;
}

.hero-volume-popover {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: calc(100% + 0.65rem);
  width: 2.85rem;
  height: clamp(6.8rem, 15vh, 9rem);
  padding: 0.85rem 0;
  place-items: center;
  color: var(--white);
  opacity: 0;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(10, 14, 16, 0.78);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  transform: translate3d(-50%, 1.15rem, 0) scaleY(0.18);
  transform-origin: 50% 100%;
  pointer-events: none;
  filter: drop-shadow(0 0.1rem 0.9rem rgba(0, 0, 0, 0.58));
  transition:
    opacity 320ms var(--ease-cinematic-out),
    transform 560ms var(--ease-cinematic),
    background 320ms ease;
}

.hero-volume-popover::before {
  content: none;
}

.hero-volume-control.is-volume-open .hero-volume-popover,
.hero-volume-control:focus-within .hero-volume-popover {
  opacity: 1;
  transform: translate3d(-50%, 0, 0) scaleY(1);
  pointer-events: auto;
}

.hero-volume-control.is-volume-open .hero-icon-button {
  filter:
    drop-shadow(0 0.08rem 0.7rem rgba(0, 0, 0, 0.58))
    drop-shadow(0 0 0.38rem rgba(248, 248, 244, 0.36));
}

.project-hero-controls input[type="range"] {
  --range-fill: 0%;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  min-width: 0;
  height: 1.4rem;
  color: var(--white);
  accent-color: auto;
  background: linear-gradient(currentColor, currentColor) left 50% / var(--range-fill) 2px no-repeat;
  cursor: pointer;
  filter: drop-shadow(0 0.08rem 0.65rem rgba(0, 0, 0, 0.52));
}

.project-hero-controls input[data-hero-progress] {
  background:
    linear-gradient(currentColor, currentColor) left 50% / var(--range-fill) 2px no-repeat,
    linear-gradient(rgba(248, 248, 244, 0.42), rgba(248, 248, 244, 0.42)) left 50% / 100% 1px no-repeat;
}

.project-hero-controls input[type="range"]::-webkit-slider-runnable-track {
  height: 2px;
  border: 0;
  background: transparent;
}

.project-hero-controls input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 0.58rem;
  height: 0.58rem;
  margin-top: -0.22rem;
  border: 0;
  border-radius: 50%;
  background: currentColor;
}

.project-hero-controls input[type="range"]::-moz-range-track {
  height: 2px;
  border: 0;
  background: transparent;
}

.project-hero-controls input[type="range"]::-moz-range-progress {
  height: 2px;
  background: currentColor;
}

.project-hero-controls input[type="range"]::-moz-range-thumb {
  width: 0.58rem;
  height: 0.58rem;
  border: 0;
  border-radius: 50%;
  background: currentColor;
}

.project-hero-controls input[type="range"]:focus-visible {
  outline: 0;
  filter:
    drop-shadow(0 0.08rem 0.65rem rgba(0, 0, 0, 0.62))
    drop-shadow(0 0 0.34rem rgba(248, 248, 244, 0.42));
}

.hero-volume-native {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  opacity: 0;
  pointer-events: none;
}

.hero-volume-slider {
  position: relative;
  z-index: 1;
  width: 1.7rem;
  height: 7.2rem;
  display: grid;
  place-items: center;
  touch-action: none;
  cursor: ns-resize;
  outline: 0;
}

.hero-volume-slider:focus-visible {
  filter:
    drop-shadow(0 0.08rem 0.65rem rgba(0, 0, 0, 0.62))
    drop-shadow(0 0 0.34rem rgba(248, 248, 244, 0.42));
}

.hero-volume-track {
  position: relative;
  width: 2px;
  height: 100%;
  border-radius: 999px;
  background: rgba(248, 248, 244, 0.22);
}

.hero-volume-fill {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: var(--volume-fill, 60%);
  border-radius: inherit;
  background: currentColor;
}

.hero-volume-thumb {
  position: absolute;
  left: 50%;
  bottom: var(--volume-fill, 60%);
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 50%;
  background: currentColor;
  transform: translate(-50%, 50%);
}

.project-detail-hero.is-player-unavailable .project-hero-controls {
  opacity: 0.42;
}

.project-detail-intro {
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(22rem, 0.74fr);
  gap: clamp(3rem, 8vw, 10rem);
  align-items: end;
  padding: clamp(5rem, 8vw, 9rem) clamp(1rem, 3vw, 3rem) clamp(4rem, 7vw, 7rem);
  background: var(--paper);
}

.project-detail-kicker {
  grid-column: 1 / -1;
  align-self: start;
  text-transform: uppercase;
}

.project-slogan-block {
  align-self: end;
}

.project-slogan-block h2 {
  max-width: min(12ch, 100%);
  font-family: var(--display-font);
  font-size: clamp(3.8rem, 9vw, 11rem);
  line-height: 0.78;
  text-transform: uppercase;
  letter-spacing: 0;
}

.project-info-block {
  display: grid;
  gap: clamp(1.35rem, 2.4vw, 2.4rem);
  max-width: min(43rem, 100%);
  justify-self: start;
}

.project-detail-intro[data-block-side="right"] .project-slogan-block {
  grid-column: 2;
  justify-self: end;
  text-align: right;
}

.project-detail-intro[data-block-side="right"] .project-info-block {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
}

.project-detail-intro[data-block-side="left"] .project-slogan-block {
  grid-column: 1;
  justify-self: start;
  text-align: left;
}

.project-detail-intro[data-block-side="left"] .project-info-block {
  grid-column: 2;
  grid-row: 1;
  justify-self: start;
}

.project-meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  max-width: 100%;
  background: transparent;
}

.project-meta-list div {
  display: grid;
  gap: 0.5rem;
  min-width: min(12rem, 100%);
  min-height: 4.8rem;
  align-content: end;
  padding: 0 1.2rem 0 0;
  background: transparent;
}

.project-meta-list div + div {
  border-left: 1px solid rgba(5, 5, 5, 0.16);
  padding-left: 1.2rem;
}

.project-meta-list dt {
  color: var(--ink-muted);
  text-transform: uppercase;
}

.project-meta-list dd,
.project-info-block p {
  color: var(--ink-body);
  font-size: clamp(1.08rem, 1.32vw, 1.35rem);
  line-height: 1.38;
  font-weight: 400;
}

.project-meta-list dd {
  font-size: clamp(0.92rem, 1vw, 1.05rem);
}

.project-editorial-section {
  display: grid;
  background: var(--paper);
}

.project-feature-row {
  min-height: clamp(34rem, 78vh, 54rem);
  min-height: clamp(34rem, 78dvh, 54rem);
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 6rem);
  align-items: center;
  padding: clamp(4.5rem, 8vw, 9rem) clamp(1rem, 3vw, 3rem);
  background: var(--white);
}

.project-feature-row:nth-of-type(even) {
  background: var(--paper);
}

.project-story-block {
  color: var(--ink-body);
  font-size: clamp(1.08rem, 1.28vw, 1.34rem);
  line-height: 1.34;
  font-weight: 400;
}

.project-feature-row .project-story-block {
  align-self: center;
}

.project-feature-row-text-left .project-story-block {
  grid-column: 1 / span 4;
  justify-self: start;
}

.project-feature-row-text-right .project-story-block {
  grid-column: 9 / span 4;
  justify-self: end;
}

.project-story-block-left {
  max-width: min(39rem, 100%);
}

.project-story-block-right {
  max-width: min(39rem, 100%);
}

.project-story-block-center {
  justify-self: center;
  max-width: min(46rem, 100%);
  text-align: center;
}

.project-story-block-wide {
  max-width: min(58rem, 100%);
  margin-inline: auto;
  font-size: clamp(1.18rem, 1.8vw, 1.65rem);
  line-height: 1.18;
}

.project-story-block-small {
  font-size: clamp(0.95rem, 1.05vw, 1.1rem);
  line-height: 1.42;
}

.project-story-block-large {
  max-width: min(50rem, 100%);
  font-size: clamp(1.35rem, 2vw, 2.15rem);
  line-height: 1.1;
}

.project-story-block-title {
  color: var(--ink);
  max-width: min(58rem, 100%);
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 9rem);
  font-weight: 900;
  line-height: 0.78;
  text-transform: uppercase;
}

.project-story-block-align-center {
  text-align: center;
}

.project-story-block-align-right {
  text-align: right;
}

.project-media-item {
  position: relative;
  grid-column: 2 / span 8;
  min-height: auto;
  aspect-ratio: var(--media-aspect, 16 / 9);
  overflow: hidden;
  background: transparent;
  container-type: size;
}

.project-feature-row .project-media-item {
  min-height: auto;
  aspect-ratio: var(--media-aspect, 16 / 9);
}

.project-feature-row-text-left .project-media-item-row {
  grid-column: 6 / -1;
}

.project-feature-row-text-right .project-media-item-row {
  grid-column: 1 / span 7;
}

.project-media-item-large {
  grid-column: 1 / -1;
  min-height: auto;
}

.project-visual-break {
  width: 100%;
}

.project-media-item-left {
  grid-column: 1 / span 7;
}

.project-media-item-right {
  grid-column: 6 / span 7;
}

.project-media-item-center {
  grid-column: 3 / span 8;
}

.project-editorial-section > .project-media-item-left,
.project-editorial-section > .project-media-item-right,
.project-editorial-section > .project-media-item-center {
  width: min(72rem, 78vw);
  margin-block: clamp(1rem, 3vw, 3rem);
}

.project-editorial-section > .project-media-item-left {
  justify-self: start;
}

.project-editorial-section > .project-media-item-right {
  justify-self: end;
}

.project-editorial-section > .project-media-item-center {
  justify-self: center;
}

.project-editorial-section > .project-media-item-contained {
  width: min(42rem, 78vw);
  margin-block: clamp(2.5rem, 7vw, 8rem);
  justify-self: center;
}

.project-media-item img,
.project-media-item iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: contain;
  transform: scale(var(--media-scale, 1.16));
  clip-path: inset(var(--media-inset, 0px));
}

.project-media-item img {
  inset: 0;
}

.project-media-item iframe {
  top: 50%;
  left: 50%;
  width: auto;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: initial;
  transform: translate(-50%, -50%) scale(var(--media-scale, 1));
  clip-path: inset(var(--media-inset, 0px));
}

.project-video-card iframe {
  pointer-events: none;
}

.project-video-card {
  aspect-ratio: 16 / 9;
  min-height: auto;
}

.project-video-card.project-media-item-large {
  aspect-ratio: var(--media-aspect, 16 / 9);
  min-height: auto;
}

.is-reveal-ready .scroll-media-reveal,
.is-reveal-ready.scroll-media-reveal {
  clip-path: inset(var(--media-inset, 0px));
  scale: 1;
  filter: none;
  transition: none;
}

.is-reveal-ready:not(.is-revealed) .scroll-media-reveal,
.is-reveal-ready:not(.is-revealed).scroll-media-reveal {
  filter: none;
}

.project-media-item.scroll-media-reveal {
  clip-path: inset(var(--media-inset, 0px));
  scale: 1;
}

.project-media-item.scroll-media-reveal img,
.project-media-item.scroll-media-reveal iframe {
  scale: 1;
}

.is-reveal-ready .scroll-title-reveal,
.is-reveal-ready.scroll-title-reveal {
  opacity: var(--reveal-progress, 0);
  filter: blur(var(--reveal-blur, 18px));
  transform: translate3d(0, var(--reveal-y, 118px), 0) scale(var(--reveal-scale, 0.86));
  transform-origin: 50% 72%;
  transition:
    opacity 180ms linear,
    transform 180ms linear,
    filter 180ms linear;
  will-change: opacity, transform, filter;
}

.is-reveal-ready.is-revealed .scroll-title-reveal,
.is-reveal-ready.is-revealed.scroll-title-reveal {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

.project-panel.is-reveal-ready:not(.is-revealed) img,
.project-panel.is-reveal-ready:not(.is-revealed) .project-panel-video,
.work-card.is-reveal-ready:not(.is-revealed) img {
  clip-path: inset(var(--media-inset, 0px));
  scale: 1;
  filter: none;
}

.project-panel .scroll-media-reveal,
.work-card .scroll-media-reveal,
.project-neighbor-media.scroll-media-reveal,
.project-media-item.scroll-media-reveal {
  transition: none;
  filter: none;
  clip-path: inset(var(--media-inset, 0px));
  scale: 1;
}

.work-index-main {
  background: var(--paper);
  color: var(--black);
}

.work-index-hero {
  position: relative;
  min-height: clamp(18rem, 42vh, 34rem);
  min-height: clamp(18rem, 42dvh, 34rem);
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: clamp(5rem, 8vw, 7rem) clamp(1rem, 3vw, 3rem) clamp(2.5rem, 5vw, 5rem);
  color: var(--white);
  background: var(--black);
  isolation: isolate;
}

.work-index-hero.has-work-background {
  min-height: clamp(28rem, 72vh, 46rem);
  min-height: clamp(28rem, 72dvh, 46rem);
}

.work-index-hero img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.76) saturate(0.96);
  transform: scale(1.035);
}

.work-index-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(5, 5, 5, 0.74), transparent 54%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.34), transparent 58%);
}

.work-index-copy {
  position: relative;
  z-index: 8;
  display: grid;
  gap: clamp(0.8rem, 1.8vw, 1.55rem);
  max-width: min(92vw, 72rem);
  justify-items: center;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 0.08em 0.9em rgba(0, 0, 0, 0.42);
}

.work-index-copy p,
.work-index-copy h1,
.work-index-copy span,
.work-card p,
.work-card h2,
.work-card span {
  margin: 0;
}

.work-index-copy p,
.work-card p {
  font-size: clamp(0.78rem, 1.1vw, 0.95rem);
  font-weight: 950;
  line-height: 1.05;
}

.work-index-copy h1 {
  font-family: var(--display-font);
  font-size: clamp(6.5rem, 22vw, 25rem);
  line-height: 0.88;
  letter-spacing: 0;
}

.work-index-copy span {
  max-width: 34rem;
  color: var(--white-body);
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  line-height: 1.08;
  font-weight: 400;
  margin-top: clamp(0.15rem, 0.7vw, 0.55rem);
}

.work-grid-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  background: var(--black);
}

.work-card {
  position: relative;
  min-height: 82vh;
  min-height: 82dvh;
  container-type: size;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: clamp(1rem, 3vw, 3rem);
  color: var(--white);
  background: var(--black);
  isolation: isolate;
}

.work-card img,
.work-card iframe {
  position: absolute;
  z-index: -2;
  width: 100%;
  height: 100%;
  transform: scale(var(--media-scale, 1.16));
  clip-path: inset(var(--media-inset, 0px));
  transition: filter 700ms var(--ease);
}

.work-card img {
  inset: 0;
  object-fit: cover;
}

.work-card iframe {
  top: 50%;
  left: 50%;
  width: auto;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(var(--media-scale, 1));
  clip-path: inset(var(--media-inset, 0px));
  transition:
    opacity 900ms var(--ease-cinematic-out),
    filter 700ms var(--ease);
}

.work-card iframe.is-vimeo-active {
  opacity: 1;
}

.work-card:has(iframe) img,
.work-card:has(iframe.is-vimeo-active) img {
  opacity: 0;
}

.work-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(5, 5, 5, 0.74), transparent 58%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.3), transparent 56%);
}

.work-card::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 54%, rgba(248, 248, 244, 0.22), transparent 24rem),
    linear-gradient(115deg, transparent 0 35%, rgba(248, 248, 244, 0.14) 48%, transparent 62%);
  mix-blend-mode: screen;
  transform: scale(0.96);
  transition:
    opacity 500ms var(--ease),
    transform 700ms var(--ease);
}

.work-card:hover img,
.work-card:hover iframe,
.work-card:focus-within img,
.work-card:focus-within iframe {
  filter: saturate(1.08) contrast(1.02);
}

.work-card:focus-within {
  outline: 0;
}

.work-card:focus-within::before {
  opacity: 1;
  transform: scale(1);
}

.work-card-copy {
  position: relative;
  z-index: 8;
  display: grid;
  gap: 0.4rem;
  text-transform: uppercase;
  text-shadow: 0 0.08em 0.9em rgba(0, 0, 0, 0.42);
  pointer-events: none;
}

.work-card h2 {
  font-family: var(--display-font);
  font-size: clamp(3.4rem, 19cqw, 13rem);
  line-height: 0.76;
  letter-spacing: 0;
}

.work-card span {
  max-width: 34rem;
  color: var(--white-body);
  font-size: clamp(0.95rem, 1.35vw, 1.25rem);
  line-height: 1.08;
  font-weight: 400;
}

.work-card-hit {
  position: absolute;
  z-index: 12;
  top: 50%;
  left: 50%;
  width: clamp(9rem, 24vmin, 18rem);
  aspect-ratio: 1;
  display: block;
  border: 0;
  background: transparent;
  color: inherit;
  text-decoration: none;
  transform: translate(-50%, -50%);
}

.work-card-hit:focus-visible {
  outline: 0;
}

.utility-page {
  background: var(--black);
  color: var(--white);
}

.utility-main {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: clamp(5.5rem, 9vw, 10rem) clamp(1rem, 3vw, 3rem) var(--caption-clearance);
  background:
    linear-gradient(180deg, rgba(248, 248, 244, 0.08), transparent 32%),
    var(--black);
  overflow: hidden;
}

.utility-hero {
  width: min(100%, 94rem);
  display: grid;
  gap: clamp(0.8rem, 1.7vw, 1.6rem);
  text-transform: uppercase;
}

.utility-hero p,
.utility-hero h1,
.utility-copy,
.utility-copy span {
  margin: 0;
}

.utility-hero p {
  color: var(--white-body);
  font-size: clamp(0.82rem, 1.15vw, 1rem);
  font-weight: 950;
}

.utility-hero h1 {
  max-width: 10ch;
  font-family: var(--display-font);
  font-size: clamp(5rem, 17vw, 20rem);
  line-height: 0.78;
  letter-spacing: 0;
  text-shadow: var(--display-shadow);
}

.utility-copy {
  max-width: 42rem;
  display: grid;
  gap: clamp(1rem, 2vw, 1.6rem);
}

.utility-copy span {
  color: var(--white-body);
  font-size: clamp(1.05rem, 1.55vw, 1.35rem);
  line-height: 1.16;
  font-weight: 400;
  text-transform: none;
}

.utility-copy a {
  width: fit-content;
  min-height: 2.65rem;
  display: inline-grid;
  place-items: center;
  border: 1px solid currentColor;
  color: var(--white);
  padding: 0.6rem 0.9rem;
  font-size: clamp(0.85rem, 1.1vw, 1rem);
  font-weight: 950;
  text-decoration: none;
}

.utility-copy a:hover,
.utility-copy a:focus-visible {
  background: var(--white);
  color: var(--black);
}

.utility-logo {
  width: clamp(4rem, 9vw, 7.5rem);
  height: auto;
  margin-bottom: clamp(0.5rem, 1.4vw, 1rem);
}

.utility-coming-soon .utility-main {
  align-items: center;
  justify-items: center;
  padding-top: clamp(4rem, 9vw, 8rem);
  text-align: center;
}

.utility-coming-soon .utility-hero {
  justify-items: center;
  gap: clamp(0.45rem, 1vw, 0.9rem);
}

.utility-coming-soon .utility-hero h1 {
  max-width: 10ch;
}

.utility-coming-soon .utility-hero p {
  order: 3;
  margin-top: clamp(0.35rem, 1vw, 0.75rem);
}

.site-footer {
  min-height: clamp(34rem, 82vh, 52rem);
  min-height: clamp(34rem, 82svh, 52rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(19rem, 36rem);
  gap: clamp(2rem, 7vw, 8rem);
  align-items: end;
  padding: clamp(3rem, 5.5vw, 5.5rem) clamp(1rem, 3vw, 3rem) var(--footer-bottom-clearance);
  background: var(--black);
  color: var(--white);
}

.footer-intro p,
.footer-intro h2,
.footer-intro address {
  margin: 0;
}

.footer-intro p {
  font-weight: 950;
  text-transform: uppercase;
}

.footer-intro h2 {
  margin-top: 0.6rem;
  max-width: 10ch;
  font-family:
    Impact,
    "Arial Black",
    Haettenschweiler,
    sans-serif;
  font-size: clamp(4.6rem, 11vw, 14rem);
  line-height: 0.78;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: var(--display-shadow);
}

.footer-intro address {
  margin-top: 2rem;
  display: grid;
  gap: 0.4rem;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-intro a {
  text-decoration-thickness: 0.12em;
  text-underline-offset: 0.22em;
}

.contact-form {
  display: grid;
  gap: 1.1rem;
}

.field-row {
  display: grid;
  gap: 0.45rem;
}

.field-row label {
  font-weight: 950;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.field-row input,
.field-row textarea {
  width: 100%;
  min-height: 3.4rem;
  border: 1px solid rgba(248, 248, 244, 0.48);
  border-radius: 0;
  padding: 0.95rem 1rem;
  background: rgba(248, 248, 244, 0.05);
  color: var(--white);
  font-size: 1rem;
}

.field-row textarea {
  resize: vertical;
  min-height: 8rem;
}

.form-honeypot {
  position: absolute;
  left: -999rem;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.submit-button {
  justify-self: start;
  min-height: 3.25rem;
  border: 1px solid var(--white);
  border-radius: 0;
  padding: 0.9rem 1.2rem;
  background: var(--white);
  color: var(--black);
  cursor: pointer;
  font-weight: 950;
  text-transform: uppercase;
  touch-action: manipulation;
}

.submit-button:hover {
  background: var(--focus);
  border-color: var(--focus);
}

.submit-button[aria-busy="true"] {
  opacity: 0.72;
  cursor: wait;
}

.form-status {
  min-height: 1.4rem;
  margin: 0;
  color: var(--white-body);
  font-weight: 900;
}

.form-status.is-success {
  color: var(--focus);
}

.form-status.is-error {
  color: #ff8f8f;
}

.project-neighbor-section {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-content: center;
  gap: clamp(1.5rem, 3vw, 3rem);
  padding: clamp(5rem, 8vw, 9rem) clamp(1rem, 3vw, 3rem);
  background: var(--paper);
  color: var(--black);
}

.project-neighbor-heading {
  display: grid;
  gap: 0.45rem;
  text-transform: uppercase;
}

.project-neighbor-heading p {
  margin: 0;
  color: var(--ink-soft);
  font-weight: 950;
}

.project-neighbor-heading h2 {
  margin: 0;
  max-width: 9ch;
  font-family: var(--display-font);
  font-size: clamp(4.8rem, 12vw, 16rem);
  line-height: 0.76;
  letter-spacing: 0;
}

.project-neighbor-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.75rem, 2vw, 1.8rem);
}

.project-neighbor-card {
  position: relative;
  display: block;
  aspect-ratio: var(--media-aspect, 16 / 9);
  container-type: inline-size;
  overflow: hidden;
  isolation: isolate;
  background: var(--black);
  color: var(--white);
  text-decoration: none;
}

.project-neighbor-card::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.04) 0%, rgba(5, 5, 5, 0.12) 42%, rgba(5, 5, 5, 0.74) 100%),
    radial-gradient(circle at 50% 72%, rgba(5, 5, 5, 0.44), transparent 44%);
  opacity: 0.96;
  transition: opacity 900ms var(--ease-cinematic-out);
}

.project-neighbor-card:hover::after,
.project-neighbor-card:focus-visible::after {
  opacity: 0.74;
}

.project-neighbor-media,
.project-neighbor-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.project-neighbor-media iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  aspect-ratio: 16 / 9;
}

.project-neighbor-media {
  z-index: 0;
  background: transparent;
  container-type: size;
}

.project-neighbor-media img,
.project-neighbor-media iframe {
  border: 0;
  transform: scale(var(--media-scale, 1.16));
  clip-path: inset(var(--media-inset, 0px));
}

.project-neighbor-media iframe {
  width: auto;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%) scale(var(--media-scale, 1));
  clip-path: inset(var(--media-inset, 0px));
}

.project-neighbor-media img {
  object-fit: cover;
  filter: saturate(0.94) brightness(0.86);
  transition: filter 1200ms var(--ease-cinematic-out);
}

.project-neighbor-media iframe {
  opacity: 0;
  pointer-events: none;
  transition: opacity 1100ms var(--ease-cinematic-out);
}

.project-neighbor-media iframe.is-vimeo-active {
  opacity: 1;
}

.project-neighbor-card:has(iframe) .project-neighbor-media img {
  opacity: 0;
}

.project-neighbor-card:hover .project-neighbor-media img,
.project-neighbor-card:focus-visible .project-neighbor-media img {
  filter: saturate(1.06) brightness(0.98);
}

@media (min-aspect-ratio: 16 / 9) {
  .vimeo-embed,
  .project-panel-video,
  .project-media-item iframe,
  .work-card iframe,
  .project-neighbor-media iframe {
    width: 100%;
    height: auto;
  }
}

@supports (width: 100cqw) {
  .vimeo-embed,
  .project-media-item iframe,
  .work-card iframe,
  .project-neighbor-media iframe {
    width: max(100cqw, calc(100cqh * 16 / 9));
    height: max(100cqh, calc(100cqw * 9 / 16));
    min-width: 100cqw;
    min-height: 100cqh;
  }
}

.project-panel-media > .project-panel-video {
  width: max(100vw, calc(100dvh * 16 / 9));
  height: max(100dvh, calc(100vw * 9 / 16));
}

.project-neighbor-copy {
  position: absolute;
  z-index: 2;
  left: clamp(1rem, 2.4vw, 2.2rem);
  right: clamp(1rem, 2.4vw, 2.2rem);
  bottom: clamp(1rem, 2.4vw, 2.2rem);
  display: grid;
  gap: var(--title-kicker-gap);
  text-transform: uppercase;
}

.project-neighbor-copy p,
.project-neighbor-copy h3,
.project-neighbor-copy span {
  margin: 0;
}

.project-neighbor-copy p {
  color: var(--white-body);
  font-weight: 950;
}

.project-neighbor-copy h3 {
  font-family: var(--display-font);
  font-size: clamp(3.6rem, 18cqw, 11rem);
  line-height: 0.76;
  letter-spacing: 0;
  transition: transform 1200ms var(--ease-cinematic);
}

.project-neighbor-copy span {
  max-width: 32rem;
  color: var(--white-body);
  font-size: clamp(0.92rem, 1.2vw, 1.12rem);
  line-height: 1.08;
  font-weight: 400;
}

.project-neighbor-card:hover .project-neighbor-copy h3,
.project-neighbor-card:focus-visible .project-neighbor-copy h3 {
  transform: translate3d(0.2rem, 0, 0) scale(1.018);
}

.project-neighbor-card:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 0.18rem var(--focus);
}

@keyframes thumb-drift {
  from {
    transform: scale(1.035) translate3d(-0.6%, -0.4%, 0);
  }

  to {
    transform: scale(1.08) translate3d(0.8%, 0.5%, 0);
  }
}

@keyframes grain-shift {
  from {
    transform: translate3d(-2%, -1%, 0);
  }

  to {
    transform: translate3d(2%, 1%, 0);
  }
}

@media (max-width: 820px) {
  .site-header {
    padding: max(0.7rem, env(safe-area-inset-top)) 0.7rem 0.7rem;
  }

  .brand-logo {
    width: 3.35rem;
  }

  .menu-panel {
    grid-template-columns: 1fr;
    align-content: stretch;
    align-items: stretch;
    gap: clamp(1.2rem, 5vw, 2.4rem);
    min-height: 100dvh;
    padding: calc(max(0.7rem, env(safe-area-inset-top)) + 5rem) 1rem max(1rem, env(safe-area-inset-bottom));
    overflow-y: auto;
  }

  .menu-backdrop {
    background:
      linear-gradient(0deg, rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0.48)),
      url("assets/glass-hybrid.png") center / cover no-repeat;
  }

  .menu-nav {
    align-self: center;
    display: flex;
    min-height: min(58dvh, 28rem);
    flex-direction: column;
    justify-content: center;
    gap: clamp(0.35rem, 1.8vw, 0.8rem);
  }

  .menu-nav a {
    width: 100%;
    font-size: clamp(4.6rem, 22vw, 9rem);
    line-height: 0.76;
  }

  .menu-note {
    align-self: end;
    max-width: 28rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(248, 248, 244, 0.22);
    font-size: clamp(0.92rem, 3.7vw, 1.08rem);
    line-height: 1.05;
  }

  .project-caption {
    right: 1rem;
  }

  .mega-word {
    font-size: clamp(3.7rem, 18.5vw, 7rem);
  }

  .reel-counter {
    top: auto;
    bottom: 0.75rem;
  }

  .panel-copy h3 {
    font-size: clamp(3.4rem, 16cqw, 7.6rem);
  }

  .work-card h2 {
    font-size: clamp(3rem, 13cqw, 5.8rem);
  }

  .about-section,
  .site-footer,
  .definition-section,
  .about-manifesto {
    grid-template-columns: 1fr;
    align-content: end;
  }

  .site-footer {
    align-content: center;
    padding-bottom: var(--footer-bottom-clearance);
  }

  .about-section h2,
  .footer-intro h2,
  .definition-section h2,
  .about-manifesto h2 {
    max-width: 100%;
  }

  .about-hero-copy h1 {
    font-size: clamp(3.5rem, 15vw, 8rem);
  }

  .principle-section {
    grid-template-columns: 1fr;
  }

  .principle-section > div {
    min-height: 64vh;
    min-height: 64dvh;
    border-right: 0;
    border-bottom: 1px solid rgba(248, 248, 244, 0.18);
  }

  .principle-section > div:last-child {
    border-bottom: 0;
  }

  .project-detail-intro {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .project-slogan-block h2 {
    max-width: 100%;
  }

  .project-detail-intro[data-block-side] .project-slogan-block,
  .project-detail-intro[data-block-side] .project-info-block {
    grid-column: auto;
    grid-row: auto;
    justify-self: stretch;
    text-align: left;
  }

  .project-meta-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }

  .project-meta-list div {
    min-height: auto;
    padding: 0;
  }

  .project-meta-list div + div {
    border-left: 0;
    padding-left: 0;
  }

  .project-feature-row {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 7vw, 3rem);
    padding: clamp(4.5rem, 15vw, 7rem) clamp(1rem, 4vw, 1.5rem);
  }

  .project-story-block,
  .project-story-block-wide {
    grid-column: 1 / -1;
    max-width: 100%;
    font-size: clamp(1rem, 4.4vw, 1.32rem);
    text-align: left;
  }

  .project-feature-row-text-left .project-story-block,
  .project-feature-row-text-right .project-story-block,
  .project-feature-row-text-left .project-media-item-row,
  .project-feature-row-text-right .project-media-item-row {
    grid-column: 1 / -1;
  }

  .project-media-item,
  .project-media-item-large,
  .project-media-item-left,
  .project-media-item-right,
  .project-media-item-center {
    grid-column: 1 / -1;
    min-height: auto;
  }

  .project-feature-row .project-media-item {
    min-height: auto;
    aspect-ratio: var(--media-aspect, 16 / 9);
  }

  .project-editorial-section > .project-media-item-left,
  .project-editorial-section > .project-media-item-right,
  .project-editorial-section > .project-media-item-center {
    width: 100%;
    margin-block: 0;
  }

  .project-editorial-section > .project-media-item-contained {
    width: min(28rem, 100%);
    margin-block: clamp(2.25rem, 10vw, 4rem);
  }

  .project-video-card {
    min-height: auto;
  }

  .project-neighbor-section {
    min-height: auto;
    padding: clamp(4.5rem, 15vw, 7rem) clamp(1rem, 4vw, 1.5rem);
  }

  .project-neighbor-grid {
    grid-template-columns: 1fr;
  }

  .project-neighbor-heading h2 {
    max-width: 100%;
    font-size: clamp(4rem, 19vw, 8.6rem);
  }

  .project-neighbor-copy h3 {
    font-size: clamp(3rem, 14cqw, 6.4rem);
  }

  .project-neighbor-copy span {
    max-width: 24rem;
  }

  .work-grid-section {
    grid-template-columns: 1fr;
  }

  .work-card {
    min-height: 72vh;
    min-height: 72dvh;
  }

  .project-hero-controls {
    left: clamp(0.9rem, 4vw, 1.25rem);
    right: clamp(0.9rem, 4vw, 1.25rem);
    bottom: max(0.85rem, env(safe-area-inset-bottom));
    grid-template-columns: 2.75rem minmax(0, 1fr) 2.75rem;
    gap: 0.35rem 0.75rem;
    max-width: none;
    min-height: 5.4rem;
  }

  .hero-progress-label {
    grid-column: 1 / -1;
    order: -1;
  }

  .hero-volume-control {
    width: 2.75rem;
    height: 2.75rem;
  }

  .hero-volume-popover {
    height: min(7rem, 32vh);
    bottom: calc(100% + 0.35rem);
  }

  .project-hero-controls .hero-volume-popover input[type="range"] {
    width: min(6.2rem, 30vh);
  }

  .hero-icon-button {
    width: 2.75rem;
    min-width: 2.75rem;
    height: 2.75rem;
  }

  .project-hero-controls input[type="range"] {
    height: 1.65rem;
  }
}

@media (max-width: 520px) {
  .menu-nav a {
    font-size: clamp(4.2rem, 24vw, 6.6rem);
  }

  .behind-line {
    font-size: 4rem;
  }

  .project-caption h1,
  .project-caption h2 {
    font-size: 1.1rem;
  }

  .panel-copy h3 {
    font-size: clamp(2.9rem, 14.5cqw, 5rem);
  }

  .about-section h2,
  .footer-intro h2,
  .definition-section h2,
  .about-manifesto h2 {
    font-size: clamp(3.6rem, 17vw, 7rem);
  }

  .project-hero-copy h1 {
    font-size: clamp(5.2rem, 28vw, 9rem);
  }

  .project-slogan-block h2 {
    font-size: clamp(3.6rem, 17vw, 7rem);
  }

  .work-index-copy h1 {
    font-size: clamp(5.2rem, 28vw, 9rem);
  }

  .work-card h2 {
    font-size: clamp(2.9rem, 13cqw, 4.8rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
    scroll-behavior: auto !important;
  }

  .project-detail-hero.has-hero-ui .project-hero-copy,
  .project-detail-hero.has-hero-ui .project-hero-controls,
  .project-detail-hero.has-hero-ui .project-hero-controls > * {
    clip-path: inset(0) !important;
    filter: none !important;
    transform: none !important;
    transition:
      opacity 240ms ease !important;
  }

  .filmgrain-overlay span {
    animation-duration: 520ms !important;
    animation-iteration-count: infinite !important;
  }
}
