:root {
  --carbon-950: #070707;
  --carbon-900: #0d0d0d;
  --carbon-800: #171717;
  --carbon-700: #242424;
  --warm-50: #f3efe7;
  --warm-100: #e7e1d7;
  --warm-200: #d8d1c5;
  --warm-500: #8f887f;
  --signal-red: #e01619;
  --shell: min(100% - 96px, 1500px);
  --header-height: 96px;
  --sans: "Avenir Next", "SF Pro Text", "PingFang SC", "Hiragino Sans GB", "Noto Sans CJK SC", "Microsoft YaHei", Arial, sans-serif;
  --serif: "Avenir Next", "SF Pro Display", "PingFang SC", "Hiragino Sans GB", "Noto Sans CJK SC", "Microsoft YaHei", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--carbon-950);
  color-scheme: dark;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  background: var(--carbon-950);
  color: var(--warm-50);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea,
select {
  color: inherit;
  font: inherit;
}

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

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

p,
h1,
h2,
h3,
h4,
figure,
blockquote {
  margin: 0;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  transform: translateY(-180%);
  background: var(--warm-50);
  color: var(--carbon-950);
}

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

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

.section-dark {
  background: var(--carbon-950);
  color: var(--warm-50);
}

.section-light {
  background: var(--warm-50);
  color: var(--carbon-950);
}

.section-shell {
  width: var(--shell);
  margin: 0 auto;
}

.section-heading {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(243, 239, 231, 0.25);
}

.section-heading::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  background: var(--signal-red);
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 760ms cubic-bezier(0.2, 0.72, 0.2, 1) 120ms;
}

.section-heading.is-visible::after {
  transform: scaleX(1);
}

.section-light .section-heading {
  border-color: rgba(7, 7, 7, 0.25);
}

.section-heading > span,
.section-index,
.eyebrow {
  color: var(--warm-500);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.section-heading h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 3.8vw, 54px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1;
}

.section-heading p {
  color: var(--warm-500);
  font-size: 13px;
  letter-spacing: 0.12em;
}

.media-picture {
  display: block;
  overflow: hidden;
  background: var(--carbon-800);
}

.media-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--media-position, 50% 50%);
}

.glow-r {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(224, 22, 25, 0.48));
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.brand-lockup-r {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 0 11px rgba(224, 22, 25, 0.5));
}

.brand-lockup-text {
  width: 208px;
  height: auto;
  object-fit: contain;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding: 10px 0 8px;
  border-bottom: 1px solid rgba(243, 239, 231, 0.42);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: border-color 180ms ease, color 180ms ease;
}

.text-link:hover {
  border-color: var(--signal-red);
  color: var(--signal-red);
}

.dark-link {
  border-color: rgba(7, 7, 7, 0.35);
}

.reveal {
  opacity: 1;
  transform: none;
}

.has-js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 620ms ease var(--reveal-delay, 0ms), transform 620ms cubic-bezier(0.2, 0.72, 0.2, 1) var(--reveal-delay, 0ms);
}

.has-js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

body::after {
  position: fixed;
  z-index: 1000;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0, rgba(224, 22, 25, 0.74) 12%, #ff3437 52%, rgba(224, 22, 25, 0.7) 88%, transparent 100%);
  box-shadow: 0 0 11px rgba(224, 22, 25, 0.62);
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: left center;
}

body.is-page-leaving::after {
  animation: page-signal-leave 420ms cubic-bezier(0.5, 0, 0.2, 1) forwards;
}

body.is-page-arriving::after {
  animation: page-signal-arrive 420ms cubic-bezier(0.4, 0, 0.15, 1) forwards;
  transform-origin: right center;
}

@keyframes page-signal-leave {
  0% { opacity: 0; transform: scaleX(0); }
  12% { opacity: 0.9; }
  100% { opacity: 0.92; transform: scaleX(1); }
}

@keyframes page-signal-arrive {
  0% { opacity: 0.92; transform: scaleX(1); }
  72% { opacity: 0.7; }
  100% { opacity: 0; transform: scaleX(0); }
}

/* Header */

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  width: 100%;
  min-height: var(--header-height);
  padding: 0 max(48px, calc((100vw - 1500px) / 2));
  border-bottom: 1px solid rgba(243, 239, 231, 0.16);
  color: #fff;
  transition: background-color 220ms ease, border-color 220ms ease;
}

.site-header.is-over-hero {
  background: transparent;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.35);
}

.site-header.is-solid,
.site-header.has-scrolled {
  background: rgba(7, 7, 7, 0.98);
  border-color: rgba(243, 239, 231, 0.18);
  text-shadow: none;
}

.header-brand {
  display: inline-flex;
  width: max-content;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.4vw, 42px);
}

.desktop-nav > a,
.desktop-nav-studios > a,
.lang-link,
.book-link {
  position: relative;
  padding: 8px 0;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.12em;
}

.desktop-nav > a::after,
.desktop-nav-studios > a::after,
.lang-link::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--signal-red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav > a:hover::after,
.desktop-nav-studios:hover > a::after,
.desktop-nav-studios:focus-within > a::after,
.lang-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.desktop-nav-studios {
  position: relative;
  display: flex;
  align-items: center;
  padding-bottom: 12px;
  margin-bottom: -12px;
}

.studio-nav-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 8;
  display: grid;
  width: 190px;
  gap: 0;
  padding: 10px 16px;
  border: 1px solid rgba(243, 239, 231, 0.2);
  background: rgba(7, 7, 7, 0.96);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
  opacity: 0;
  pointer-events: none;
  transform: translate(0, 8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.desktop-nav-studios:hover .studio-nav-menu,
.desktop-nav-studios:focus-within .studio-nav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(0, 0);
}

.studio-nav-menu a {
  padding: 10px 0;
  color: var(--warm-200);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.12em;
  transition: color 160ms ease;
}

.studio-nav-menu a:hover,
.studio-nav-menu a:focus-visible {
  color: var(--signal-red);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.book-link {
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  transition: background-color 180ms ease, border-color 180ms ease;
}

.book-link:hover {
  background: var(--signal-red);
  border-color: var(--signal-red);
}

.menu-toggle {
  display: none;
}

.mobile-menu {
  position: fixed;
  z-index: -1;
  inset: var(--header-height) 0 0;
  padding: 28px 20px 24px;
  background: var(--carbon-950);
}

.site-header.is-over-hero:not(.has-scrolled) .mobile-menu {
  background: transparent;
}

/* Hero */

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--carbon-950);
}

.hero-picture {
  position: absolute;
  inset: 0;
  transition:
    opacity 1400ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 1400ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, filter;
}

.hero-state-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  --hero-pan-x: 0px;
  --hero-pan-y: 0px;
  --hero-scroll-y: 0px;
  transition: opacity 720ms ease, filter 900ms ease, transform 1200ms cubic-bezier(0.16, 1, 0.3, 1);
}

.has-js:not(.is-ready) .hero-state-media {
  filter: blur(2px);
  opacity: 0.78;
  transform: scale(1.018);
}

.has-js:not(.is-ready) .site-header.is-over-hero,
.has-js:not(.is-ready) .hero-actions,
.has-js:not(.is-ready) .hero-state-controls--hero {
  opacity: 0;
  transform: translateY(-8px);
}

.has-js:not(.is-ready) .hero-index {
  opacity: 0;
}

.site-header.is-over-hero,
.hero-actions,
.hero-state-controls--hero,
.hero-index {
  transition: background-color 220ms ease, border-color 220ms ease, opacity 620ms ease 160ms, transform 760ms cubic-bezier(0.16, 1, 0.3, 1) 160ms;
}

.hero-state-media::after {
  position: absolute;
  z-index: 2;
  inset: -18% -36%;
  background: linear-gradient(105deg, transparent 38%, rgba(255, 242, 222, 0.22) 49%, transparent 60%);
  content: "";
  mix-blend-mode: screen;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-72%, 0, 0) rotate(-3deg);
}

.hero-state-media.is-red::after {
  background: linear-gradient(105deg, transparent 38%, rgba(224, 22, 25, 0.25) 49%, transparent 60%);
}

.hero-state-media.is-transitioning::after {
  animation: hero-state-sweep 1500ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-state-media .hero-red {
  opacity: 0;
  filter: brightness(0.9) saturate(0.9);
}

.hero-state-media.is-red .hero-warm {
  opacity: 0;
  filter: brightness(0.92) saturate(0.88);
}

.hero-state-media.is-red .hero-red {
  opacity: 1;
  filter: brightness(1) saturate(1.04);
}

.hero-picture img {
  backface-visibility: hidden;
  transform-origin: center;
  will-change: transform;
}

.hero-state-media .hero-warm img {
  animation: hero-cinematic-warm 17s cubic-bezier(0.45, 0, 0.55, 1) infinite alternate;
}

.hero-state-media .hero-red img {
  animation: hero-cinematic-red 15.5s cubic-bezier(0.45, 0, 0.55, 1) infinite alternate;
}

@keyframes hero-cinematic-warm {
  0% {
    transform: translate3d(
      calc(var(--hero-pan-x) - 0.78%),
      calc(var(--hero-pan-y) + var(--hero-scroll-y) + 0.28%),
      0
    ) scale(1.045);
  }
  50% {
    transform: translate3d(
      var(--hero-pan-x),
      calc(var(--hero-pan-y) + var(--hero-scroll-y) - 0.36%),
      0
    ) scale(1.065);
  }
  100% {
    transform: translate3d(
      calc(var(--hero-pan-x) + 0.86%),
      calc(var(--hero-pan-y) + var(--hero-scroll-y) - 0.7%),
      0
    ) scale(1.052);
  }
}

@keyframes hero-cinematic-red {
  0% {
    transform: translate3d(
      calc(var(--hero-pan-x) + 0.78%),
      calc(var(--hero-pan-y) + var(--hero-scroll-y) - 0.5%),
      0
    ) scale(1.062);
  }
  50% {
    transform: translate3d(
      var(--hero-pan-x),
      calc(var(--hero-pan-y) + var(--hero-scroll-y)),
      0
    ) scale(1.045);
  }
  100% {
    transform: translate3d(
      calc(var(--hero-pan-x) - 0.9%),
      calc(var(--hero-pan-y) + var(--hero-scroll-y) + 0.64%),
      0
    ) scale(1.057);
  }
}

@keyframes hero-state-sweep {
  0% {
    opacity: 0;
    transform: translate3d(-72%, 0, 0) rotate(-3deg);
  }
  28% {
    opacity: 0.38;
  }
  72% {
    opacity: 0.18;
  }
  100% {
    opacity: 0;
    transform: translate3d(72%, 0, 0) rotate(-3deg);
  }
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.12) 0%, transparent 28%),
    linear-gradient(to bottom, transparent 60%, rgba(7, 7, 7, 0.18) 74%, #070707 100%);
  pointer-events: none;
}

.hero-content {
  position: absolute;
  right: 48px;
  bottom: 54px;
  left: 48px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 48px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 34px;
}

.hero-state-controls {
  display: flex;
  gap: 8px;
}

.hero-state-controls--hero {
  position: absolute;
  top: 76%;
  left: 50%;
  z-index: 3;
  transform: translate(-50%, -50%);
}

.hero-state-controls button {
  min-width: 102px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  color: #fff;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.13em;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.hero-state-controls button.is-active {
  background: var(--signal-red);
  border-color: var(--signal-red);
}

.hero-actions a {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.75);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.12em;
  transition: border-color 180ms ease, color 180ms ease;
}

.hero-actions a:hover {
  color: #ff5a5c;
  border-color: var(--signal-red);
}

.hero-index {
  position: absolute;
  top: 50%;
  right: 18px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 9px;
  letter-spacing: 0.18em;
  transform: rotate(90deg) translateX(50%);
  transform-origin: right center;
}

/* Introduction */

.home-orbit-transition {
  overflow: hidden;
  border-top: 1px solid rgba(243, 239, 231, 0.08);
}

.orbit-stage {
  position: relative;
  display: flex;
  min-height: clamp(420px, 44vw, 660px);
  align-items: center;
  justify-content: center;
}

.orbit-stage::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(58vw, 860px);
  height: min(58vw, 860px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224, 22, 25, 0.17) 0, rgba(224, 22, 25, 0.055) 38%, transparent 70%);
  content: "";
  opacity: 0.46;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.orbit-copy {
  position: absolute;
  z-index: 3;
  top: calc(48% + clamp(76px, 6.5vw, 104px));
  left: 0;
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0, 1fr) clamp(300px, 36vw, 560px) minmax(0, 1fr);
  align-items: center;
  padding: 0 clamp(12px, 1.8vw, 28px);
  color: var(--warm-100);
  font-family: var(--serif);
  font-size: clamp(20px, 1.9vw, 30px);
  font-style: italic;
  letter-spacing: 0;
  line-height: 1.16;
  opacity: 1;
  text-align: center;
  transform: translateY(-50%);
}

.orbit-copy span {
  display: block;
  will-change: opacity, transform;
}

.orbit-copy span:first-child {
  grid-column: 1;
}

.orbit-copy span:last-child {
  grid-column: 3;
}

.orbit-graphic {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(300px, 36vw, 560px);
  aspect-ratio: 1;
  border: 1px solid rgba(236, 30, 33, 0.92);
  border-radius: 50%;
  box-shadow: 0 0 46px rgba(224, 22, 25, 0.28), inset 0 0 32px rgba(224, 22, 25, 0.16);
  opacity: 0.62;
  transform: translate(-50%, -50%) scale(0.88);
  will-change: opacity, transform;
}

.orbit-ring {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
}

.orbit-ring--inner {
  inset: 9%;
  background: conic-gradient(from 10deg, rgba(224, 22, 25, 0.9) 0 4%, rgba(224, 22, 25, 0.13) 4% 46%, rgba(224, 22, 25, 0.72) 46% 52%, rgba(224, 22, 25, 0.13) 52% 100%);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 1px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 1px));
}

.orbit-ring--outer {
  inset: -11%;
  background: conic-gradient(from 170deg, rgba(224, 22, 25, 0.11) 0 24%, rgba(224, 22, 25, 0.78) 24% 28%, rgba(224, 22, 25, 0.11) 28% 72%, rgba(224, 22, 25, 0.5) 72% 74%, rgba(224, 22, 25, 0.11) 74% 100%);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 1.5px), #000 calc(100% - 0.5px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 1.5px), #000 calc(100% - 0.5px));
}

.orbit-marker {
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  will-change: transform;
}

.orbit-marker::after {
  position: absolute;
  top: -6px;
  left: 50%;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--signal-red);
  box-shadow: 0 0 22px rgba(224, 22, 25, 1);
  content: "";
  transform: translateX(-50%);
}

.signal-logo {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: clamp(190px, 20vw, 300px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
}

.signal-logo-core {
  position: absolute;
  inset: 0;
  transform-origin: 50% 68%;
  will-change: filter, transform;
}

.signal-logo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  will-change: filter, opacity;
}

.signal-logo-base {
  filter: brightness(0.42) saturate(1.1);
  opacity: 0.32;
}

.signal-logo-glow {
  opacity: 1;
}

.signal-wave {
  position: absolute;
  z-index: 1;
  top: 48%;
  width: clamp(210px, 31vw, 520px);
  height: clamp(78px, 8vw, 120px);
  overflow: visible;
  pointer-events: none;
  transform: translateY(-50%);
}

.signal-wave--left {
  left: clamp(-54px, -2.5vw, -12px);
}

.signal-wave--right {
  right: clamp(-54px, -2.5vw, -12px);
}

.signal-wave path {
  fill: none;
  transform-box: fill-box;
  transform-origin: center;
  vector-effect: non-scaling-stroke;
}

.signal-wave-ghost {
  filter: drop-shadow(0 0 4px rgba(224, 22, 25, 0.34));
  stroke: rgba(236, 30, 33, 0.52);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.signal-wave-pulse {
  filter: drop-shadow(0 0 8px rgba(236, 30, 33, 0.9));
  stroke: #ff4548;
  stroke-dasharray: 0.25 0.75;
  stroke-dashoffset: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.45;
  will-change: opacity, stroke-dashoffset;
}

.has-js .orbit-stage::before,
.has-js .orbit-stage .orbit-graphic,
.has-js .orbit-stage .orbit-copy,
.has-js .orbit-stage .signal-logo-base,
.has-js .orbit-stage .signal-logo-glow {
  opacity: 0;
}

.has-js .orbit-stage .orbit-graphic {
  transform: translate(-50%, -50%) scale(0.82);
}

.orbit-stage.is-visible::before {
  animation: signal-ambient-cycle 5.6s ease-in-out infinite;
}

.orbit-stage.is-visible .orbit-graphic {
  animation: signal-orbit-cycle 5.6s ease-in-out infinite;
}

.orbit-stage.is-visible .orbit-ring--inner {
  animation: signal-ring-inner-loop 5.4s linear infinite;
}

.orbit-stage.is-visible .orbit-ring--outer {
  animation: signal-ring-outer-loop 8.6s linear infinite;
}

.orbit-stage.is-visible .orbit-marker {
  animation: signal-marker-loop 5.6s linear infinite;
}

.orbit-stage.is-visible .signal-logo-base {
  animation: signal-base-cycle 5.6s ease-in-out infinite;
}

.orbit-stage.is-visible .signal-logo-glow {
  animation: signal-tube-cycle 5.6s ease-in-out infinite;
}

.orbit-stage.is-visible .signal-logo-core {
  animation: signal-core-cycle 5.6s ease-in-out infinite;
}

.orbit-stage.is-visible .orbit-copy {
  animation: signal-copy-cycle 5.6s ease-in-out infinite;
}

.orbit-stage.is-visible .orbit-copy span:first-child {
  animation: signal-copy-line-one 5.6s ease-in-out infinite;
}

.orbit-stage.is-visible .orbit-copy span:last-child {
  animation: signal-copy-line-two 5.6s ease-in-out infinite;
}

.orbit-stage.is-visible .signal-wave-ghost {
  animation: signal-wave-ghost-cycle 5.6s ease-in-out infinite;
}

.orbit-stage.is-visible .signal-wave--left .signal-wave-pulse {
  animation: signal-wave-pulse-left 3.85s cubic-bezier(0.42, 0, 0.2, 1) infinite;
}

.orbit-stage.is-visible .signal-wave--right .signal-wave-pulse {
  animation: signal-wave-pulse-right 4.65s cubic-bezier(0.32, 0, 0.24, 1) 430ms infinite;
}

.orbit-stage.is-visible::before,
.orbit-stage.is-visible .orbit-graphic,
.orbit-stage.is-visible .orbit-ring--inner,
.orbit-stage.is-visible .orbit-ring--outer,
.orbit-stage.is-visible .orbit-marker,
.orbit-stage.is-visible .signal-logo-base,
.orbit-stage.is-visible .signal-logo-glow,
.orbit-stage.is-visible .signal-logo-core,
.orbit-stage.is-visible .orbit-copy,
.orbit-stage.is-visible .orbit-copy span,
.orbit-stage.is-visible .signal-wave path {
  animation-play-state: var(--signal-play-state, paused);
}

.orbit-stage.is-signal-active {
  --signal-play-state: running;
}

.orbit-stage.is-visible:not(.is-signal-active) .signal-wave path {
  animation-play-state: paused;
}

@keyframes signal-ambient-cycle {
  0%, 100% { opacity: 0.34; transform: translate(-50%, -50%) scale(0.94); }
  30% { opacity: 0.62; transform: translate(-50%, -50%) scale(1.02); }
  58% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  82% { opacity: 0.4; transform: translate(-50%, -50%) scale(0.97); }
}

@keyframes signal-orbit-cycle {
  0%, 100% { opacity: 0.58; transform: translate(-50%, -50%) scale(0.86); }
  28% { opacity: 0.9; transform: translate(-50%, -50%) scale(0.92); }
  58% { opacity: 0.76; transform: translate(-50%, -50%) scale(0.9); }
  82% { opacity: 0.64; transform: translate(-50%, -50%) scale(0.87); }
}

@keyframes signal-ring-inner-loop {
  from { opacity: 0.5; transform: rotate(0deg) scale(0.93); }
  50% { opacity: 0.9; transform: rotate(-180deg) scale(0.98); }
  to { opacity: 0.5; transform: rotate(-360deg) scale(0.93); }
}

@keyframes signal-ring-outer-loop {
  from { opacity: 0.42; transform: rotate(0deg) scale(0.94); }
  50% { opacity: 0.76; transform: rotate(180deg) scale(1); }
  to { opacity: 0.42; transform: rotate(360deg) scale(0.94); }
}

@keyframes signal-marker-loop {
  0% { opacity: 0.1; transform: rotate(0deg); }
  16% { opacity: 0.72; }
  42% { opacity: 0.95; }
  68% { opacity: 0.34; }
  84% { opacity: 0.08; }
  100% { opacity: 0.1; transform: rotate(360deg); }
}

@keyframes signal-base-cycle {
  0%, 100% { filter: brightness(0.3) saturate(1.08); opacity: 0.2; }
  30% { filter: brightness(0.46) saturate(1.14); opacity: 0.38; }
  58% { filter: brightness(0.42) saturate(1.12); opacity: 0.33; }
  82% { filter: brightness(0.34) saturate(1.1); opacity: 0.24; }
}

@keyframes signal-tube-cycle {
  0%, 100% { filter: brightness(0.58) saturate(0.9); opacity: 0.28; }
  16% { filter: brightness(0.72) saturate(0.96); opacity: 0.44; }
  34% { filter: brightness(0.98) saturate(1.01); opacity: 0.86; }
  48% { filter: brightness(1.05) saturate(1.03); opacity: 0.96; }
  66% { filter: brightness(0.94) saturate(1); opacity: 0.82; }
  82% { filter: brightness(0.72) saturate(0.95); opacity: 0.46; }
  92% { filter: brightness(0.62) saturate(0.92); opacity: 0.32; }
}

@keyframes signal-core-cycle {
  0%, 100% { filter: brightness(0.98); transform: scale(0.997); }
  34% { filter: brightness(1.025); transform: scale(1.005); }
  62% { filter: brightness(1); transform: scale(1); }
  82% { filter: brightness(0.985); transform: scale(0.998); }
}

@keyframes signal-copy-cycle {
  0%, 100% { filter: blur(0.2px); opacity: 0.74; transform: translateY(calc(-50% + 3px)); }
  24% { filter: blur(0); opacity: 0.82; transform: translateY(-50%); }
  38% { opacity: 1; }
  68% { opacity: 0.94; }
  86% { filter: blur(0.15px); opacity: 0.76; transform: translateY(calc(-50% - 2px)); }
}

@keyframes signal-copy-line-one {
  0%, 100% { opacity: 0.88; transform: translateX(-3px); }
  20% { opacity: 0.96; transform: translateX(0); }
  66% { opacity: 1; transform: translateX(0); }
  86% { opacity: 0.9; transform: translateX(2px); }
}

@keyframes signal-copy-line-two {
  0%, 100% { opacity: 0.78; transform: translateX(3px); }
  28% { opacity: 0.96; transform: translateX(0); }
  72% { opacity: 1; transform: translateX(0); }
  90% { opacity: 0.82; transform: translateX(-2px); }
}

@keyframes signal-wave-ghost-cycle {
  0%, 100% { opacity: 0.42; transform: scaleY(0.88); }
  19% { opacity: 0.7; transform: scaleY(1.06); }
  43% { opacity: 0.54; transform: scaleY(0.96); }
  61% { opacity: 0.76; transform: scaleY(1.12); }
  83% { opacity: 0.48; transform: scaleY(0.92); }
}

@keyframes signal-wave-pulse-left {
  0% { opacity: 0.18; stroke-dashoffset: 1; transform: scaleY(0.84); }
  8% { opacity: 0.94; }
  27% { opacity: 1; stroke-dashoffset: 0.42; transform: scaleY(1.12); }
  43% { opacity: 0.62; stroke-dashoffset: 0.06; transform: scaleY(0.93); }
  71% { opacity: 0.9; stroke-dashoffset: -0.58; transform: scaleY(1.04); }
  88% { opacity: 0.52; }
  100% { opacity: 0.16; stroke-dashoffset: -1; transform: scaleY(0.86); }
}

@keyframes signal-wave-pulse-right {
  0% { opacity: 0.16; stroke-dashoffset: -1; transform: scaleY(0.9); }
  13% { opacity: 0.76; }
  31% { opacity: 0.96; stroke-dashoffset: -0.38; transform: scaleY(1.04); }
  52% { opacity: 0.58; stroke-dashoffset: 0.02; transform: scaleY(0.86); }
  66% { opacity: 1; transform: scaleY(1.14); }
  84% { opacity: 0.68; stroke-dashoffset: 0.7; }
  100% { opacity: 0.14; stroke-dashoffset: 1; transform: scaleY(0.92); }
}

.brand-intro {
  padding: clamp(96px, 10vw, 150px) 0 clamp(100px, 11vw, 170px);
}

.intro-editorial {
  display: grid;
  grid-template-columns: 5fr 7fr;
  align-items: center;
  gap: clamp(48px, 7vw, 110px);
}

.intro-editorial blockquote {
  font-family: var(--serif);
  font-size: clamp(17px, 1.25vw, 20px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.88;
}

.intro-editorial--signature {
  grid-template-columns: minmax(0, 7fr) minmax(260px, 5fr);
  align-items: stretch;
}

.intro-editorial--signature blockquote {
  display: flex;
  max-width: 34em;
  flex-direction: column;
  justify-content: space-between;
  font-size: clamp(16px, 1.15vw, 19px);
}

.intro-copy > span {
  display: block;
}

.intro-media .media-picture {
  aspect-ratio: 16 / 10;
}

.intro-media figcaption {
  padding-top: 10px;
  color: var(--warm-500);
  font-size: 9px;
  letter-spacing: 0.14em;
}

/* Studios */

.home-studios {
  padding: 90px 0 150px;
}

.system-selector {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 54px;
  border-top: 1px solid rgba(243, 239, 231, 0.25);
  border-bottom: 1px solid rgba(243, 239, 231, 0.25);
}

.system-selector button {
  position: relative;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  min-height: 88px;
  padding: 20px 24px;
  border-right: 1px solid rgba(243, 239, 231, 0.25);
  font-family: var(--serif);
  font-size: clamp(24px, 2.5vw, 36px);
  text-align: left;
  transition: color 220ms ease, background-color 220ms ease;
}

.system-selector button:last-child {
  border-right: 0;
}

.system-selector button span {
  color: var(--warm-500);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.system-selector button::after {
  position: absolute;
  right: 24px;
  bottom: -1px;
  left: 24px;
  height: 2px;
  content: "";
  background: var(--signal-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms ease;
}

.system-selector button[aria-selected="true"] {
  color: #fff;
  background: rgba(255, 255, 255, 0.03);
}

.system-selector button[aria-selected="true"]::after {
  transform: scaleX(1);
}

.system-panel {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: 48px;
  padding-top: 70px;
}

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

.system-copy {
  position: sticky;
  top: calc(var(--header-height) + 32px);
  align-self: start;
  padding-top: 6px;
}

.system-copy .system-mark {
  margin-bottom: 44px;
}

.system-copy h3 {
  margin: 20px 0 22px;
  font-family: var(--serif);
  font-size: clamp(40px, 4.8vw, 58px);
  font-weight: 500;
  line-height: 1;
}

.system-copy > p:not(.eyebrow) {
  max-width: 33em;
  color: var(--warm-200);
  font-size: 17px;
  line-height: 1.9;
}

.system-copy .text-link {
  margin-top: 38px;
}

.system-media {
  display: grid;
  grid-template-columns: 7fr 5fr;
  align-items: end;
  gap: 20px;
}

.system-media figure {
  min-width: 0;
}

.system-control .media-picture {
  aspect-ratio: 4 / 3;
}

.system-recording .media-picture {
  aspect-ratio: 4 / 5;
}

.system-media figcaption {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 12px;
  color: var(--warm-500);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.system-media figcaption strong {
  color: var(--warm-200);
  font-weight: 500;
}

/* REC STATE */

.rec-state {
  padding: 70px 0 150px;
}

.rec-state .section-shell {
  display: grid;
  grid-template-columns: 4fr 8fr;
  align-items: center;
  gap: 48px;
}

.rec-state-copy h2,
.lounge-copy h2,
.routing-section h2,
.service-process h2 {
  margin: 22px 0;
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1;
}

.rec-state-copy p,
.lounge-copy p {
  max-width: 34em;
  color: var(--warm-200);
  font-size: 16px;
  line-height: 1.9;
}

.rec-controls {
  display: flex;
  gap: 8px;
  margin-top: 36px;
}

.rec-controls button {
  min-width: 82px;
  min-height: 44px;
  border: 1px solid rgba(243, 239, 231, 0.35);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.14em;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.rec-controls button.is-active {
  background: var(--signal-red);
  border-color: var(--signal-red);
}

.rec-media {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.rec-media .media-picture {
  position: absolute;
  inset: 0;
  transition: opacity 1200ms ease;
}

.rec-media .rec-red {
  opacity: 0;
}

.rec-media.is-red .rec-warm {
  opacity: 0;
}

.rec-media.is-red .rec-red {
  opacity: 1;
}

.rec-mark {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 3;
  width: 44px;
  height: 44px;
}

/* Sound */

.sound-system {
  padding: 70px 0 160px;
}

.sound-editorial {
  display: grid;
  grid-template-columns: 7fr 5fr;
  align-items: start;
  gap: clamp(44px, 6vw, 90px);
  margin-top: 64px;
}

.sound-editorial-media .media-picture {
  aspect-ratio: 3 / 2;
}

.sound-editorial--text {
  display: block;
  max-width: 1040px;
  margin: 64px auto 0;
}

.sound-editorial--text .sound-lead {
  max-width: 37em;
  margin-left: auto;
}

.sound-editorial--text .sound-notes {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sound-lead {
  max-width: 31em;
  color: var(--warm-200);
  font-family: var(--serif);
  font-size: clamp(18px, 1.65vw, 24px);
  line-height: 1.62;
}

.sound-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 26px;
  margin-top: 52px;
}

.sound-note {
  padding-top: 16px;
  border-top: 1px solid rgba(243, 239, 231, 0.24);
}

.sound-note h3 {
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: clamp(19px, 1.55vw, 23px);
  font-weight: 500;
  line-height: 1.15;
}

.sound-note p {
  color: var(--warm-500);
  font-size: 13px;
  line-height: 1.8;
}

/* Lounge */

.lounge-section,
.lounge-detail,
.about-space {
  padding: 70px 0 150px;
}

.lounge-grid {
  display: grid;
  grid-template-columns: 4fr 8fr;
  align-items: end;
  gap: 48px;
}

.lounge-grid figure .media-picture,
.lounge-grid > .media-picture {
  aspect-ratio: 16 / 10;
}

.lounge-grid figcaption {
  padding-top: 10px;
  color: var(--warm-500);
  font-size: 9px;
  letter-spacing: 0.14em;
}

/* Services */

.services-preview {
  padding: 70px 0 160px;
}

.services-layout {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 48px;
  margin-top: 62px;
}

.service-index {
  border-top: 1px solid rgba(243, 239, 231, 0.25);
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 20px;
  align-items: center;
  min-height: 82px;
  border-bottom: 1px solid rgba(243, 239, 231, 0.25);
  transition: color 180ms ease, transform 180ms ease;
}

.service-row > span {
  color: var(--warm-500);
  font-size: 10px;
}

.service-row strong {
  font-family: var(--serif);
  font-size: clamp(23px, 2.2vw, 32px);
  font-weight: 500;
}

.service-row i {
  color: var(--signal-red);
  font-style: normal;
}

.service-row:hover,
.service-row:focus-visible,
.service-row.is-active {
  transform: translateX(10px);
  color: var(--signal-red);
}

.service-media {
  position: sticky;
  top: calc(var(--header-height) + 32px);
  align-self: start;
}

.service-media-stack {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-top: 1px solid rgba(243, 239, 231, 0.25);
  border-bottom: 1px solid rgba(243, 239, 231, 0.25);
}

.service-media-item {
  --service-offset: 0px;
  position: absolute;
  inset: var(--service-offset) 0 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 20px 0 clamp(28px, 3.2vw, 52px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 260ms ease, transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.service-media-item:nth-child(2) {
  --service-offset: 82px;
}

.service-media-item:nth-child(3) {
  --service-offset: 164px;
}

.service-media-item:nth-child(4) {
  --service-offset: 246px;
}

.service-media-item:nth-child(5) {
  --service-offset: 328px;
}

.service-media-item.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.service-media-item > span {
  order: 2;
  margin: 14px 0 26px;
  color: var(--signal-red);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.14em;
}

.service-media-item h3 {
  order: 1;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(23px, 2.2vw, 32px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.15;
}

.service-media-item p {
  order: 3;
  max-width: 38em;
  color: var(--warm-200);
  font-size: 15px;
  line-height: 1.9;
}

.service-media-item a {
  display: flex;
  order: 4;
  width: fit-content;
  align-items: center;
  gap: 18px;
  margin-top: 36px;
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(243, 239, 231, 0.35);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.08em;
  transition: border-color 180ms ease, color 180ms ease;
}

.service-media-item a i {
  color: var(--signal-red);
  font-style: normal;
}

.service-media-item a:hover,
.service-media-item a:focus-visible {
  border-color: var(--signal-red);
  color: var(--signal-red);
}

/* Clients */

.clients-preview,
.client-page {
  padding: 120px 0 150px;
}

.clients-intro {
  max-width: 640px;
  margin: 54px 0;
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.55;
}

.client-matrix {
  display: grid;
  grid-template-columns: repeat(14, minmax(0, 1fr));
  padding: 22px 0;
  border-top: 1px solid rgba(243, 239, 231, 0.24);
  border-bottom: 1px solid rgba(243, 239, 231, 0.24);
}

.client-matrix span {
  display: flex;
  min-width: 0;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 10px 8px;
  border-right: 1px solid rgba(243, 239, 231, 0.28);
  font-family: var(--serif);
  font-size: clamp(12px, 0.9vw, 15px);
  font-weight: 500;
  line-height: 1.25;
  text-align: center;
  white-space: nowrap;
}

.client-matrix .client-more {
  border-right: 0;
  color: var(--signal-red);
  font-size: clamp(24px, 2.4vw, 36px);
}

.work-rail {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 12px;
  margin: 64px 0 52px;
}

.work-rail figure {
  position: relative;
  min-width: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--carbon-700);
  transform: translateZ(0);
}

.work-rail img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1), filter 260ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .work-cover:hover img {
    transform: scale(1.045);
  }
}

.work-rail figcaption {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 12px;
  font-size: 11px;
}

.work-rail figcaption span {
  color: var(--warm-500);
}

.work-rail figcaption strong {
  font-weight: 600;
}

.selected-work-page .work-rail figcaption {
  color: var(--warm-50);
}

.project-matrix {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 120px;
}

.project-matrix .section-index {
  grid-column: 1 / -1;
  padding: 0 0 28px;
  color: var(--warm-200);
}

.project-matrix > span:not(.section-index) {
  min-height: 76px;
  padding: 16px;
  border: 1px solid rgba(224, 22, 25, 0.58);
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.45;
}

.selected-work-page {
  padding: 120px 0 140px;
}

.rights-note {
  max-width: 700px;
  color: var(--warm-500);
  font-size: 12px;
}

/* About */

.about-preview {
  padding: 120px 0 160px;
}

.about-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  align-items: center;
  gap: 72px;
  margin-top: 70px;
}

.about-grid figure .media-picture {
  aspect-ratio: 4 / 5;
}

.about-copy h3 {
  margin: 30px 0 26px;
  font-family: var(--serif);
  font-size: clamp(42px, 4.8vw, 64px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1;
}

.about-copy > p:not(.eyebrow) {
  max-width: 40em;
  color: var(--warm-200);
  font-size: 18px;
  line-height: 1.95;
}

.about-copy .text-link {
  margin-top: 38px;
}

.about-hero {
  padding: calc(var(--header-height) + 116px) 0 110px;
}

.about-hero-shell {
  display: grid;
  min-height: 38svh;
  grid-template-columns: minmax(0, 8fr) minmax(260px, 4fr);
  align-items: end;
  gap: clamp(40px, 8vw, 140px);
}

.about-hero-copy h1 {
  margin: 0 0 20px;
  font-family: var(--serif);
  font-size: clamp(52px, 5.5vw, 78px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.about-hero-copy p {
  max-width: 36em;
  color: var(--warm-200);
  font-size: 16px;
}

.about-narrative {
  margin: 0;
  padding-bottom: 4px;
  color: var(--signal-red);
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 34px);
  font-style: italic;
  line-height: 1.12;
}

.about-page {
  padding: 96px 0 150px;
}

.about-page-grid {
  display: grid;
  grid-template-columns: minmax(110px, 2fr) minmax(250px, 4fr) minmax(0, 6fr);
  align-items: start;
  gap: clamp(28px, 4vw, 70px);
}

.about-long {
  grid-column: 3;
}

.about-person-heading {
  margin: 0 0 34px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(243, 239, 231, 0.2);
}

.about-person-heading h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 3.2vw, 48px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1;
}

.about-long .about-person-heading p {
  margin-top: 14px;
  margin-bottom: 0;
  color: var(--warm-500);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.06em;
  line-height: 1.6;
}

.about-long p {
  margin: 0 0 28px;
  color: var(--warm-200);
  font-family: var(--serif);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.72;
}

.about-portrait {
  grid-column: 2;
  margin: 0;
}

.about-portrait .media-picture {
  aspect-ratio: 4 / 5;
}

.about-collaboration {
  padding: 120px 0 150px;
  border-top: 1px solid rgba(243, 239, 231, 0.16);
}

.about-collaboration-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(300px, 5fr);
  align-items: center;
  gap: clamp(52px, 7vw, 108px);
}

.about-collaboration-media {
  position: relative;
  margin: 0;
}

.about-collaboration-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 7, 7, 0.28) 0, transparent 12%, transparent 86%, rgba(7, 7, 7, 0.48) 100%);
  content: "";
  pointer-events: none;
}

.about-collaboration-media .media-picture {
  aspect-ratio: 3 / 2;
}

.about-collaboration-copy h2 {
  margin: 28px 0 16px;
  font-family: var(--serif);
  font-size: clamp(42px, 4.7vw, 68px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.about-collaboration-role {
  margin-bottom: 30px;
  color: var(--signal-red);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.12em;
}

.about-collaboration-copy > p:last-child {
  max-width: 38em;
  color: var(--warm-200);
  font-family: var(--serif);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.78;
}

.about-signoff {
  padding: 80px 0 150px;
  border-top: 1px solid rgba(243, 239, 231, 0.16);
}

.about-signoff-grid {
  display: block;
}

.about-signoff-copy h2 {
  max-width: none;
  margin: 24px 0 0;
  font-family: var(--serif);
  font-size: clamp(26px, 2.25vw, 35px);
  font-weight: 500;
  line-height: 1.35;
  white-space: nowrap;
}

.about-brand-lines {
  padding-bottom: 3px;
}

.about-brand-lines p {
  margin: 0;
}

.about-brand-zh {
  margin-bottom: 14px !important;
  color: var(--warm-100);
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 30px);
}

.about-brand-en {
  color: var(--signal-red);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.12em;
  line-height: 1.6;
}

.timeline-section {
  padding: 120px 0 150px;
}

.timeline {
  margin-top: 54px;
  border-top: 1px solid rgba(243, 239, 231, 0.24);
}

.timeline-row {
  display: grid;
  grid-template-columns: 2fr 4fr 6fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(243, 239, 231, 0.2);
}

.timeline-row time {
  color: var(--signal-red);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.timeline-row strong {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
}

.timeline-row p {
  color: var(--warm-500);
}

/* Contact */

.contact-block {
  padding: 100px 0 110px;
  border-top: 1px solid rgba(243, 239, 231, 0.14);
}

.contact-layout {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 80px;
  margin-top: 60px;
}

.contact-mark {
  margin-bottom: 42px;
}

.contact-lead h3 {
  max-width: 8em;
  margin: 24px 0 32px;
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1;
}

.contact-lead > p:last-child {
  max-width: 43em;
  color: var(--warm-200);
  font-size: 16px;
  line-height: 1.9;
}

.contact-route {
  align-self: end;
  padding: 30px 0 4px;
  border-top: 1px solid rgba(243, 239, 231, 0.35);
  border-bottom: 1px solid rgba(243, 239, 231, 0.35);
}

.contact-route > span {
  color: var(--warm-500);
  font-size: 10px;
  letter-spacing: 0.14em;
}

.contact-route h4 {
  margin: 38px 0 12px;
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 400;
}

.contact-route p {
  color: var(--warm-500);
  font-size: 13px;
}

.primary-action {
  display: flex;
  width: 100%;
  min-height: 60px;
  align-items: center;
  justify-content: space-between;
  margin-top: 34px;
  border-top: 1px solid rgba(243, 239, 231, 0.25);
  color: var(--warm-50);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.08em;
}

.primary-action span {
  color: var(--signal-red);
}

.pending-email {
  display: block;
  margin: 36px 0 24px;
  color: var(--warm-200) !important;
}

/* Page heroes */

.page-hero {
  position: relative;
  display: grid;
  min-height: min(760px, 76svh);
  grid-template-columns: 6fr 6fr;
  align-items: center;
  padding: calc(var(--header-height) + 56px) max(48px, calc((100vw - 1500px) / 2)) 56px;
  gap: clamp(40px, 6vw, 88px);
  overflow: hidden;
  background: var(--carbon-950);
}

.page-hero-copy {
  position: relative;
  z-index: 2;
  padding-bottom: 0;
  margin-left: 0;
}

.page-hero-copy > span {
  color: var(--signal-red);
  font-size: 11px;
  letter-spacing: 0.15em;
}

.page-hero-copy h1 {
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: clamp(46px, 5.8vw, 82px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.94;
}

.page-hero-copy p {
  max-width: 38em;
  color: var(--warm-200);
  font-size: 16px;
}

.page-hero-media {
  aspect-ratio: 4 / 3;
  max-height: 560px;
}

body[data-page="clients"] .page-hero {
  min-height: min(560px, 60svh);
  grid-template-columns: 1fr;
}

body[data-page="clients"] .page-hero-copy h1,
body[data-page="about"] .page-hero-copy h1,
body[data-page="contact"] .page-hero-copy h1 {
  font-size: clamp(42px, 5vw, 70px);
}

/* Studio detail */

.studios-overview {
  padding: calc(var(--header-height) + 42px) 0 84px;
}

.page-anchor-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 34px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(243, 239, 231, 0.24);
}

.page-anchor-nav a {
  color: var(--warm-500);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.12em;
  transition: color 180ms ease;
}

.page-anchor-nav a:hover {
  color: var(--signal-red);
}

.studios-overview-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  align-items: end;
  gap: clamp(42px, 7vw, 108px);
  padding-top: 80px;
}

.studios-overview h1 {
  font-family: var(--serif);
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.9;
}

.studios-overview-grid > div > p {
  max-width: 48em;
  color: var(--warm-200);
  font-size: 15px;
  line-height: 1.9;
}

.studio-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 72px 0 0;
  padding: 0;
  border-top: 1px solid rgba(243, 239, 231, 0.24);
  border-bottom: 1px solid rgba(243, 239, 231, 0.24);
}

.studio-facts > div {
  min-height: 142px;
  padding: 25px 26px 22px 0;
  border-right: 1px solid rgba(243, 239, 231, 0.18);
}

.studio-facts > div:not(:first-child) {
  padding-left: 26px;
}

.studio-facts > div:last-child {
  border-right: 0;
}

.studio-facts dt {
  color: var(--warm-50);
  font-family: var(--serif);
  font-size: clamp(38px, 4.2vw, 58px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
}

.studio-facts dd {
  max-width: 18em;
  margin: 18px 0 0;
  color: var(--warm-500);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.11em;
  line-height: 1.6;
  text-transform: uppercase;
}

.studio-list {
  padding: 20px 0 120px;
}

.studio-detail {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  padding: 80px 0 150px;
  border-top: 1px solid rgba(243, 239, 231, 0.24);
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.studio-detail-head {
  position: relative;
  grid-column: 1 / 6;
}

.studio-detail-head > span {
  color: var(--signal-red);
  font-size: 11px;
}

.studio-detail-head .studio-pair {
  margin-top: 18px;
  color: var(--warm-200);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.studio-detail-head h2 {
  margin-top: 0;
  font-family: var(--serif);
  font-size: clamp(44px, 5.3vw, 72px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.9;
}

.studio-detail-mark {
  position: absolute;
  top: 0;
  right: 0;
}

.studio-detail-copy {
  grid-column: 7 / 13;
  align-self: end;
  color: var(--warm-200);
  font-size: 17px;
  line-height: 1.95;
}

.studio-detail-media {
  display: grid;
  grid-column: 1 / 13;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 24px;
  margin-top: 48px;
}

.studio-detail-media .media-picture {
  aspect-ratio: 16 / 10;
}

.studio-recording-frame .media-picture img {
  object-fit: contain;
}

.studio-booth-note {
  display: flex;
  aspect-ratio: 16 / 10;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 clamp(30px, 3.4vw, 58px) 0 0;
}

.studio-booth-note h3 {
  max-width: 12em;
  font-family: var(--serif);
  font-size: clamp(26px, 2.5vw, 38px);
  font-weight: 400;
  line-height: 1.16;
}

.studio-booth-note p {
  max-width: 34em;
  margin-top: 20px;
  color: var(--warm-200);
  font-size: 15px;
  line-height: 1.85;
}

.studio-detail-media figcaption {
  padding-top: 10px;
  color: var(--warm-500);
  font-size: 9px;
  letter-spacing: 0.14em;
}

.use-list {
  display: grid;
  grid-column: 7 / 13;
  grid-template-columns: 2fr 4fr;
  gap: 24px;
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(243, 239, 231, 0.24);
}

.use-list > span {
  color: var(--warm-500);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.use-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.use-list li {
  padding: 11px 0;
  border-bottom: 1px solid rgba(243, 239, 231, 0.13);
}

.studio-state-pair {
  display: grid;
  grid-column: 1 / 13;
  grid-template-columns: 8fr 4fr;
  align-items: end;
  gap: 40px;
  margin-top: 70px;
}

.studio-state-pair .media-picture {
  aspect-ratio: 16 / 10;
}

.studio-state-pair span {
  color: var(--signal-red);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.studio-state-pair p {
  margin-top: 20px;
  color: var(--warm-200);
}

.has-js body[data-page="studios"] .focus-pull img {
  filter: blur(5px) brightness(0.82) saturate(0.86);
  transform: scale(1.024);
  transition: filter 820ms cubic-bezier(0.16, 1, 0.3, 1), transform 940ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: filter, transform;
}

.has-js body[data-page="studios"] .focus-pull.is-focused img {
  filter: blur(0) brightness(1) saturate(1);
  transform: scale(1);
}

.routing-section,
.service-process {
  padding: 120px 0 150px;
}

.routing-section h2,
.service-process h2 {
  max-width: 11em;
  margin-top: 70px;
}

body[data-page="services"] .service-process h2 {
  max-width: none;
  white-space: nowrap;
}

.routing-section > .section-shell > p {
  max-width: 48em;
  margin-top: 42px;
  color: #625d56;
  font-size: 18px;
}

/* Service page */

.service-list {
  padding: 100px 0 150px;
}

.service-detail {
  display: grid;
  grid-template-columns: 4fr 8fr;
  align-items: start;
  gap: 24px;
  padding: 36px 0 70px;
  border-top: 1px solid rgba(243, 239, 231, 0.24);
}

.service-detail > span {
  color: var(--signal-red);
  font-size: 10px;
}

.service-detail h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 3.4vw, 46px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 0.95;
}

.service-detail p {
  color: var(--warm-200);
  font-size: 16px;
  line-height: 1.9;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 70px;
  border-top: 1px solid rgba(243, 239, 231, 0.24);
}

.process-grid div {
  min-height: 150px;
  padding: 20px 20px 20px 0;
  border-right: 1px solid rgba(243, 239, 231, 0.2);
}

.process-grid div + div {
  padding-left: 20px;
}

.process-grid span {
  color: var(--signal-red);
  font-size: 10px;
}

.process-grid strong {
  display: block;
  margin-top: 0;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
}

/* Contact page */

.contact-page {
  padding: calc(var(--header-height) + 100px) 0 150px;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 6fr 6fr;
  gap: 60px 80px;
}

.contact-page-copy h1 {
  margin: 32px 0;
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 500;
  line-height: 0.95;
}

.contact-page-copy p {
  max-width: 42em;
  color: var(--warm-200);
  font-size: 17px;
  line-height: 1.9;
}

.contact-page-route {
  justify-self: end;
  width: min(100%, 430px);
  padding-left: 48px;
  border-left: 1px solid rgba(243, 239, 231, 0.24);
}

.contact-page-route .contact-page-qr {
  width: min(100%, 280px);
  height: auto;
  aspect-ratio: 1;
  margin-bottom: 34px;
  background: #fff;
  object-fit: contain;
}

.contact-page-route .contact-page-mark {
  width: 90px;
  height: 90px;
  margin-bottom: 70px;
  background: transparent;
}

.contact-page-route > span,
.visit-note > span {
  color: var(--signal-red);
  font-size: 10px;
  letter-spacing: 0.13em;
}

.contact-page-route h3 {
  margin: 20px 0 12px;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
}

.contact-page-route p {
  color: var(--warm-500);
}

.visit-note {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 3fr 9fr;
  gap: 24px;
  padding-top: 30px;
  border-top: 1px solid rgba(243, 239, 231, 0.24);
}

.visit-note p {
  max-width: 48em;
  color: var(--warm-200);
}

/* Legal */

.legal-page {
  padding: 100px 0 150px;
}

.legal-copy {
  width: min(100% - 40px, 850px);
}

.legal-copy h2 {
  margin: 56px 0 16px;
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
}

.legal-copy p {
  color: var(--warm-200);
  font-size: 16px;
  line-height: 1.9;
}

/* Footer */

.site-footer {
  padding: 80px 48px 28px;
  border-top: 1px solid rgba(243, 239, 231, 0.18);
  background: var(--carbon-950);
  color: var(--warm-50);
}

.footer-brand {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
}

.footer-lockup {
  gap: 24px;
}

.footer-lockup .brand-lockup-r {
  width: 68px;
  height: 68px;
}

.footer-lockup .brand-lockup-text {
  width: clamp(210px, 20vw, 300px);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(250px, 5fr) 4fr 2fr 2fr;
  align-items: start;
  gap: 40px;
  padding: 0 0 70px;
}

.footer-grid nav {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 16px 30px;
}

.footer-grid a,
.footer-social button {
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.12em;
}

.footer-social button {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 0;
  text-align: left;
}

.footer-social small {
  color: var(--warm-500);
  font-size: 8px;
  font-weight: 500;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(243, 239, 231, 0.18);
  color: var(--warm-500);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.wechat-dialog {
  width: min(92vw, 760px);
  padding: 44px 48px;
  border: 1px solid rgba(243, 239, 231, 0.25);
  border-radius: 0;
  background: var(--carbon-900);
  color: var(--warm-50);
}

.wechat-dialog::backdrop {
  background: rgba(0, 0, 0, 0.78);
}

.dialog-close {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 28px;
  line-height: 1;
}

.wechat-dialog h2 {
  margin: 10px 0 18px;
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 400;
}

.wechat-dialog img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  margin: 0;
  background: #fff;
  object-fit: contain;
}

.wechat-dialog > p:last-child {
  color: var(--warm-500);
  font-size: 13px;
  line-height: 1.7;
}

.wechat-dialog[open] {
  display: grid;
  grid-template-columns: 240px 1fr;
  grid-template-rows: auto auto 1fr;
  align-items: start;
  gap: 0 40px;
}

.wechat-dialog[open] > img {
  grid-column: 1;
  grid-row: 1 / 4;
}

.wechat-dialog[open] > .eyebrow,
.wechat-dialog[open] > h2,
.wechat-dialog[open] > p:last-child {
  grid-column: 2;
}

/* Tablet */

@media (max-width: 1100px) {
  :root {
    --shell: min(100% - 48px, 1500px);
  }

  .site-header {
    grid-template-columns: minmax(220px, 1fr) auto minmax(160px, 1fr);
    padding: 0 24px;
  }

  .desktop-nav {
    gap: 12px;
  }

  .desktop-nav > a,
  .desktop-nav-studios > a {
    font-size: 9px;
  }

  .header-lockup {
    gap: 12px;
  }

  .header-lockup .brand-lockup-r {
    width: 42px;
    height: 42px;
  }

  .header-lockup .brand-lockup-text {
    width: 160px;
  }

  .hero-content {
    right: 24px;
    left: 24px;
  }

  .sound-editorial {
    grid-template-columns: 1fr;
  }

  .sound-editorial-media {
    width: 82%;
  }

  .client-matrix {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }

  .project-matrix {
    grid-template-columns: repeat(3, 1fr);
  }

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

/* Mobile */

@media (max-width: 760px) {
  :root {
    --shell: calc(100% - 40px);
    --header-height: 76px;
  }

  body {
    font-size: 15px;
  }

  .section-heading {
    display: block;
    align-items: start;
  }

  .section-heading h2 {
    font-size: clamp(34px, 10vw, 46px);
    line-height: 1;
  }

  .section-heading p {
    margin-top: 6px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: var(--header-height);
    padding: 0 20px;
  }

  .header-brand {
    width: max-content;
  }

  .header-lockup {
    gap: 9px;
  }

  .header-lockup .brand-lockup-r {
    width: 34px;
    height: 34px;
  }

  .header-lockup .brand-lockup-text {
    width: 122px;
  }

  .desktop-nav,
  .lang-link {
    display: none;
  }

  .header-actions {
    gap: 14px;
  }

  .book-link {
    padding: 8px 10px;
    font-size: 10px;
  }

  .menu-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    align-content: center;
    justify-items: end;
    gap: 4px;
    padding: 8px 0 8px 8px;
  }

  .menu-toggle span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
  }

  .menu-toggle i {
    display: block;
    width: 22px;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] i:first-of-type {
    transform: translateY(2.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] i:last-of-type {
    transform: translateY(-2.5px) rotate(-45deg);
  }

  .mobile-menu:not([hidden]) {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .mobile-menu nav {
    display: flex;
    flex-direction: column;
  }

  .mobile-menu nav a {
    display: block;
    align-items: baseline;
    min-height: 66px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(243, 239, 231, 0.2);
    font-family: var(--serif);
    font-size: clamp(22px, 6.2vw, 28px);
  }

  .mobile-menu nav a span {
    color: var(--signal-red);
    font-family: var(--sans);
    font-size: 9px;
  }

  .mobile-menu-meta {
    display: flex;
    justify-content: space-between;
    color: var(--warm-500);
    font-size: 9px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-picture img {
    object-position: var(--media-position-mobile, 50% 50%);
  }

  .hero-shade {
    background:
      linear-gradient(to bottom, rgba(0, 0, 0, 0.12), transparent 30%),
      linear-gradient(to bottom, transparent 52%, rgba(7, 7, 7, 0.3) 76%, #070707 100%);
  }

  .hero-content {
    right: 20px;
    bottom: 26px;
    left: 20px;
    display: block;
  }

  .hero-state-controls {
    margin-bottom: 0;
  }

  .hero-state-controls--hero {
    top: auto;
    bottom: 96px;
    left: 20px;
    transform: none;
  }

  .hero-state-controls button {
    min-width: 76px;
    min-height: 40px;
    font-size: 9px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hero-actions a {
    justify-content: space-between;
    gap: 10px;
    font-size: 10px;
  }

  .hero-actions a span,
  .text-link span,
  .service-row i {
    display: none;
  }

  .hero-index {
    display: none;
  }

  .brand-intro {
    padding: 92px 0 100px;
  }

  .orbit-stage {
    min-height: 440px;
  }

  .orbit-stage::before,
  .orbit-graphic {
    top: 50%;
    left: 50%;
  }

  .orbit-stage::before {
    width: 125vw;
    height: 125vw;
  }

  .orbit-graphic {
    width: min(76vw, 330px);
  }

  .signal-logo {
    width: min(48vw, 210px);
  }

  .signal-wave {
    display: none;
  }

  .orbit-copy {
    top: calc(50% + 136px);
    left: 0;
    display: block;
    width: 100%;
    padding: 0 36px;
    font-size: clamp(19px, 5.7vw, 24px);
    transform: translateY(-50%);
  }

  .intro-editorial {
    display: flex;
    flex-direction: column-reverse;
    gap: 38px;
  }

  .intro-media {
    width: 100%;
  }

  .intro-media .media-picture {
    aspect-ratio: 4 / 3;
  }

  .intro-editorial blockquote {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.82;
  }

  .intro-editorial--signature {
    display: flex;
  }

  .intro-editorial--signature blockquote {
    display: block;
  }

  .intro-copy > span {
    display: inline;
    margin-bottom: 0;
  }

  .intro-copy > span::after {
    content: " ";
  }

  .home-studios {
    padding: 60px 0 100px;
  }

  .system-selector {
    margin-top: 38px;
  }

  .system-selector button {
    min-height: 66px;
    justify-content: center;
    padding: 10px 4px;
    font-family: var(--sans);
    font-size: 18px;
    font-weight: 600;
  }

  .system-selector button span {
    display: none;
  }

  .system-selector button::after {
    right: 8px;
    left: 8px;
  }

  .system-panel {
    display: block;
    padding-top: 46px;
  }

  .system-copy {
    position: static;
  }

  .system-copy .system-mark {
    width: 42px;
    height: 42px;
    margin-bottom: 28px;
  }

  .system-copy h3 {
    margin: 14px 0 18px;
    font-size: 46px;
  }

  .system-copy > p:not(.eyebrow) {
    font-size: 16px;
  }

  .system-copy .text-link {
    margin-top: 26px;
  }

  .system-media {
    display: block;
    margin-top: 46px;
  }

  .system-control .media-picture {
    aspect-ratio: 4 / 5;
  }

  .system-recording {
    width: 78%;
    margin: -18px 0 0 auto;
  }

  .system-recording .media-picture {
    aspect-ratio: 3 / 2;
  }

  .system-media figcaption {
    margin-bottom: 18px;
  }

  .rec-state {
    padding: 50px 0 100px;
  }

  .rec-state .section-shell {
    display: flex;
    flex-direction: column-reverse;
    gap: 36px;
  }

  .rec-media {
    width: 100%;
    aspect-ratio: 4 / 5;
  }

  .rec-state-copy h2,
  .lounge-copy h2,
  .routing-section h2,
  .service-process h2 {
    font-size: 36px;
  }

  body[data-page="services"] .service-process h2 {
    white-space: normal;
  }

  .sound-system {
    padding: 50px 0 100px;
  }

  .sound-editorial {
    display: block;
    margin-top: 40px;
  }

  .sound-editorial-media {
    width: 100%;
  }

  .sound-editorial-media .media-picture {
    aspect-ratio: 3 / 2;
  }

  .sound-editorial-copy {
    margin-top: 36px;
  }

  .sound-editorial--text .sound-editorial-copy {
    margin-top: 0;
  }

  .sound-editorial--text .sound-notes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sound-lead {
    font-size: 19px;
  }

  .sound-notes {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-top: 38px;
  }

  .lounge-section,
  .lounge-detail,
  .about-space {
    padding: 50px 0 100px;
  }

  .lounge-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .lounge-grid figure .media-picture,
  .lounge-grid > .media-picture {
    aspect-ratio: 4 / 5;
  }

  .services-preview {
    padding: 50px 0 100px;
  }

  .services-layout {
    display: block;
    margin-top: 40px;
  }

  .service-row {
    grid-template-columns: 1fr 26px;
    min-height: 72px;
  }

  .service-row strong {
    font-size: 27px;
  }

  .service-media {
    position: static;
    margin-top: 44px;
  }

  .service-media-stack {
    min-height: 430px;
    aspect-ratio: auto;
  }

  .service-media-item {
    --service-offset: 0px;
    inset: 0;
    justify-content: flex-start;
    padding: 32px 0;
  }

  .service-media-item h3 {
    font-size: 38px;
  }

  .clients-preview,
  .client-page {
    padding: 86px 0 100px;
  }

  .clients-intro {
    margin: 36px 0;
    font-size: 22px;
  }

  .client-matrix {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 24px 0 12px;
  }

  .client-matrix span {
    min-height: 50px;
    margin: 0;
    padding: 8px 4px;
    border-right: 1px solid rgba(243, 239, 231, 0.25);
    font-size: 14px;
    white-space: normal;
  }

  .client-matrix .client-more {
    margin-right: 0;
    padding-right: 0;
    border-right: 0;
  }

  .work-rail {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    margin: 42px 0;
  }

  .project-matrix {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 78px;
  }

  .project-matrix > span:not(.section-index) {
    min-height: 70px;
    padding: 12px;
    font-size: 14px;
  }

  .about-preview {
    padding: 86px 0 100px;
  }

  .about-grid {
    display: flex;
    flex-direction: column;
    gap: 42px;
    margin-top: 44px;
  }

  .about-grid figure .media-picture {
    aspect-ratio: 4 / 5;
  }

  .about-copy h3 {
    font-size: 44px;
  }

  .about-copy > p:not(.eyebrow) {
    font-size: 16px;
  }

  .contact-block {
    padding: 70px 0 80px;
  }

  .contact-layout {
    display: block;
    margin-top: 48px;
  }

  .contact-lead h3 {
    font-size: 44px;
  }

  .contact-route {
    margin-top: 60px;
  }

  .page-hero {
    display: flex;
    min-height: auto;
    flex-direction: column-reverse;
    justify-content: flex-end;
    gap: 30px;
    padding: calc(var(--header-height) + 24px) 20px 54px;
  }

  .page-hero-copy {
    margin-left: 0;
  }

  .page-hero-media {
    width: 100%;
    aspect-ratio: 4 / 5;
  }

  .page-hero-copy h1 {
    margin: 0 0 16px;
    font-size: clamp(40px, 11vw, 54px);
    line-height: 0.96;
  }

  .page-hero-copy p {
    font-size: 14px;
  }

  .studio-list {
    padding: 0 0 70px;
  }

  .studios-overview {
    padding: calc(var(--header-height) + 22px) 0 64px;
  }

  .page-anchor-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  .page-anchor-nav a {
    min-height: 44px;
    padding: 14px 6px 10px 0;
    border-bottom: 1px solid rgba(243, 239, 231, 0.13);
    font-size: 10px;
  }

  .studios-overview-grid {
    display: block;
    padding-top: 56px;
  }

  .studios-overview h1 {
    font-size: 58px;
  }

  .studio-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 48px;
  }

  .studio-facts > div {
    min-height: 126px;
    padding: 22px 18px 20px 0;
  }

  .studio-facts > div:not(:first-child) {
    padding-left: 18px;
  }

  .studio-facts > div:nth-child(2) {
    border-right: 0;
  }

  .studio-facts > div:nth-child(n + 3) {
    border-top: 1px solid rgba(243, 239, 231, 0.18);
  }

  .studio-facts > div:nth-child(3) {
    padding-left: 0;
  }

  .studio-facts dt {
    font-size: 40px;
  }

  .studio-detail {
    display: block;
    padding: 54px 0 96px;
  }

  .studio-detail-head h2 {
    font-size: 56px;
  }

  .studio-detail-mark {
    width: 42px;
    height: 42px;
  }

  .studio-detail-copy {
    margin-top: 32px;
    font-size: 16px;
  }

  .studio-detail-media {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 38px;
  }

  .studio-detail-media figure:first-child .media-picture,
  .studio-detail-media figure:last-child .media-picture {
    aspect-ratio: 16 / 10;
  }

  .studio-detail-media figure:last-child {
    width: 100%;
    margin: 0;
  }

  .studio-booth-note {
    aspect-ratio: auto;
    padding: 8px 0 0;
  }

  .studio-booth-note h3 {
    font-size: 30px;
  }

  .use-list {
    display: block;
    margin-top: 34px;
  }

  .use-list ul {
    margin-top: 16px;
  }

  .studio-state-pair {
    display: block;
    margin-top: 54px;
  }

  .studio-state-pair .media-picture {
    aspect-ratio: 4 / 5;
  }

  .studio-state-pair > div {
    margin-top: 24px;
  }

  .routing-section,
  .service-process {
    padding: 84px 0 100px;
  }

  .routing-section h2,
  .service-process h2 {
    margin-top: 42px;
  }

  .service-list {
    padding: 60px 0 90px;
  }

  .service-detail {
    display: block;
    padding: 30px 0 54px;
  }

  .service-detail h2 {
    font-size: 34px;
  }

  .service-detail p {
    margin-top: 14px;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 48px;
  }

  .process-grid div:nth-child(2) {
    border-right: 0;
  }

  .process-grid div:nth-child(n + 3) {
    border-top: 1px solid rgba(243, 239, 231, 0.2);
  }

  .selected-work-page {
    padding: 84px 0 90px;
  }

  .about-hero {
    padding: calc(var(--header-height) + 64px) 0 74px;
  }

  .about-hero-shell {
    display: block;
    min-height: auto;
  }

  .about-hero-copy h1 {
    margin-bottom: 16px;
    font-size: clamp(42px, 12vw, 56px);
  }

  .about-hero-copy p {
    font-size: 14px;
  }

  .about-narrative {
    margin-top: 64px;
    font-size: 25px;
  }

  .about-page {
    padding: 72px 0 96px;
  }

  .about-page-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .about-long {
    margin-top: 0;
  }

  .about-person-heading {
    margin-bottom: 30px;
  }

  .about-person-heading h2 {
    font-size: 36px;
  }

  .about-long .about-person-heading p {
    font-size: 12px;
  }

  .about-long p {
    margin-bottom: 24px;
    font-size: 18px;
  }

  .about-portrait {
    width: min(100%, 430px);
  }

  .about-collaboration {
    padding: 82px 0 100px;
  }

  .about-collaboration-grid {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 42px;
  }

  .about-collaboration-media::after {
    background: linear-gradient(180deg, transparent 82%, rgba(7, 7, 7, 0.56) 100%);
  }

  .about-collaboration-copy h2 {
    margin-top: 22px;
    font-size: 48px;
  }

  .about-signoff {
    padding: 58px 0 100px;
  }

  .about-signoff-grid {
    display: block;
  }

  .about-signoff-copy h2 {
    margin-top: 20px;
    font-size: 29px;
    white-space: normal;
  }

  .about-brand-lines {
    margin-top: 54px;
  }

  .timeline-section {
    padding: 84px 0 100px;
  }

  .timeline-row {
    grid-template-columns: 90px 1fr;
  }

  .timeline-row p {
    grid-column: 2;
  }

  .contact-page {
    padding: calc(var(--header-height) + 54px) 0 100px;
  }

  .contact-page-grid {
    display: block;
  }

  .contact-page-copy h1 {
    font-size: 40px;
  }

  .about-space .lounge-copy h2 {
    font-size: 31px;
    line-height: 1.22;
  }

  .contact-page-route {
    margin-top: 64px;
    width: 100%;
    padding: 0;
    border-left: 0;
  }

  .visit-note {
    display: block;
    margin-top: 58px;
  }

  .visit-note p {
    margin-top: 18px;
  }

  .legal-page {
    padding: 74px 0 100px;
  }

  .site-footer {
    padding: 60px 20px 24px;
  }

  .footer-brand {
    width: max-content;
    max-width: 100%;
  }

  .footer-lockup {
    gap: 14px;
  }

  .footer-lockup .brand-lockup-r {
    width: 58px;
    height: 58px;
  }

  .footer-lockup .brand-lockup-text {
    width: min(64vw, 250px);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 42px 20px;
    padding-bottom: 54px;
  }

  .footer-grid .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-grid nav {
    display: flex;
    flex-direction: column;
  }

  .footer-meta {
    grid-column: 1 / -1;
    align-items: flex-start;
  }

  .wechat-dialog {
    width: min(92vw, 420px);
    padding: 38px 24px 28px;
  }

  .wechat-dialog[open] {
    display: block;
  }

  .wechat-dialog img {
    width: min(100%, 280px);
    margin: 22px auto;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  .has-js .orbit-stage::before {
    opacity: 0.42;
    transform: translate(-50%, -50%);
  }

  .has-js .orbit-stage .orbit-graphic {
    opacity: 0.2;
    transform: translate(-50%, -50%) scale(0.86);
  }

  .has-js .orbit-stage .orbit-copy {
    filter: none;
    opacity: 1;
    transform: translateY(-50%);
  }

  body::after {
    display: none;
  }

  .has-js body[data-page="studios"] .focus-pull img {
    filter: none;
    transform: none;
  }

  .has-js .orbit-stage .signal-logo-base {
    filter: brightness(0.42) saturate(1.1);
    opacity: 0.32;
  }

  .has-js .orbit-stage .signal-logo-glow {
    filter: none;
    opacity: 1;
  }

}
