:root {
  --paper: #fbfaf5;
  --ink: #090909;
  --line: #090909;
  --muted-line: rgba(9, 9, 9, 0.13);
  --red: #fa3c2f;
  --orange: #ff7a1a;
  --blue: #1f78ff;
  --yellow: #f5d84c;
  --panel: rgba(251, 250, 245, 0.88);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  --site-reveal: 1;
}

body.about-open,
body.inquiry-open,
body.modal-open {
  overflow: visible;
}

body.about-open main,
body.inquiry-open main,
body.modal-open main {
  filter: blur(4px);
  transform: scale(0.998);
}

body.hero-scroll-ready .ticker,
body.hero-scroll-ready .studio-gallery,
body.hero-scroll-ready .work,
body.hero-scroll-ready .process-lab,
body.hero-scroll-ready .services,
body.hero-scroll-ready .contact {
  opacity: var(--site-reveal);
  transform: translateY(calc((1 - var(--site-reveal)) * 1.25rem));
  transition: opacity 180ms linear, transform 180ms linear;
}

a,
button {
  color: inherit;
  font: inherit;
}

a {
  text-decoration: none;
}

button {
  background: none;
  border: 0;
  cursor: pointer;
}

svg {
  display: block;
  width: 1.1rem;
  height: 1.1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 1.8;
}

.pixel {
  font-family: "Courier New", Courier, monospace;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.blueprint {
  background-image:
    linear-gradient(to right, var(--muted-line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--muted-line) 1px, transparent 1px);
  background-size: 72px 72px;
}

#work,
#process,
#services,
#studio,
#contact {
  scroll-margin-top: 72px;
}

.system-bar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 72px 1fr 72px;
  min-height: 72px;
  border-bottom: 1px solid var(--line);
  background: rgba(251, 250, 245, 0.94);
  backdrop-filter: blur(10px);
}

.mark {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 3px;
  place-self: stretch;
  margin: 16px;
  padding: 3px;
  border: 1px solid var(--line);
}

.mark span {
  background: var(--line);
}

.mark span:nth-child(2),
.mark span:nth-child(4),
.mark span:nth-child(6),
.mark span:nth-child(8) {
  background: transparent;
}

.nav-links,
.language,
.icon-button {
  border-left: 1px solid var(--line);
}

.nav-links {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
}

.nav-links a {
  display: grid;
  min-width: 5.5rem;
  min-height: 2.75rem;
  place-items: center;
  font-family: "Courier New", Courier, monospace;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: var(--ink);
  color: var(--paper);
}

.nav-links a.admin-nav-link {
  min-width: 5rem;
  border: 1px solid var(--line);
  background: var(--ink);
  color: var(--paper);
}

.nav-links a.admin-nav-link:hover,
.nav-links a.admin-nav-link:focus-visible,
.nav-links a.admin-nav-link[aria-current="page"] {
  background: var(--paper);
  color: var(--ink);
  outline: 0;
}

.language {
  display: none;
  margin: 0;
  place-items: center;
  gap: 0.45rem;
  padding: 0 1rem;
  font-size: 1rem;
  text-transform: uppercase;
}

.language button {
  min-width: 2.2rem;
  min-height: 2.2rem;
  font-weight: 700;
  line-height: 1;
}

.language button:hover,
.language button:focus-visible,
.language button[aria-pressed="true"] {
  background: var(--ink);
  color: var(--paper);
  outline: 0;
}

.icon-button {
  display: grid;
  min-width: 72px;
  min-height: 72px;
  place-items: center;
  cursor: pointer;
}

.icon-button:hover,
.icon-button:focus-visible {
  background: var(--ink);
  color: var(--paper);
}

.system-bar.menu-open .icon-button {
  background: var(--ink);
  color: var(--paper);
}

.menu-popover {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 30;
  width: min(74rem, calc(100vw - 1rem));
  max-height: calc(100vh - 72px);
  overflow: auto;
  border-left: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background-color: rgba(251, 250, 245, 0.98);
  box-shadow: 0 1.5rem 3rem rgba(9, 9, 9, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-0.8rem);
  visibility: hidden;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.menu-popover.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.menu-panel-head {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  min-height: 3.75rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  background: rgba(251, 250, 245, 0.94);
  backdrop-filter: blur(10px);
  padding-left: 1rem;
}

.menu-panel-head p {
  margin: 0;
}

.menu-room-link {
  display: grid;
  min-height: 3.75rem;
  margin-left: auto;
  place-items: center;
  border-left: 1px solid var(--line);
  padding: 0 1.1rem;
}

.menu-room-link:hover,
.menu-room-link:focus-visible {
  background: var(--ink);
  color: var(--paper);
}

.menu-close {
  display: grid;
  width: 3.75rem;
  height: 3.75rem;
  place-items: center;
  border-left: 1px solid var(--line);
}

.menu-close:hover,
.menu-close:focus-visible {
  background: var(--ink);
  color: var(--paper);
}

.menu-panel {
  display: none;
}

.menu-panel.is-active {
  animation: menu-panel-drop 220ms ease both;
  display: grid;
  transform-origin: top right;
}

.menu-panel.menu-detail.is-active {
  display: block;
}

.menu-index {
  min-height: min(34rem, calc(100vh - 132px));
}

.menu-index-card {
  --accent: var(--ink);
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 19rem;
  align-content: space-between;
  gap: 2rem;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(to right, rgba(9, 9, 9, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(9, 9, 9, 0.08) 1px, transparent 1px),
    rgba(251, 250, 245, 0.94);
  background-size: 56px 56px;
  color: var(--ink);
  padding: clamp(1.1rem, 3vw, 1.6rem);
  text-align: left;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.menu-index-card::before,
.menu-index-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.menu-index-card::before {
  left: clamp(1rem, 3vw, 1.6rem);
  right: clamp(1rem, 3vw, 1.6rem);
  top: clamp(1rem, 3vw, 1.6rem);
  height: 0.26rem;
  background: var(--accent);
  transform: scaleX(0.18);
  transform-origin: left;
  transition: transform 180ms ease;
}

.menu-index-card::after {
  right: 1.2rem;
  bottom: 1.2rem;
  width: 6.5rem;
  aspect-ratio: 1;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.08;
}

.menu-index-card:nth-child(1) {
  --accent: var(--red);
}

.menu-index-card:nth-child(2) {
  --accent: var(--blue);
}

.menu-index-card:nth-child(3) {
  --accent: var(--yellow);
}

.menu-index-card:nth-child(4),
.menu-admin-card {
  --accent: var(--red);
}

.menu-index-card:hover,
.menu-index-card:focus-visible {
  background:
    linear-gradient(to right, rgba(251, 250, 245, 0.2) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(251, 250, 245, 0.2) 1px, transparent 1px),
    var(--ink);
  background-size: 56px 56px;
  color: var(--paper);
  outline: 0;
  transform: translateY(-0.18rem);
}

.menu-index-card:hover::before,
.menu-index-card:focus-visible::before {
  transform: scaleX(1);
}

.menu-index-card:hover::after,
.menu-index-card:focus-visible::after {
  border-color: var(--paper);
  opacity: 0.28;
}

.menu-index-number {
  display: block;
  font-size: clamp(4.2rem, 12vw, 8rem);
  font-weight: 400;
  line-height: 0.82;
  letter-spacing: 0;
}

.menu-index-card strong {
  display: block;
  margin-top: 0.8rem;
  font-family: "Courier New", Courier, monospace;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.menu-index-card em {
  display: block;
  max-width: 18rem;
  margin-top: 1rem;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-style: normal;
  line-height: 1.15;
}

.menu-index-foot,
.menu-back {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.menu-index-foot svg,
.menu-back svg {
  width: 0.95rem;
  height: 0.95rem;
}

.menu-subhead {
  position: sticky;
  top: 3.75rem;
  z-index: 4;
  display: flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  background: rgba(251, 250, 245, 0.94);
  backdrop-filter: blur(10px);
}

.menu-subhead p {
  margin: 0;
  padding: 0 1rem;
}

.menu-back {
  min-height: 3.25rem;
  border-right: 1px solid var(--line);
  padding: 0 1rem;
}

.menu-back:hover,
.menu-back:focus-visible {
  background: var(--ink);
  color: var(--paper);
}

@keyframes menu-panel-drop {
  from {
    opacity: 0;
    transform: translateY(-0.55rem) scaleY(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scaleY(1);
  }
}

.hero {
  --hero-progress: 0;
  --strip-opacity: 1;
  --strip-y: 0rem;
  --statement-opacity: 0;
  --statement-y: 2.5rem;
  --statement-scale: 0.94;
  --status-opacity: 1;
  --brand-opacity: 1;
  --badge-opacity: 0;
  --badge-scale: 1;
  --badge-x: 0px;
  --badge-y: 0px;
  --cue-opacity: 1;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  align-items: start;
  min-height: calc(220vh - 72px);
  border-bottom: 1px solid var(--line);
}

.hero-side {
  position: sticky;
  top: 72px;
  display: grid;
  height: calc(100vh - 72px);
  overflow: hidden;
  isolation: isolate;
  place-items: center;
  border-right: 1px solid var(--line);
  background-color: var(--paper);
  background-image:
    linear-gradient(to right, rgba(9, 9, 9, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(9, 9, 9, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  color: var(--ink);
  transition: background-color 160ms ease, color 160ms ease;
}

.hero-side-left {
  background-color: var(--ink);
  background-image:
    linear-gradient(to right, rgba(251, 250, 245, 0.18) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(251, 250, 245, 0.18) 1px, transparent 1px);
  color: var(--paper);
}

.hero-side:hover,
.hero-side:focus-within {
  background-color: var(--ink);
  background-image:
    linear-gradient(to right, rgba(251, 250, 245, 0.24) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(251, 250, 245, 0.24) 1px, transparent 1px);
  background-size: 72px 72px;
  color: var(--paper);
}

.hero-side h2 {
  position: relative;
  z-index: 2;
}

.rail-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 1;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.hero-side h2,
.contact aside p {
  margin: 0;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.hero-side-left h2 {
  font-family: "Courier New", Courier, monospace;
  font-size: clamp(2rem, 5vw, 3rem);
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-side-right {
  display: none;
  border-right: 0;
  border-left: 1px solid var(--line);
}

.hero-side-right h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: 0;
}

.hero-core {
  position: sticky;
  top: 72px;
  display: grid;
  grid-template-rows: 1fr auto;
  height: calc(100vh - 72px);
  min-width: 0;
  overflow: hidden;
}

.sphere-field {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: block;
  min-height: 100%;
  padding: 0;
}

.hero-brand {
  position: absolute;
  top: clamp(1.5rem, 4vw, 3rem);
  left: clamp(1.25rem, 4vw, 3rem);
  z-index: 3;
  opacity: var(--brand-opacity);
  transform: translate3d(var(--brand-x, 0px), var(--brand-y, 0px), 0) scale(var(--brand-scale, 1));
  transform-origin: 0 0;
  will-change: opacity, transform;
}

.hero-badge {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: clamp(17rem, 27vw, 34rem);
  height: auto;
  color: var(--ink);
  line-height: 0;
  opacity: var(--badge-opacity);
  transform: translate3d(var(--badge-x), var(--badge-y), 0) scale(var(--badge-scale));
  transform-origin: 0 0;
  will-change: opacity, transform;
  pointer-events: none;
}

.hero-badge-svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.badge-globe,
.badge-orbit {
  transform-box: view-box;
  transform-origin: 50% 50%;
}

.badge-globe {
  animation: badge-globe-spin 9s linear infinite;
}

.badge-orbit {
  animation: badge-orbit-spin 18s linear infinite;
}

.badge-text {
  font-family: "Courier New", Courier, monospace;
  font-size: 50px;
  font-weight: 900;
  letter-spacing: 0.22em;
}

.badge-text-bottom {
  font-size: 39px;
  letter-spacing: 0.2em;
}

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

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

.eyebrow {
  margin: 0 0 1.5rem;
}

.hero h1 {
  position: relative;
  max-width: 64rem;
  margin: 0;
  font-size: clamp(5rem, 13vw, 12rem);
  font-weight: 950;
  line-height: 0.74;
  letter-spacing: -0.09em;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
}

.status-panel {
  position: absolute;
  top: clamp(1.5rem, 4vw, 3rem);
  right: clamp(1rem, 4vw, 3rem);
  z-index: 2;
  display: none;
  width: min(14rem, 26vw);
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 0.9rem;
  opacity: var(--status-opacity);
  transform: translateY(calc((1 - var(--status-opacity)) * -0.75rem));
}

.status-panel p {
  margin: 0;
}

.status-panel p + p {
  margin-top: 2.25rem;
  font-size: 0.95rem;
  line-height: 1.15;
}

.hero-statement {
  position: absolute;
  top: clamp(8.5rem, 25vh, 15rem);
  left: clamp(1.25rem, 5vw, 4rem);
  z-index: 2;
  max-width: min(84rem, calc(100% - 2.5rem));
  opacity: var(--statement-opacity);
  transform: translateY(var(--statement-y)) scale(var(--statement-scale));
  transform-origin: 0 50%;
  pointer-events: none;
  will-change: opacity, transform;
}

.hero-statement p {
  margin: 0;
}

.hero-statement h2 {
  margin: 2rem 0 0;
  font-size: clamp(4.4rem, 9.2vw, 8.8rem);
  font-weight: 950;
  line-height: 0.9;
  letter-spacing: -0.08em;
  text-transform: uppercase;
}

.hero-statement h2 + p {
  margin-top: clamp(2rem, 7vh, 5rem);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.05;
}

.hero-scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-top: clamp(2.5rem, 8vh, 5rem) !important;
  opacity: var(--cue-opacity);
  animation: scrollCueBounce 2.8s ease-in-out infinite;
}

.hero-scroll-cue span {
  width: 0.55rem;
  aspect-ratio: 1;
  background: var(--ink);
  border-radius: 50%;
}

@keyframes scrollCueBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(0.65rem);
  }
}

.hero-cross {
  position: absolute;
  right: clamp(3rem, 10vw, 9rem);
  top: 42%;
  z-index: 2;
  font-family: "Courier New", Courier, monospace;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1;
  opacity: var(--cross-opacity, 0);
  transform: rotate(var(--cross-rotation, 0deg));
}

.hero-strip {
  position: relative;
  z-index: 1;
  display: grid;
  align-self: end;
  border-top: 1px solid var(--line);
  background: rgba(251, 250, 245, 0.72);
  opacity: var(--strip-opacity);
  transform: translateY(var(--strip-y));
}

.hero-strip article {
  min-height: 9.4rem;
  padding: 1rem;
  border-bottom: 1px solid var(--line);
}

.hero-strip article:last-child {
  border-bottom: 0;
}

.hero-strip h3 {
  max-width: 22rem;
  margin: 2.1rem 0 0;
  font-size: clamp(1.45rem, 4vw, 2rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.text-button,
.mini-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  border: 1px solid var(--line);
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.text-button {
  min-width: min(12rem, 100%);
  min-height: 3.25rem;
  margin-top: 2.1rem;
  padding: 0 1rem;
  font-size: 0.9rem;
}

.mini-button {
  min-height: 2.25rem;
  padding: 0 0.75rem;
  font-size: 0.75rem;
  line-height: 1;
  white-space: nowrap;
}

.text-button:hover,
.text-button:focus-visible,
.mini-button:hover,
.mini-button:focus-visible {
  background: var(--ink);
  color: var(--paper);
}

.ticker {
  width: 100%;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  color: var(--paper);
}

.ticker-track {
  display: flex;
  width: max-content;
  font-family: "Courier New", Courier, monospace;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  white-space: nowrap;
  animation: marquee 19s linear infinite;
  will-change: transform;
}

.ticker-group {
  display: flex;
  flex: 0 0 auto;
  gap: 2.5rem;
  min-width: 100vw;
  padding: 0.8rem 2.5rem 0.8rem 0;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.studio-gallery {
  position: relative;
  display: grid;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background-color: var(--paper);
}

.studio-intro {
  display: grid;
  align-content: space-between;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  min-height: 26rem;
  padding: clamp(1.25rem, 4vw, 2rem);
  border-bottom: 1px solid var(--line);
}

.studio-intro h2 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(4.4rem, 12vw, 8.5rem);
  font-weight: 950;
  line-height: 0.8;
  letter-spacing: -0.07em;
  text-transform: uppercase;
}

.studio-intro > p:not(.pixel) {
  max-width: 27rem;
  margin: 0;
  font-size: clamp(1.25rem, 3vw, 2.2rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.studio-specs {
  display: grid;
  border: 1px solid var(--line);
}

.studio-specs article {
  padding: 0.85rem;
  border-bottom: 1px solid var(--line);
}

.studio-specs article:last-child {
  border-bottom: 0;
}

.studio-specs strong {
  display: block;
  max-width: 20rem;
  margin-top: 0.8rem;
  font-size: 1rem;
  line-height: 1.05;
  font-weight: 500;
}

.studio-board {
  display: grid;
}

.studio-card {
  --accent: var(--ink);
  position: relative;
  display: grid;
  gap: 0;
  min-height: 23rem;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  text-align: left;
  transform-style: preserve-3d;
}

.studio-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 2;
  width: 0.36rem;
  background: var(--accent);
}

.studio-card:hover,
.studio-card:focus-visible {
  background: var(--ink);
  color: var(--paper);
  outline: 0;
}

.studio-card:hover .studio-photo,
.studio-card:focus-visible .studio-photo {
  transform: translateY(-0.55rem) translateZ(1.25rem);
  box-shadow: 0 1.2rem 2.4rem rgba(9, 9, 9, 0.24);
}

.studio-photo {
  position: relative;
  display: grid;
  min-height: 17rem;
  place-items: center;
  overflow: hidden;
  margin: 1rem 1rem 0;
  border: 1px solid currentColor;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.22), transparent 32%),
    linear-gradient(to right, rgba(9, 9, 9, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(9, 9, 9, 0.08) 1px, transparent 1px),
    linear-gradient(135deg, rgba(9, 9, 9, 0.06), rgba(9, 9, 9, 0.18));
  background-size: auto, 32px 32px, 32px 32px, auto;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.studio-card:hover .studio-photo,
.studio-card:focus-visible .studio-photo {
  background:
    radial-gradient(circle at 30% 25%, rgba(251, 250, 245, 0.12), transparent 32%),
    linear-gradient(to right, rgba(251, 250, 245, 0.14) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(251, 250, 245, 0.14) 1px, transparent 1px),
    linear-gradient(135deg, rgba(251, 250, 245, 0.08), rgba(251, 250, 245, 0.02));
  background-size: auto, 32px 32px, 32px 32px, auto;
}

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

.studio-photo::before {
  inset: 18%;
  border: 1px solid currentColor;
  opacity: 0.38;
}

.studio-photo::after {
  right: 12%;
  bottom: 14%;
  width: 5.6rem;
  aspect-ratio: 1;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.32;
}

.studio-photo span {
  position: relative;
  z-index: 1;
  max-width: 10ch;
  font-size: clamp(2rem, 6vw, 4.8rem);
  font-weight: 950;
  line-height: 0.82;
  letter-spacing: -0.07em;
  text-align: center;
  text-transform: uppercase;
}

.studio-card-caption {
  display: grid;
  gap: 0.5rem;
  padding: 1rem;
}

.studio-card-caption strong,
.studio-card-caption em {
  display: block;
}

.studio-card-caption strong {
  font-size: clamp(1.35rem, 3vw, 2.25rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.studio-card-caption em {
  font-style: normal;
  line-height: 1.08;
}

.studio-lightbox {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
}

.studio-lightbox[hidden] {
  display: none;
}

.studio-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 9, 9, 0.56);
  backdrop-filter: blur(8px);
}

.studio-lightbox-window {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(68rem, 100%);
  max-height: calc(100vh - 3rem);
  overflow: auto;
  border: 1px solid var(--paper);
  background-color: var(--ink);
  color: var(--paper);
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.42);
  transform: translateY(0.8rem) scale(0.98);
  opacity: 0;
  transition: transform 220ms ease, opacity 220ms ease;
}

.studio-lightbox.is-open .studio-lightbox-window {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.studio-lightbox-head {
  display: flex;
  min-height: 3.2rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--paper);
  padding-left: 1rem;
}

.studio-lightbox-head p {
  margin: 0;
}

.studio-lightbox-head button {
  align-self: stretch;
  border-left: 1px solid var(--paper);
  padding: 0 1rem;
}

.studio-lightbox-head button:hover,
.studio-lightbox-head button:focus-visible {
  background: var(--paper);
  color: var(--ink);
}

.studio-lightbox-visual {
  position: relative;
  display: grid;
  min-height: clamp(18rem, 52vh, 35rem);
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--paper);
  background:
    radial-gradient(circle at center, rgba(251, 250, 245, 0.16), transparent 33%),
    linear-gradient(to right, rgba(251, 250, 245, 0.14) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(251, 250, 245, 0.14) 1px, transparent 1px),
    #090909;
  background-size: auto, 56px 56px, 56px 56px, auto;
}

.studio-lightbox-visual::before,
.studio-lightbox-visual::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(251, 250, 245, 0.28);
  pointer-events: none;
}

.studio-lightbox-visual::before {
  width: min(42rem, 72%);
  aspect-ratio: 2.1;
  border-radius: 50%;
}

.studio-lightbox-visual::after {
  inset: 1rem;
}

.studio-lightbox-visual span {
  position: relative;
  z-index: 1;
  color: var(--paper);
  font-size: clamp(4rem, 14vw, 11rem);
  font-weight: 950;
  line-height: 0.78;
  letter-spacing: -0.08em;
  text-transform: uppercase;
}

.studio-lightbox-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  gap: 1rem;
  padding: clamp(1rem, 3vw, 1.5rem);
}

.studio-lightbox-copy h3,
.studio-lightbox-copy p {
  margin: 0;
}

.studio-lightbox-copy h3 {
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 0.86;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.studio-lightbox-copy p {
  max-width: 32rem;
  font-size: 1.1rem;
  line-height: 1.08;
}

.studio-page {
  background: var(--paper);
}

.studio-page-hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 72px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background-color: var(--paper);
}

.studio-page-rail {
  display: none;
}

.studio-page-core {
  position: relative;
  display: grid;
  align-content: center;
  min-height: calc(100vh - 72px);
  padding: clamp(1.5rem, 7vw, 6rem);
}

.studio-page-core h1 {
  max-width: 11ch;
  margin: clamp(3rem, 8vw, 6rem) 0 0;
  font-size: clamp(4.8rem, 15vw, 13rem);
  font-weight: 950;
  line-height: 0.78;
  letter-spacing: -0.08em;
  text-transform: uppercase;
}

.studio-page-copy {
  display: grid;
  gap: 1rem;
  max-width: 33rem;
  margin-top: clamp(2rem, 5vw, 4rem);
}

.studio-page-copy p {
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 2.25rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.studio-page-copy .text-button {
  max-width: 18rem;
}

.studio-page-orbit {
  position: absolute;
  right: clamp(1.25rem, 9vw, 8rem);
  top: clamp(4rem, 11vw, 8rem);
  width: min(38vw, 30rem);
  aspect-ratio: 1;
  opacity: 0.48;
  pointer-events: none;
}

.studio-page-orbit span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(9, 9, 9, 0.24);
  border-radius: 50%;
}

.studio-page-orbit span:nth-child(2) {
  inset: 18%;
  border-radius: 50%;
  transform: rotateX(62deg);
}

.studio-page-orbit span:nth-child(3) {
  inset: 29%;
  border-radius: 50%;
  transform: rotateY(58deg);
}

.studio-gallery-page {
  min-height: calc(100vh - 72px);
}

.studio-gallery-page .studio-intro {
  align-content: start;
}

.studio-gallery-page .studio-intro h2 {
  max-width: 100%;
  font-size: clamp(3.4rem, 9vw, 5.2rem);
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.studio-gallery-page .studio-intro > p:not(.pixel) {
  max-width: 22rem;
  font-size: clamp(1.15rem, 2.5vw, 1.7rem);
  line-height: 1;
}

.studio-gallery-page .studio-card {
  min-width: 0;
}

.studio-gallery-page .studio-photo span {
  max-width: 12ch;
  font-size: clamp(2.2rem, 5vw, 4.1rem);
  letter-spacing: -0.05em;
}

.work {
  display: grid;
  border-bottom: 1px solid var(--line);
}

.work-intro {
  order: -1;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background-color: var(--paper);
  background-image:
    linear-gradient(to right, rgba(9, 9, 9, 0.12) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(9, 9, 9, 0.12) 1px, transparent 1px);
  background-size: 72px 72px;
  color: var(--ink);
  padding: clamp(1.25rem, 4vw, 2rem);
  transition: background-color 180ms ease, color 180ms ease;
}

.work-intro:hover {
  background-color: var(--ink);
  background-image:
    linear-gradient(to right, rgba(251, 250, 245, 0.18) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(251, 250, 245, 0.18) 1px, transparent 1px);
  color: var(--paper);
}

.work-intro::after {
  content: "";
  position: absolute;
  right: clamp(1rem, 4vw, 2rem);
  bottom: clamp(1rem, 4vw, 2rem);
  width: clamp(5rem, 13vw, 8rem);
  aspect-ratio: 1;
  border: 1px solid rgba(9, 9, 9, 0.2);
  border-radius: 50%;
  pointer-events: none;
}

.work-intro > * {
  position: relative;
  z-index: 1;
}

.work-intro:hover::after {
  border-color: rgba(251, 250, 245, 0.28);
}

.work-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.work-intro:hover .work-particles {
  opacity: 1;
}

.work-intro h2,
.services-intro h2,
.contact h2 {
  margin: 2rem 0 0;
  font-size: clamp(4rem, 13vw, 7.5rem);
  font-weight: 950;
  line-height: 0.78;
  letter-spacing: -0.08em;
  text-transform: uppercase;
}

.work-intro h2 {
  font-size: clamp(3.4rem, 5vw, 5rem);
  line-height: 0.82;
  letter-spacing: -0.06em;
}

.work-intro > p:last-of-type {
  max-width: 26rem;
  margin: 2rem 0 0;
  font-size: 1.08rem;
  line-height: 1.1;
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  margin-top: 2.5rem;
}

.icon-grid span,
.work-icon-button {
  display: grid;
  min-height: 7rem;
  place-items: center;
  border: 1px solid currentColor;
  background: rgba(251, 250, 245, 0.2);
}

.work-icon-button {
  gap: 0.7rem;
  color: inherit;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.work-icon-button:hover,
.work-icon-button:focus-visible,
.work-icon-button.is-active {
  background: var(--ink);
  color: var(--paper);
  outline: 0;
}

.work-intro:hover .work-icon-button:hover,
.work-intro:hover .work-icon-button:focus-visible,
.work-intro:hover .work-icon-button.is-active {
  background: var(--paper);
  color: var(--ink);
}

.work-icon-button span {
  min-height: auto;
  border: 0;
  background: transparent;
  padding: 0 0.4rem;
  text-align: center;
}

.icon-grid svg {
  width: 2.4rem;
  height: 2.4rem;
  stroke-width: 1.4;
}

.work-showcase {
  position: relative;
  z-index: 1;
  display: grid;
  margin-top: 1rem;
  overflow: hidden;
  border: 1px solid currentColor;
  background: rgba(251, 250, 245, 0.94);
  box-shadow: 0 1rem 2.4rem rgba(0, 0, 0, 0.28);
  animation: work-showcase-open 220ms ease both;
}

.work-intro:hover .work-showcase {
  background: rgba(9, 9, 9, 0.72);
}

.work-showcase[hidden] {
  display: none;
}

.work-showcase-head {
  display: flex;
  min-height: 3rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid currentColor;
  padding-left: 0.85rem;
}

.work-showcase-head p {
  margin: 0;
}

.work-showcase-head button {
  min-height: 3rem;
  border-left: 1px solid currentColor;
  padding: 0 0.85rem;
}

.work-showcase-head button:hover,
.work-showcase-head button:focus-visible {
  background: var(--ink);
  color: var(--paper);
}

.work-intro:hover .work-showcase-head button:hover,
.work-intro:hover .work-showcase-head button:focus-visible {
  background: var(--paper);
  color: var(--ink);
}

.work-stack {
  display: grid;
  padding: 0.75rem;
}

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

.work-stack-card {
  --accent: var(--ink);
  position: relative;
  isolation: isolate;
  display: grid;
  overflow: hidden;
  border: 1px solid currentColor;
  background:
    linear-gradient(to right, rgba(9, 9, 9, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(9, 9, 9, 0.08) 1px, transparent 1px),
    var(--paper);
  background-size: 28px 28px;
  color: var(--ink);
  box-shadow: 0 -0.45rem 0 rgba(9, 9, 9, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.work-stack-card + .work-stack-card {
  margin-top: -1.05rem;
}

.work-stack-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 0.32rem;
  background: var(--accent);
}

.work-stack-card:hover,
.work-stack-card:focus-within,
.work-stack-card.is-open {
  z-index: 2;
  transform: translateY(-0.22rem);
  box-shadow: 0 1rem 2.2rem rgba(9, 9, 9, 0.18);
}

.work-card-toggle {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 4.8rem minmax(0, 1fr);
  gap: 1rem;
  min-height: 7.2rem;
  align-items: stretch;
  padding: 0.85rem 0.85rem 0.85rem 1.1rem;
  text-align: left;
}

.work-card-thumb {
  position: relative;
  display: grid;
  min-height: 5.5rem;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(9, 9, 9, 0.22);
  background:
    radial-gradient(circle at center, rgba(9, 9, 9, 0.08), transparent 36%),
    linear-gradient(135deg, rgba(9, 9, 9, 0.09), rgba(255, 255, 255, 0.2));
}

.work-card-thumb strong {
  font-size: 1.1rem;
  font-weight: 950;
  line-height: 0.78;
  letter-spacing: -0.08em;
  writing-mode: vertical-rl;
  text-transform: uppercase;
}

.work-card-title {
  display: grid;
  align-content: center;
  gap: 0.8rem;
}

.work-card-title .pixel {
  min-height: auto;
  border: 0;
  background: transparent;
}

.work-card-title b {
  display: block;
  font-size: clamp(1.35rem, 3vw, 2.25rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.work-card-body {
  display: grid;
  grid-template-rows: minmax(13rem, 1fr) auto;
  gap: 1rem;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  padding: 0 1rem 0 1.1rem;
  transition: max-height 240ms ease, opacity 180ms ease, padding 240ms ease;
}

.work-stack-card.is-open .work-card-body {
  max-height: 30rem;
  opacity: 1;
  padding-bottom: 1rem;
}

.work-brand-display {
  display: grid;
  min-height: 14rem;
  place-items: center;
  border: 1px solid rgba(9, 9, 9, 0.22);
  background:
    linear-gradient(to right, rgba(9, 9, 9, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(9, 9, 9, 0.08) 1px, transparent 1px),
    #f7f6ef;
  background-size: 32px 32px;
  font-size: clamp(3.4rem, 8vw, 6rem);
  font-weight: 950;
  line-height: 0.8;
  letter-spacing: -0.08em;
  text-transform: uppercase;
}

.work-card-body h3,
.work-card-body p {
  margin: 0;
}

.work-card-body h3 {
  margin-top: 0.8rem;
  font-size: clamp(1.15rem, 2.5vw, 1.7rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.work-card-body p:not(.pixel) {
  margin-top: 0.7rem;
  line-height: 1.12;
}

.playerhead-grid {
  display: grid;
  gap: 0.75rem;
  padding: 0.75rem;
}

.playerhead-card {
  --accent: var(--ink);
  position: relative;
  overflow: hidden;
  border: 1px solid currentColor;
  background:
    linear-gradient(to right, rgba(9, 9, 9, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(9, 9, 9, 0.08) 1px, transparent 1px),
    var(--paper);
  background-size: 28px 28px;
  color: var(--ink);
}

.playerhead-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 0.32rem;
  background: var(--accent);
}

.playerhead-button {
  position: relative;
  display: grid;
  grid-template-columns: 5.4rem minmax(0, 1fr);
  gap: 1rem;
  width: 100%;
  min-height: 8.4rem;
  align-items: center;
  color: inherit;
  padding: 0.9rem 1rem 0.9rem 1.2rem;
  text-align: left;
  text-decoration: none;
}

.playerhead-button > span:last-child {
  display: grid;
  gap: 0.45rem;
}

.playerhead-button strong,
.playerhead-button em {
  display: block;
}

.playerhead-button strong {
  font-size: clamp(1.35rem, 3.4vw, 2.4rem);
  font-style: normal;
  font-weight: 950;
  line-height: 0.9;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.playerhead-button em {
  font-size: 0.86rem;
  font-style: normal;
  line-height: 1.1;
}

.playerhead-disc {
  position: relative;
  display: grid;
  width: 4.6rem;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(9, 9, 9, 0.3);
  border-radius: 50%;
  background:
    radial-gradient(circle, var(--ink) 0 0.4rem, transparent 0.45rem),
    repeating-radial-gradient(circle, rgba(9, 9, 9, 0.18) 0 0.08rem, transparent 0.08rem 0.45rem);
}

.playerhead-disc::after {
  content: "";
  width: 0;
  height: 0;
  margin-left: 0.18rem;
  border-top: 0.45rem solid transparent;
  border-bottom: 0.45rem solid transparent;
  border-left: 0.72rem solid var(--paper);
}

.spotify-head .playerhead-disc {
  background:
    radial-gradient(circle, var(--accent) 0 0.45rem, transparent 0.5rem),
    repeating-radial-gradient(circle, rgba(9, 9, 9, 0.18) 0 0.08rem, transparent 0.08rem 0.45rem);
}

.work-category-grid {
  gap: 0;
}

.work-category-grid .playerhead-card + .playerhead-card {
  border-top: 0;
}

.work-category-toggle {
  grid-template-columns: 3.8rem minmax(0, 1fr);
  min-height: 7.2rem;
  transition: background-color 160ms ease, color 160ms ease;
}

.work-category-toggle::after {
  content: "+";
  position: absolute;
  top: 0.9rem;
  right: 1rem;
  font-family: "Courier New", Courier, monospace;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
}

.work-category-card.is-open .work-category-toggle::after {
  content: "-";
}

.work-category-toggle:hover,
.work-category-toggle:focus-visible,
.work-category-card.is-open .work-category-toggle {
  background: var(--ink);
  color: var(--paper);
  outline: 0;
}

.work-category-number {
  display: grid;
  min-height: 4.2rem;
  place-items: center;
  border: 1px solid currentColor;
  background: var(--paper);
  color: var(--ink);
}

.work-category-card.is-open .work-category-number,
.work-category-toggle:hover .work-category-number,
.work-category-toggle:focus-visible .work-category-number {
  background: var(--ink);
  color: var(--paper);
}

.work-category-player {
  position: relative;
  display: grid;
  gap: 0.8rem;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  padding: 0 1rem 0 1.2rem;
  transition: max-height 220ms ease, opacity 180ms ease, padding 220ms ease;
}

.work-category-card.is-open .work-category-player {
  max-height: 52rem;
  opacity: 1;
  padding-bottom: 1rem;
}

.category-player-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid currentColor;
  padding-top: 0.8rem;
}

.category-player-head p,
.category-player-head span {
  margin: 0;
}

.category-player-head span {
  font-size: 0.8rem;
}

.category-player-note {
  max-width: 34rem;
  margin: -0.2rem 0 0;
  font-size: 0.82rem;
  line-height: 1.18;
}

.category-embed-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.category-embed-list-single {
  grid-template-columns: 1fr;
}

.category-embed-frame {
  position: relative;
  display: flex;
  min-height: 5.7rem;
  align-items: center;
  justify-content: center;
  gap: clamp(0.65rem, 2vw, 1rem);
  border: 1px solid currentColor;
  background:
    linear-gradient(to right, rgba(9, 9, 9, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(9, 9, 9, 0.08) 1px, transparent 1px),
    rgba(251, 250, 245, 0.82);
  background-size: 24px 24px;
  color: var(--ink);
}

.category-embed-frame.has-embed {
  min-height: 152px;
  padding: 0;
  align-items: stretch;
  background: var(--ink);
  overflow: hidden;
}

.category-embed-frame.has-embed::before {
  display: none;
}

.category-embed-frame.has-embed iframe {
  display: block;
  width: 100%;
  min-height: 152px;
  height: 152px;
  border: 0;
}

.spotify-head.work-category-card.is-open .work-category-player {
  max-height: 112rem;
}

.spotify-head .category-embed-list {
  grid-template-columns: 1fr;
  gap: 0.35rem;
}

.spotify-head .category-embed-frame.has-embed:not(.category-embed-frame-tall) {
  grid-column: 1 / -1;
  min-height: 152px;
}

.spotify-head .category-embed-frame.has-embed:not(.category-embed-frame-tall) iframe {
  min-height: 152px;
  height: 152px;
}

.category-embed-frame.has-audio {
  --category-audio-progress: 0;
  display: grid;
  grid-template-columns: 3.1rem minmax(0, 1fr) 3.7rem;
  align-items: stretch;
  justify-content: stretch;
  gap: 0;
  min-height: 8.4rem;
  padding: 0;
  background:
    linear-gradient(to right, rgba(9, 9, 9, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(9, 9, 9, 0.08) 1px, transparent 1px),
    rgba(251, 250, 245, 0.9);
  background-size: 20px 20px;
  overflow: hidden;
}

.category-embed-frame.has-audio::before {
  display: none;
}

.category-embed-frame.has-audio > * {
  position: relative;
  z-index: 1;
}

.category-embed-frame.has-audio span {
  width: auto;
  min-height: 0;
  background: transparent;
  opacity: 1;
}

.category-audio-play {
  display: grid;
  place-items: center;
  border: 0;
  border-right: 1px solid currentColor;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.category-audio-play:hover,
.category-audio-play:focus-visible {
  background: var(--ink);
  color: var(--paper);
  outline: none;
}

.category-audio-play svg {
  width: 1.05rem;
  height: 1.05rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.category-audio-main {
  display: grid;
  align-content: space-between;
  min-width: 0;
  padding: 0.7rem 0.75rem 0.75rem;
}

.category-audio-head {
  min-width: 0;
}

.category-audio-head p,
.category-audio-head strong {
  margin: 0;
}

.category-audio-head strong {
  display: block;
  max-width: 100%;
  overflow: hidden;
  font-size: clamp(0.95rem, 1.5vw, 1.18rem);
  line-height: 0.9;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.category-audio-wave {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(0.28rem, 1vw, 0.55rem);
  min-height: 2.7rem;
  color: inherit;
  cursor: pointer;
  touch-action: none;
  user-select: none;
}

.category-audio-wave::before,
.category-audio-wave::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  height: 1px;
  transform: translateY(-50%);
}

.category-audio-wave::before {
  z-index: 1;
  width: calc(var(--category-audio-progress) * 100%);
  background: var(--accent);
  transition: width 120ms linear;
}

.category-audio-wave::after {
  z-index: 0;
  width: 100%;
  background: currentColor;
  opacity: 0.22;
}

.category-audio-wave.is-scrubbing::before,
.category-audio-wave.is-scrubbing .category-audio-headline {
  transition: none;
}

.category-audio-wave:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 0.28rem;
}

.category-embed-frame.has-audio .category-audio-wave span {
  position: relative;
  z-index: 1;
  width: 1px;
  min-height: 1.2rem;
  background: currentColor;
  opacity: 0.5;
}

.category-embed-frame.has-audio .category-audio-wave span:nth-child(2),
.category-embed-frame.has-audio .category-audio-wave span:nth-child(5),
.category-embed-frame.has-audio .category-audio-wave span:nth-child(9) {
  min-height: 2.5rem;
}

.category-embed-frame.has-audio .category-audio-wave span:nth-child(4),
.category-embed-frame.has-audio .category-audio-wave span:nth-child(8) {
  min-height: 1.8rem;
  background: var(--accent);
  opacity: 1;
}

.category-audio-headline {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: calc(var(--category-audio-progress) * 100%);
  width: 0.72rem;
  aspect-ratio: 1;
  border: 1px solid var(--ink);
  background: var(--paper);
  box-shadow: 0 0 0 0.14rem rgba(251, 250, 245, 0.9);
  transform: translate(-50%, -50%) rotate(45deg);
  transition: left 120ms linear;
}

.category-audio-time {
  display: grid;
  place-content: end center;
  gap: 0.12rem;
  border-left: 1px solid currentColor;
  padding: 0.7rem 0.35rem;
  font-family: "Courier New", Courier, monospace;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.category-embed-frame-tall,
.category-embed-frame-tall iframe {
  min-height: 352px;
}

.category-embed-frame-tall {
  grid-column: 1 / -1;
}

.category-embed-frame-tall iframe {
  height: 352px;
}

.category-embed-frame::before {
  content: attr(data-embed-slot);
  position: absolute;
  top: 0.5rem;
  left: 0.55rem;
  font-family: "Courier New", Courier, monospace;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.category-embed-frame span {
  width: 0.14rem;
  min-height: 1.4rem;
  background: currentColor;
  opacity: 0.55;
}

.category-embed-frame span:nth-child(2),
.category-embed-frame span:nth-child(5) {
  min-height: 3.8rem;
}

.category-embed-frame span:nth-child(3) {
  min-height: 2.5rem;
  background: var(--accent);
  opacity: 1;
}

.category-embed-frame span:nth-child(4) {
  min-height: 5.2rem;
}

@media (max-width: 760px) {
  .category-embed-list {
    grid-template-columns: 1fr;
  }

  .work-category-card.is-open .work-category-player {
    max-height: 58rem;
  }
}

.target-disc {
  border-radius: 0;
  background:
    linear-gradient(var(--accent), var(--accent)) center / 55% 1px no-repeat,
    linear-gradient(90deg, var(--accent), var(--accent)) center / 1px 55% no-repeat,
    radial-gradient(circle, transparent 30%, rgba(9, 9, 9, 0.22) 31%, rgba(9, 9, 9, 0.22) 33%, transparent 34%);
}

.film-grid,
.longform-grid {
  display: grid;
  gap: 0.75rem;
  padding: 0.75rem;
}

.film-card,
.longform-card {
  --accent: var(--ink);
  position: relative;
  overflow: hidden;
  border: 1px solid currentColor;
  background:
    linear-gradient(to right, rgba(9, 9, 9, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(9, 9, 9, 0.08) 1px, transparent 1px),
    var(--paper);
  background-size: 28px 28px;
  color: var(--ink);
}

.film-card::before,
.longform-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 0.32rem;
  background: var(--accent);
}

.film-button,
.longform-button {
  display: grid;
  width: 100%;
  gap: 0.9rem;
  padding: 0.9rem 1rem 0.9rem 1.2rem;
  text-align: left;
}

.film-frame {
  position: relative;
  display: grid;
  min-height: 11rem;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(9, 9, 9, 0.26);
  background:
    linear-gradient(to right, rgba(9, 9, 9, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(9, 9, 9, 0.08) 1px, transparent 1px),
    #0b0b0b;
  background-size: 24px 24px;
}

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

.film-frame::before {
  inset: 0;
  background:
    linear-gradient(90deg, var(--accent) 0 0.28rem, transparent 0.28rem),
    repeating-linear-gradient(90deg, rgba(251, 250, 245, 0.16) 0 0.08rem, transparent 0.08rem 1.05rem);
  opacity: 0.72;
}

.film-frame::after {
  width: 3.2rem;
  aspect-ratio: 1;
  border: 1px solid rgba(251, 250, 245, 0.72);
  border-radius: 50%;
  background:
    linear-gradient(90deg, var(--paper), var(--paper)) 55% center / 0.9rem 1px no-repeat,
    linear-gradient(30deg, transparent 42%, var(--paper) 43% 56%, transparent 57%) center / 1.4rem 1.4rem no-repeat;
}

.film-frame-embed {
  min-height: 0;
  aspect-ratio: 4 / 3;
}

.film-frame-embed::before,
.film-frame-embed::after {
  display: none;
}

.film-frame-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.film-copy,
.longform-button > span:last-child {
  display: grid;
  gap: 0.45rem;
}

.film-copy strong,
.longform-button strong {
  display: block;
  font-size: clamp(1.35rem, 3.4vw, 2.35rem);
  font-weight: 950;
  line-height: 0.9;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.longform-button strong {
  font-size: clamp(1.1rem, 2.15vw, 1.75rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
  overflow-wrap: anywhere;
}

.film-copy em,
.longform-button em {
  display: block;
  max-width: 26rem;
  font-style: normal;
  line-height: 1.1;
}

.longform-button {
  grid-template-columns: 6.2rem minmax(0, 1fr);
  min-height: 9.4rem;
  align-items: center;
}

.longform-cover {
  display: grid;
  aspect-ratio: 0.72;
  place-items: end start;
  border: 1px solid rgba(9, 9, 9, 0.3);
  background:
    linear-gradient(to right, rgba(9, 9, 9, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(9, 9, 9, 0.08) 1px, transparent 1px),
    linear-gradient(135deg, rgba(9, 9, 9, 0.06), rgba(9, 9, 9, 0.18));
  background-size: 18px 18px, 18px 18px, auto;
  padding: 0.45rem;
  color: var(--accent);
  font-size: 1.35rem;
  font-weight: 950;
  letter-spacing: -0.06em;
}

.film-card:hover,
.film-card:focus-within,
.longform-card:hover,
.longform-card:focus-within {
  background:
    linear-gradient(to right, rgba(251, 250, 245, 0.14) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(251, 250, 245, 0.14) 1px, transparent 1px),
    var(--ink);
  background-size: 28px 28px;
  color: var(--paper);
}

.film-card:hover .film-frame,
.film-card:focus-within .film-frame,
.longform-card:hover .longform-cover,
.longform-card:focus-within .longform-cover {
  border-color: rgba(251, 250, 245, 0.5);
}

.playerhead-card:hover,
.playerhead-card:focus-within {
  background:
    linear-gradient(to right, rgba(251, 250, 245, 0.14) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(251, 250, 245, 0.14) 1px, transparent 1px),
    var(--ink);
  background-size: 28px 28px;
  color: var(--paper);
}

.playerhead-card:hover .playerhead-disc,
.playerhead-card:focus-within .playerhead-disc {
  border-color: rgba(251, 250, 245, 0.5);
  filter: invert(1);
}

.logo-wall {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.logo-tile {
  position: relative;
  display: grid;
  min-height: 8.5rem;
  align-content: space-between;
  overflow: hidden;
  border-right: 1px solid rgba(251, 250, 245, 0.32);
  border-bottom: 1px solid rgba(251, 250, 245, 0.32);
  background:
    linear-gradient(to right, rgba(251, 250, 245, 0.1) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(251, 250, 245, 0.1) 1px, transparent 1px),
    #090909;
  background-size: 32px 32px;
  padding: 0.85rem;
}

.logo-tile:nth-child(2n) {
  border-right: 0;
}

.logo-tile:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.logo-tile::after {
  content: "";
  position: absolute;
  right: 0.85rem;
  top: 0.85rem;
  width: 2.6rem;
  aspect-ratio: 1;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.24;
}

.logo-tile strong {
  font-size: clamp(1.8rem, 4vw, 3.1rem);
  font-weight: 950;
  line-height: 0.78;
  letter-spacing: -0.06em;
}

.logo-tile span {
  margin: 0;
}

.logo-tile-b strong {
  font-family: "Courier New", Courier, monospace;
  letter-spacing: 0.08em;
}

.logo-tile-c strong {
  color: var(--yellow);
}

.logo-tile-d strong {
  font-style: italic;
}

@keyframes work-showcase-open {
  from {
    opacity: 0;
    transform: translateY(-0.55rem) scaleY(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scaleY(1);
  }
}

[data-tilt-card] {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --tilt-z: 0rem;
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translate3d(0, var(--tilt-z), 0);
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

[data-tilt-card].is-tilting,
[data-tilt-card]:hover {
  --tilt-z: -0.28rem;
  z-index: 4;
}

[data-tilt-card] > * {
  transform: translateZ(1.2rem);
}

.project-grid {
  display: grid;
}

.project-card {
  position: relative;
  min-height: 17rem;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  padding: 1rem;
  transition: background 160ms ease, color 160ms ease;
}

.project-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0.45rem;
  height: 100%;
  background: var(--accent, var(--ink));
}

.project-card:hover,
.project-card:focus-within {
  background: var(--ink);
  color: var(--paper);
}

.project-card:hover .mini-button,
.project-card:focus-within .mini-button {
  border-color: var(--paper);
}

.accent-red {
  --accent: var(--red);
}

.accent-blue {
  --accent: var(--blue);
}

.accent-yellow {
  --accent: var(--yellow);
}

.accent-orange {
  --accent: var(--orange);
}

.accent-black {
  --accent: var(--ink);
}

.project-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.project-top h3 {
  max-width: 20rem;
  margin: 1.2rem 0 0;
  font-size: clamp(1.7rem, 6vw, 2.5rem);
  font-weight: 950;
  line-height: 0.93;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.project-top p {
  margin: 0.35rem 0 0;
  font-size: 1.05rem;
  line-height: 1;
}

.project-top .pixel,
.project-top span {
  margin: 0;
  font-size: 0.6rem;
}

.project-detail {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 8.75rem;
  max-width: none;
  margin: 0;
  padding-left: 0.7rem;
  font-size: 0.92rem;
  line-height: 1.15;
}

.project-card .mini-button {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
}

.process-lab {
  display: grid;
  border-bottom: 1px solid var(--line);
}

.process-intro,
.journey-step,
.project-type-system {
  border-bottom: 1px solid var(--line);
  padding: clamp(1.25rem, 4vw, 2rem);
}

.process-intro h2 {
  max-width: 42rem;
  margin: 2rem 0 0;
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 950;
  line-height: 0.78;
  letter-spacing: -0.08em;
  text-transform: uppercase;
}

.process-intro > p:last-child {
  max-width: 28rem;
  margin: 2rem 0 0;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.12;
}

.journey-timeline {
  display: grid;
}

.journey-step {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 16rem;
  overflow: hidden;
  background:
    linear-gradient(to right, rgba(251, 250, 245, 0.14) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(251, 250, 245, 0.14) 1px, transparent 1px),
    var(--ink);
  background-size: 72px 72px;
  border-color: rgba(251, 250, 245, 0.36);
  color: var(--paper);
  isolation: isolate;
  transition: background 220ms ease, color 220ms ease;
}

.journey-step:hover {
  background:
    linear-gradient(to right, rgba(9, 9, 9, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(9, 9, 9, 0.08) 1px, transparent 1px),
    var(--paper);
  background-size: 72px 72px;
  border-color: var(--line);
  color: var(--ink);
}

.journey-step:not(:last-child)::before,
.journey-step:not(:last-child)::after {
  content: "";
  position: absolute;
  z-index: 0;
  color: currentColor;
  opacity: 0;
  transition:
    opacity 420ms ease,
    transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--journey-arrow-delay, 0ms);
}

.journey-step:not(:last-child)::before {
  top: clamp(4.2rem, 7vw, 5rem);
  right: 1.35rem;
  width: clamp(3.2rem, 6vw, 5.4rem);
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
}

.journey-step:not(:last-child)::after {
  top: calc(clamp(4.2rem, 7vw, 5rem) - 0.31rem);
  right: 1.15rem;
  width: 0.68rem;
  height: 0.68rem;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateX(-0.75rem) rotate(45deg);
}

.journey-timeline.is-running .journey-step:not(:last-child)::before {
  opacity: 0.45;
  transform: scaleX(1);
}

.journey-timeline.is-running .journey-step:not(:last-child)::after {
  opacity: 0.65;
  transform: translateX(0) rotate(45deg);
}

.journey-step .pixel,
.journey-step h3,
.journey-step > p:last-child {
  position: relative;
  z-index: 1;
}

.journey-step.is-sequenced .pixel,
.journey-step.is-sequenced h3,
.journey-step.is-sequenced > p:last-child {
  opacity: 0;
  transform: translateY(1.2rem);
  transition:
    opacity 520ms ease,
    transform 680ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.journey-timeline.is-running .journey-step.is-sequenced .pixel {
  opacity: 1;
  transform: translateY(0);
  transition-delay: var(--journey-label-delay, 0ms);
}

.journey-timeline.is-running .journey-step.is-sequenced h3 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: var(--journey-title-delay, 0ms);
}

.journey-timeline.is-running .journey-step.is-sequenced > p:last-child {
  opacity: 1;
  transform: translateY(0);
  transition-delay: var(--journey-copy-delay, 0ms);
}

@media (hover: hover) {
  .journey-timeline.is-running .journey-step.is-sequenced:hover .pixel {
    transform: translateY(-0.28rem);
    transition-delay: 0ms;
  }

  .journey-timeline.is-running .journey-step.is-sequenced:hover h3 {
    transform: translateY(-0.55rem);
    transition-delay: 0ms;
  }

  .journey-timeline.is-running .journey-step.is-sequenced:hover > p:last-child {
    transform: translateY(0.32rem);
    transition-delay: 0ms;
  }
}

@media (max-width: 899px) {
  .journey-step:not(:last-child)::before {
    top: auto;
    right: 2rem;
    bottom: 1.5rem;
    width: 1px;
    height: 3rem;
    transform: scaleY(0);
    transform-origin: top center;
  }

  .journey-step:not(:last-child)::after {
    top: auto;
    right: calc(2rem - 0.31rem);
    bottom: 1.05rem;
    transform: translateY(-0.75rem) rotate(135deg);
  }

  .journey-timeline.is-running .journey-step:not(:last-child)::before {
    transform: scaleY(1);
  }

  .journey-timeline.is-running .journey-step:not(:last-child)::after {
    transform: translateY(0) rotate(135deg);
  }
}

.journey-step h3 {
  max-width: 16rem;
  margin: 3rem 0 0;
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 950;
  line-height: 0.84;
  letter-spacing: -0.07em;
  text-transform: uppercase;
}

.journey-step > p:last-child {
  max-width: 24rem;
  margin: 2rem 0 0;
  line-height: 1.12;
}

.project-type-system {
  display: grid;
  gap: 1rem;
  border-bottom: 0;
}

.project-type-system h3 {
  margin: 1rem 0 0;
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 950;
  line-height: 0.82;
  letter-spacing: -0.08em;
  text-transform: uppercase;
}

.project-type-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  perspective: 1400px;
}

.project-type-card {
  --type-accent: var(--orange);
  position: relative;
  container-type: inline-size;
  display: grid;
  min-height: clamp(12rem, 16vw, 15rem);
  align-content: space-between;
  justify-items: start;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  padding: 0;
  text-align: left;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  transition:
    color 180ms ease,
    transform 560ms cubic-bezier(0.2, 0.85, 0.2, 1);
}

.project-type-card:nth-child(3n + 1) {
  --type-accent: var(--orange);
}

.project-type-card:nth-child(3n + 2) {
  --type-accent: var(--blue);
}

.project-type-card:nth-child(3n + 3) {
  --type-accent: var(--yellow);
}

.project-type-front,
.project-type-back {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: start;
  justify-items: start;
  gap: clamp(0.9rem, 1.6cqw, 1.25rem);
  padding: clamp(0.95rem, 1.55vw, 1.25rem);
  backface-visibility: hidden;
  transform-style: preserve-3d;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 560ms cubic-bezier(0.2, 0.85, 0.2, 1);
}

.project-type-front {
  z-index: 1;
  background:
    linear-gradient(to right, rgba(9, 9, 9, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(9, 9, 9, 0.08) 1px, transparent 1px),
    var(--paper);
  background-size: 36px 36px;
  box-shadow: inset 0 0 0 1px var(--line);
  transform: rotateY(0deg);
}

.project-type-back {
  z-index: 2;
  align-content: end;
  gap: 0.75rem;
  background:
    linear-gradient(to right, rgba(251, 250, 245, 0.15) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(251, 250, 245, 0.15) 1px, transparent 1px),
    var(--ink);
  background-size: 36px 36px;
  color: var(--paper);
  box-shadow: inset 0 0 0 1px rgba(251, 250, 245, 0.72);
  transform: rotateY(-180deg);
}

.project-type-back::before {
  content: "";
  position: absolute;
  inset: auto 1.1rem 1.1rem auto;
  width: 4rem;
  aspect-ratio: 1;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.18;
}

.project-type-back em {
  position: relative;
  z-index: 1;
  max-width: 20rem;
  font-style: normal;
  font-size: clamp(0.95rem, 1.2vw, 1.08rem);
  line-height: 1.12;
}

.project-type-card::after {
  content: "";
  position: absolute;
  right: 0.9rem;
  bottom: 0.9rem;
  width: 2.5rem;
  aspect-ratio: 1;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.18;
  backface-visibility: hidden;
  pointer-events: none;
  z-index: 3;
}

.project-type-card > * {
  backface-visibility: hidden;
}

.project-type-front strong,
.project-type-back strong {
  display: block;
  width: 100%;
  max-width: calc(100% - 0.35rem);
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  font-size: clamp(1.28rem, 12.1cqw, 2.55rem);
  line-height: 0.86;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  text-wrap: balance;
}

.project-type-back strong {
  position: relative;
  z-index: 1;
  max-width: 20rem;
  color: var(--paper);
}

.project-type-back-label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--paper);
}

.project-type-back-label::before {
  content: "";
  display: block;
  width: 2.4rem;
  height: 3px;
  background: var(--type-accent);
}

.project-type-card:hover .project-type-front,
.project-type-card:focus-visible .project-type-front {
  background:
    linear-gradient(to right, rgba(251, 250, 245, 0.16) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(251, 250, 245, 0.16) 1px, transparent 1px),
    var(--ink);
  color: var(--paper);
}

.project-type-card.is-active {
  border-color: rgba(251, 250, 245, 0.72);
  color: var(--paper);
}

.project-type-card.is-active .project-type-front {
  transform: rotateY(180deg);
}

.project-type-card.is-active .project-type-back {
  transform: rotateY(0deg);
}

.project-brief-panel {
  min-height: 13rem;
  border: 1px solid var(--line);
  background: var(--ink);
  color: var(--paper);
  padding: 1rem;
}

.project-brief-panel h4 {
  margin: 2rem 0 0;
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 950;
  line-height: 0.84;
  letter-spacing: -0.07em;
  text-transform: uppercase;
}

.project-brief-panel p:last-child {
  max-width: 34rem;
  margin: 1.25rem 0 0;
  font-size: 1.05rem;
  line-height: 1.12;
}

.services {
  display: grid;
  border-bottom: 1px solid var(--line);
}

.services-intro,
.services article {
  border-bottom: 1px solid var(--line);
  padding: clamp(1.25rem, 4vw, 2rem);
}

.services article {
  position: relative;
  display: block;
  min-width: 0;
  min-height: 19rem;
  background: transparent;
  overflow: visible;
  perspective: 1200px;
  padding: 0;
  cursor: pointer;
  transition: transform 220ms ease, opacity 220ms ease;
}

.services article::after {
  display: none;
}

.service-card-flip {
  position: relative;
  min-height: inherit;
  transform-style: preserve-3d;
  transition: transform 520ms cubic-bezier(0.2, 0.85, 0.2, 1);
}

.service-card.is-flipped .service-card-flip {
  transform: rotateY(180deg);
}

.service-card-face {
  min-height: inherit;
  border: 0;
  backface-visibility: hidden;
}

.service-card-front {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--paper);
  padding: clamp(1.25rem, 4vw, 2rem);
  transition: background 180ms ease, color 180ms ease;
}

.service-card-back {
  position: absolute;
  inset: 0;
  display: grid;
  gap: 0.7rem;
  overflow: auto;
  background:
    linear-gradient(to right, rgba(251, 250, 245, 0.13) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(251, 250, 245, 0.13) 1px, transparent 1px),
    var(--ink);
  background-size: 42px 42px;
  color: var(--paper);
  padding: clamp(1.25rem, 4vw, 2rem);
  transform: rotateY(180deg);
  cursor: default;
}

.service-card.is-expanded,
.service-card.is-flipped {
  min-height: 34rem;
}

.service-card:nth-of-type(2).is-expanded,
.service-card:nth-of-type(2).is-flipped {
  min-height: 42rem;
}

.service-card-front > *:not(.service-lines) {
  position: relative;
  z-index: 1;
}

.service-lines {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.service-card:hover .service-lines,
.service-card:focus-within .service-lines,
.service-card.is-flipped .service-lines {
  opacity: 1;
}

.service-card-front::after {
  content: "";
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 4rem;
  aspect-ratio: 1;
  border: 1px solid rgba(9, 9, 9, 0.16);
  border-radius: 50%;
  pointer-events: none;
}

.services article:hover .service-card-front,
.services article:focus-within .service-card-front,
.services article.is-flipped .service-card-front {
  background: var(--ink);
  color: var(--paper);
}

.services article:hover .mini-button,
.services article:focus-within .mini-button,
.services article.is-flipped .mini-button {
  border-color: var(--paper);
}

.services article:hover .service-card-front::after,
.services article:focus-within .service-card-front::after,
.services article.is-flipped .service-card-front::after {
  border-color: rgba(251, 250, 245, 0.28);
}

.services article h3 {
  margin: 3rem 0 0;
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 950;
  line-height: 0.88;
  letter-spacing: -0.07em;
  text-transform: uppercase;
}

.services article:nth-of-type(1) {
  --service-accent: var(--red);
}

.services article:nth-of-type(2) {
  --service-accent: var(--blue);
}

.services article:nth-of-type(3) {
  --service-accent: var(--yellow);
}

.service-card-front > .pixel::after {
  content: "";
  display: block;
  width: 2.4rem;
  height: 0.22rem;
  margin-top: 0.65rem;
  background: var(--service-accent, var(--ink));
}

.service-card-front > p:not(.pixel) {
  max-width: 19rem;
  margin: 1.5rem 0 0;
  line-height: 1.15;
}

.services .mini-button {
  margin-top: 2.4rem;
  min-width: 6.75rem;
  width: 100%;
}

.service-expanded {
  display: grid;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-0.5rem);
  transition: max-height 300ms ease, opacity 220ms ease, transform 260ms ease;
}

.service-card.is-expanded .service-expanded {
  max-height: 32rem;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.service-card:nth-of-type(2).is-expanded .service-expanded {
  max-height: 40rem;
}

.service-points,
.service-packages {
  display: grid;
  gap: 0.55rem;
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
}

.service-points li,
.service-packages section {
  border-top: 1px solid rgba(9, 9, 9, 0.18);
  padding-top: 0.55rem;
  font-size: 0.82rem;
  line-height: 1.12;
}

.services article:hover .service-points li,
.services article:focus-within .service-points li,
.services article:hover .service-packages section,
.services article:focus-within .service-packages section {
  border-top-color: rgba(251, 250, 245, 0.28);
}

.service-packages h4,
.service-packages p {
  margin: 0;
}

.service-packages h4 {
  font-size: 0.82rem;
  text-transform: uppercase;
}

.service-packages p {
  margin-top: 0.35rem;
}

.service-packages ul {
  display: grid;
  gap: 0.18rem;
  margin: 0.5rem 0 0;
  padding-left: 1rem;
}

.service-learn {
  margin-top: 0.65rem !important;
}

.service-card-back h3,
.service-card-back p {
  margin: 0;
}

.service-card-back h3 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 950;
  line-height: 0.82;
  letter-spacing: -0.08em;
  text-transform: uppercase;
}

.service-card-back label {
  display: grid;
  gap: 0.45rem;
}

.service-card-back input,
.service-card-back textarea {
  width: 100%;
  border: 1px solid rgba(251, 250, 245, 0.42);
  background: rgba(9, 9, 9, 0.4);
  color: var(--paper);
  font: inherit;
  padding: 0.75rem;
  resize: vertical;
}

.service-card-back input:focus,
.service-card-back textarea:focus {
  outline: 1px solid var(--paper);
  outline-offset: 2px;
}

.service-card-back .text-button {
  width: 100%;
  margin-top: 0.5rem;
  border-color: var(--paper);
}

.service-card-back .text-button:hover,
.service-card-back .text-button:focus-visible {
  background: var(--paper);
  color: var(--ink);
}

.service-back-close {
  justify-self: end;
  min-height: 2.2rem;
  border: 1px solid rgba(251, 250, 245, 0.5);
  padding: 0 0.8rem;
}

.service-back-close:hover,
.service-back-close:focus-visible {
  background: var(--paper);
  color: var(--ink);
}

.reveal-item {
  opacity: 0;
  transform: translateY(2rem) rotateX(5deg);
  transform-origin: top center;
  transition:
    opacity 420ms ease,
    transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1),
    background 180ms ease,
    color 180ms ease;
  transition-delay: calc(var(--reveal-index, 0) * 70ms);
}

.reveal-item.is-revealed {
  opacity: 1;
  transform: translateY(0) rotateX(0deg);
}

.project-type-card.reveal-item.is-revealed.is-active {
  transform: translateY(0) rotateX(0deg);
}

.menu-merch {
  display: grid;
  overflow: hidden;
}

.merch-intro {
  display: grid;
  align-content: start;
  gap: 2rem;
  border-bottom: 1px solid var(--line);
  padding: clamp(1.25rem, 4vw, 2rem);
}

.merch-intro .pixel {
  margin: 0;
  font-size: clamp(4.8rem, 17vw, 8rem);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
}

.merch-intro h2 {
  max-width: 16rem;
  margin: 0;
  font-family: "Courier New", Courier, monospace;
  font-size: clamp(2rem, 7vw, 3rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

.merch-intro > p:not(.pixel) {
  max-width: 19rem;
  margin: 2rem 0 0;
  font-size: clamp(1.45rem, 4vw, 2rem);
  line-height: 1.2;
}

.merch-marks {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.merch-marks span {
  width: 2.4rem;
  height: 0.3rem;
  background: var(--ink);
}

.merch-marks span:nth-child(1) {
  background: var(--red);
}

.merch-marks span:nth-child(2) {
  background: var(--blue);
}

.merch-marks span:nth-child(3) {
  background: var(--yellow);
}

.merch-grid {
  display: grid;
  perspective: 1200px;
}

.merch-card {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(18rem, 1fr) auto;
  min-height: 26rem;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background-color: rgba(251, 250, 245, 0.95);
  background-image:
    linear-gradient(to right, rgba(9, 9, 9, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(9, 9, 9, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
}

.merch-card:hover,
.merch-card:focus-within {
  box-shadow: 0 1rem 2.4rem rgba(9, 9, 9, 0.16);
}

.merch-card-head,
.merch-card-foot {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 3rem;
  padding: 0.9rem 1.15rem;
}

.merch-card-head p,
.merch-card-foot p,
.merch-card-foot span {
  margin: 0;
}

.merch-card-head p:last-child::after {
  content: "";
  display: block;
  width: 2.6rem;
  height: 0.24rem;
  margin-top: 0.45rem;
  margin-left: auto;
  background: var(--accent, var(--ink));
}

.merch-card-foot {
  border-top: 1px solid rgba(9, 9, 9, 0.2);
}

.merch-card-foot p {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
}

.merch-card:nth-child(1) {
  --accent: var(--yellow);
}

.merch-card:nth-child(2) {
  --accent: var(--blue);
}

.merch-card:nth-child(3) {
  --accent: var(--red);
}

.merch-card:nth-child(4) {
  --accent: var(--orange);
}

.merch-visual {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 18rem;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2rem);
  padding: clamp(1rem, 4vw, 2rem);
}

.merch-visual::before {
  content: "";
  position: absolute;
  inset: 9%;
  z-index: -1;
  background:
    radial-gradient(circle at 45% 38%, rgba(9, 9, 9, 0.08), transparent 36%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(9, 9, 9, 0.05));
}

.merch-spec-visual {
  align-items: stretch;
  justify-content: stretch;
}

.merch-spec-sheet {
  position: relative;
  display: grid;
  min-height: 100%;
  align-content: space-between;
  overflow: hidden;
  border: 1px solid rgba(9, 9, 9, 0.28);
  background:
    linear-gradient(to right, rgba(9, 9, 9, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(9, 9, 9, 0.08) 1px, transparent 1px),
    rgba(251, 250, 245, 0.78);
  background-size: 24px 24px;
  padding: 1rem;
}

.merch-spec-sheet::before {
  content: "";
  position: absolute;
  right: 1rem;
  top: 1rem;
  width: 4.8rem;
  aspect-ratio: 1;
  border: 1px solid rgba(9, 9, 9, 0.32);
  border-radius: 50%;
}

.merch-spec-sheet::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  height: 0.26rem;
  background: var(--accent, var(--ink));
}

.merch-spec-sheet span,
.merch-spec-sheet strong {
  position: relative;
  z-index: 1;
}

.merch-spec-sheet span {
  margin: 0;
}

.merch-spec-sheet strong {
  max-width: 14rem;
  margin-top: 4.5rem;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  font-weight: 950;
  line-height: 0.82;
  letter-spacing: -0.07em;
  text-transform: uppercase;
}

.merch-spec-sheet i {
  position: absolute;
  display: block;
  width: 0.45rem;
  aspect-ratio: 1;
  background: var(--ink);
  opacity: 0.22;
}

.merch-spec-sheet i:nth-of-type(1) {
  left: 33%;
  top: 24%;
}

.merch-spec-sheet i:nth-of-type(2) {
  right: 26%;
  top: 54%;
}

.merch-spec-sheet i:nth-of-type(3) {
  left: 18%;
  bottom: 25%;
}

.cap {
  position: relative;
  width: min(15rem, 42%);
  aspect-ratio: 1.55;
  border-radius: 48% 48% 28% 28% / 62% 62% 18% 18%;
  box-shadow: inset 0 -1.1rem 1.8rem rgba(0, 0, 0, 0.22), 0 1rem 1.6rem rgba(9, 9, 9, 0.12);
}

.cap::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: -19%;
  height: 34%;
  border-radius: 0 0 70% 70%;
  background: inherit;
  box-shadow: 0 0.8rem 1.1rem rgba(9, 9, 9, 0.14);
}

.cap::after {
  content: "";
  position: absolute;
  inset: 15% 49% 24%;
  border-left: 1px solid rgba(251, 250, 245, 0.25);
}

.cap img {
  position: absolute;
  top: 25%;
  left: 50%;
  width: 32%;
  transform: translateX(-50%);
}

.cap-black {
  background: #080808;
}

.cap-black img,
.tee-black img,
.notebook img {
  filter: invert(1) contrast(1.2);
}

.cap-cream {
  background: #ede5d4;
}

.cap-cream::after {
  border-left-color: rgba(9, 9, 9, 0.15);
}

.tee {
  position: relative;
  display: grid;
  width: min(14rem, 42%);
  aspect-ratio: 0.82;
  place-items: center;
  clip-path: polygon(18% 15%, 34% 5%, 66% 5%, 82% 15%, 96% 32%, 84% 46%, 76% 31%, 76% 96%, 24% 96%, 24% 31%, 16% 46%, 4% 32%);
  box-shadow: 0 1rem 1.8rem rgba(9, 9, 9, 0.12);
}

.tee::before {
  content: "";
  position: absolute;
  inset: 10% 40% 78%;
  border: 1px solid currentColor;
  border-bottom: 0;
  border-radius: 50% 50% 0 0;
  opacity: 0.24;
}

.tee span {
  margin-top: 24%;
  font-size: clamp(0.55rem, 1.4vw, 0.85rem);
  font-weight: 950;
  letter-spacing: 0;
}

.tee img {
  width: 48%;
  margin-top: 34%;
}

.tee-black {
  background: #080808;
  color: var(--paper);
}

.tee-cream {
  background: #efe7d7;
  color: var(--ink);
}

.tote {
  position: relative;
  width: min(19rem, 66%);
  aspect-ratio: 0.86;
  border: 1px solid rgba(9, 9, 9, 0.18);
  background: #efe6d3;
  box-shadow: 0 1.2rem 2rem rgba(9, 9, 9, 0.12);
  padding: 18% 14%;
}

.tote::before,
.tote::after {
  content: "";
  position: absolute;
  top: -26%;
  width: 22%;
  height: 34%;
  border: 0.45rem solid #efe6d3;
  border-bottom: 0;
  border-radius: 50% 50% 0 0;
}

.tote::before {
  left: 23%;
}

.tote::after {
  right: 23%;
}

.tote span {
  display: block;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 950;
  line-height: 0.78;
  letter-spacing: -0.08em;
}

.tote small {
  position: absolute;
  left: 14%;
  bottom: 12%;
}

.notebook {
  position: relative;
  width: min(13rem, 52%);
  aspect-ratio: 0.72;
  overflow: hidden;
  border-radius: 0.25rem;
  background:
    linear-gradient(to right, rgba(251, 250, 245, 0.04), transparent 20%),
    #090909;
  box-shadow: 0.8rem 1rem 1.7rem rgba(9, 9, 9, 0.22);
}

.notebook::before {
  content: "";
  position: absolute;
  top: 0;
  right: 14%;
  width: 0.62rem;
  height: 100%;
  background: var(--red);
}

.notebook::after {
  content: "";
  position: absolute;
  inset: 0.8rem;
  border: 1px solid rgba(251, 250, 245, 0.06);
}

.notebook img {
  position: absolute;
  top: 20%;
  left: 20%;
  width: 48%;
  opacity: 0.28;
}

.menu-popover .merch-intro {
  position: static;
  top: auto;
  gap: 1rem;
  min-height: auto;
  background: rgba(251, 250, 245, 0.82);
}

.menu-popover .merch-intro .pixel {
  font-size: clamp(3rem, 8vw, 5.5rem);
}

.menu-popover .merch-intro h2 {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
}

.menu-popover .merch-intro > p:not(.pixel) {
  margin-top: 0.5rem;
  font-size: clamp(1rem, 2.1vw, 1.35rem);
}

.menu-popover .merch-card {
  grid-template-rows: auto minmax(11rem, 1fr) auto;
  min-height: 18rem;
}

.menu-popover .merch-visual {
  min-height: 11rem;
  padding: clamp(0.8rem, 2vw, 1.35rem);
}

.menu-popover .merch-spec-sheet strong {
  margin-top: 2.5rem;
  font-size: clamp(1.9rem, 3.2vw, 3.1rem);
}

.menu-popover .merch-spec-sheet::before {
  width: 3.2rem;
}

.menu-popover .cap {
  width: min(10rem, 43%);
}

.menu-popover .tee {
  width: min(9rem, 42%);
}

.menu-popover .tote {
  width: min(11rem, 62%);
}

.menu-popover .tote span {
  font-size: clamp(1.9rem, 2.7vw, 2.8rem);
}

.menu-popover .notebook {
  width: min(8rem, 44%);
}

.sample-menu {
  display: grid;
  overflow: hidden;
}

.sample-grid {
  display: grid;
  perspective: 1200px;
}

.sample-card {
  --accent: var(--ink);
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(11rem, 1fr) auto;
  min-height: 18rem;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background-color: rgba(251, 250, 245, 0.95);
  background-image:
    linear-gradient(to right, rgba(9, 9, 9, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(9, 9, 9, 0.08) 1px, transparent 1px);
  background-size: 56px 56px;
}

.sample-card:hover,
.sample-card:focus-within {
  box-shadow: 0 1rem 2.4rem rgba(9, 9, 9, 0.16);
}

.sample-card:nth-child(1) {
  --accent: var(--red);
}

.sample-card:nth-child(2) {
  --accent: var(--blue);
}

.sample-card:nth-child(3) {
  --accent: var(--yellow);
}

.sample-card:nth-child(4) {
  --accent: var(--orange);
}

.sample-card-head,
.sample-card-foot {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 3rem;
  padding: 0.9rem 1.15rem;
}

.sample-card-head p,
.sample-card-foot p,
.sample-card-foot span {
  margin: 0;
}

.sample-card-head p:last-child::after {
  content: "";
  display: block;
  width: 2.6rem;
  height: 0.24rem;
  margin-top: 0.45rem;
  margin-left: auto;
  background: var(--accent);
}

.sample-card-foot {
  border-top: 1px solid rgba(9, 9, 9, 0.2);
}

.sample-card-foot p {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
}

.sample-visual {
  position: relative;
  display: grid;
  min-height: 11rem;
  overflow: hidden;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(9, 9, 9, 0.09), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(9, 9, 9, 0.05));
}

.sample-visual::before,
.sample-visual::after {
  content: "";
  display: block;
}

.sample-visual::before {
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(9, 9, 9, 0.32);
}

.sample-visual-grid::after {
  width: min(9rem, 44%);
  aspect-ratio: 1;
  background:
    linear-gradient(var(--accent), var(--accent)) 0 0 / 100% 0.35rem no-repeat,
    linear-gradient(var(--accent), var(--accent)) 0 50% / 100% 0.35rem no-repeat,
    linear-gradient(var(--accent), var(--accent)) 0 100% / 100% 0.35rem no-repeat,
    linear-gradient(90deg, var(--accent), var(--accent)) 0 0 / 0.35rem 100% no-repeat,
    linear-gradient(90deg, var(--accent), var(--accent)) 50% 0 / 0.35rem 100% no-repeat,
    linear-gradient(90deg, var(--accent), var(--accent)) 100% 0 / 0.35rem 100% no-repeat;
}

.sample-visual-room::after {
  width: min(10rem, 48%);
  aspect-ratio: 1;
  border: 0.18rem solid var(--accent);
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 34%, var(--accent) 35%, var(--accent) 37%, transparent 38%),
    repeating-linear-gradient(90deg, transparent 0 1.15rem, rgba(9, 9, 9, 0.22) 1.15rem 1.25rem);
}

.sample-visual-wave::after {
  width: min(13rem, 62%);
  height: 4.2rem;
  background:
    linear-gradient(var(--accent), var(--accent)) center / 100% 0.2rem no-repeat,
    repeating-linear-gradient(90deg, var(--accent) 0 0.22rem, transparent 0.22rem 0.72rem);
  clip-path: polygon(0 45%, 8% 45%, 8% 18%, 14% 18%, 14% 78%, 22% 78%, 22% 28%, 30% 28%, 30% 62%, 38% 62%, 38% 5%, 46% 5%, 46% 92%, 54% 92%, 54% 34%, 63% 34%, 63% 70%, 72% 70%, 72% 16%, 80% 16%, 80% 84%, 88% 84%, 88% 45%, 100% 45%, 100% 55%, 0 55%);
}

.sample-visual-rise::after {
  width: min(13rem, 62%);
  height: 5rem;
  border-bottom: 0.32rem solid var(--accent);
  border-left: 0.32rem solid var(--accent);
  background:
    linear-gradient(145deg, transparent 0 48%, var(--accent) 49% 52%, transparent 53%),
    radial-gradient(circle at 80% 20%, var(--accent) 0 0.35rem, transparent 0.38rem);
  transform: skewX(-8deg);
}

.about-shell {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center end;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.about-shell.is-open {
  opacity: 1;
  pointer-events: auto;
}

.about-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 9, 9, 0.36);
  backdrop-filter: blur(12px) contrast(1.05);
}

.about-window {
  --about-line: rgba(251, 250, 245, 0.22);
  position: relative;
  isolation: isolate;
  display: grid;
  width: min(72rem, calc(100vw - 2rem));
  max-height: min(46rem, calc(100vh - 2rem));
  overflow: auto;
  border: 1px solid var(--paper);
  background:
    linear-gradient(to right, rgba(251, 250, 245, 0.12) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(251, 250, 245, 0.12) 1px, transparent 1px),
    var(--ink);
  background-size: 72px 72px;
  box-shadow: 0 1.6rem 5rem rgba(0, 0, 0, 0.46);
  color: var(--paper);
  transform: translateX(2rem) scaleX(0.78);
  transform-origin: right center;
  transition: transform 260ms ease;
}

.about-shell.is-open .about-window {
  transform: translateX(0) scaleX(1);
}

.about-particles {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0.95;
  pointer-events: none;
}

.about-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 3;
  display: grid;
  width: 4rem;
  height: 4rem;
  place-items: center;
  border-left: 1px solid var(--about-line);
  border-bottom: 1px solid var(--about-line);
  background: var(--ink);
  color: var(--paper);
}

.about-close:hover,
.about-close:focus-visible {
  background: var(--paper);
  color: var(--ink);
}

.about-system {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  min-height: 4rem;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  border-bottom: 1px solid var(--about-line);
  background: rgba(9, 9, 9, 0.8);
  backdrop-filter: blur(10px);
  padding: 0 5rem 0 1rem;
}

.about-system p {
  margin: 0;
}

.about-core {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: clamp(1.25rem, 4vw, 2.25rem);
}

.about-core h2 {
  max-width: 52rem;
  margin: 1.2rem 0 0;
  font-size: clamp(3.6rem, 8.8vw, 7.4rem);
  font-weight: 950;
  line-height: 0.8;
  letter-spacing: -0.08em;
  text-transform: uppercase;
}

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

.about-copy p {
  margin: 0;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.12;
}

.about-grid {
  position: relative;
  z-index: 1;
  display: grid;
  border-top: 1px solid var(--about-line);
  background: rgba(9, 9, 9, 0.62);
}

.about-grid article {
  min-height: 7.5rem;
  border-bottom: 1px solid var(--about-line);
  padding: 1rem;
}

.about-grid article:last-child {
  border-bottom: 0;
}

.about-grid p,
.about-grid h3 {
  margin: 0;
}

.about-grid h3 {
  max-width: 18rem;
  margin-top: 1.2rem;
  font-size: clamp(1.3rem, 2.6vw, 2.1rem);
  font-weight: 950;
  line-height: 0.9;
  text-transform: uppercase;
}

.modal-shell {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.modal-shell.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(251, 250, 245, 0.52);
  backdrop-filter: blur(12px) contrast(1.05);
}

.modal-window {
  position: relative;
  width: min(72rem, calc(100vw - 2rem));
  max-height: min(52rem, calc(100vh - 2rem));
  overflow: auto;
  border: 1px solid var(--line);
  background-color: var(--paper);
  box-shadow: 0 0 0 1px rgba(9, 9, 9, 0.08), 0 1.5rem 4rem rgba(9, 9, 9, 0.2);
  transform: translateY(1.2rem) scale(0.96);
  transition: transform 220ms ease;
}

.modal-shell.is-open .modal-window {
  transform: translateY(0) scale(1);
}

.modal-window::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(9, 9, 9, 0.18) 1px, transparent 1px);
  background-position: 18px 18px;
  background-size: 18px 18px;
  opacity: 0.42;
  pointer-events: none;
}

.modal-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: grid;
  width: 4rem;
  height: 4rem;
  place-items: center;
  border-left: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.modal-close:hover,
.modal-close:focus-visible {
  background: var(--ink);
  color: var(--paper);
}

.modal-system {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 4rem;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  border-bottom: 1px solid var(--line);
  padding: 0 5rem 0 1rem;
  background: rgba(251, 250, 245, 0.86);
}

.modal-system p {
  margin: 0;
}

.modal-core {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
  min-height: clamp(15rem, 32vh, 21rem);
  align-items: end;
  padding: clamp(1.25rem, 3vw, 2rem);
}

.modal-core h2 {
  max-width: 49rem;
  margin: 0;
  font-size: clamp(3.6rem, 7vw, 7rem);
  font-weight: 950;
  line-height: 0.78;
  letter-spacing: -0.08em;
  text-transform: uppercase;
}

.modal-core p {
  max-width: 34rem;
  margin: 1.25rem 0 0;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.05;
}

.modal-player {
  --player-progress: 0;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 11rem 5.25rem minmax(0, 1fr) 5.6rem;
  min-height: 6.35rem;
  border-top: 1px solid var(--line);
  background: rgba(251, 250, 245, 0.9);
}

.modal-player[hidden] {
  display: none;
}

.modal-player-stages {
  display: grid;
  border-right: 1px solid var(--line);
}

.modal-player-stages button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 2.12rem;
  border-bottom: 1px solid var(--line);
  padding: 0 0.9rem;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-align: left;
  text-transform: uppercase;
}

.modal-player-stages button::after {
  content: "";
  width: 0.5rem;
  aspect-ratio: 1;
  border: 1px solid currentColor;
  background: transparent;
  opacity: 0.45;
}

.modal-player-stages button:last-child {
  border-bottom: 0;
}

.modal-player-stages button:hover,
.modal-player-stages button:focus-visible,
.modal-player-stages button.is-active {
  background: var(--ink);
  color: var(--paper);
}

.modal-player-stages button.is-active::after {
  background: currentColor;
  opacity: 1;
}

.modal-player-toggle {
  display: grid;
  min-height: 6.35rem;
  place-items: center;
  border-right: 1px solid var(--line);
}

.modal-player-toggle:hover,
.modal-player-toggle:focus-visible,
.modal-player.is-playing .modal-player-toggle {
  background: var(--ink);
  color: var(--paper);
}

.modal-player-toggle svg {
  width: 1.2rem;
  height: 1.2rem;
}

.modal-player-main {
  display: grid;
  align-content: center;
  padding: 0.9rem 1.25rem;
}

.modal-player-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.modal-player-head p,
.modal-player-head strong,
.modal-player-time span {
  margin: 0;
}

.modal-player-head strong {
  font-size: 0.95rem;
  text-transform: uppercase;
}

.modal-wave {
  position: relative;
  display: flex;
  gap: clamp(0.38rem, 1vw, 0.72rem);
  align-items: center;
  justify-content: space-between;
  height: 3rem;
  margin-top: 0.65rem;
  overflow: hidden;
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  touch-action: none;
  user-select: none;
}

.modal-wave::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: calc(var(--player-progress) * 100%);
  height: 1px;
  background: var(--blue);
  transition: width 120ms linear;
  z-index: 1;
}

.modal-wave::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  top: 50%;
  height: 1px;
  background: rgba(9, 9, 9, 0.18);
  z-index: 0;
}

.modal-wave:focus-visible {
  outline: 1px solid var(--ink);
  outline-offset: 0.18rem;
}

.modal-wave.is-scrubbing::before {
  transition: none;
}

.modal-wave span {
  display: block;
  width: 2px;
  height: 42%;
  background: var(--ink);
  opacity: 0.42;
  transform-origin: center;
  z-index: 1;
}

.modal-wave span:nth-child(3n) {
  height: 78%;
}

.modal-wave span:nth-child(4n) {
  height: 58%;
}

.modal-wave span:nth-child(5n) {
  height: 94%;
}

.modal-player.is-playing .modal-wave span {
  animation: modal-wave-pulse 820ms ease-in-out infinite;
  opacity: 0.78;
}

.modal-wave span:nth-child(7n) {
  background: var(--red);
}

.modal-wave span:nth-child(11n) {
  background: var(--blue);
}

.modal-wave-head {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: calc(var(--player-progress) * 100%);
  width: 0.78rem;
  aspect-ratio: 1;
  border: 1px solid var(--ink);
  background: var(--paper);
  box-shadow: 0 0 0 0.16rem rgba(251, 250, 245, 0.9);
  transform: translate(-50%, -50%) rotate(45deg);
  transition: left 120ms linear;
}

.modal-wave.is-scrubbing .modal-wave-head {
  transition: none;
}

.modal-player.is-playing .modal-wave span:nth-child(2n) {
  animation-delay: 90ms;
}

.modal-player.is-playing .modal-wave span:nth-child(3n) {
  animation-delay: 180ms;
}

.modal-player-time {
  display: grid;
  align-content: center;
  gap: 0.45rem;
  border-left: 1px solid var(--line);
  padding: 0.8rem;
  font-family: "Courier New", Courier, monospace;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-align: right;
}

.modal-player-time span:first-child {
  color: var(--blue);
}

@keyframes modal-wave-pulse {
  0%,
  100% {
    transform: scaleY(0.55);
  }

  50% {
    transform: scaleY(1.12);
  }
}

.modal-signal {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.55rem;
  align-self: start;
  border: 1px solid var(--line);
  background: rgba(251, 250, 245, 0.86);
  padding: 1rem;
}

.modal-signal span {
  width: 0.8rem;
  aspect-ratio: 1;
  background: var(--ink);
  opacity: 0.24;
}

.modal-signal span:nth-child(3n) {
  opacity: 0.72;
}

.modal-signal span:nth-child(13) {
  outline: 1px solid var(--ink);
  outline-offset: 0.35rem;
  opacity: 1;
}

.modal-specs {
  position: relative;
  z-index: 1;
  display: grid;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(251, 250, 245, 0.86);
}

.modal-specs article {
  min-height: 6rem;
  padding: 1rem;
  border-bottom: 1px solid var(--line);
}

.modal-specs article:last-child {
  border-bottom: 0;
}

.modal-specs p,
.modal-specs strong {
  display: block;
  margin: 0;
}

.modal-specs strong {
  margin-top: 1.3rem;
  font-size: 1.15rem;
  line-height: 1;
  text-transform: uppercase;
}

.modal-list {
  position: relative;
  z-index: 1;
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  background: rgba(251, 250, 245, 0.9);
}

.modal-list li {
  display: grid;
  grid-template-columns: 3.5rem minmax(0, 1fr);
  gap: 1rem;
  min-height: 4.5rem;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 0.9rem 1rem;
}

.modal-list li:last-child {
  border-bottom: 0;
}

.modal-list span {
  font-family: "Courier New", Courier, monospace;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.modal-list p {
  margin: 0;
  line-height: 1.1;
}

.inquiry-shell {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.inquiry-shell.is-open {
  opacity: 1;
  pointer-events: auto;
}

.inquiry-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 9, 9, 0.28);
  backdrop-filter: blur(12px) contrast(1.08);
}

.inquiry-window {
  position: relative;
  width: min(48rem, calc(100vw - 2rem));
  max-height: min(45rem, calc(100vh - 2rem));
  overflow: auto;
  border: 1px solid var(--line);
  background-color: var(--paper);
  box-shadow: 0 1.6rem 4rem rgba(9, 9, 9, 0.22);
  transform: translateY(1rem) scale(0.97);
  transition: transform 220ms ease;
}

.inquiry-shell.is-open .inquiry-window {
  transform: translateY(0) scale(1);
}

.inquiry-form {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0;
}

.inquiry-copy,
.inquiry-form label {
  display: grid;
  gap: 0.65rem;
  border-bottom: 1px solid var(--line);
  padding: 1rem;
}

.inquiry-copy h2 {
  margin: 0.8rem 0 0;
  font-size: clamp(3.2rem, 9vw, 6.4rem);
  font-weight: 950;
  line-height: 0.78;
  letter-spacing: -0.08em;
  text-transform: uppercase;
}

.inquiry-copy p {
  max-width: 28rem;
  margin: 0;
  line-height: 1.1;
}

.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid rgba(9, 9, 9, 0.32);
  background: rgba(251, 250, 245, 0.82);
  color: var(--ink);
  font: inherit;
  padding: 0.85rem;
  resize: vertical;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
  border-color: var(--ink);
  outline: 1px solid var(--ink);
  outline-offset: 2px;
}

.inquiry-form .text-button {
  width: calc(100% - 2rem);
  margin: 1rem;
}

.inquiry-note {
  margin: 0 1rem 1rem;
  color: rgba(9, 9, 9, 0.62);
}

.contact {
  display: grid;
  min-height: 26rem;
}

.contact > div {
  border-bottom: 1px solid var(--line);
  padding: clamp(1.25rem, 4vw, 2rem);
}

.contact-copy > p {
  max-width: 42rem;
  margin: 0;
  font-size: clamp(2rem, 6vw, 4.4rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.contact-actions {
  display: grid;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.contact-actions .text-button {
  width: 100%;
  margin-top: 0;
}

.contact aside {
  position: relative;
  display: none;
  overflow: hidden;
  background-color: var(--ink);
  background-image:
    linear-gradient(to right, rgba(251, 250, 245, 0.16) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(251, 250, 245, 0.16) 1px, transparent 1px);
  background-size: 56px 56px;
  color: var(--paper);
  transition: background-size 180ms ease, color 160ms ease;
}

.contact aside::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 4.2rem;
  aspect-ratio: 1;
  border: 1px solid rgba(251, 250, 245, 0.28);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.contact aside:hover,
.contact aside:focus-within {
  background-size: 72px 72px;
}

.about-rail-trigger {
  position: relative;
  z-index: 1;
  display: grid;
  width: 100%;
  height: 100%;
  min-height: 100%;
  place-items: center;
  color: inherit;
}

.about-rail-trigger:focus-visible {
  outline: 1px solid var(--paper);
  outline-offset: -0.55rem;
}

.footer-rail-name {
  display: grid;
  place-items: center;
}

.footer-rail-name span {
  grid-area: 1 / 1;
  transition: opacity 160ms ease;
}

.footer-name-hover {
  opacity: 0;
}

.contact aside:hover .footer-name-default,
.contact aside:focus-within .footer-name-default {
  opacity: 0;
}

.contact aside:hover .footer-name-hover,
.contact aside:focus-within .footer-name-hover {
  opacity: 1;
}

@media (min-width: 900px) {
  .system-bar {
    grid-template-columns: 104px minmax(0, 1fr) 240px 104px;
  }

  .mark {
    margin: 28px 32px;
  }

  .nav-links,
  .language {
    display: flex;
  }

  .language {
    align-items: center;
    justify-content: center;
  }

  .icon-button {
    min-width: 104px;
  }

  .hero {
    grid-template-columns: 104px minmax(0, 1fr) 120px;
  }

  .hero-side-right {
    display: grid;
  }

  .status-panel {
    display: block;
  }

  .hero-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-strip article {
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .hero-strip article:last-child {
    border-right: 0;
  }

  .studio-gallery {
    grid-template-columns: minmax(22rem, 0.62fr) minmax(0, 1.38fr);
  }

  .studio-intro {
    position: sticky;
    top: 72px;
    min-height: calc(100vh - 72px);
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .studio-specs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .studio-specs article {
    min-height: 8rem;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .studio-specs article:last-child {
    border-right: 0;
  }

  .studio-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .studio-card {
    min-height: 30rem;
    border-right: 1px solid var(--line);
  }

  .studio-card:nth-child(2n) {
    border-right: 0;
  }

  .studio-card-large {
    grid-column: span 2;
    min-height: 36rem;
  }

  .studio-card-large .studio-photo {
    min-height: 27rem;
  }

  .studio-page-hero {
    grid-template-columns: 104px minmax(0, 1fr) 120px;
  }

  .studio-page-rail {
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-right: 1px solid var(--line);
    background: var(--ink);
    color: var(--paper);
  }

  .studio-page-rail-right {
    border-right: 0;
    border-left: 1px solid var(--line);
  }

  .studio-page-rail h2 {
    position: absolute;
    left: 50%;
    top: calc((100vh - 72px) / 2);
    transform: translate(-50%, -50%) rotate(-90deg);
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 3vw, 3.2rem);
    font-style: italic;
    line-height: 1;
    white-space: nowrap;
  }

  .studio-page-rail-right h2 {
    font-family: "Courier New", Courier, monospace;
    font-style: normal;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transform: translate(-50%, -50%) rotate(90deg);
  }

  .studio-gallery-page {
    grid-template-columns: minmax(18rem, 0.36fr) minmax(0, 1.64fr);
  }

  .studio-gallery-page .studio-intro {
    gap: clamp(1.25rem, 2vw, 2rem);
    padding: clamp(1rem, 2vw, 1.5rem);
  }

  .studio-gallery-page .studio-intro h2 {
    font-size: clamp(3.6rem, 4.2vw, 4.5rem);
  }

  .studio-gallery-page .studio-intro > p:not(.pixel) {
    font-size: clamp(1.1rem, 1.45vw, 1.45rem);
  }

  .studio-gallery-page .studio-specs {
    grid-template-columns: 1fr;
  }

  .studio-gallery-page .studio-specs article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .studio-gallery-page .studio-specs article:last-child {
    border-bottom: 0;
  }

  .studio-gallery-page .studio-card {
    min-height: clamp(25rem, 34vw, 30rem);
  }

  .studio-gallery-page .studio-card-large {
    min-height: clamp(30rem, 43vw, 38rem);
  }

  .studio-gallery-page .studio-card-large .studio-photo {
    min-height: clamp(20rem, 30vw, 27rem);
  }

  .work {
    grid-template-columns: minmax(0, 2fr) minmax(20rem, 1fr);
  }

  .work-intro {
    order: 0;
    position: sticky;
    top: 72px;
    align-self: start;
    min-height: calc(100vh - 72px);
    border-bottom: 0;
    border-left: 1px solid var(--line);
  }

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

  .project-card {
    border-right: 1px solid var(--line);
  }

  .project-card:nth-child(2n) {
    border-right: 0;
  }

  .process-lab {
    grid-template-columns: minmax(20rem, 0.8fr) minmax(0, 1.2fr);
  }

  .process-intro {
    min-height: 28rem;
    border-right: 1px solid var(--line);
  }

  .journey-timeline {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    grid-column: 1 / -1;
  }

  .journey-step {
    border-right: 1px solid rgba(251, 250, 245, 0.36);
    border-bottom: 1px solid rgba(251, 250, 245, 0.36);
  }

  .journey-step:hover {
    border-right-color: var(--line);
    border-bottom-color: var(--line);
  }

  .journey-step:last-child {
    border-right: 0;
  }

  .project-type-system {
    grid-column: 2;
    grid-row: 1;
    grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
    align-content: start;
    border-bottom: 1px solid var(--line);
  }

  .project-type-grid {
    grid-column: 1 / -1;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .project-brief-panel {
    align-self: start;
  }

  .services {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .services-intro,
  .services article {
    min-height: 20rem;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .services article:last-child {
    border-right: 0;
  }

  .services-intro h2 {
    font-size: clamp(3rem, 5vw, 5rem);
  }

  .menu-index {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .menu-index-card {
    min-height: min(30rem, calc(100vh - 132px));
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .menu-index-card:last-child {
    border-right: 0;
  }

  .menu-merch {
    grid-template-columns: minmax(17rem, 0.38fr) minmax(0, 1fr);
  }

  .sample-menu {
    grid-template-columns: minmax(17rem, 0.38fr) minmax(0, 1fr);
  }

  .merch-intro {
    position: sticky;
    top: 72px;
    min-height: calc(100vh - 72px);
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .merch-grid,
  .sample-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .merch-card,
  .sample-card {
    border-right: 1px solid var(--line);
  }

  .merch-card:nth-child(2n),
  .sample-card:nth-child(2n) {
    border-right: 0;
  }

  .contact {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 104px;
  }

  .contact > div {
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .contact aside {
    display: grid;
    place-items: center;
    border-left: 1px solid var(--line);
  }

  .contact aside p {
    font-size: 2.6rem;
    letter-spacing: 0;
  }

  .contact-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .modal-core {
    grid-template-columns: minmax(0, 1fr) 12rem;
  }

  .about-core {
    grid-template-columns: minmax(0, 1.25fr) minmax(22rem, 0.75fr);
    min-height: 25rem;
    align-items: end;
  }

  .modal-specs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .modal-specs article {
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .modal-specs article:last-child {
    border-right: 0;
  }

  .about-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about-grid article {
    border-right: 1px solid var(--about-line);
    border-bottom: 0;
  }

  .about-grid article:last-child {
    border-right: 0;
  }
}

@media (min-width: 1180px) {
  .project-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .project-card:nth-child(2n) {
    border-right: 1px solid var(--line);
  }

  .project-card:nth-child(3n) {
    border-right: 0;
  }
}

@media (max-width: 520px) {
  .hero {
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .hero-side-left h2 {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }

  .hero h1 {
    font-size: clamp(2.9rem, 13vw, 3.6rem);
  }

  .hero-badge {
    width: clamp(10rem, 52vw, 15rem);
  }

  .hero-content {
    padding-right: 0;
  }

  .hero-statement {
    top: 18vh;
  }

  .hero-statement h2 {
    font-size: clamp(3.2rem, 15vw, 4.7rem);
  }

  .hero-cross {
    right: 1.25rem;
    top: 38%;
    font-size: 3rem;
  }

  .project-card {
    min-height: 18.5rem;
  }

  .project-card .mini-button {
    left: 1.7rem;
    right: auto;
  }

  .studio-lightbox-copy {
    grid-template-columns: 1fr;
  }

  .longform-button {
    grid-template-columns: 4.8rem minmax(0, 1fr);
  }

  .project-detail {
    right: 1rem;
    bottom: 4rem;
    max-width: 17rem;
  }

  .modal-system {
    display: grid;
    gap: 0.5rem;
    padding: 0.85rem 4.5rem 0.85rem 1rem;
  }

  .modal-player {
    grid-template-columns: 3.9rem minmax(0, 1fr);
  }

  .modal-player-stages {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .modal-player-stages button {
    min-height: 2.4rem;
    border-right: 1px solid var(--line);
    border-bottom: 0;
    text-align: center;
  }

  .modal-player-stages button:last-child {
    border-right: 0;
  }

  .modal-player-time {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    border-left: 0;
    text-align: left;
  }

  .modal-player-time span:last-child {
    text-align: right;
  }

  .modal-core h2 {
    font-size: clamp(2.8rem, 16vw, 4.1rem);
  }

  .menu-popover {
    width: calc(100vw - 0.5rem);
  }

  .menu-index-card {
    min-height: 15.5rem;
  }

  .merch-card {
    min-height: 22rem;
  }

  .sample-card {
    min-height: 17rem;
  }

  .merch-visual,
  .sample-visual {
    min-height: 15rem;
  }

  .cap,
  .tee {
    width: min(11rem, 44%);
  }

  .tote {
    width: min(14rem, 68%);
  }

  .notebook {
    width: min(10rem, 54%);
  }

  .modal-signal {
    max-width: 10rem;
  }
}

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

  .ticker-track {
    animation: none;
  }

  .hero-scroll-cue {
    animation: none;
  }

  .badge-globe,
  .badge-orbit {
    animation: none;
  }

  .modal-shell,
  .modal-window {
    transition: none;
  }

  [data-tilt-card] {
    transform: none !important;
    transition: none;
  }

  [data-tilt-card] > * {
    transform: none;
  }
}
