:root {
  --page-bg: #f5efe6;
  --page-bg-soft: #efe6da;
  --page-bg-ink: #201c19;
  --surface-white: rgba(255, 252, 247, 0.76);
  --text-color: #13110f;
  --muted: rgba(19, 17, 15, 0.58);
  --muted-strong: rgba(19, 17, 15, 0.74);
  --hairline: rgba(19, 17, 15, 0.1);
  --hairline-strong: rgba(19, 17, 15, 0.18);
  --surface-shadow: 0 1.8rem 4rem rgba(22, 18, 14, 0.08);
  --inner-shadow: 0 1.8rem 4rem rgba(0, 0, 0, 0.24);
  --serif: "Newsreader", "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --max-width: 94rem;
  --gutter: clamp(1.2rem, 2vw, 2.4rem);
  --shell-max-width: calc(var(--max-width) + (var(--gutter) * 2));
  --header-offset: 0rem;
  --header-reserve: clamp(4.6rem, 6.8vw, 5.4rem);
  --projects-sticky-top: calc(var(--header-reserve) + clamp(0.82rem, 1.2vw, 1.22rem));
  --space-xl: clamp(4.6rem, 10vw, 10rem);
  --space-lg: clamp(3.2rem, 7vw, 6.5rem);
  --space-md: clamp(2rem, 4vw, 3rem);
  --display: clamp(4.7rem, 13vw, 12.2rem);
  --heading: clamp(2.45rem, 5vw, 4.9rem);
  --body: clamp(1.04rem, 1.45vw, 1.36rem);
  --small: clamp(0.92rem, 0.88rem + 0.18vw, 1rem);
  --label: clamp(0.76rem, 0.72rem + 0.2vw, 0.86rem);
  --measure-tight: 15ch;
  --measure-body: 34ch;
  --measure-copy: 32ch;
  --lane-duration: 920ms;
  --lane-soft-duration: 760ms;
  --lane-ease: cubic-bezier(0.2, 0.86, 0.22, 1);
  --lane-panel-width: clamp(52rem, 74vw, 72rem);
  --lane-panel-gap: clamp(1.8rem, 3vw, 3rem);
  --lane-panel-height: clamp(26rem, 36vw, 34rem);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 255, 255, 0.6), transparent 26%),
    radial-gradient(circle at 88% 24%, rgba(227, 210, 190, 0.32), transparent 30%),
    linear-gradient(180deg, var(--page-bg) 0%, #f2ebe2 100%);
  color: var(--text-color);
  font-family: var(--serif);
  font-optical-sizing: auto;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.36), transparent 12%),
    radial-gradient(circle at 50% -20%, rgba(0, 0, 0, 0.05), transparent 48%);
  opacity: 0.55;
}

body[data-projects-view="detail"] {
  overflow: hidden;
}

a,
button {
  color: inherit;
}

a {
  text-decoration: none;
}

button {
  padding: 0;
  border: 0;
  background: transparent;
  font: inherit;
}

h1,
h2,
h3,
h4,
p,
figure {
  margin: 0;
  font-weight: 450;
}

.site-shell {
  position: relative;
  width: min(100%, var(--shell-max-width));
  margin: 0 auto;
  padding: 0 var(--gutter) var(--space-xl);
}

.site-header {
  position: sticky;
  top: var(--header-offset);
  z-index: 80;
  width: 100%;
  padding: 0.88rem 0 0.74rem;
  margin-bottom: clamp(1rem, 2vw, 1.6rem);
  background:
    linear-gradient(180deg, rgba(245, 239, 230, 0.94) 0%, rgba(245, 239, 230, 0.8) 58%, rgba(245, 239, 230, 0.16) 100%);
  backdrop-filter: blur(18px) saturate(118%);
  border-bottom: 1px solid transparent;
  transform: translate3d(0, 0, 0);
  transition:
    transform 320ms cubic-bezier(0.23, 0.86, 0.22, 1),
    opacity 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.site-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  width: min(100%, var(--shell-max-width));
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.site-header-actions {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.9rem, 2vw, 1.6rem);
  min-width: 0;
}

.site-header.is-scrolled {
  border-bottom-color: var(--hairline);
}

.site-header.is-hidden {
  transform: translate3d(0, calc(-100% - 0.8rem), 0);
  opacity: 0;
  pointer-events: none;
}

.site-mark,
.nav-link,
.contact-link,
.hero-link,
.projects-enter,
.projects-close,
.projects-rail-action,
.project-back,
.play-enter,
.play-back,
.play-close,
.play-rail-action {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.site-mark {
  flex: 0 0 auto;
  max-width: 100%;
  font-size: clamp(1.1rem, 1.7vw, 1.52rem);
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 600;
  white-space: nowrap;
  word-break: keep-all;
  overflow-wrap: normal;
}

.site-mark.scramble-text .scramble-text__measure,
.site-mark.scramble-text .scramble-text__live {
  white-space: nowrap;
  word-break: keep-all;
  overflow-wrap: normal;
  hyphens: none;
}

.site-nav,
.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.2rem;
  min-width: 0;
}

.locale-switch {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: baseline;
  gap: 0.24rem;
  color: var(--muted);
  font-family: var(--serif);
  font-size: var(--label);
  line-height: 1.12;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: auto;
}

.locale-switch-option {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.1rem;
  min-height: 2.1rem;
  padding: 0.22rem 0.12rem;
  cursor: pointer;
  color: var(--muted);
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  letter-spacing: 0;
  text-transform: inherit;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.locale-switch-option:hover,
.locale-switch-option:focus-visible {
  color: var(--text-color);
  outline: none;
}

.locale-switch-option.is-active {
  color: var(--text-color);
  font-weight: 620;
}

.locale-switch-divider {
  opacity: 0.36;
}

.nav-link,
.contact-link,
.hero-link,
.projects-enter,
.projects-close,
.projects-rail-action,
.project-back,
.play-enter,
.play-back,
.play-close,
.play-rail-action {
  font-family: var(--serif);
  font-size: var(--label);
  line-height: 1.12;
  letter-spacing: 0.01em;
}

.nav-link {
  text-transform: uppercase;
}

.nav-link,
.contact-link {
  color: var(--muted);
}

.contact-link,
.hero-link,
.projects-enter,
.projects-close,
.projects-rail-action,
.project-back,
.play-enter,
.play-back,
.play-close,
.play-rail-action {
  letter-spacing: -0.005em;
  text-transform: none;
}

.nav-link {
  padding-bottom: 0.42rem;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: color 180ms ease;
}

.nav-link.is-active {
  color: var(--text-color);
}

.nav-link::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.04rem;
  width: 0.95rem;
  height: 1px;
  background: currentColor;
  opacity: 0;
  transform: translateX(-50%) scaleX(0.34);
  transform-origin: center;
  transition:
    transform 220ms cubic-bezier(0.23, 0.86, 0.22, 1),
    opacity 180ms ease;
}

.nav-link.is-active::before {
  opacity: 1;
  transform: translateX(-50%) scaleX(1);
}

.nav-link::after,
.contact-link::after,
.hero-link::after,
.projects-enter::after,
.projects-close::after,
.projects-rail-action::after,
.project-back::after,
.play-enter::after,
.play-back::after,
.play-close::after,
.play-rail-action::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.18rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 180ms ease;
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.contact-link:hover::after,
.contact-link:focus-visible::after,
.hero-link:hover::after,
.hero-link:focus-visible::after,
.projects-enter:hover::after,
.projects-enter:focus-visible::after,
.projects-close:hover::after,
.projects-close:focus-visible::after,
.projects-rail-action:hover::after,
.projects-rail-action:focus-visible::after,
.project-back:hover::after,
.project-back:focus-visible::after,
.play-enter:hover::after,
.play-enter:focus-visible::after,
.play-back:hover::after,
.play-back:focus-visible::after,
.play-close:hover::after,
.play-close:focus-visible::after,
.play-rail-action:hover::after,
.play-rail-action:focus-visible::after {
  transform: scaleX(1);
}

.hero {
  display: grid;
  gap: clamp(2.2rem, 4vw, 3.4rem);
  min-height: min(62rem, calc(100svh - var(--header-reserve) - 1.5rem));
  padding: clamp(3rem, 7vw, 5.8rem) 0 clamp(2.4rem, 3vw, 3rem);
}

.hero-topline,
.hero-foot {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(17rem, 21rem);
  gap: 1rem clamp(1rem, 4vw, 4rem);
}

.hero-intro,
.hero-note,
.hero-caption,
.projects-zone-label,
.projects-surface-note,
.project-stage-label,
.section-detail,
.projects-anchor-label,
.projects-anchor-meta,
.project-trigger-meta,
.project-stage-progress-copy,
.project-lane-kicker,
.project-detail-kicker,
.project-media-overline,
.project-media-note,
.play-zone-label,
.play-surface-note,
.play-stage-label,
.play-anchor-label,
.play-anchor-meta,
.play-anchor-status,
.play-trigger-meta,
.play-stage-progress-copy {
  font-family: var(--serif);
}

.hero-intro,
.hero-note,
.hero-caption,
.section-label,
.section-kicker,
.section-subtitle,
.section-detail,
.projects-copy,
.projects-zone-label,
.projects-surface-note,
.projects-anchor-label,
.projects-anchor-meta,
.project-trigger-meta,
.project-trigger-premise,
.project-stage-label,
.project-stage-progress-copy,
.project-lane-kicker,
.project-lane-paragraph,
.project-detail-copy,
.project-media-overline,
.project-media-note,
.play-zone-label,
.play-surface-note,
.play-zone-context,
.play-anchor-label,
.play-anchor-meta,
.play-anchor-status,
.play-trigger-meta,
.play-trigger-premise,
.play-stage-label,
.play-stage-progress-copy {
  color: var(--muted);
}

.hero-intro,
.hero-note,
.hero-caption,
.projects-surface-note,
.project-stage-label,
.project-stage-progress-copy,
.projects-anchor-label,
.projects-anchor-meta,
.project-trigger-meta,
.project-lane-kicker,
.project-detail-kicker,
.project-media-overline,
.project-media-note,
.projects-zone-label,
.play-surface-note,
.play-zone-label,
.play-zone-context,
.play-anchor-label,
.play-anchor-meta,
.play-anchor-status,
.play-trigger-meta,
.play-trigger-premise,
.play-stage-label,
.play-stage-progress-copy {
  font-size: var(--small);
  line-height: 1.22;
}

.hero-intro,
.hero-note {
  max-width: 20rem;
}

.hero-note,
.hero-link {
  justify-self: end;
}

.hero-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(7rem, 12rem) minmax(0, 1fr) minmax(12rem, 17rem);
  align-items: end;
  gap: 1rem clamp(1.2rem, 4vw, 4rem);
  min-height: clamp(17rem, 30vw, 24rem);
  perspective: 1600px;
}

.hero-aside {
  align-self: start;
  max-width: 12rem;
  font-family: var(--serif);
  font-size: var(--label);
  line-height: 1.28;
  letter-spacing: 0.01em;
  color: rgba(19, 17, 15, 0.42);
}

.hero-aside--left {
  grid-column: 1;
  grid-row: 1;
  transform: translate3d(calc(var(--depth-progress, 0) * -0.5rem), 0, 0);
}

.hero-title {
  grid-column: 2 / -1;
  grid-row: 2;
  position: relative;
  width: max-content;
  max-width: none;
  font-size: clamp(3rem, 10vw, 11rem);
  line-height: 0.84;
  letter-spacing: -0.09em;
  font-weight: 510;
  white-space: nowrap;
  word-break: keep-all;
  overflow-wrap: normal;
  hyphens: none;
  margin-top: clamp(0.8rem, 2.6vw, 2.1rem);
  transform: translate3d(0, calc(var(--depth-progress, 0) * -1rem), 0);
}

.hero-title.scramble-text .scramble-text__measure,
.hero-title.scramble-text .scramble-text__live {
  word-break: keep-all;
  overflow-wrap: normal;
  hyphens: none;
}

.hero-title::before,
.hero-title::after {
  content: none;
}

.hero-subtitle {
  grid-column: 3;
  grid-row: 1;
  align-self: start;
  justify-self: end;
  max-width: 12rem;
  font-size: clamp(1.28rem, 2vw, 1.88rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  transform: translate3d(calc(var(--depth-progress, 0) * 0.4rem), calc(var(--depth-progress, 0) * -0.4rem), 0);
}

.hero-caption {
  max-width: 27rem;
}

.hero-link {
  cursor: pointer;
  justify-self: end;
}

.editorial-section {
  display: grid;
  grid-template-columns: minmax(7.2rem, 9.25rem) minmax(0, 1fr);
  gap: 1rem clamp(1.2rem, 3vw, 3.6rem);
  padding: var(--space-lg) 0;
  border-top: 1px solid var(--hairline);
  scroll-margin-top: calc(var(--header-reserve) + 1rem);
}

.section-label-stack {
  display: grid;
  align-content: start;
  gap: 0.6rem;
}

.section-label {
  padding-top: 0.25rem;
  font-size: clamp(1.16rem, 2vw, 1.52rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 650;
}

.section-panel {
  display: grid;
  min-height: clamp(22rem, 44svh, 34rem);
  align-content: start;
}

.editorial-section--we .section-panel {
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 22rem);
  gap: 1rem clamp(1rem, 4vw, 4rem);
}

.editorial-section--contact .section-panel {
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 22rem);
  gap: 1rem clamp(1rem, 4vw, 4rem);
}

.section-main {
  display: grid;
  align-content: start;
  gap: 0.95rem;
}

.section-side {
  display: grid;
  align-content: space-between;
  gap: 1.1rem;
  justify-items: start;
}

.section-heading {
  max-width: var(--measure-tight);
  font-size: var(--heading);
  line-height: 0.9;
  letter-spacing: -0.065em;
  font-weight: 500;
}

.section-kicker {
  max-width: 20rem;
  font-size: clamp(0.98rem, 1.3vw, 1.1rem);
  line-height: 1.18;
  letter-spacing: -0.015em;
}

.section-subtitle {
  max-width: 30ch;
  font-size: var(--body);
  line-height: 1.24;
  letter-spacing: -0.02em;
}

.section-detail {
  max-width: 30ch;
  font-size: var(--small);
  line-height: 1.32;
}

.editorial-section--we .section-label {
  min-height: 1em;
  font-size: clamp(1.95rem, 3vw, 2.72rem);
  line-height: 0.88;
  letter-spacing: -0.06em;
  font-weight: 560;
  transition:
    opacity 320ms ease,
    transform 520ms cubic-bezier(0.2, 0.86, 0.22, 1);
}

.we-perspective-panel {
  position: relative;
  align-items: start;
}

.editorial-section--we .section-label,
.we-perspective-marker,
.we-perspective-main,
.we-perspective-side {
  transition:
    opacity 320ms ease,
    transform 520ms cubic-bezier(0.2, 0.86, 0.22, 1);
}

.editorial-section--we.is-perspective-shifting .section-label,
.editorial-section--we.is-perspective-shifting .we-perspective-marker,
.editorial-section--we.is-perspective-shifting .we-perspective-main,
.editorial-section--we.is-perspective-shifting .we-perspective-side {
  opacity: 0.92;
  transform: translate3d(0, 0.12rem, 0);
}

.we-perspective-marker {
  grid-column: 1;
  display: block;
  align-content: start;
  padding-top: 0.35rem;
  padding-bottom: 0.62rem;
  border-top: 1px solid var(--hairline);
}

.we-perspective-label {
  min-height: 1em;
  max-width: 15ch;
  color: var(--muted);
  font-size: var(--label);
  line-height: 1.16;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.we-perspective-main {
  grid-column: 1;
  gap: 1.08rem;
}

.we-perspective-side {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-content: start;
  gap: 1rem;
}

.we-perspective-slot {
  display: block;
}

.we-perspective-slot--note {
  padding-top: 0.85rem;
  border-top: 1px solid var(--hairline);
}

.we-perspective-side .section-detail {
  color: var(--muted-strong);
}

.contact-side {
  align-self: end;
}

.play-panel {
  position: relative;
  grid-template-areas: "play-stack";
  align-items: start;
  min-height: auto;
  gap: clamp(2rem, 3vw, 3rem);
  isolation: isolate;
}

.play-rail-action,
.play-enter,
.play-close {
  width: fit-content;
  cursor: pointer;
}

.play-rail-action,
.play-close {
  color: var(--muted);
}

.play-surface,
.play-zone {
  grid-area: play-stack;
  align-self: start;
  transform-origin: center top;
  backface-visibility: hidden;
}

.play-surface {
  z-index: 1;
  display: grid;
  gap: clamp(1.8rem, 3vw, 2.7rem);
  min-height: clamp(22rem, 44svh, 34rem);
  overflow: visible;
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  transition:
    opacity var(--lane-soft-duration) ease,
    transform var(--lane-duration) var(--lane-ease),
    filter var(--lane-soft-duration) ease;
}

.play-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(17rem, 22rem);
  gap: 1rem clamp(1rem, 4vw, 4rem);
  align-items: start;
  transition:
    opacity var(--lane-soft-duration) ease,
    transform var(--lane-duration) var(--lane-ease);
}

.play-side {
  gap: 1rem;
}

.play-surface-foot {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem clamp(1rem, 4vw, 4rem);
  align-items: end;
  padding-top: 1rem;
  border-top: 1px solid var(--hairline);
  transition:
    opacity var(--lane-soft-duration) ease,
    transform var(--lane-duration) var(--lane-ease);
}

.play-surface-note,
.play-zone-label,
.play-zone-context,
.play-anchor-label,
.play-anchor-meta,
.play-anchor-status,
.play-trigger-meta,
.play-trigger-premise,
.play-stage-label,
.play-stage-progress-copy,
.play-placeholder-kicker,
.play-placeholder-note {
  font-family: var(--serif);
}

.play-surface-note,
.play-zone-label,
.play-zone-context,
.play-anchor-label,
.play-anchor-meta,
.play-anchor-status,
.play-trigger-meta,
.play-trigger-premise,
.play-stage-label,
.play-stage-progress-copy,
.play-placeholder-kicker,
.play-placeholder-note {
  color: var(--muted);
}

.play-surface-note,
.play-zone-label,
.play-anchor-label,
.play-anchor-meta,
.play-anchor-status,
.play-trigger-meta,
.play-stage-label,
.play-stage-progress-copy,
.play-placeholder-kicker,
.play-placeholder-note {
  font-size: var(--small);
  line-height: 1.22;
}

.play-surface-note {
  max-width: 31rem;
  min-height: 2.5em;
}

.play-enter {
  justify-self: end;
}

.play-zone {
  z-index: 2;
  display: grid;
  gap: clamp(1.2rem, 2vw, 1.7rem);
  max-height: 0;
  overflow: clip;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 1.45rem, 0) scale(0.992);
  transition:
    opacity var(--lane-soft-duration) ease,
    transform var(--lane-duration) var(--lane-ease),
    max-height var(--lane-duration) var(--lane-ease);
}

.play-zone-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: clamp(1rem, 2.5vw, 2rem);
  padding-top: 0.2rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--hairline);
}

.play-zone-heading {
  display: grid;
  gap: 0.2rem;
}

.play-zone-context {
  max-width: 30ch;
  font-size: var(--label);
  line-height: 1.18;
  letter-spacing: 0.01em;
}

.editorial-section--play.is-zone-open .play-surface {
  opacity: 0.26;
  transform: translate3d(0, -0.45rem, 0) scale(0.984);
  pointer-events: none;
}

.editorial-section--play.is-list-open .play-surface {
  opacity: 0.22;
  transform: translate3d(0, -0.48rem, 0) scale(0.982);
}

.editorial-section--play.is-detail-open .play-surface {
  opacity: 0.16;
  transform: translate3d(0, -0.6rem, 0) scale(0.978);
}

.editorial-section--play.is-detail-open.is-live-site-runtime .play-surface {
  opacity: 0.26;
  transform: translate3d(0, -0.28rem, 0) scale(0.986);
}

.editorial-section--play.is-list-open .play-intro {
  opacity: 0.42;
  transform: translate3d(0, -0.12rem, 0);
}

.editorial-section--play.is-detail-open .play-intro {
  opacity: 0.24;
  transform: translate3d(0, -0.18rem, 0);
}

.editorial-section--play.is-detail-open.is-live-site-runtime .play-intro {
  opacity: 0.34;
  transform: translate3d(0, -0.08rem, 0);
}

.editorial-section--play.is-list-open .play-surface-foot {
  opacity: 0.4;
  transform: translate3d(0, -0.08rem, 0);
}

.editorial-section--play.is-detail-open .play-surface-foot {
  opacity: 0.18;
  transform: translate3d(0, -0.12rem, 0);
}

.editorial-section--play.is-detail-open.is-live-site-runtime .play-surface-foot {
  opacity: 0.28;
  transform: translate3d(0, -0.04rem, 0);
}

.editorial-section--play.is-zone-open .play-zone {
  max-height: 150rem;
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
}

.editorial-section--play.is-zone-open .play-rail-action {
  opacity: 0.18;
}

.play-lane {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  min-width: 0;
  min-height: 0;
  align-items: start;
  transition:
    grid-template-columns var(--lane-duration) var(--lane-ease),
    gap var(--lane-duration) var(--lane-ease);
}

.editorial-section--play.is-detail-open .play-lane {
  grid-template-columns: minmax(20rem, 23rem) minmax(0, 1fr);
  gap: clamp(2rem, 3.5vw, 3.4rem);
}

.editorial-section--play.is-detail-open.is-play-theory-open .play-lane {
  grid-template-columns: minmax(17rem, 19rem) minmax(0, 1fr);
  gap: clamp(1.6rem, 3vw, 2.8rem);
}

.play-selector {
  position: sticky;
  top: var(--projects-sticky-top);
  display: grid;
  gap: 0.95rem;
  align-self: start;
  max-width: 40rem;
  z-index: 5;
  transform: translate3d(0, 0, 0);
  transition:
    max-width var(--lane-duration) var(--lane-ease),
    transform var(--lane-duration) var(--lane-ease),
    opacity var(--lane-soft-duration) ease;
}

.editorial-section--play.is-detail-open .play-selector {
  max-width: 23rem;
  transform: translate3d(-0.08rem, 0, 0);
}

.play-anchor {
  display: grid;
  gap: 0.42rem;
  align-content: start;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding-bottom: 0;
  border-bottom: 1px solid transparent;
  pointer-events: none;
  transform: translate3d(-1.1rem, 0, 0);
  transition:
    max-height var(--lane-duration) var(--lane-ease),
    transform var(--lane-duration) var(--lane-ease),
    opacity var(--lane-soft-duration) ease,
    padding var(--lane-duration) var(--lane-ease),
    border-color 220ms ease;
}

.editorial-section--play.is-detail-open .play-anchor {
  max-height: 30rem;
  overflow: visible;
  opacity: 1;
  padding-bottom: 1.15rem;
  border-bottom-color: var(--hairline);
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

.play-anchor-status {
  max-width: 14rem;
  font-size: clamp(1.02rem, 1.3vw, 1.12rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--text-color);
}

.play-anchor-title {
  max-width: 15ch;
  font-size: clamp(2.9rem, 4.4vw, 4.8rem);
  line-height: 0.88;
  letter-spacing: -0.078em;
  font-weight: 500;
}

.play-anchor-summary {
  max-width: 30ch;
  font-size: clamp(1rem, 1.38vw, 1.12rem);
  line-height: 1.24;
  letter-spacing: -0.018em;
  color: var(--muted);
}

.play-theory-trigger,
.play-theory-return {
  position: relative;
  width: fit-content;
  margin-top: 0.62rem;
  padding: 0 0 0.18rem;
  color: var(--text-color);
  font-family: var(--serif);
  font-size: clamp(1rem, 1.18vw, 1.08rem);
  line-height: 1.06;
  letter-spacing: -0.012em;
  text-align: left;
  cursor: pointer;
}

.play-theory-trigger::after,
.play-theory-return::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  opacity: 0.72;
  transform: scaleX(1);
  transform-origin: left center;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.play-theory-trigger:hover::after,
.play-theory-trigger:focus-visible::after,
.play-theory-return:hover::after,
.play-theory-return:focus-visible::after {
  opacity: 1;
  transform: scaleX(0.82);
}

.play-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: transparent;
  transform: translate3d(0, 0, 0);
  transition:
    opacity var(--lane-soft-duration) ease,
    max-height var(--lane-duration) var(--lane-ease),
    border-color 220ms ease,
    transform var(--lane-duration) var(--lane-ease);
}

.editorial-section--play.is-list-open .play-list {
  background: linear-gradient(180deg, rgba(245, 239, 230, 0.46), rgba(245, 239, 230, 0.22));
  backdrop-filter: blur(8px);
}

.editorial-section--play.is-detail-open .play-list {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  border-color: transparent;
  transform: translate3d(-1.1rem, 0, 0);
}

.play-trigger {
  display: grid;
  gap: 0.85rem;
  width: 100%;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--hairline);
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition:
    transform 220ms ease,
    color 180ms ease;
}

.play-trigger:last-child {
  border-bottom: 0;
}

.play-trigger-body {
  display: grid;
  gap: 0.5rem;
}

.play-trigger-name {
  max-width: 15ch;
  font-size: clamp(2.4rem, 3.8vw, 3.8rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
  font-weight: 500;
}

.play-trigger-premise {
  max-width: 30ch;
  font-size: clamp(0.98rem, 1.2vw, 1.06rem);
  line-height: 1.22;
  letter-spacing: -0.012em;
}

.play-trigger:hover,
.play-trigger:focus-visible {
  transform: translate3d(0.35rem, 0, 0);
}

.play-trigger.is-active .play-trigger-name {
  color: var(--text-color);
}

.play-stage-shell {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  min-width: 0;
  min-height: 0;
  height: 0;
  max-height: 0;
  background: transparent;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(1.1rem, 0, 0);
  transition:
    opacity var(--lane-soft-duration) ease,
    transform var(--lane-duration) var(--lane-ease),
    max-height var(--lane-duration) var(--lane-ease);
}

.editorial-section--play.is-detail-open .play-stage-shell {
  height: min(calc(100svh - var(--projects-sticky-top) - 0.8rem), 44rem);
  max-height: min(calc(100svh - var(--projects-sticky-top) - 0.8rem), 44rem);
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

.editorial-section--play.is-detail-open.is-play-theory-open .play-stage-shell {
  height: min(calc(100svh - var(--projects-sticky-top) - 0.8rem), 46rem);
  max-height: min(calc(100svh - var(--projects-sticky-top) - 0.8rem), 46rem);
}

.editorial-section--play.is-detail-open .play-stage-shell.play-stage-shell--live-site {
  grid-template-rows: minmax(0, 1fr);
  height: min(calc(100svh - var(--projects-sticky-top) - 0.3rem), 52rem);
  max-height: min(calc(100svh - var(--projects-sticky-top) - 0.3rem), 52rem);
  overflow: visible;
}

.editorial-section--play.is-detail-open.is-live-site-runtime .play-stage-shell.play-stage-shell--live-site {
  height: clamp(7.2rem, 16svh, 10rem);
  max-height: clamp(7.2rem, 16svh, 10rem);
  min-height: 0;
  overflow: visible;
}

.play-stage-shell:focus-visible {
  outline: none;
}

.play-stage-hud {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.18rem 0 0.98rem;
  border-bottom: 1px solid var(--hairline);
  color: var(--text-color);
}

.play-stage-shell--live-site .play-stage-hud {
  display: none;
}

.play-stage-progress {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-width: min(36vw, 14rem);
}

.play-stage-progress-bar {
  position: relative;
  display: block;
  flex: 1;
  height: 1px;
  background: var(--hairline);
  overflow: hidden;
}

.play-stage-progress-bar-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: var(--text-color);
  transition: width 260ms ease;
}

.play-stage {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 0;
  background: transparent;
}

.play-stage-mount {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 0;
  height: 100%;
  background: transparent;
}

.play-stage-view {
  min-width: 0;
  min-height: 0;
}

.play-stage-view--runtime {
  position: relative;
  height: 100%;
  background: transparent;
}

.play-stage-view--live-site {
  height: 100%;
}

.editorial-section--play.is-detail-open .play-stage-view--live-site {
  position: fixed;
  inset: 0;
  z-index: 72;
}

.play-runtime-shell {
  position: relative;
  width: 100%;
  height: 100%;
  background: transparent;
}

.play-runtime-shell--live-site {
  width: 100vw;
  min-height: 100%;
  height: 100svh;
}

.play-runtime-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  opacity: 1;
  transition: opacity 180ms ease;
}

.play-stage-view--runtime[data-play-runtime-ready="false"] .play-runtime-frame {
  opacity: 0;
}

.play-stage-view--cubo {
  height: 100%;
  min-height: 100%;
}

.play-cubo-composition {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0fr);
  gap: 0;
  align-items: stretch;
  width: 100%;
  height: 100%;
  min-height: 100%;
  transition:
    grid-template-columns var(--lane-duration) var(--lane-ease),
    gap var(--lane-duration) var(--lane-ease);
}

.play-cubo-runtime-pane {
  position: relative;
  display: grid;
  align-items: center;
  justify-items: start;
  min-width: 0;
  min-height: 100%;
  padding: 0;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
  transition:
    padding var(--lane-duration) var(--lane-ease),
    transform var(--lane-duration) var(--lane-ease);
}

.play-cubo-runtime-pane .play-runtime-shell {
  justify-self: start;
  align-self: center;
  transform-origin: left center;
  transition:
    width var(--lane-duration) var(--lane-ease),
    height var(--lane-duration) var(--lane-ease),
    transform var(--lane-duration) var(--lane-ease);
}

.play-stage-view--cubo.is-theory-open .play-cubo-composition {
  grid-template-columns: minmax(17rem, 0.58fr) minmax(28rem, 1.18fr);
  gap: clamp(1.2rem, 2.4vw, 2.5rem);
}

.play-stage-view--cubo.is-theory-open .play-cubo-runtime-pane {
  grid-column: 1;
  grid-row: 1;
  align-self: stretch;
  min-height: 0;
  padding: clamp(0.6rem, 1.4vw, 1rem) 0 clamp(0.6rem, 1.4vw, 1rem) clamp(0.2rem, 0.8vw, 0.6rem);
  transform: translate3d(0, 0, 0);
}

.play-stage-view--cubo.is-theory-open .play-cubo-runtime-pane .play-runtime-shell {
  width: min(100%, clamp(16rem, 26vw, 24rem));
  height: min(100%, clamp(17rem, 45svh, 30rem));
  transform: scale(0.86);
  transform-origin: left center;
}

.play-stage-view--cubo.is-theory-open .play-theory-area {
  grid-column: 2;
  grid-row: 1;
}

.play-theory-area {
  min-width: 0;
  min-height: 100%;
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(1.45rem, 0, 0);
  transition:
    max-width var(--lane-duration) var(--lane-ease),
    opacity var(--lane-soft-duration) ease,
    transform var(--lane-duration) var(--lane-ease);
}

.play-stage-view--cubo.is-theory-open .play-theory-area {
  max-width: 100%;
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

.play-theory-scroll {
  height: 100%;
  min-height: 100%;
  overflow: hidden;
  overscroll-behavior-x: contain;
  overscroll-behavior-y: none;
  padding: clamp(0.5rem, 1.2vw, 0.86rem) clamp(1.2rem, 3vw, 2.4rem) clamp(0.8rem, 1.6vw, 1.2rem);
  border-left: 1px solid var(--hairline);
  cursor: grab;
}

.play-stage-view--cubo.is-theory-open .play-theory-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  touch-action: pan-x pan-y;
}

.play-stage-view--cubo.is-theory-open .play-theory-scroll::-webkit-scrollbar {
  display: none;
}

.play-theory-scroll.is-dragging {
  cursor: grabbing;
}

.play-theory-scroll:focus-visible {
  outline: none;
}

.play-theory-track {
  --play-theory-gap: clamp(1.45rem, 3vw, 2.8rem);
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(20rem, 34vw, 32rem);
  gap: var(--play-theory-gap);
  align-items: center;
  width: max-content;
  min-width: 100%;
  min-height: 100%;
  padding: clamp(0.35rem, 1vh, 0.7rem) clamp(4rem, 7vw, 7rem) clamp(0.35rem, 1vh, 0.7rem) 0;
}

.play-theory-panel {
  --theory-offset: 0.86;
  --theory-focus: 0;
  position: relative;
  display: grid;
  align-content: center;
  gap: 0.78rem;
  min-height: min(100%, 25rem);
  padding: clamp(0.85rem, 1.4vw, 1.15rem) 0;
  opacity: 0.24;
  transform:
    translate3d(calc(var(--theory-offset) * -1.2rem), 0, 0)
    rotateY(calc(var(--theory-offset) * -1.8deg));
  transform-style: preserve-3d;
  transition:
    opacity var(--lane-soft-duration) ease,
    transform 300ms ease;
}

.play-theory-panel.is-revealed {
  opacity: calc(0.42 + (var(--theory-focus) * 0.58));
}

.play-theory-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: var(--hairline);
  opacity: calc(0.2 + (var(--theory-focus) * 0.45));
}

.play-theory-panel::after {
  content: "";
  position: absolute;
  left: 28%;
  right: calc(var(--play-theory-gap) * -0.8);
  bottom: clamp(1.3rem, 2vw, 1.9rem);
  height: 1px;
  background: linear-gradient(90deg, rgba(19, 17, 15, 0.16), transparent);
  opacity: calc(0.14 + (var(--theory-focus) * 0.26));
  pointer-events: none;
}

.play-theory-panel:last-child::after {
  display: none;
}

.play-theory-kicker {
  color: var(--muted);
  font-size: var(--small);
  line-height: 1.16;
}

.play-theory-title {
  max-width: 12ch;
  font-size: clamp(2.2rem, 3.3vw, 3.2rem);
  line-height: 0.94;
  letter-spacing: -0.052em;
  font-weight: 500;
}

.play-theory-body {
  display: grid;
  gap: 0.68rem;
  max-width: 32rem;
}

.play-theory-paragraph {
  max-width: 34ch;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.32vw, 1.14rem);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

@keyframes mobile-cubo-theory-lift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  38% {
    transform: translate3d(0, -1.1rem, 0) scale(0.975);
  }

  100% {
    transform: translate3d(0, -0.78rem, 0) scale(0.94);
  }
}

@keyframes mobile-theory-peek {
  0% {
    opacity: 0;
    transform: translate3d(0, 1rem, 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.play-stage-view--placeholder {
  display: grid;
  align-content: center;
  min-height: 100%;
  padding: clamp(1.8rem, 4vw, 3rem) 0;
}

.play-placeholder-copy {
  display: grid;
  gap: 0.9rem;
  max-width: 36rem;
}

.play-placeholder-title {
  max-width: 10ch;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.88;
  letter-spacing: -0.08em;
  font-weight: 500;
}

.play-placeholder-summary {
  max-width: 31ch;
  font-size: clamp(1.08rem, 1.55vw, 1.24rem);
  line-height: 1.24;
  letter-spacing: -0.018em;
  color: var(--text-color);
}

.contact-links {
  display: grid;
  gap: 0.4rem;
  justify-items: start;
}

.projects-rail-action,
.projects-enter,
.projects-close,
.project-back,
.play-back {
  width: fit-content;
  cursor: pointer;
}

.project-back,
.play-back {
  align-self: start;
  padding: 0.08rem 0 0.72rem;
  margin-bottom: 0.28rem;
  color: var(--text-color);
  font-size: clamp(0.98rem, 0.92rem + 0.18vw, 1.06rem);
  line-height: 1.02;
  letter-spacing: -0.012em;
  font-weight: 580;
  white-space: nowrap;
}

.project-back::after,
.play-back::after {
  bottom: 0.18rem;
}

.projects-close,
.play-close {
  align-self: start;
  min-height: 0;
  padding: 0.04rem 0 0.54rem;
  margin: 0;
  color: var(--text-color);
  font-size: clamp(0.94rem, 0.9rem + 0.16vw, 1.02rem);
  line-height: 1.04;
  letter-spacing: -0.012em;
  font-weight: 560;
  white-space: nowrap;
  text-align: right;
  transition:
    transform 180ms ease,
    color 180ms ease;
}

.projects-close::before,
.play-close::before {
  display: none;
}

.projects-close::after,
.play-close::after {
  display: block;
  bottom: 0.16rem;
  height: 1px;
  transform: scaleX(1);
  opacity: 0.84;
}

.projects-close:hover,
.projects-close:focus-visible,
.play-close:hover,
.play-close:focus-visible {
  outline: none;
  transform: translate3d(0.12rem, 0, 0);
  color: var(--text-color);
}

.projects-close:hover::before,
.projects-close:focus-visible::before,
.play-close:hover::before,
.play-close:focus-visible::before {
  display: none;
}

.projects-close:hover::after,
.projects-close:focus-visible::after,
.play-close:hover::after,
.play-close:focus-visible::after {
  opacity: 1;
}

.projects-rail-action {
  color: var(--muted);
}

.editorial-section--projects .section-panel {
  position: relative;
  grid-template-areas: "projects-stack";
  align-items: start;
  isolation: isolate;
  gap: clamp(1.8rem, 4vw, 3rem);
}

.projects-surface,
.projects-zone {
  grid-area: projects-stack;
  align-self: start;
  transform-origin: center top;
  backface-visibility: hidden;
}

.projects-surface {
  z-index: 1;
  display: grid;
  gap: clamp(1.7rem, 3vw, 2.6rem);
  min-height: clamp(22rem, 44svh, 34rem);
  overflow: visible;
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: none;
  transition:
    opacity var(--lane-soft-duration) ease,
    transform var(--lane-duration) var(--lane-ease),
    filter var(--lane-soft-duration) ease;
}

.projects-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(17rem, 22rem);
  gap: 1.1rem clamp(1rem, 4vw, 4rem);
  align-items: start;
  overflow: visible;
  transition:
    opacity var(--lane-soft-duration) ease,
    transform var(--lane-duration) var(--lane-ease),
    filter var(--lane-soft-duration) ease;
}

.editorial-section--projects .projects-heading .section-heading {
  max-width: min(15ch, 100%);
  overflow: visible;
  padding: 0.08em 0 0.14em 0.085em;
  margin: -0.08em 0 -0.14em -0.085em;
}

.editorial-section--projects .projects-heading .section-heading.scramble-text .scramble-text__measure,
.editorial-section--projects .projects-heading .section-heading.scramble-text .scramble-text__live {
  padding: 0.08em 0 0.14em 0.085em;
  margin: -0.08em 0 -0.14em -0.085em;
}

.projects-copy {
  display: grid;
  gap: 0.9rem;
  max-width: 23rem;
  justify-items: end;
  transition:
    opacity var(--lane-soft-duration) ease,
    transform var(--lane-duration) var(--lane-ease);
}

.projects-copy .section-subtitle,
.projects-copy .section-kicker {
  justify-self: end;
}

.projects-copy [data-projects-quote-kicker] {
  min-height: 1.3em;
}

.projects-copy [data-projects-quote-subtitle] {
  min-height: 4.8em;
}

.projects-heading [data-projects-quote-heading] {
  min-height: 4em;
}

.projects-surface-foot {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem clamp(1rem, 4vw, 4rem);
  align-items: end;
  padding-top: 1rem;
  border-top: 1px solid var(--hairline);
  transition:
    opacity var(--lane-soft-duration) ease,
    transform var(--lane-duration) var(--lane-ease);
}

.projects-surface-note {
  max-width: 24rem;
  min-height: 2.5em;
}

.projects-enter {
  justify-self: end;
}

.projects-zone {
  z-index: 2;
  display: grid;
  gap: clamp(1.2rem, 2vw, 1.7rem);
  max-height: 0;
  overflow: clip;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 1.45rem, 0) scale(0.992);
  transition:
    opacity var(--lane-soft-duration) ease,
    transform var(--lane-duration) var(--lane-ease),
    max-height var(--lane-duration) var(--lane-ease);
}

.projects-zone-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: clamp(1rem, 2.5vw, 2rem);
  padding-top: 0.2rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--hairline);
}

.projects-zone-heading {
  display: grid;
  gap: 0.2rem;
}

.projects-zone-context {
  max-width: 28ch;
  font-size: var(--label);
  line-height: 1.18;
  color: rgba(19, 17, 15, 0.42);
  letter-spacing: 0.01em;
  transition:
    opacity var(--lane-soft-duration) ease,
    transform var(--lane-duration) var(--lane-ease);
}

.editorial-section--projects.is-zone-open .projects-surface {
  opacity: 0.26;
  transform: translate3d(0, -0.45rem, 0) scale(0.984);
  filter: saturate(0.94);
  pointer-events: none;
}

.editorial-section--projects.is-list-open .projects-surface {
  opacity: 0.22;
  transform: translate3d(0, -0.48rem, 0) scale(0.982);
  filter: saturate(0.9);
}

.editorial-section--projects.is-list-open .projects-heading {
  opacity: 0.46;
  transform: translate3d(0, -0.18rem, 0);
  filter: none;
}

.editorial-section--projects.is-list-open .projects-copy,
.editorial-section--projects.is-list-open .projects-surface-foot {
  opacity: 0.42;
  transform: translate3d(0, -0.1rem, 0);
}

.editorial-section--projects.is-list-open .project-list {
  background: linear-gradient(180deg, rgba(245, 239, 230, 0.46), rgba(245, 239, 230, 0.22));
  backdrop-filter: blur(8px);
}

.editorial-section--projects.is-list-open .projects-close {
  color: var(--text-color);
}

.editorial-section--projects.is-zone-open .projects-zone {
  max-height: none;
  overflow: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
}

.editorial-section--projects.is-detail-open .projects-surface {
  opacity: 0.16;
  transform: translate3d(0, -0.6rem, 0) scale(0.978);
}

.editorial-section--projects.is-detail-open .projects-heading {
  opacity: 0.22;
  filter: none;
}

.editorial-section--projects.is-detail-open .projects-copy,
.editorial-section--projects.is-detail-open .projects-surface-foot {
  opacity: 0.2;
}

.editorial-section--projects.is-zone-open .projects-rail-action {
  opacity: 0.18;
}

.editorial-section--projects.is-detail-open .projects-zone-context {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.projects-lane {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  min-width: 0;
  min-height: 0;
  align-items: start;
  transition:
    grid-template-columns var(--lane-duration) var(--lane-ease),
    gap var(--lane-duration) var(--lane-ease);
}

.editorial-section--projects.is-detail-open .projects-lane {
  grid-template-columns: minmax(17rem, 19rem) minmax(0, 1fr);
  gap: clamp(2rem, 3.5vw, 3.6rem);
}

.projects-selector {
  position: sticky;
  top: var(--projects-sticky-top);
  display: grid;
  gap: 0.95rem;
  align-self: start;
  max-width: 40rem;
  z-index: 5;
  transform: translate3d(0, 0, 0);
  transition:
    max-width var(--lane-duration) var(--lane-ease),
    transform var(--lane-duration) var(--lane-ease),
    opacity var(--lane-soft-duration) ease;
}

.editorial-section--projects.is-detail-open .projects-selector {
  max-width: 19rem;
  transform: translate3d(-0.08rem, 0, 0);
}

.projects-anchor {
  display: grid;
  gap: 0.42rem;
  align-content: start;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding-bottom: 0;
  border-bottom: 1px solid transparent;
  pointer-events: none;
  transform: translate3d(-1.1rem, 0, 0);
  transition:
    max-height var(--lane-duration) var(--lane-ease),
    transform var(--lane-duration) var(--lane-ease),
    opacity var(--lane-soft-duration) ease,
    padding var(--lane-duration) var(--lane-ease),
    border-color 220ms ease;
}

.projects-anchor-beat {
  max-width: 13rem;
  font-size: clamp(1.02rem, 1.35vw, 1.14rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  font-weight: 540;
  color: var(--text-color);
}

.projects-anchor-project {
  max-width: 14ch;
  font-size: clamp(2.5rem, 4vw, 4.2rem);
  line-height: 0.88;
  letter-spacing: -0.075em;
  font-weight: 500;
}

.projects-anchor-intro {
  max-width: 29ch;
  font-size: clamp(1rem, 1.4vw, 1.14rem);
  line-height: 1.24;
  letter-spacing: -0.02em;
  color: var(--muted);
}

.editorial-section--projects.is-detail-open .projects-anchor {
  max-height: 26rem;
  opacity: 1;
  padding-bottom: 1.15rem;
  border-bottom-color: var(--hairline);
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

.project-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: transparent;
  transform: translate3d(0, 0, 0);
  transition:
    opacity var(--lane-soft-duration) ease,
    max-height var(--lane-duration) var(--lane-ease),
    border-color 220ms ease,
    transform var(--lane-duration) var(--lane-ease);
}

.editorial-section--projects.is-detail-open .project-list {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  border-color: transparent;
  transform: translate3d(-1.1rem, 0, 0);
}

.project-trigger {
  display: grid;
  gap: 0.9rem;
  width: 100%;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--hairline);
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition:
    padding var(--lane-duration) var(--lane-ease),
    transform 240ms ease,
    color 180ms ease,
    background 180ms ease;
}

.project-trigger:last-child {
  border-bottom: 0;
}

.project-trigger-body {
  display: grid;
  gap: 0.52rem;
}

.project-trigger-name {
  max-width: 15ch;
  font-size: clamp(3.1rem, 6vw, 5.2rem);
  line-height: 0.88;
  letter-spacing: -0.08em;
  font-weight: 500;
}

.project-trigger-premise {
  max-width: 30ch;
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  line-height: 1.22;
  letter-spacing: -0.015em;
}

.project-trigger:hover,
.project-trigger:focus-visible {
  transform: translate3d(0.35rem, 0, 0);
}

.project-trigger.is-active {
  background: transparent;
}

.project-trigger.is-active .project-trigger-name {
  color: var(--text-color);
}

.project-trigger.is-active .project-trigger-premise {
  color: var(--muted);
}

.project-stage-shell {
  --peek-x: 0;
  --peek-y: 0;
  --project-shell-a: #d5a274;
  --project-shell-b: #8b543f;
  --project-shell-c: #181514;
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  align-items: stretch;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  transform: translate3d(2rem, 0, 0) scale(0.985);
  transform-origin: left center;
  transition:
    max-height var(--lane-duration) var(--lane-ease),
    opacity var(--lane-soft-duration) ease,
    transform var(--lane-duration) var(--lane-ease),
    padding var(--lane-duration) var(--lane-ease);
}

.editorial-section--projects.is-detail-open .project-stage-shell {
  height: min(calc(100svh - var(--projects-sticky-top) - 0.8rem), 44rem);
  max-height: min(calc(100svh - var(--projects-sticky-top) - 0.8rem), 44rem);
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.project-stage-ambience {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.project-stage-ambience::before {
  content: "";
  position: absolute;
  inset: auto 12% 10% 18%;
  height: 1px;
  background: var(--hairline);
  transform: translate3d(calc(var(--peek-x) * 0.5rem), calc(var(--peek-y) * 0.2rem), 0);
}

.project-ambience-word {
  position: absolute;
  color: rgba(19, 17, 15, 0.08);
  letter-spacing: -0.08em;
  line-height: 0.84;
  font-weight: 500;
  user-select: none;
  transform: translate3d(0, 0, 0);
}

.project-ambience-word--a {
  top: 8%;
  left: 5%;
  font-size: clamp(4rem, 10vw, 8rem);
  transform: translate3d(calc(var(--peek-x) * 0.85rem), calc(var(--peek-y) * 0.35rem), 0);
}

.project-ambience-word--b {
  right: 6%;
  bottom: 16%;
  font-size: clamp(3.4rem, 7vw, 6rem);
  transform: translate3d(calc(var(--peek-x) * -0.7rem), calc(var(--peek-y) * -0.4rem), 0);
}

.project-ambience-word--c {
  left: 32%;
  top: 44%;
  font-family: var(--serif);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  letter-spacing: 0.07em;
  transform: translate3d(calc(var(--peek-x) * -0.4rem), calc(var(--peek-y) * 0.6rem), 0);
}

.project-stage-hud {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.18rem 1.35rem 0.98rem;
  color: var(--text-color);
}

.project-stage-label {
  color: var(--muted);
  letter-spacing: 0.03em;
  max-width: 13rem;
  line-height: 1.16;
  font-weight: 520;
}

.project-stage-progress {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-width: min(36vw, 14rem);
}

.project-stage-progress-copy {
  color: var(--muted);
  white-space: nowrap;
}

.project-stage-progress-bar {
  position: relative;
  display: block;
  flex: 1;
  height: 1px;
  background: var(--hairline);
  overflow: hidden;
}

.project-stage-progress-bar-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: var(--text-color);
  transition: width 260ms ease;
}

.project-stage {
  position: relative;
  z-index: 1;
  display: grid;
  min-width: 0;
  min-height: 0;
}

.project-stage-scroll {
  display: flex;
  align-items: center;
  width: 100%;
  min-width: 0;
  min-height: 100%;
  background: transparent;
  overflow: hidden;
  overscroll-behavior-x: contain;
  overscroll-behavior-y: none;
  padding: clamp(0.45rem, 1vw, 0.8rem) clamp(1rem, 2.2vw, 1.6rem) clamp(0.9rem, 1.6vw, 1.3rem);
  cursor: grab;
}

.project-stage-scroll.is-dragging {
  cursor: grabbing;
}

.project-stage-scroll:focus-visible {
  outline: none;
}

.editorial-section--projects.is-detail-open .project-stage-scroll {
  overflow-x: auto;
  overflow-y: auto;
  scrollbar-width: none;
  touch-action: pan-x pan-y;
}

.editorial-section--projects.is-detail-open .project-stage-scroll::-webkit-scrollbar {
  display: none;
}

.project-lane-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: var(--lane-panel-width);
  gap: var(--lane-panel-gap);
  width: max-content;
  min-width: 100%;
  min-height: 100%;
  align-items: center;
  padding: clamp(0.4rem, 1.2vh, 0.85rem) clamp(7rem, 10vw, 10rem) clamp(0.4rem, 1.2vh, 0.85rem) clamp(0.2rem, 0.7vw, 0.6rem);
}

.project-lane-track--text-first {
  --lane-panel-width: clamp(27rem, 40vw, 36rem);
  --lane-panel-gap: clamp(0.65rem, 1vw, 1rem);
  padding-right: clamp(2.6rem, 5vw, 5rem);
}

.project-lane-panel {
  --panel-offset: 0;
  --panel-focus: 0;
  --panel-depth: 0;
  position: relative;
  display: grid;
  grid-template-columns: minmax(18rem, 0.84fr) minmax(23rem, 1.16fr);
  gap: 1.5rem clamp(1.8rem, 3vw, 3.2rem);
  align-items: center;
  align-content: center;
  min-height: min(100%, var(--lane-panel-height));
  padding: clamp(0.8rem, 1.5vw, 1.2rem) 0;
  opacity: 0.24;
  transform:
    translate3d(calc(var(--panel-offset) * -1.65rem), 0, calc(var(--panel-focus) * 92px))
    rotateY(calc(var(--panel-offset) * -2.5deg));
  transform-style: preserve-3d;
  transition:
    opacity var(--lane-soft-duration) ease,
    transform 300ms ease;
}

.project-lane-panel--text-only {
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
}

.project-lane-panel.is-revealed {
  opacity: calc(0.42 + (var(--panel-focus) * 0.58));
}

.project-lane-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: var(--hairline);
  opacity: calc(0.18 + (var(--panel-focus) * 0.52));
}

.project-lane-panel::after {
  content: "";
  position: absolute;
  left: 34%;
  right: calc(var(--lane-panel-gap) * -0.86);
  bottom: clamp(1.5rem, 2vw, 2.1rem);
  height: 1px;
  background: linear-gradient(90deg, rgba(19, 17, 15, 0.16), transparent);
  opacity: calc(0.14 + (var(--panel-focus) * 0.28));
  transform: translate3d(calc(var(--panel-offset) * 0.75rem), 0, 0);
  pointer-events: none;
}

.project-lane-panel--text-only::after {
  left: 0;
  right: 20%;
}

.project-lane-panel:last-child::after {
  display: none;
}

.project-detail,
.project-lane-copy {
  display: grid;
  align-content: start;
  align-self: center;
  gap: 0.88rem;
  max-width: 33rem;
  color: var(--text-color);
  transform: translate3d(calc(var(--panel-offset) * -0.42rem), 0, 0);
  transition: transform 300ms ease;
}

.project-lane-panel--text-only .project-detail,
.project-lane-panel--text-only .project-lane-copy {
  gap: 0.72rem;
  max-width: min(100%, 32rem);
}

.project-detail > *,
.project-lane-copy > *,
.project-media-sheet {
  opacity: 0;
  transform: translate3d(0.82rem, 0, 0);
  filter: none;
  transition:
    opacity var(--lane-soft-duration) ease,
    transform var(--lane-duration) var(--lane-ease);
}

.project-lane-panel.is-revealed .project-detail > *,
.project-lane-panel.is-revealed .project-lane-copy > *,
.project-lane-panel.is-revealed .project-media-sheet {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: none;
}

.project-detail > *:nth-child(1),
.project-lane-copy > *:nth-child(1) {
  transition-delay: 40ms;
}

.project-detail > *:nth-child(2),
.project-lane-copy > *:nth-child(2) {
  transition-delay: 90ms;
}

.project-detail > *:nth-child(3),
.project-lane-copy > *:nth-child(3) {
  transition-delay: 150ms;
}

.project-detail > *:nth-child(4),
.project-lane-copy > *:nth-child(4) {
  transition-delay: 210ms;
}

.project-detail > *:nth-child(5),
.project-lane-copy > *:nth-child(5) {
  transition-delay: 260ms;
}

.project-lane-panel.is-revealed .project-media-sheet {
  transition-delay: 130ms;
}

.project-detail-title {
  max-width: 15ch;
  font-size: clamp(3.8rem, 6vw, 6rem);
  line-height: 0.84;
  letter-spacing: -0.082em;
  font-weight: 500;
}

.project-detail-premise {
  max-width: 31ch;
  font-size: clamp(1.26rem, 1.95vw, 1.54rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--text-color);
}

.project-detail-copy {
  max-width: var(--measure-copy);
  font-size: clamp(1.06rem, 1.65vw, 1.24rem);
  line-height: 1.22;
  letter-spacing: -0.018em;
  color: var(--muted);
}

.project-lane-title {
  max-width: 14ch;
  font-size: clamp(2.2rem, 3.2vw, 3.2rem);
  line-height: 0.94;
  letter-spacing: -0.052em;
  font-weight: 500;
}

.project-lane-body {
  display: grid;
  gap: 0.72rem;
  max-width: 35rem;
}

.project-lane-paragraph {
  max-width: var(--measure-body);
  font-size: clamp(1.04rem, 1.35vw, 1.15rem);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--muted);
}

.project-media-sheet {
  position: relative;
  display: grid;
  gap: 0.95rem;
  align-content: start;
  align-self: center;
  width: min(100%, clamp(26rem, 35vw, 38rem));
  justify-self: end;
  transform-style: preserve-3d;
}

.project-media-viewport {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(14rem, 19vw, 18rem);
  aspect-ratio: var(--media-frame-ratio, 16 / 10);
  overflow: hidden;
  border-radius: 1rem;
  padding: clamp(0.56rem, 0.9vw, 0.9rem);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0)),
    linear-gradient(145deg, rgba(0, 0, 0, 0.12), transparent 54%),
    var(--media-c, #161311);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 1rem 2.1rem rgba(28, 23, 20, 0.12);
  transform:
    translate3d(calc(var(--panel-offset) * -0.9rem), 0, calc(var(--panel-focus) * 34px))
    rotate(calc(var(--media-tilt, 0deg) + (var(--peek-x) * 1.8deg)))
    translate3d(calc(var(--peek-x) * -0.35rem), calc(var(--peek-y) * -0.35rem), 0);
  transition: transform 320ms ease;
}

.project-media-sheet--image,
.project-media-sheet--video,
.project-media-sheet--figma {
  width: min(100%, clamp(28rem, 38vw, 42rem));
}

.project-media-sheet--image .project-media-viewport,
.project-media-sheet--video .project-media-viewport {
  border-color: rgba(19, 17, 15, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.14)),
    linear-gradient(145deg, rgba(0, 0, 0, 0.08), transparent 56%),
    var(--media-frame-bg, rgba(255, 252, 247, 0.76));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 1rem 2.1rem rgba(28, 23, 20, 0.08);
}

.project-media-sheet--figma .project-media-viewport {
  border-color: rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
    linear-gradient(145deg, rgba(0, 0, 0, 0.18), transparent 56%),
    rgba(13, 13, 16, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 1rem 2.4rem rgba(18, 15, 14, 0.16);
}

.project-media-sheet--image .project-media-viewport::before,
.project-media-sheet--video .project-media-viewport::before {
  content: "";
  position: absolute;
  inset: clamp(0.36rem, 0.7vw, 0.52rem);
  border: 1px solid rgba(19, 17, 15, 0.06);
  border-radius: 0.72rem;
  pointer-events: none;
}

.project-media-sheet--figma .project-media-viewport::before {
  content: "";
  position: absolute;
  inset: clamp(0.32rem, 0.6vw, 0.48rem);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.72rem;
  pointer-events: none;
}

.project-media-image {
  position: absolute;
  inset: 0;
}

.project-media-image--base {
  inset: -8%;
  background:
    radial-gradient(circle at var(--orb-x, 30%) var(--orb-y, 32%), var(--media-a, #d8b27a) 0%, transparent 38%),
    radial-gradient(circle at calc(var(--orb-x, 30%) + 34%) calc(var(--orb-y, 32%) + 18%), var(--media-b, #9d5b43) 0%, transparent 36%),
    linear-gradient(var(--band-rotate, 18deg), rgba(255, 255, 255, 0.15), transparent 52%),
    linear-gradient(135deg, var(--media-c, #161311), rgba(6, 6, 6, 0.92));
  filter: saturate(118%);
}

.project-media-image--band {
  inset: auto -15% -6% -12%;
  height: 52%;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent),
    linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
  mix-blend-mode: screen;
  transform: rotate(var(--band-rotate, 18deg)) scale(1.1);
}

.project-media-image--grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px);
  background-size: 2.6rem 2.6rem;
  opacity: 0.13;
  mix-blend-mode: soft-light;
}

.project-media-image--grain {
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.08) 0.08rem, transparent 0.1rem),
    radial-gradient(circle at 76% 58%, rgba(255, 255, 255, 0.06) 0.08rem, transparent 0.1rem),
    radial-gradient(circle at 48% 78%, rgba(255, 255, 255, 0.05) 0.06rem, transparent 0.08rem);
  background-size: 4rem 4rem, 5rem 5rem, 3rem 3rem;
  opacity: 0.16;
}

.project-media-sheet--image .project-media-image--grain {
  z-index: 2;
  pointer-events: none;
}

.project-media-photo {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: var(--media-fit, contain);
  object-position: var(--media-position, 50% 50%);
  border-radius: 0.72rem;
  background: rgba(255, 252, 247, 0.92);
}

.project-media-video {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: var(--media-fit, contain);
  object-position: var(--media-position, 50% 50%);
  border-radius: 0.72rem;
  background: rgba(19, 17, 15, 0.92);
}

.project-media-figma {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0.72rem;
  background: rgba(13, 13, 16, 0.96);
}

.project-media-caption {
  display: grid;
  gap: 0.52rem;
  color: var(--text-color);
}

.project-media-title {
  max-width: 18ch;
  font-size: clamp(1.55rem, 2.25vw, 2.3rem);
  line-height: 0.98;
  letter-spacing: -0.046em;
}

.project-media-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.08rem;
  color: rgba(19, 17, 15, 0.6);
  font-size: 0.74rem;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.project-media-link:hover,
.project-media-link:focus-visible {
  color: var(--text-color);
}

.project-lane-panel--intro .project-media-sheet {
  margin-top: 0;
}

.project-lane-panel:nth-child(even) .project-media-sheet {
  margin-top: 0;
}

.project-trigger .banner-project-preview--list {
  display: block;
  width: min(100%, 34rem);
  height: clamp(9rem, 18vw, 14rem);
  margin-top: 0.35rem;
  pointer-events: none;
}

.project-lane-panel--banners {
  grid-template-columns: minmax(17rem, 0.76fr) minmax(27rem, 1.24fr);
  align-items: start;
  align-content: start;
}

.project-lane-panel--banners.project-lane-panel--intro .project-detail {
  gap: 0.62rem;
  max-width: 36rem;
  align-self: start;
}

.project-lane-panel--banners.project-lane-panel--intro .project-detail-title {
  max-width: 13ch;
  font-size: clamp(3rem, 4.8vw, 4.8rem);
  line-height: 0.86;
}

.project-lane-panel--banners.project-lane-panel--intro .project-detail-premise {
  max-width: 34ch;
  font-size: clamp(1.08rem, 1.45vw, 1.32rem);
  line-height: 1.15;
}

.project-lane-panel--banners.project-lane-panel--intro .project-detail-copy {
  max-width: 42ch;
  font-size: clamp(0.98rem, 1.15vw, 1.1rem);
  line-height: 1.24;
}

.project-lane-panel--banners.project-lane-panel--intro .project-lane-body {
  max-width: 42ch;
  gap: 0.44rem;
}

.project-lane-panel--banners.project-lane-panel--intro .project-lane-paragraph {
  max-width: 42ch;
  font-size: clamp(0.92rem, 1vw, 1rem);
  line-height: 1.24;
}

.banner-project-preview,
.banner-gallery {
  width: min(100%, clamp(29rem, 40vw, 44rem));
}

.banner-project-preview {
  display: grid;
  gap: 0.95rem;
  align-content: start;
}

.banner-project-preview-field {
  position: relative;
  display: block;
  width: 100%;
  height: clamp(18rem, 24vw, 24rem);
  min-height: 0;
  overflow: visible;
}

.banner-project-preview--list .banner-project-preview-field {
  height: 100%;
}

.banner-project-preview-item {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: calc(1 + var(--scatter-index));
  display: block;
  transform:
    translate3d(-50%, -50%, 0)
    rotate(var(--scatter-rotate, 0deg));
  transform-origin: center;
}

.banner-project-preview-item:nth-child(1) {
  left: 42%;
  top: 34%;
  --scatter-rotate: -2deg;
}

.banner-project-preview-item:nth-child(2) {
  left: 68%;
  top: 42%;
  --scatter-rotate: 2deg;
}

.banner-project-preview-item:nth-child(3) {
  left: 19%;
  top: 42%;
  --scatter-rotate: -1deg;
}

.banner-project-preview-item:nth-child(4) {
  left: 45%;
  top: 76%;
  --scatter-rotate: 1deg;
}

.banner-project-preview-item:nth-child(5) {
  left: 12%;
  top: 72%;
  --scatter-rotate: 2deg;
}

.banner-project-preview-item:nth-child(6) {
  left: 66%;
  top: 84%;
  --scatter-rotate: -1deg;
}

.banner-project-preview-item:nth-child(7) {
  left: 82%;
  top: 29%;
  z-index: 4;
  --scatter-rotate: -1.4deg;
}

.banner-project-preview-item:nth-child(8) {
  left: 83%;
  top: 54%;
  --scatter-rotate: 1.2deg;
}

.banner-project-preview-caption,
.banner-gallery-head {
  display: grid;
  gap: 0.52rem;
}

.banner-asset {
  position: relative;
  display: block;
  width: calc(var(--banner-w) * var(--banner-scale) * 1px);
  height: calc(var(--banner-h) * var(--banner-scale) * 1px);
  flex: 0 0 auto;
  color: var(--text-color);
}

.banner-gallery .banner-asset {
  height: calc((var(--banner-h) * var(--banner-scale) * 1px) + 2.85rem);
}

.banner-asset-frame {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: calc(var(--banner-w) * 1px);
  height: calc(var(--banner-h) * 1px);
  overflow: hidden;
  background: transparent;
  box-shadow:
    0 0.9rem 2rem rgba(18, 15, 13, 0.14),
    0 0.16rem 0.45rem rgba(18, 15, 13, 0.1);
  transform: scale(var(--banner-scale));
  transform-origin: left top;
}

.banner-asset-iframe,
.banner-asset-image,
.banner-asset-fallback,
.banner-asset-placeholder {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.banner-asset-iframe {
  z-index: 2;
  border: 0;
  background: transparent;
  opacity: 0;
  transition: opacity 180ms ease;
}

.banner-asset-image,
.banner-asset-fallback {
  z-index: 1;
  object-fit: cover;
  object-position: 50% 50%;
  background: transparent;
  transition: opacity 180ms ease;
}

.banner-asset-image {
  opacity: 0;
}

.banner-asset-placeholder {
  z-index: 0;
  display: grid;
  place-items: center;
  padding: 0.65rem;
  border: 1px solid var(--hairline);
  background: rgba(255, 252, 247, 0.58);
  color: rgba(19, 17, 15, 0.48);
  font-size: 0.72rem;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 1;
}

.banner-asset--html .banner-asset-fallback,
.banner-asset--html .banner-asset-placeholder {
  z-index: 1;
  opacity: 1;
}

.banner-asset.is-loaded .banner-asset-image {
  opacity: 1;
}

.banner-asset--html.is-loaded .banner-asset-iframe {
  opacity: 1;
}

.banner-asset.is-loaded .banner-asset-placeholder,
.banner-asset.is-poster-loaded .banner-asset-placeholder,
.banner-asset--html.is-loaded .banner-asset-fallback,
.banner-asset--html.is-loaded .banner-asset-placeholder,
.banner-asset.is-failed .banner-asset-image,
.banner-asset.is-failed .banner-asset-iframe {
  opacity: 0;
  pointer-events: none;
}

.banner-asset.is-failed .banner-asset-placeholder,
.banner-asset.is-failed .banner-asset-fallback {
  opacity: 1;
}

.banner-asset-caption {
  position: absolute;
  left: 0;
  top: calc((var(--banner-h) * var(--banner-scale) * 1px) + 0.52rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.28rem 0.42rem;
  max-width: min(14rem, 58vw);
  color: rgba(19, 17, 15, 0.5);
  font-size: 0.68rem;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.banner-asset-size {
  color: rgba(19, 17, 15, 0.78);
}

.banner-asset-type::before,
.banner-asset-campaign::before {
  content: "/";
  margin-right: 0.42rem;
  color: rgba(19, 17, 15, 0.24);
}

.banner-gallery {
  display: grid;
  gap: clamp(0.95rem, 1.5vw, 1.25rem);
  align-content: center;
}

.banner-gallery-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: center;
  gap: clamp(0.95rem, 1.7vw, 1.35rem) clamp(1rem, 2vw, 1.55rem);
  min-height: clamp(16rem, 26vw, 23rem);
}

.banner-gallery-empty {
  display: grid;
  gap: 0.52rem;
  align-content: center;
  min-height: clamp(14rem, 20vw, 18rem);
}

.scramble-text {
  position: relative;
}

.scramble-text.is-inline {
  display: inline-block;
}

.scramble-text__measure,
.scramble-text__live {
  white-space: pre-wrap;
}

.scramble-text.is-inline .scramble-text__measure,
.scramble-text.is-inline .scramble-text__live {
  display: inline-block;
}

.scramble-text:not(.is-inline) .scramble-text__measure,
.scramble-text:not(.is-inline) .scramble-text__live {
  display: block;
}

.scramble-text__measure {
  visibility: hidden;
  user-select: none;
  pointer-events: none;
}

.scramble-text__live {
  position: absolute;
  inset: 0;
  pointer-events: none;
  transform-origin: left top;
  will-change: transform, filter, opacity;
}

.scramble-text__live.is-span-rendered {
  overflow: visible;
  white-space: normal;
}

.scramble-text__line {
  display: block;
  line-height: inherit;
  overflow: visible;
  white-space: nowrap;
}

.scramble-char {
  display: inline-block;
  width: var(--scramble-char-width);
  line-height: inherit;
  overflow: visible;
  white-space: pre;
  vertical-align: baseline;
}

.scramble-text.is-primed .scramble-text__live {
  opacity: 0;
  transform: translate3d(0, 0.36rem, 0) scaleY(0.985);
  filter: none;
}

.scramble-text[data-retro-state="variant"][data-retro-style="sans"] .scramble-text__live {
  font-family: var(--serif);
  font-weight: 520;
  letter-spacing: 0.012em;
}

.scramble-text[data-retro-state="variant"][data-retro-style="wide"] .scramble-text__live {
  font-family: var(--serif);
  font-weight: 540;
  letter-spacing: 0.025em;
}

.scramble-text[data-retro-state="variant"][data-retro-style="italic"] .scramble-text__live {
  font-style: italic;
}

.scramble-text.has-retro-entropy .scramble-text__measure,
.scramble-text.has-retro-entropy .scramble-text__live {
  white-space: pre-wrap;
}

.retro-token {
  white-space: pre-wrap;
}

.retro-token--word {
  display: inline-block;
  white-space: pre;
  transform-origin: center bottom;
}

.scramble-text__live .retro-token--word {
  transition:
    transform 180ms cubic-bezier(0.22, 0.86, 0.24, 1),
    opacity 160ms ease,
    filter 160ms ease,
    letter-spacing 160ms ease;
}

.scramble-text__live .retro-token--word.is-active {
  --retro-scale: 1;
  opacity: 0.98;
  transform: translate3d(0, -0.02em, 0) scaleX(var(--retro-scale));
  filter: none;
}

.scramble-text__live .retro-token--word.is-active[data-retro-style="sans"] {
  font-family: var(--serif);
  font-weight: 520;
  letter-spacing: 0.014em;
}

.scramble-text__live .retro-token--word.is-active[data-retro-style="wide"] {
  font-family: var(--serif);
  font-weight: 540;
  letter-spacing: 0.025em;
}

.scramble-text__live .retro-token--word.is-active[data-retro-style="italic"] {
  font-style: italic;
}

.scramble-text__live .retro-token--word.is-active[data-retro-style="heavy"] {
  font-family: var(--serif);
  font-weight: 620;
  letter-spacing: 0.008em;
}

.scramble-text__live .retro-token--word.is-active[data-retro-style="ghost"] {
  opacity: 0.46;
  letter-spacing: 0.03em;
  transform: translate3d(0, -0.01em, 0) scaleX(0.98);
  filter: none;
}

.retro-entropy-tooltip {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 120;
  display: grid;
  gap: 0.18rem;
  width: min(15rem, calc(100vw - 1.5rem));
  padding: 0.58rem 0.68rem 0.62rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.72rem;
  background: rgba(19, 17, 15, 0.92);
  color: rgba(250, 244, 236, 0.92);
  box-shadow: 0 1rem 2.4rem rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 0.24rem, 0);
  transition:
    opacity 150ms ease,
    transform 150ms ease;
}

.retro-entropy-tooltip[data-visible="true"] {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.retro-entropy-tooltip__meta {
  font-family: var(--serif);
  font-size: 0.68rem;
  line-height: 1.1;
  letter-spacing: 0.03em;
  color: rgba(250, 244, 236, 0.52);
}

.retro-entropy-tooltip__title {
  font-size: 0.98rem;
  line-height: 1;
  letter-spacing: -0.035em;
  font-weight: 520;
}

.retro-entropy-tooltip__body {
  font-family: var(--serif);
  font-size: 0.76rem;
  line-height: 1.24;
  color: rgba(250, 244, 236, 0.72);
}

.contact-link {
  text-transform: none;
  letter-spacing: -0.01em;
}

@media (max-width: 1240px) {
  :root {
    --heading: clamp(2.3rem, 4.6vw, 4.3rem);
    --body: clamp(1rem, 1.5vw, 1.22rem);
    --lane-panel-width: clamp(48rem, 82vw, 64rem);
    --lane-panel-height: clamp(25rem, 39vw, 32rem);
  }

  .hero-topline,
  .hero-foot {
    grid-template-columns: minmax(0, 1fr) minmax(15rem, 18rem);
  }

  .projects-heading {
    grid-template-columns: minmax(0, 1fr) minmax(15rem, 19rem);
  }

  .project-trigger-name {
    font-size: clamp(2.8rem, 5.4vw, 4.5rem);
  }
}

@media (max-width: 1100px) {
  :root {
    --display: clamp(4rem, 11.5vw, 8.8rem);
    --heading: clamp(2.18rem, 5.1vw, 3.9rem);
    --lane-panel-width: clamp(44rem, 88vw, 56rem);
    --lane-panel-height: clamp(24rem, 40vw, 30rem);
  }

  .hero-stage {
    grid-template-columns: minmax(0, 1fr) minmax(12rem, 16rem);
    align-items: start;
  }

  .hero-title {
    grid-column: 1 / -1;
    width: auto;
    max-width: 14.5ch;
    white-space: normal;
  }

  .hero-subtitle {
    grid-column: 2;
    grid-row: 1;
    max-width: 13rem;
  }

  .projects-heading {
    align-items: start;
  }

  .editorial-section--projects .projects-heading .section-heading {
    max-width: min(12ch, 100%);
  }

  .section-subtitle,
  .projects-anchor-intro,
  .project-detail-copy,
  .project-lane-paragraph {
    max-width: 32ch;
  }

  .project-lane-title {
    font-size: clamp(2rem, 3.3vw, 2.8rem);
  }
}

@media (max-width: 980px) {
  :root {
    --body: clamp(0.98rem, 2.3vw, 1.16rem);
    --small: clamp(0.9rem, 1.8vw, 0.98rem);
    --lane-panel-width: clamp(40rem, 94vw, 52rem);
    --lane-panel-height: clamp(23rem, 42vw, 29rem);
  }

  .hero-stage,
  .hero-topline,
  .hero-foot,
  .projects-heading,
  .projects-surface-foot,
  .play-surface-foot,
  .play-intro,
  .editorial-section--we .section-panel,
  .editorial-section--contact .section-panel {
    grid-template-columns: 1fr;
  }

  .hero-note,
  .hero-link,
  .projects-copy,
  .projects-copy .section-subtitle,
  .projects-copy .section-kicker {
    justify-self: start;
  }

  .hero-stage {
    gap: 1.55rem;
    min-height: auto;
  }

  .hero-aside--left,
  .hero-title,
  .hero-subtitle {
    grid-column: auto;
    grid-row: auto;
  }

  .hero-aside {
    max-width: none;
  }

  .hero-subtitle {
    justify-self: start;
    max-width: 17rem;
  }

  .section-side {
    gap: 0.95rem;
  }

  .we-perspective-panel {
    gap: 1.35rem;
  }

  .editorial-section--we .section-label {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }

  .we-perspective-marker,
  .we-perspective-main,
  .we-perspective-side {
    grid-column: auto;
    grid-row: auto;
  }

  .we-perspective-marker {
    display: block;
    padding-top: 0;
    padding-bottom: 0.58rem;
    border-top: 0;
    border-bottom: 1px solid var(--hairline);
  }

  .we-perspective-label {
    max-width: none;
  }

  .we-perspective-side {
    gap: 0.95rem;
  }

  .hero-title {
    max-width: 8ch;
  }

  .section-heading {
    max-width: 16ch;
  }

  .section-subtitle,
  .project-detail-copy,
  .project-lane-paragraph,
  .projects-surface-note {
    max-width: 36ch;
  }

  .projects-copy {
    max-width: none;
  }

  .projects-surface-foot {
    align-items: start;
  }

  .projects-zone-bar,
  .play-zone-bar {
    align-items: start;
    flex-direction: column;
  }

  .editorial-section--play.is-detail-open .play-lane {
    grid-template-columns: minmax(18rem, 20rem) minmax(0, 1fr);
  }

  .editorial-section--play.is-detail-open.is-play-theory-open .play-lane {
    grid-template-columns: minmax(16rem, 18rem) minmax(0, 1fr);
  }

  .editorial-section--play.is-detail-open .play-stage-shell {
    height: min(calc(100svh - var(--projects-sticky-top) - 0.8rem), 40rem);
    max-height: min(calc(100svh - var(--projects-sticky-top) - 0.8rem), 40rem);
  }

  .play-stage-view--cubo.is-theory-open .play-cubo-composition {
    grid-template-columns: minmax(15rem, 0.54fr) minmax(24rem, 1fr);
  }

  .play-stage-view--cubo.is-theory-open .play-cubo-runtime-pane .play-runtime-shell {
    width: min(100%, clamp(13rem, 24vw, 19rem));
    height: min(100%, clamp(16rem, 40svh, 26rem));
    transform: scale(0.84);
    transform-origin: left center;
  }

  .play-theory-track {
    grid-auto-columns: clamp(19rem, 42vw, 28rem);
    padding-right: clamp(2rem, 5vw, 4rem);
  }

  .project-lane-panel {
    grid-template-columns: minmax(18rem, 0.92fr) minmax(20rem, 1.08fr);
    gap: 1.2rem 1.6rem;
  }

  .project-media-sheet,
  .project-media-sheet--image,
  .project-media-sheet--video,
  .project-media-sheet--figma {
    width: min(100%, 100%);
  }
}

@media (max-width: 860px) {
  body[data-projects-view="detail"] {
    overflow: hidden;
  }

  .editorial-section,
  .editorial-section--projects.is-detail-open .projects-lane,
  .editorial-section--play.is-detail-open .play-lane {
    grid-template-columns: 1fr;
  }

  .section-label-stack {
    grid-template-columns: auto auto;
    justify-content: space-between;
    align-items: center;
  }

  .projects-selector {
    position: static;
    top: auto;
    max-width: none;
  }

  .play-selector {
    position: static;
    top: auto;
    max-width: none;
  }

  .editorial-section--projects.is-detail-open .projects-lane {
    gap: 1.2rem;
  }

  .editorial-section--play.is-detail-open .play-lane {
    gap: 1.2rem;
  }

  .editorial-section--projects.is-detail-open .project-stage-shell {
    height: min(72svh, 40rem);
    max-height: min(72svh, 40rem);
  }

  .editorial-section--play.is-detail-open .play-stage-shell {
    height: min(70svh, 36rem);
    max-height: min(70svh, 36rem);
  }

  .editorial-section--play.is-detail-open.is-play-theory-open .play-stage-shell {
    height: min(76svh, 42rem);
    max-height: min(76svh, 42rem);
  }

  .play-stage-view--cubo.is-theory-open .play-cubo-composition {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: minmax(12rem, 0.64fr) minmax(17rem, 1fr);
    gap: 1rem;
  }

  .play-stage-view--cubo.is-theory-open .play-cubo-runtime-pane {
    grid-column: 1;
    grid-row: 1;
    padding: 0.2rem 0;
    transform: translate3d(0, 0, 0);
    justify-items: center;
  }

  .play-stage-view--cubo.is-theory-open .play-cubo-runtime-pane .play-runtime-shell {
    width: min(100%, 24rem);
    height: min(100%, 15rem);
    transform: scale(0.92);
    transform-origin: center;
  }

  .play-stage-view--cubo.is-theory-open .play-theory-area {
    grid-column: 1;
    grid-row: 2;
  }

  .play-theory-area {
    max-width: none;
    max-height: 0;
  }

  .play-stage-view--cubo.is-theory-open .play-theory-area {
    max-height: 100%;
  }

  .play-theory-scroll {
    border-left: 0;
    border-right: 0;
    border-top: 1px solid var(--hairline);
    padding-inline: 0.15rem clamp(1rem, 5vw, 2rem);
  }

  .play-theory-track {
    --play-theory-gap: clamp(1.2rem, 4vw, 2rem);
    grid-auto-columns: clamp(20rem, 82vw, 32rem);
    gap: var(--play-theory-gap);
    padding: 0.25rem clamp(1.4rem, 7vw, 3rem) 0.35rem 0.1rem;
  }

  .play-theory-panel {
    min-height: auto;
    align-content: start;
    padding-block: 1rem;
  }

  .project-lane-track {
    grid-auto-columns: clamp(22rem, 82vw, 32rem);
    gap: clamp(1.2rem, 4vw, 2rem);
    padding: 0.25rem clamp(2rem, 8vw, 4rem) 0.35rem 0.1rem;
  }

  .project-lane-track--text-first {
    grid-auto-columns: clamp(20rem, 70vw, 25rem);
    gap: clamp(0.7rem, 2vw, 1rem);
    padding-right: clamp(1rem, 4vw, 2rem);
  }

  .project-lane-panel {
    grid-template-columns: 1fr;
    min-height: auto;
    align-items: start;
    gap: 1.2rem;
  }

  .project-detail,
  .project-lane-copy {
    max-width: none;
  }

  .project-media-sheet,
  .project-media-sheet--image,
  .project-media-sheet--video,
  .project-media-sheet--figma {
    width: min(100%, 34rem);
    justify-self: start;
    align-self: start;
  }

  .project-media-viewport {
    min-height: clamp(13.5rem, 48vw, 18rem);
  }

  .banner-project-preview-field {
    height: clamp(15rem, 52vw, 20rem);
  }

  .banner-project-preview--detail .banner-project-preview-item:nth-child(n + 7),
  .banner-project-preview--list .banner-project-preview-item:nth-child(n + 6) {
    display: none;
  }

  .banner-gallery {
    width: min(100%, 32rem);
  }

  .banner-gallery-grid {
    min-height: auto;
    align-content: flex-start;
  }
}

@media (max-width: 720px), (pointer: coarse) and (max-width: 900px) and (max-height: 560px) {
  :root {
    --header-reserve: clamp(8.6rem, 22vw, 9.2rem);
    --projects-sticky-top: calc(var(--header-reserve) + 0.72rem);
    --display: clamp(4.1rem, 15vw, 7rem);
    --heading: clamp(2.3rem, 8vw, 3.6rem);
  }

  .site-header {
    padding: 0.72rem 0 0.56rem;
  }

  .site-header-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.55rem;
  }

  .site-header .site-mark {
    min-height: 2.35rem;
  }

  .site-header-actions {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 0.18rem 0.85rem;
  }

  .site-nav {
    flex: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, max-content));
    justify-content: start;
    align-items: start;
    gap: 0.18rem 0.95rem;
  }

  .site-header .nav-link {
    min-height: 2.3rem;
    align-self: start;
    padding-top: 0.28rem;
    padding-bottom: 0.28rem;
  }

  .site-header .locale-switch {
    align-self: flex-start;
    min-height: 2.3rem;
    margin-left: 0;
    padding-top: 0.08rem;
  }

  .site-header .locale-switch-option {
    min-width: 2.2rem;
    min-height: 2.3rem;
  }

  .editorial-section--we {
    gap: 0.5rem;
  }

  .editorial-section--we .section-label {
    font-size: clamp(2.35rem, 11vw, 3.35rem);
    line-height: 0.8;
    letter-spacing: -0.065em;
  }

  .we-perspective-panel {
    gap: 0.9rem;
  }

  .we-perspective-marker {
    width: fit-content;
    padding: 0;
    border: 0;
  }

  .we-perspective-label {
    max-width: none;
    color: var(--muted-strong);
    font-size: clamp(0.68rem, 2.7vw, 0.78rem);
    letter-spacing: 0.18em;
  }

  .we-perspective-main {
    gap: 0.82rem;
    padding-top: 0.72rem;
    border-top: 1px solid var(--hairline);
  }

  .we-perspective-side {
    gap: 0.78rem;
    padding-top: 0.15rem;
  }

  .hero {
    min-height: auto;
    padding-top: clamp(2.4rem, 10vw, 4rem);
  }

  .hero-title {
    max-width: 100%;
    font-size: clamp(2.12rem, 10.8vw, 5.45rem);
    white-space: nowrap;
  }

  .hero-title.scramble-text .scramble-text__measure,
  .hero-title.scramble-text .scramble-text__live {
    white-space: nowrap;
  }

  .project-trigger-name {
    font-size: clamp(2.6rem, 12vw, 4rem);
  }

  .projects-anchor-project,
  .project-detail-title {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  .project-stage-hud {
    flex-direction: column;
    align-items: flex-start;
  }

  .play-stage-hud {
    flex-direction: column;
    align-items: flex-start;
  }

  .project-stage-progress {
    width: 100%;
  }

  .play-stage-progress {
    width: 100%;
  }
}


@media (max-width: 560px) {
  :root {
    --gutter: clamp(1rem, 5vw, 1.35rem);
  }

  .site-nav {
    gap: 0.12rem 0.72rem;
  }

  .site-header-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    column-gap: 0.7rem;
    row-gap: 0.14rem;
  }

  .locale-switch {
    justify-self: end;
    margin-left: 0;
  }

  .editorial-section {
    gap: 0.85rem;
  }

  .section-label {
    font-size: 1.05rem;
  }

  .project-stage-scroll {
    padding-inline: 0.12rem;
  }

  .project-lane-track {
    padding-inline: 0.1rem 1.6rem;
  }

  .project-lane-panel {
    padding-block: 1.1rem;
  }

  .project-media-viewport {
    min-height: clamp(12rem, 58vw, 14rem);
  }

  .project-trigger .banner-project-preview--list {
    height: 8.5rem;
  }

  .banner-project-preview-field {
    height: 14rem;
  }

  .banner-project-preview--detail .banner-project-preview-item:nth-child(n + 6),
  .banner-project-preview--list .banner-project-preview-item:nth-child(n + 5) {
    display: none;
  }

  .banner-gallery-grid {
    gap: 0.85rem 0.9rem;
  }

  .play-anchor-title,
  .play-placeholder-title {
    font-size: clamp(2.7rem, 13vw, 4.2rem);
  }

  .editorial-section--play.is-detail-open .play-stage-shell {
    height: min(68svh, 30rem);
    max-height: min(68svh, 30rem);
  }

  .editorial-section--play.is-detail-open.is-play-theory-open .play-stage-shell {
    height: min(78svh, 36rem);
    max-height: min(78svh, 36rem);
  }

  .play-theory-title {
    font-size: clamp(2rem, 10vw, 3rem);
  }
}

@media (hover: none), (pointer: coarse) {
  .site-mark,
  .nav-link,
  .locale-switch-option,
  .hero-link,
  .projects-enter,
  .projects-close,
  .projects-rail-action,
  .project-back,
  .play-enter,
  .play-back,
  .play-close,
  .play-rail-action {
    min-height: 2.75rem;
    align-items: center;
  }

  .nav-link,
  .locale-switch-option,
  .projects-close,
  .project-back,
  .play-close,
  .play-back {
    padding-top: 0.42rem;
    padding-bottom: 0.42rem;
  }

  .locale-switch {
    min-height: 2.75rem;
    align-items: center;
  }

  .locale-switch-option {
    min-width: 2.35rem;
    justify-content: center;
  }

  .projects-close,
  .project-back,
  .play-close,
  .play-back {
    width: fit-content;
  }

  .project-stage-ambience {
    display: none;
  }

  .project-lane-panel,
  .play-theory-panel,
  .project-media-viewport {
    transform: none;
  }
}

@media (max-width: 720px), (pointer: coarse) and (max-width: 900px) and (max-height: 560px) {
  body[data-projects-view="detail"],
  body[data-play-view="detail"] {
    overflow: auto;
  }

  .editorial-section--projects.is-zone-open .projects-surface,
  .editorial-section--play.is-zone-open .play-surface {
    min-height: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: none;
    filter: none;
  }

  .editorial-section--projects.is-zone-open .projects-zone,
  .editorial-section--play.is-zone-open .play-zone {
    max-height: none;
    overflow: visible;
    transform: none;
  }

  .editorial-section--projects.is-detail-open .projects-lane,
  .editorial-section--play.is-detail-open .play-lane,
  .editorial-section--play.is-detail-open.is-play-theory-open .play-lane {
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(1.15rem, 6vw, 2.1rem);
  }

  .editorial-section--projects.is-detail-open .projects-selector,
  .editorial-section--play.is-detail-open .play-selector {
    position: static;
    top: auto;
    max-width: none;
    transform: none;
  }

  .editorial-section--projects.is-detail-open .projects-selector {
    order: 1;
  }

  .editorial-section--projects.is-detail-open .project-stage-shell {
    order: 2;
    height: auto;
    max-height: none;
    min-height: 0;
    overflow: visible;
    opacity: 1;
    transform: none;
  }

  .editorial-section--play.is-detail-open .play-stage-shell,
  .editorial-section--play.is-detail-open.is-play-theory-open .play-stage-shell,
  .editorial-section--play.is-detail-open .play-stage-shell.play-stage-shell--live-site,
  .editorial-section--play.is-detail-open.is-live-site-runtime .play-stage-shell.play-stage-shell--live-site {
    order: 2;
    height: auto;
    max-height: none;
    min-height: 0;
    overflow: visible;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .editorial-section--play.is-detail-open .play-selector {
    order: 1;
  }

  .play-stage-shell,
  .play-stage,
  .play-stage-mount,
  .play-stage-view--cubo,
  .play-cubo-composition,
  .play-theory-area {
    overflow-anchor: none;
  }

  .editorial-section--projects.is-detail-open .projects-anchor,
  .editorial-section--play.is-detail-open .play-anchor {
    max-height: none;
    overflow: visible;
    transform: none;
  }

  .projects-anchor-project,
  .project-detail-title,
  .play-anchor-title,
  .play-placeholder-title {
    max-width: min(11ch, 100%);
    font-size: clamp(2.45rem, 13vw, 4.1rem);
    line-height: 0.9;
    letter-spacing: -0.06em;
  }

  .projects-anchor-intro,
  .play-anchor-summary,
  .project-detail-copy,
  .project-lane-paragraph,
  .play-theory-paragraph,
  .play-placeholder-summary {
    max-width: 36ch;
    font-size: clamp(1rem, 4.4vw, 1.12rem);
    line-height: 1.34;
    letter-spacing: -0.01em;
  }

  .project-stage-hud,
  .play-stage-hud {
    position: static;
    padding: 0.9rem 0;
    border-top: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
  }

  .project-stage-scroll {
    display: block;
    min-height: 0;
    padding: 0;
    overflow: visible;
    overscroll-behavior: auto;
    touch-action: pan-y;
    cursor: auto;
  }

  .project-stage-scroll.is-dragging,
  .play-theory-scroll.is-dragging {
    cursor: auto;
  }

  .project-lane-track,
  .project-lane-track--text-first {
    display: grid;
    grid-auto-flow: row;
    grid-auto-columns: auto;
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    min-width: 0;
    min-height: 0;
    gap: clamp(1.6rem, 8vw, 2.6rem);
    padding: 0;
    align-items: stretch;
  }

  .project-lane-panel,
  .project-lane-panel--banners {
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(0.95rem, 4vw, 1.35rem);
    align-items: start;
    align-content: start;
    min-height: 0;
    width: 100%;
    padding: clamp(1.1rem, 5vw, 1.55rem) 0 clamp(1.35rem, 6vw, 1.9rem);
    opacity: 1;
    transform: none;
    transform-style: flat;
    transition: none;
  }

  .project-lane-panel::before,
  .play-theory-panel::before {
    opacity: 0.72;
  }

  .project-lane-panel::after,
  .play-theory-panel::after {
    display: none;
  }

  .project-detail,
  .project-lane-copy {
    max-width: none;
    transform: none;
  }

  .project-detail > *,
  .project-lane-copy > *,
  .project-media-sheet,
  .play-theory-panel {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }

  .project-lane-title,
  .play-theory-title {
    max-width: min(13ch, 100%);
    font-size: clamp(1.9rem, 9vw, 2.8rem);
    line-height: 0.98;
    letter-spacing: -0.045em;
  }

  .project-media-sheet,
  .project-media-sheet--image,
  .project-media-sheet--video,
  .project-media-sheet--figma,
  .banner-project-preview,
  .banner-gallery {
    width: 100%;
    max-width: none;
    justify-self: stretch;
  }

  .project-media-viewport {
    min-height: clamp(11rem, 56vw, 17rem);
    border-radius: 0.78rem;
    transform: none;
  }

  .project-media-sheet--figma {
    gap: 0.85rem;
    padding-top: 1rem;
    border-top: 1px solid var(--hairline);
  }

  .project-media-sheet--figma .project-media-viewport {
    display: none;
  }

  .project-media-sheet--figma .project-media-caption {
    max-width: 36rem;
    gap: 0.66rem;
  }

  .project-media-sheet--figma .project-media-title {
    max-width: 100%;
  }

  .project-media-sheet--figma .project-media-link {
    margin-top: 0.25rem;
    padding: 0.72rem 0.86rem;
    border: 1px solid rgba(19, 17, 15, 0.34);
    color: var(--text-color);
    font-size: 0.78rem;
    letter-spacing: 0.06em;
  }

  .banner-project-preview-field {
    height: clamp(12rem, 58vw, 17rem);
    overflow: hidden;
  }

  .banner-gallery-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
    gap: 1rem;
    overflow: visible;
  }

  .banner-gallery .banner-asset {
    max-width: 100%;
  }

  .play-stage,
  .play-stage-mount,
  .play-stage-view,
  .play-stage-view--runtime,
  .play-stage-view--cubo {
    height: auto;
    min-height: 0;
  }

  .editorial-section--play.is-detail-open .play-stage-view--live-site {
    position: relative;
    inset: auto;
    z-index: auto;
  }

  .play-runtime-shell,
  .play-runtime-shell--live-site,
  .play-cubo-runtime-pane .play-runtime-shell,
  .play-stage-view--cubo.is-theory-open .play-cubo-runtime-pane .play-runtime-shell {
    position: relative;
    width: 100%;
    height: min(72svh, 34rem);
    min-height: 22rem;
    transform: none;
    transform-origin: center;
  }

  .play-stage-view--cubo.is-theory-open .play-cubo-runtime-pane .play-runtime-shell {
    height: min(58svh, 28rem);
    min-height: 19rem;
    transform: translate3d(0, -0.78rem, 0) scale(0.94);
    transform-origin: center top;
    animation: mobile-cubo-theory-lift 780ms cubic-bezier(0.2, 0.86, 0.22, 1) both;
  }

  .play-cubo-composition,
  .play-stage-view--cubo.is-theory-open .play-cubo-composition {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto;
    height: auto;
    min-height: 0;
    gap: clamp(1.1rem, 5vw, 1.6rem);
  }

  .play-cubo-runtime-pane,
  .play-stage-view--cubo.is-theory-open .play-cubo-runtime-pane {
    grid-column: 1;
    grid-row: 1;
    min-height: 0;
    padding: 0;
    overflow: visible;
    justify-items: stretch;
    transform: none;
  }

  .play-stage-view--cubo.is-theory-open .play-theory-area {
    grid-column: 1;
    grid-row: 2;
    max-width: none;
    max-height: none;
    min-height: 0;
    margin-top: -0.2rem;
    overflow: visible;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    animation: mobile-theory-peek 720ms cubic-bezier(0.2, 0.86, 0.22, 1) both;
  }

  .play-theory-scroll,
  .play-stage-view--cubo.is-theory-open .play-theory-scroll {
    height: auto;
    min-height: 0;
    padding: 0.72rem 0 0;
    overflow: visible;
    overscroll-behavior: auto;
    border-top: 1px solid var(--hairline);
    border-left: 0;
    border-right: 0;
    touch-action: pan-y;
    cursor: auto;
  }

  .play-theory-track {
    display: grid;
    grid-auto-flow: row;
    grid-auto-columns: auto;
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    min-width: 0;
    min-height: 0;
    gap: clamp(1.15rem, 6vw, 1.8rem);
    padding: 0;
    align-items: stretch;
  }

  .play-theory-panel {
    align-content: start;
    min-height: 0;
    padding: clamp(1rem, 5vw, 1.35rem) 0;
  }

  .play-placeholder-copy {
    max-width: 36rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .play-stage-view--cubo.is-theory-open .play-cubo-runtime-pane .play-runtime-shell,
  .play-stage-view--cubo.is-theory-open .play-theory-area {
    animation: none;
  }
}
