:root {
  --paper: #ffffff;
  --ink: #090909;
  --muted: #b9b9b4;
  --hairline: rgba(9, 9, 9, 0.24);
  --edge: clamp(14px, 1.45vw, 30px);
  --ui-size: clamp(15px, 1.08vw, 22px);
  --font-display: "Inter Tight", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
  --desktop-pad-x: 22px;
  --desktop-top-y: 24px;
  --desktop-brand-top: 28px;
  --desktop-brand-width: 220px;
  --desktop-brand-title-size: 18px;
  --desktop-brand-subtitle-size: 14px;
  --desktop-brand-line-height: 1.15;
  --desktop-center-line-x: 50%;
  --desktop-toggle-top: 30px;
  --desktop-toggle-width: 230px;
  --desktop-toggle-font-size: 16px;
  --desktop-toggle-gap: 38px;
  --desktop-nav-top: 24px;
  --desktop-pill-height: 28px;
  --desktop-pill-font-size: 13px;
  --desktop-pill-pad-x: 10px;
  --desktop-pill-gap: 3px;
  --desktop-top-safe-height: 160px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  color: var(--ink);
  scrollbar-width: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar,
*::-webkit-scrollbar {
  display: none;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

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

button {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

button:focus-visible,
a:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 4px;
}

a {
  text-decoration: none;
}

.site-shell {
  position: relative;
  width: 100%;
  min-height: 100svh;
  overflow: hidden;
  background: transparent;
}

.site-stage {
  position: relative;
  min-height: 100svh;
  isolation: isolate;
}

.page-transition-shell {
  will-change: opacity, transform, filter;
}

.page-transition-shell--exiting {
  opacity: 0;
  filter: blur(2px);
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 260ms cubic-bezier(0.76, 0, 0.24, 1),
    transform 260ms cubic-bezier(0.76, 0, 0.24, 1),
    filter 260ms cubic-bezier(0.76, 0, 0.24, 1);
}

.page-transition-shell--entering {
  opacity: 0;
  filter: blur(2px);
  pointer-events: none;
  transform: translateY(18px);
}

.page-transition-shell--entered {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
  transition:
    opacity 460ms 40ms cubic-bezier(0.76, 0, 0.24, 1),
    transform 460ms 40ms cubic-bezier(0.76, 0, 0.24, 1),
    filter 460ms 40ms cubic-bezier(0.76, 0, 0.24, 1);
}

@media (max-width: 720px) {
  .page-transition-shell--exiting {
    transition-duration: 180ms;
  }

  .page-transition-shell--entered {
    transition-duration: 340ms;
    transition-delay: 20ms;
  }
}

.site-shell.is-page-transitioning .site-stage {
  pointer-events: none;
}

.site-shell.is-page-transitioning .site-header,
.site-shell.is-page-transitioning .desktop-top-layer,
.site-shell.is-page-transitioning .editorial-guide,
.site-shell.is-page-transitioning .work-lanyard-anchor,
.site-shell.is-page-transitioning .desktop-view-toggle,
.site-shell.is-page-transitioning .global-category-filter {
  animation: none !important;
  opacity: 1;
  transform: none;
}

.site-shell.is-page-transitioning .primary-nav button,
.site-shell.is-page-transitioning .view-switch button {
  pointer-events: none;
}

.site-shell.is-page-transitioning .desktop-view-toggle,
.site-shell.is-page-transitioning .view-switch {
  transform: translateX(-50%) !important;
}

.page-transition-shell--entered .page-reveal {
  animation: pageRevealUp 720ms 120ms cubic-bezier(0.76, 0, 0.24, 1) both;
}

.site-header {
  position: fixed;
  z-index: 40;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  padding: var(--edge);
  pointer-events: none;
  animation: chrome-rise 760ms 80ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.site-header > * {
  pointer-events: auto;
}

.studio-lockup {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  font-size: var(--ui-size);
  letter-spacing: -0.04em;
  line-height: 1.18;
  text-align: left;
}

.studio-lockup span:first-child {
  margin-bottom: 0.3em;
  font-family: Didot, "Bodoni MT", "Times New Roman", serif;
  font-size: 1.44em;
  font-weight: 400;
  letter-spacing: -0.08em;
}

.view-switch {
  position: fixed;
  z-index: 41;
  top: var(--edge);
  left: 50%;
  display: grid;
  width: clamp(248px, 22vw, 320px);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  justify-self: auto;
  gap: 0;
  font-size: clamp(18px, 1.25vw, 20px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  transform: translateX(-50%);
  white-space: nowrap;
}

.view-switch button,
.primary-nav button {
  color: var(--muted);
  transition: color 180ms ease;
}

.view-switch button {
  color: rgba(0, 0, 0, 0.28);
  font-weight: inherit;
  line-height: inherit;
}

.view-switch button:first-child {
  justify-self: end;
  margin-right: clamp(28px, 2.8vw, 44px);
}

.view-switch button:last-child {
  justify-self: start;
  margin-left: clamp(28px, 2.8vw, 44px);
}

.view-switch button:hover,
.view-switch button.is-active {
  color: #050505;
}

.view-switch button:hover,
.view-switch button.is-active,
.primary-nav button:hover,
.primary-nav button.is-active {
  color: var(--ink);
}

.view-switch button:hover,
.view-switch button.is-active {
  color: #050505;
}

.primary-nav {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
}

.top-pill-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.top-pill-nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 3px;
  list-style: none;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.035);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.26) inset;
}

.top-pill-nav__item {
  display: flex;
}

.top-pill-nav__pill {
  --pill-circle-size: 64px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 0 14px;
  overflow: hidden;
  border-radius: 999px;
  background: transparent;
  color: rgba(0, 0, 0, 0.42);
  font-family: var(--font-body), "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
  white-space: nowrap;
  transition:
    color 180ms ease,
    background-color 180ms ease;
}

.primary-nav .top-pill-nav__pill.is-active {
  background: #050505;
  color: #f7f5ef;
}

.top-pill-nav__hover-circle {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 1;
  width: var(--pill-circle-size);
  height: var(--pill-circle-size);
  border-radius: 999px;
  background: #050505;
  opacity: 0.92;
  pointer-events: none;
  transform: translateX(-50%) scale(0);
  will-change: transform;
}

.top-pill-nav__label-stack {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  line-height: 1;
}

.top-pill-nav__label,
.top-pill-nav__label-hover {
  grid-area: 1 / 1;
  display: block;
  line-height: 1;
  white-space: nowrap;
  will-change: transform, opacity;
}

.top-pill-nav__label-hover {
  color: #f7f5ef;
  opacity: 0;
  transform: translateY(135%);
}

.primary-nav .top-pill-nav__pill.is-active .top-pill-nav__hover-circle {
  display: none;
}

.primary-nav .top-pill-nav__pill.is-active .top-pill-nav__label {
  color: #f7f5ef;
}

.primary-nav .top-pill-nav__pill.is-active .top-pill-nav__label-hover {
  opacity: 0;
  transform: translateY(135%);
}

.mobile-nav-toggle {
  display: none;
}

.editorial-guide {
  position: fixed;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: var(--hairline);
  opacity: 0.18;
  pointer-events: none;
  transform-origin: top;
  animation: guide-draw 920ms 120ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.work-stage {
  position: relative;
  width: 100%;
  height: 100svh;
  overflow: hidden;
  background: transparent;
}

.home-lanyard-visual {
  position: absolute;
  z-index: 7;
  top: clamp(118px, 16.5vh, 166px);
  right: clamp(72px, 8.4vw, 152px);
  width: clamp(172px, 14.5vw, 260px);
  max-width: 22vw;
  pointer-events: none;
}

.home-lanyard-visual .static-lanyard {
  filter: drop-shadow(0 22px 36px rgba(0, 0, 0, 0.13));
  transform: scale(0.94);
  transform-origin: center top;
}

.home-lanyard-visual .static-lanyard-card {
  pointer-events: auto;
}

.mobile-work-home {
  display: none;
}

.mobile-services-section {
  display: none;
}

.mobile-services-flow {
  display: none;
}

.hero-title {
  max-width: 9ch;
  margin: 0;
  color: #050505;
  font-family: var(--font-display);
  font-size: clamp(76px, 11.5vw, 168px);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.84;
  text-transform: none;
}

.hero-title span {
  display: block;
}

.hero-copy {
  max-width: 26ch;
  margin-top: clamp(24px, 3vw, 40px);
  color: rgba(0, 0, 0, 0.62);
  font-family: var(--font-body);
  font-size: clamp(20px, 2.4vw, 30px);
  letter-spacing: -0.055em;
  line-height: 1.08;
}

.project-cover {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f2f2f2;
}

.project-cover > img,
.project-cover > video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
}

.work-preview-image,
.work-preview-video {
  transition:
    opacity 240ms ease,
    filter 520ms ease;
}

.work-preview-image {
  opacity: 1;
}

.work-preview-video {
  opacity: 0;
}

.is-video-active .work-preview-video {
  opacity: 1;
}

.is-video-active .work-preview-image {
  opacity: 0;
}

.shared-transition-layer {
  position: fixed;
  z-index: 999;
  inset: 0;
  overflow: visible;
  pointer-events: none;
  contain: layout paint style;
}

.shared-transition-layer.to-list {
  z-index: 999;
}

.shared-transition-layer.to-slider {
  z-index: 999;
}

.mobile-transition-clone {
  position: fixed;
  z-index: 1002;
  overflow: hidden;
  pointer-events: none;
  transform-origin: top left;
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.shared-transition-clone {
  position: fixed;
  top: 0;
  left: 0;
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  background: #111;
  contain: paint;
  transform-origin: 0 0;
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.shared-transition-clone img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
  user-select: none;
}

.shared-transition-clone.is-focus-clone {
  z-index: 120;
}

.work-stage.is-shared-transition-target .project-frame,
.work-stage.is-shared-transition-target .list-thumb {
  visibility: hidden !important;
  pointer-events: none;
  transition: none !important;
  animation: none !important;
}

.work-stage.is-shared-transition-target .work-index,
.work-stage.is-shared-transition-target .slider-instruction,
.work-stage.is-shared-transition-target .list-scroll-instruction,
.work-stage.is-shared-transition-target .list-left-index,
.work-stage.is-shared-transition-target .list-right-index,
.work-stage.is-shared-transition-target .list-center-line,
.work-stage.is-shared-transition-target .list-horizontal-line {
  opacity: 0;
  pointer-events: none;
  transition: none !important;
}

.work-stage.is-shared-transition-target.is-shared-transition-ready .work-index,
.work-stage.is-shared-transition-target.is-shared-transition-ready .slider-instruction,
.work-stage.is-shared-transition-target.is-shared-transition-ready .list-scroll-instruction,
.work-stage.is-shared-transition-target.is-shared-transition-ready .list-left-index,
.work-stage.is-shared-transition-target.is-shared-transition-ready .list-right-index,
.work-stage.is-shared-transition-target.is-shared-transition-ready .list-center-line,
.work-stage.is-shared-transition-target.is-shared-transition-ready .list-horizontal-line {
  opacity: 1;
  pointer-events: none;
}

.work-stage.is-shared-transition-target.to-list .list-left-index,
.work-stage.is-shared-transition-target.to-list .list-right-index {
  pointer-events: none;
}

.work-stage.is-shared-transition-target.to-list.is-shared-transition-ready .list-left-index,
.work-stage.is-shared-transition-target.to-list.is-shared-transition-ready .list-right-index {
  pointer-events: none;
}

.work-stage.is-shared-transition-target.to-list .list-center-line {
  pointer-events: none;
}

.work-stage.is-shared-transition-target.to-list.is-shared-transition-ready .list-center-line {
  pointer-events: none;
}

.work-stage.is-shared-transition-target.to-list .list-horizontal-line {
  pointer-events: none;
}

.work-stage.is-shared-transition-target.to-list.is-shared-transition-ready .list-horizontal-line {
  pointer-events: none;
}

.work-stage.is-shared-transition-target.stage-enter,
.work-stage.is-shared-transition-no-enter,
.work-stage.is-shared-transition-no-enter .work-stage-view {
  animation: none !important;
}

.site-shell.is-work-view-transitioning .view-switch button,
.site-shell.is-work-view-transitioning .primary-nav button {
  pointer-events: none;
}

.site-shell.is-work-view-transitioning .global-category-filter,
.site-shell.is-work-view-transitioning .global-category-filter button {
  animation: none !important;
  opacity: 1 !important;
  pointer-events: auto;
  transform: none !important;
  transition: none !important;
}

.site-shell.is-work-view-transitioning .work-category-slot {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

.site-shell.is-work-view-transitioning .project-frame,
.site-shell.is-work-view-transitioning .list-thumb,
.site-shell.is-work-view-transitioning .project-cover,
.site-shell.is-work-view-transitioning .project-cover > img,
.site-shell.is-work-view-transitioning .project-cover > video,
.site-shell.is-work-view-transitioning .list-project-line,
.site-shell.is-work-view-transitioning .list-meta-line {
  transition: none !important;
}

.work-stage.is-list-view {
  --list-copy-top: clamp(208px, 25.8vh, 292px);
  --list-wordmark-safe: clamp(188px, 21.5vh, 252px);
}

.category-filter {
  position: fixed;
  z-index: 70;
  top: clamp(36px, 4.4vh, 58px);
  right: auto;
  left: calc(50% + clamp(90px, 8.6vw, 140px));
  width: clamp(170px, 13vw, 210px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.16em;
  font-size: clamp(13px, 0.9vw, 17px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  opacity: 1;
  pointer-events: auto;
  transform: none !important;
  transition: opacity 180ms ease;
}

.site-shell:not(.is-work-view) .global-category-filter {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.category-filter button {
  position: relative;
  display: grid;
  width: 100%;
  min-width: 0;
  grid-template-columns: 26px 12px minmax(0, 1fr);
  column-gap: 6px;
  align-items: baseline;
  color: rgba(0, 0, 0, 0.32);
  text-align: left;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.category-filter button:hover,
.category-filter button.is-active {
  color: var(--ink);
}

.category-count {
  display: inline-block;
  min-width: 24px;
  font-size: 0.66em;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.03em;
  text-align: right;
}

.category-mark {
  display: inline-block;
  width: 12px;
  text-align: center;
  opacity: 0;
}

.category-filter button.is-active .category-mark {
  opacity: 1;
}

.category-label {
  white-space: nowrap;
}

.work-category-slot {
  display: contents;
}

@media (min-width: 768px) {
  .desktop-top-layer {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    inset: 0 0 auto 0;
    width: 100%;
    height: var(--desktop-top-safe-height);
    padding: 0;
    animation: none;
    background: transparent;
    backdrop-filter: none;
    pointer-events: none;
    transform: none;
  }

  .desktop-top-layer > * {
    pointer-events: auto;
  }

  .site-brand {
    position: fixed;
    top: var(--desktop-brand-top);
    left: var(--desktop-pad-x);
    z-index: 60;
    grid-column: auto;
    grid-row: auto;
    justify-self: auto;
    width: var(--desktop-brand-width);
    font-size: var(--desktop-brand-subtitle-size);
    line-height: var(--desktop-brand-line-height);
  }

  .site-brand span:first-child {
    margin-bottom: 12px;
    font-size: var(--desktop-brand-title-size);
  }

  .site-shell.is-work-view .work-lanyard-anchor {
    position: fixed;
    z-index: 45;
    top: 22px;
    left: clamp(278px, 20vw, 360px);
    width: 165px;
    height: 165px;
    pointer-events: auto;
  }

  .site-shell.is-work-view .work-lanyard-anchor .static-lanyard {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 22px 36px rgba(0, 0, 0, 0.13));
    transform: scale(1.12);
    transform-origin: center;
  }

  .site-shell.is-work-view .work-lanyard-anchor .static-lanyard-card {
    pointer-events: auto;
  }

  .desktop-view-toggle {
    position: fixed;
    z-index: 65;
    top: var(--desktop-toggle-top);
    left: var(--desktop-center-line-x);
    width: var(--desktop-toggle-width);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 0;
    transform: translateX(-50%);
    pointer-events: none;
  }

  .desktop-view-toggle button {
    pointer-events: auto;
    font-size: var(--desktop-toggle-font-size);
    line-height: 1;
    font-weight: 600;
    letter-spacing: -0.03em;
    color: rgba(0, 0, 0, 0.28);
    opacity: 0.42;
    transition:
      color 0.45s ease,
      opacity 0.45s ease;
  }

  .desktop-view-toggle button:first-child {
    justify-self: end;
    margin-right: var(--desktop-toggle-gap);
  }

  .desktop-view-toggle button:last-child {
    justify-self: start;
    margin-left: var(--desktop-toggle-gap);
  }

  .desktop-view-toggle button.is-active {
    color: #050505;
    opacity: 1;
  }

  .site-header .primary-nav {
    position: fixed;
    z-index: 70;
    top: var(--desktop-nav-top);
    right: var(--desktop-pad-x);
    left: auto;
    grid-column: auto;
    grid-row: auto;
    justify-self: auto;
    transform: none;
  }

  .site-shell.is-work-view .desktop-view-toggle,
  .site-shell.is-work-view.is-list-view .desktop-view-toggle,
  .site-shell.is-work-view-transitioning .desktop-view-toggle {
    position: fixed;
    top: var(--desktop-toggle-top);
    left: var(--desktop-center-line-x);
    width: var(--desktop-toggle-width);
    transform: translateX(-50%) !important;
    opacity: 1;
  }

  .site-shell.is-work-view .desktop-top-layer,
  .site-shell.is-work-view.is-list-view .desktop-top-layer,
  .site-shell.is-work-view-transitioning .desktop-top-layer {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    transform: none !important;
    opacity: 1;
  }

  .site-shell.is-work-view .site-header .primary-nav,
  .site-shell.is-work-view.is-list-view .site-header .primary-nav,
  .site-shell.is-work-view-transitioning .site-header .primary-nav {
    position: fixed;
    top: var(--desktop-nav-top);
    right: var(--desktop-pad-x);
    left: auto;
    transform: none !important;
    opacity: 1;
  }

  .site-shell.is-work-view-transitioning .desktop-view-toggle,
  .site-shell.is-work-view-transitioning .site-header .primary-nav,
  .site-shell.is-work-view-transitioning .desktop-top-layer {
    transition: none !important;
  }

  .site-header .top-pill-nav__list {
    gap: var(--desktop-pill-gap);
    padding: 2px;
  }

  .site-header .top-pill-nav__pill {
    height: var(--desktop-pill-height);
    padding: 0 var(--desktop-pill-pad-x);
    font-size: var(--desktop-pill-font-size);
  }

  .site-shell.is-work-view .work-category-slot,
  .site-shell.is-work-view.is-list-view .work-category-slot {
    position: fixed;
    top: 26px;
    left: calc(50% + 120px);
    right: 222px;
    z-index: 56;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    pointer-events: none;
    transform: none !important;
  }

  .site-shell.is-work-view .work-category-panel,
  .site-shell.is-work-view.is-list-view .work-category-panel {
    position: static;
    z-index: auto;
    display: grid;
    width: 128px;
    gap: 2px;
    align-items: start;
    padding-top: 0;
    border-top: 0;
    font-family: var(--font-body), "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
    text-transform: uppercase;
    pointer-events: auto;
  }

  .site-shell.is-work-view .work-category-panel .work-category-panel__item {
    position: relative;
    display: grid;
    grid-template-columns: 18px 1fr;
    align-items: baseline;
    column-gap: 8px;
    width: 100%;
    border: 0;
    padding: 0;
    background: transparent;
    color: rgba(0, 0, 0, 0.34);
    text-align: left;
    cursor: pointer;
    transition:
      color 0.22s ease;
  }

  .site-shell.is-work-view .work-category-panel .work-category-panel__item:hover {
    color: rgba(0, 0, 0, 0.68);
  }

  .site-shell.is-work-view .work-category-panel .work-category-panel__item.is-active {
    color: #050505;
  }

  .site-shell.is-work-view .work-category-panel .work-category-panel__item.is-active::before {
    content: "";
    position: absolute;
    left: -10px;
    top: 50%;
    width: 6px;
    height: 1px;
    background: #050505;
    transform: translateY(-50%);
  }

  .site-shell.is-work-view .work-category-panel .work-category-panel__count {
    font-size: 8px;
    line-height: 1;
    letter-spacing: -0.01em;
    color: rgba(0, 0, 0, 0.42);
  }

  .site-shell.is-work-view .work-category-panel .work-category-panel__label {
    font-size: 10px;
    line-height: 1.05;
    letter-spacing: -0.01em;
    white-space: nowrap;
  }

  .site-shell.is-work-view .work-category-panel .work-category-panel__item.is-active .work-category-panel__label {
    font-weight: 600;
  }

  .site-shell.is-work-view .work-category-panel .work-category-panel__item.is-active .work-category-panel__meta {
    color: rgba(0, 0, 0, 0.68);
  }

  .site-shell.is-work-view .work-category-panel .category-mark {
    display: none;
  }

  .site-shell:not(.is-work-view) .work-lanyard-anchor {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
  }

  .center-divider {
    left: var(--desktop-center-line-x);
    display: block;
  }

  .site-shell.is-about-view .desktop-view-toggle,
  .site-shell.is-contact-view .desktop-view-toggle {
    opacity: 1;
    pointer-events: auto;
  }

  .site-shell.is-about-view .primary-nav,
  .site-shell.is-contact-view .primary-nav {
    top: var(--desktop-nav-top);
    right: var(--desktop-pad-x);
  }
}

.slider-viewport {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
}

.portfolio-scroller {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  touch-action: pan-x;
  overscroll-behavior: contain;
  scrollbar-width: none;
  user-select: none;
  cursor: grab;
}

.portfolio-scroller:active {
  cursor: grabbing;
}

.portfolio-track {
  display: flex;
  width: max-content;
  min-width: 100%;
  align-items: center;
  gap: clamp(10px, 0.85vw, 18px);
  padding: clamp(44px, 7vh, 90px) 19vw;
}

.project-frame {
  position: relative;
  flex: 0 0 auto;
  width: clamp(188px, 17vw, 300px);
  aspect-ratio: 4 / 3;
  height: auto;
  overflow: hidden;
  background: #161616;
  cursor: pointer;
  isolation: isolate;
  transform-origin: center;
  will-change: transform, opacity;
  transition:
    opacity 260ms ease;
}

.frame-media {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
  background: #111;
  transform-origin: center;
}

.project-frame.frame-wide {
  width: clamp(188px, 17vw, 300px);
}

.project-frame.frame-featured {
  width: clamp(188px, 17vw, 300px);
}

.project-frame.frame-standard {
  width: clamp(188px, 17vw, 300px);
}

.project-frame.frame-narrow {
  width: clamp(188px, 17vw, 300px);
}

.project-frame img,
.project-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter:
    saturate(var(--frame-saturation, 0.9))
    contrast(1.02)
    brightness(var(--frame-brightness, 0.92));
  pointer-events: none;
  transition:
    opacity 240ms ease,
    filter 600ms ease;
}

.frame-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0);
  pointer-events: none;
  transition: background 400ms ease;
}

.frame-meta {
  position: absolute;
  z-index: 2;
  right: 10px;
  bottom: 9px;
  left: 10px;
  display: flex;
  justify-content: space-between;
  color: white;
  font-size: clamp(9px, 0.68vw, 13px);
  letter-spacing: -0.025em;
  opacity: 0;
  pointer-events: none;
  transform: translateY(5px);
  transition:
    opacity 300ms ease,
    transform 400ms cubic-bezier(0.22, 1, 0.36, 1);
}

.project-frame.is-slider-active .frame-shade,
.project-frame:focus-visible .frame-shade {
  background: rgba(0, 0, 0, 0.08);
}

.project-frame.is-slider-active .frame-meta,
.project-frame:focus-visible .frame-meta {
  opacity: 1;
  transform: translateY(0);
}

.slider-instruction {
  margin: 12px var(--edge) 0;
  color: #aaa9a5;
  font-size: 9px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.big-wordmark {
  position: absolute;
  z-index: 2;
  top: auto;
  right: var(--edge);
  bottom: clamp(8px, 1vw, 18px);
  left: var(--edge);
  width: auto;
  pointer-events: none;
}

.work-wordmark {
  user-select: none;
  will-change: transform, opacity;
}

.big-wordmark-inner {
  position: relative;
  display: block;
  width: 100%;
}

.big-wordmark-image {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  user-select: none;
}

.big-wordmark-split {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: end;
  pointer-events: none;
}

.big-wordmark-part {
  display: block;
  height: auto;
  max-width: 100%;
  user-select: none;
  will-change: transform, opacity;
}

.work-wordmark__full,
.work-wordmark__split {
  will-change: transform, opacity;
}

.work-wordmark--slider .work-wordmark__full {
  opacity: 1;
}

.work-wordmark--slider .work-wordmark__split {
  opacity: 0;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: clamp(18px, 2.8vw, 56px);
}

.work-wordmark--slider .work-wordmark__hidden {
  justify-self: end;
  width: min(100%, clamp(420px, 39vw, 860px));
}

.work-wordmark--slider .work-wordmark__new-media {
  justify-self: start;
  width: min(100%, clamp(520px, 48vw, 1060px));
}

.work-index {
  position: absolute;
  z-index: 4;
  right: var(--edge);
  bottom: var(--edge);
  color: rgba(0, 0, 0, 0.42);
  font-size: 9px;
  letter-spacing: 0.06em;
}

.portfolio-list-wrap {
  position: absolute;
  z-index: 16;
  inset: 0;
  overflow-x: hidden;
  overflow-y: auto;
  --list-scroll: 0px;
  --list-row-height: clamp(22px, 1.32vw, 30px);
  font-size: clamp(16px, 1.14vw, 24px);
  line-height: 1;
  overscroll-behavior: contain;
  scrollbar-width: none;
  touch-action: pan-y;
  text-transform: uppercase;
}

.portfolio-list-wrap::-webkit-scrollbar {
  display: none;
}

.list-scroll-space {
  position: relative;
  z-index: 0;
  height: 180vh;
  pointer-events: none;
}

.list-left-index,
.list-right-index {
  position: fixed;
  z-index: 22;
  top: var(--list-copy-top, clamp(200px, 24vh, 290px));
  height: calc(100svh - var(--list-copy-top, clamp(200px, 24vh, 290px)) - var(--list-wordmark-safe, clamp(164px, 20vh, 240px)));
  overflow: hidden;
  transition: none;
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0,
    #000 24px,
    #000 calc(100% - 38px),
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 0,
    #000 24px,
    #000 calc(100% - 38px),
    transparent 100%
  );
}

.list-left-index {
  left: var(--edge);
  width: min(45vw, 720px);
}

.list-right-index {
  right: var(--edge);
  width: min(33vw, 560px);
}

.list-left-track,
.list-right-track {
  position: relative;
  height: 100%;
  transition: none;
  will-change: auto;
}

.list-project-line,
.list-meta-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  display: grid;
  height: var(--list-row-height);
  align-items: center;
  color: var(--ink);
  font-size: inherit;
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 1.02;
  text-align: left;
  transform: translate3d(var(--list-row-x, 0px), calc(-50% + var(--list-row-y, 0px)), 0);
  will-change: transform, opacity;
  transition:
    opacity 180ms ease,
    background-color 220ms ease,
    color 220ms ease;
}

.list-project-line {
  grid-template-columns: clamp(38px, 10.4vw, 212px) 1fr;
}

.list-meta-line {
  grid-template-columns: minmax(150px, 1fr) clamp(62px, 5.6vw, 106px);
  column-gap: clamp(16px, 2.2vw, 48px);
}

.list-number,
.list-year {
  letter-spacing: -0.045em;
}

.list-year {
  text-align: right;
}

.list-number,
.list-title-text,
.list-client,
.list-year {
  width: max-content;
  max-width: 100%;
  transition:
    background-color 260ms ease,
    color 260ms ease,
    padding 260ms ease,
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.list-project-line.is-scroll-current .list-title-text,
.list-project-line.is-scroll-current .list-number,
.list-meta-line.is-scroll-current .list-client,
.list-meta-line.is-scroll-current .list-year {
  background: var(--ink);
  color: var(--paper);
  font-weight: 800;
  padding: 0.01em 0.16em 0.06em;
}

.list-image-rail {
  position: fixed;
  z-index: 18;
  top: var(--list-copy-top, clamp(200px, 24vh, 290px));
  bottom: var(--list-wordmark-safe, clamp(164px, 20vh, 240px));
  left: 50%;
  width: clamp(300px, 28vw, 520px);
  overflow: visible;
  transform: translateX(-50%);
  pointer-events: none;
}

.list-center-line {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(0, 0, 0, 0.22);
  transform: translateX(-50%);
  pointer-events: none;
}

.list-horizontal-line {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: max(0px, calc(50% - 332px));
  left: max(0px, calc(50% - 332px));
  height: 1px;
  background: rgba(0, 0, 0, 0.34);
  transform: translateY(-50%);
  pointer-events: none;
}

.list-rail-track {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: visible;
  pointer-events: none;
}

.list-thumb {
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--thumb-width, clamp(104px, 7.6vw, 154px));
  aspect-ratio: 4 / 3;
  height: auto;
  overflow: hidden;
  border: 0;
  background: #141414;
  animation: none;
  pointer-events: auto;
  transform-origin: center;
  will-change: transform, opacity;
  transition:
    width 560ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 420ms ease,
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 520ms ease;
}

.list-thumb:not(.is-list-visible) {
  visibility: hidden;
}

.list-thumb img,
.list-thumb-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition:
    opacity 220ms ease,
    filter 420ms ease;
}

.list-thumb img {
  opacity: 1;
}

.list-thumb-video {
  opacity: 0;
}

.list-thumb.is-video-active .list-thumb-video {
  opacity: 1;
}

.list-thumb.is-video-active img {
  opacity: 0;
}

.list-thumb:not(.is-list-center) img,
.list-thumb:not(.is-list-center) .list-thumb-video {
  filter: saturate(0.9) contrast(1.02) brightness(0.88);
}

.list-thumb.is-list-center {
  box-shadow: none;
}

.list-scroll-instruction {
  position: fixed;
  z-index: 17;
  bottom: clamp(194px, 28vh, 288px);
  left: calc(50% - min(15vw, 196px));
  margin: 0;
  color: rgba(0, 0, 0, 0.45);
  font-size: clamp(8px, 0.58vw, 10px);
  letter-spacing: -0.035em;
  text-transform: none;
}

.work-wordmark--list {
  position: fixed;
  z-index: 5;
  right: var(--edge);
  bottom: clamp(6px, 1.6vh, 22px);
  left: var(--edge);
  width: auto;
  transform: none;
}

.work-wordmark--list .big-wordmark-inner {
  width: 100%;
}

.work-wordmark--list .work-wordmark__full {
  opacity: 0;
}

.work-wordmark--list .work-wordmark__split {
  opacity: 1;
  width: 100%;
  grid-template-columns: minmax(0, 1fr) clamp(190px, 24vw, 430px) minmax(0, 1fr);
  align-items: end;
}

.work-wordmark--list .work-wordmark__hidden {
  grid-column: 1;
  justify-self: end;
  width: min(100%, clamp(220px, 26vw, 560px));
}

.work-wordmark--list .work-wordmark__new-media {
  grid-column: 3;
  justify-self: start;
  width: min(100%, clamp(250px, 31vw, 680px));
}

.text-section {
  position: relative;
  z-index: 5;
  min-height: 100svh;
  overflow-y: auto;
  padding: clamp(130px, 18vh, 210px) var(--edge) 50px;
  background: var(--paper);
}

.section-back {
  position: fixed;
  z-index: 45;
  right: var(--edge);
  bottom: var(--edge);
  font-size: var(--ui-size);
  letter-spacing: -0.04em;
}

.section-kicker {
  margin-bottom: clamp(28px, 5vh, 68px);
  font-size: 10px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.text-section h1 {
  max-width: 95vw;
  margin: 0;
  font-size: clamp(54px, 8.7vw, 180px);
  font-weight: 700;
  letter-spacing: -0.075em;
  line-height: 0.82;
}

.text-section h1 em {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.about-section {
  position: relative;
  z-index: 5;
  height: 100svh;
  min-height: 100svh;
  overflow: hidden;
  background: #f1f0ec;
  color: #050505;
}

.about-main {
  position: relative;
  display: grid;
  height: 100%;
  min-height: 0;
  grid-template-columns: minmax(300px, 34vw) minmax(0, 1fr) minmax(250px, 27vw);
  align-items: center;
  column-gap: clamp(28px, 4.6vw, 76px);
  padding: 0 var(--edge) clamp(72px, 9vh, 96px);
  padding-top: max(var(--desktop-top-safe-height), clamp(118px, 15vh, 146px));
}

.about-panel {
  min-width: 0;
}

.about-panel-copy {
  display: flex;
  position: relative;
  z-index: 3;
  grid-column: 1;
  height: auto;
  min-height: 0;
  flex-direction: column;
  padding: 0;
}

.about-hero-left {
  max-width: 50vw;
}

.about-copy-main {
  max-width: min(540px, 100%);
}

.about-kicker {
  margin: 0 0 clamp(36px, 4vw, 58px);
  color: rgba(5, 5, 5, 0.5);
  font-family: var(--font-body), "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(11px, 0.85vw, 14px);
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1;
  text-transform: uppercase;
}

.about-section .about-title,
.about-section .about-hero-title {
  display: flex;
  max-width: 8.4ch;
  flex-direction: column;
  margin: 0;
  color: #050505;
  font-family: var(--font-display), "Inter Tight", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(72px, 6.8vw, 112px);
  font-weight: 430;
  letter-spacing: -0.06em;
  line-height: 1.04;
  text-transform: none;
}

.about-section .about-title span,
.about-section .about-hero-title span {
  display: block;
  white-space: nowrap;
}

.about-lower {
  display: grid;
  grid-template-columns: minmax(240px, 0.82fr) minmax(280px, 1.18fr);
  gap: clamp(22px, 4.5vw, 64px);
  align-items: end;
  margin-top: auto;
  padding-top: clamp(22px, 3.8vh, 48px);
}

.about-description {
  max-width: clamp(360px, 32vw, 540px);
  margin: clamp(34px, 4vw, 58px) 0 0;
  color: rgba(0, 0, 0, 0.72);
  font-family: var(--font-body), "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(16px, 1.25vw, 21px);
  letter-spacing: -0.035em;
  line-height: 1.32;
}

.about-services {
  position: relative;
  z-index: 3;
  grid-column: 3;
  width: 100%;
  max-width: 370px;
  justify-self: end;
  border-top: 1px solid rgba(5, 5, 5, 0.2);
}

.about-service-row {
  display: grid;
  width: 100%;
  min-height: clamp(34px, 5vh, 46px);
  grid-template-columns: 38px 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(5, 5, 5, 0.2);
  color: #050505;
  text-align: left;
  transition: opacity 180ms ease;
}

.about-service-row:hover {
  opacity: 0.55;
}

.about-service-row span:first-child {
  align-self: center;
  color: rgba(5, 5, 5, 0.62);
  font-size: clamp(9px, 0.64vw, 11px);
  letter-spacing: -0.02em;
}

.about-service-row span:last-child {
  font-size: clamp(13px, 0.95vw, 17px);
  letter-spacing: -0.035em;
  line-height: 1;
}

.about-visual {
  position: relative;
  height: 100svh;
  isolation: isolate;
  overflow: hidden;
  border-left: 1px solid rgba(5, 5, 5, 0.16);
  background:
    radial-gradient(circle at 36% 26%, rgba(255, 255, 255, 0.66), transparent 34%),
    radial-gradient(circle at 72% 68%, rgba(255, 255, 255, 0.32), transparent 38%),
    #d8d5cf;
}

.about-orb {
  position: absolute;
  z-index: 0;
  top: 16%;
  left: 18%;
  width: min(34vw, 420px);
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.5), transparent 64%);
  filter: blur(12px);
  pointer-events: none;
}

.about-hero-copy,
.about-ai-label,
.about-typewriter,
.about-type-cursor,
.about-actions,
.about-pill,
.about-pill-outline,
.about-photographer {
  display: none;
}

.about-hero-visual {
  position: absolute;
  z-index: 1;
  left: 51.7%;
  bottom: 0;
  width: clamp(390px, 36vw, 620px);
  height: min(79vh, 760px);
  transform: translateX(-50%);
  transform-style: preserve-3d;
  perspective: 1000px;
  pointer-events: none;
  --head-x: 0px;
  --head-y: 0px;
  --head-rotate-x: 0deg;
  --head-rotate-y: 0deg;
  --head-rotate-z: 0deg;
}

.hero-body,
.hero-head {
  position: absolute;
  display: block;
  object-fit: contain;
  object-position: bottom center;
  pointer-events: none;
  user-select: none;
}

.hero-body {
  z-index: 1;
  left: 50%;
  bottom: 0;
  width: auto;
  height: 100%;
  transform: translateX(-50%) translateZ(0);
  filter: drop-shadow(0 28px 45px rgba(0, 0, 0, 0.22));
}

.hero-head {
  z-index: 2;
  top: 3.7%;
  left: 50.2%;
  width: auto;
  height: 43.5%;
  transform:
    translate3d(calc(-50% + var(--head-x)), var(--head-y), 44px)
    rotateX(var(--head-rotate-x))
    rotateY(var(--head-rotate-y))
    rotateZ(var(--head-rotate-z));
  transform-origin: 50% 78%;
  will-change: transform;
}

.about-corner-logo {
  position: absolute;
  z-index: 3;
  left: var(--edge);
  bottom: clamp(20px, 3vh, 34px);
  width: clamp(70px, 7.6vw, 116px);
  height: auto;
  pointer-events: none;
  user-select: none;
}

.about-back {
  position: absolute;
  z-index: 4;
  right: var(--edge);
  bottom: clamp(26px, 4vh, 46px);
  font-size: clamp(15px, 1vw, 19px);
  letter-spacing: -0.045em;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}

@media (min-width: 768px) {
  .about-hero-left {
    max-width: 50vw;
  }

  .about-section .about-hero-title {
    max-width: 8.4ch;
    font-size: clamp(72px, 6.8vw, 112px);
    font-weight: 430;
    letter-spacing: -0.06em;
    line-height: 1.04;
  }
}

@media (min-width: 768px) and (max-width: 1279px) {
  .about-section .about-hero-title {
    max-width: 8.6ch;
    font-size: clamp(58px, 5.8vw, 76px);
    letter-spacing: -0.055em;
    line-height: 1.05;
  }
}

@media (min-width: 1280px) and (max-width: 1439px) {
  .about-section .about-hero-title {
    font-size: clamp(72px, 6.4vw, 94px);
    letter-spacing: -0.058em;
    line-height: 1.04;
  }
}

@media (min-width: 1440px) and (max-width: 1727px) {
  .about-section .about-hero-title {
    font-size: clamp(86px, 6.6vw, 112px);
    letter-spacing: -0.06em;
    line-height: 1.04;
  }
}

@media (min-width: 1728px) {
  .about-section .about-hero-title {
    font-size: clamp(100px, 5.8vw, 128px);
    letter-spacing: -0.06em;
    line-height: 1.04;
  }
}

.contact-section {
  min-height: 100svh;
  overflow: hidden auto;
  padding: 0 var(--edge) clamp(44px, 5vh, 64px);
  background: rgba(250, 250, 250, 0.96);
}

.contact-section .section-back {
  position: absolute;
  right: clamp(28px, 3.6vw, 56px);
  bottom: clamp(28px, 4.6vh, 58px);
  font-size: clamp(16px, 1.05vw, 20px);
  letter-spacing: -0.045em;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}

.contact-hero {
  display: grid;
  min-height: calc(100svh - clamp(44px, 5vh, 64px));
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
  column-gap: clamp(44px, 4.8vw, 78px);
  padding: 0 0 clamp(86px, 10vh, 112px);
  padding-top: max(var(--desktop-top-safe-height), clamp(152px, 17vh, 186px));
}

.contact-desktop-left,
.contact-desktop-right {
  min-width: 0;
}

.contact-desktop-left {
  display: flex;
  align-items: flex-start;
}

.contact-copy {
  max-width: min(680px, 100%);
  padding-right: clamp(10px, 1.8vw, 28px);
}

.contact-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(24px, 3vh, 36px);
}

.contact-desktop-right {
  align-self: stretch;
  justify-content: flex-start;
  padding-left: clamp(26px, 3vw, 48px);
}

.contact-lanyard-block {
  display: flex;
  width: 100%;
  min-height: clamp(200px, 23vh, 250px);
  align-items: flex-start;
  justify-content: center;
  margin-bottom: clamp(6px, 1.2vh, 12px);
}

.contact-visual {
  width: clamp(170px, 14.6vw, 246px);
  max-width: 100%;
  opacity: 0.96;
  pointer-events: none;
}

.contact-lanyard-visual {
  width: clamp(172px, 14vw, 228px);
  opacity: 1;
  pointer-events: auto;
}

.contact-visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  user-select: none;
}

.static-lanyard {
  position: relative;
  width: 100%;
  aspect-ratio: 320 / 300;
  overflow: visible;
  isolation: isolate;
  touch-action: none;
}

.static-lanyard-rope {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: visible;
  pointer-events: none;
}

.static-lanyard-band,
.static-lanyard-shadow {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.static-lanyard-shadow {
  stroke: rgba(0, 0, 0, 0.16);
  stroke-width: 12;
  transform: translate(2px, 3px);
}

.static-lanyard-band {
  stroke: #0a0a0a;
  stroke-width: 8.5;
}

.static-lanyard-card {
  position: absolute;
  z-index: 2;
  top: 58.6%;
  left: 50%;
  width: 57%;
  aspect-ratio: 0.72;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(238, 238, 236, 0.88)),
    #fff;
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  cursor: grab;
  pointer-events: auto;
  transform:
    translate(-50%, -50%)
    translate3d(var(--lanyard-x, 0), var(--lanyard-y, 0), 0)
    rotate(var(--lanyard-rotate, 0deg));
  transform-origin: 50% 12%;
  transition:
    box-shadow 220ms ease,
    filter 220ms ease;
  will-change: transform;
}

.static-lanyard-card.is-dragging {
  cursor: grabbing;
  box-shadow:
    0 28px 64px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
  filter: contrast(1.02);
}

.static-lanyard-hole {
  position: absolute;
  z-index: 2;
  top: 8%;
  left: 50%;
  width: 17%;
  aspect-ratio: 1;
  border: 1px solid rgba(0, 0, 0, 0.22);
  border-radius: 999px;
  background: #fbfbfb;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.11);
  transform: translateX(-50%);
}

.static-lanyard-card-inner {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
  background: #fff;
  transform-style: preserve-3d;
}

.static-lanyard-card-face {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
  border-radius: inherit;
  backface-visibility: hidden;
}

.static-lanyard-card-back {
  transform: rotateY(180deg);
}

.static-lanyard-card-face img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  opacity: 0.98;
  pointer-events: none;
}

.contact-kicker {
  margin-bottom: clamp(34px, 4.6vh, 52px);
  font-size: clamp(10px, 0.72vw, 13px);
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.contact-title {
  max-width: none;
  margin: 0;
}

.contact-title-main,
.contact-title-italic {
  display: block;
}

.contact-title-main {
  font-family: var(--font-display), "Inter Tight", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(58px, 5vw, 88px);
  font-weight: 800;
  letter-spacing: -0.072em;
  line-height: 0.9;
}

.contact-title-italic {
  margin-top: clamp(4px, 0.7vh, 10px);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(56px, 5.18vw, 90px);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.86;
}

.contact-intro {
  max-width: 34ch;
  margin: clamp(40px, 5vh, 56px) 0 0;
  color: rgba(0, 0, 0, 0.54);
  font-size: clamp(17px, 1.35vw, 23px);
  letter-spacing: -0.045em;
  line-height: 1.42;
}

.contact-info {
  width: 100%;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.contact-row {
  display: grid;
  grid-template-columns: clamp(120px, 9vw, 160px) minmax(0, 1fr);
  gap: clamp(22px, 2.4vw, 36px);
  align-items: center;
  min-height: clamp(78px, 8.4vh, 92px);
  padding: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.contact-label {
  color: rgba(0, 0, 0, 0.48);
  font-size: clamp(11px, 0.76vw, 12px);
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.contact-value {
  color: var(--ink);
  font-size: clamp(17px, 1.18vw, 20px);
  letter-spacing: -0.042em;
  line-height: 1.2;
}

.contact-value a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: opacity 180ms ease;
}

.contact-value a:hover {
  opacity: 0.5;
}

.project-overlay {
  position: fixed;
  z-index: 99999;
  inset: 0;
  width: 100vw;
  height: 100svh;
  overflow: hidden;
  background: #000;
  color: #fff;
  --video-progress: 0%;
}

.overlay-controls {
  position: absolute;
  z-index: 110;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  padding: var(--edge);
  font-size: var(--ui-size);
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.overlay-back {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 0.92;
  text-transform: none;
}

.sound-control,
.image-view-label {
  justify-self: center;
}

.info-control {
  justify-self: end;
}

.video-stage {
  position: absolute;
  z-index: 101;
  inset: 11.5vh 0 9.5vh;
  overflow: hidden;
  background: #050505;
  transform-origin: top left;
}

.project-overlay.has-video .video-stage {
  inset: 10vh clamp(66px, 6vw, 130px) 8vh;
}

.project-video,
.project-poster,
.embed-player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.project-video,
.project-poster {
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.88) contrast(1.02) brightness(0.88);
}

.project-poster {
  z-index: 1;
  display: none;
}

.project-poster.is-visible {
  display: block;
}

.image-stage {
  background: #000;
}

.project-detail-image {
  object-fit: contain;
  object-position: center;
  filter: none;
  animation: media-reveal 900ms 120ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.project-video-detail {
  position: absolute;
  inset: 0;
  z-index: 2;
  object-fit: contain;
  object-position: center;
  filter: none;
}

.video-scrubber {
  position: absolute;
  z-index: 112;
  top: 50%;
  left: var(--edge);
  display: grid;
  height: min(54vh, 520px);
  grid-template-rows: auto 1fr auto;
  gap: 14px;
  align-items: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(10px, 0.82vw, 14px);
  letter-spacing: -0.03em;
  line-height: 1;
  transform: translateY(-50%);
  user-select: none;
}

.video-scrubber.is-hidden {
  display: none;
}

.video-scrubber__time {
  min-width: 4.5ch;
  color: rgba(255, 255, 255, 0.84);
  font-variant-numeric: tabular-nums;
  text-align: left;
}

.video-scrubber__track {
  position: relative;
  width: 22px;
  height: 100%;
  cursor: ns-resize;
  outline: none;
  touch-action: none;
}

.video-scrubber__track::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(255, 255, 255, 0.26);
  content: "";
  transform: translateX(-50%);
}

.video-scrubber__progress {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: var(--video-progress);
  background: rgba(255, 255, 255, 0.92);
  transform: translateX(-50%);
}

.video-scrubber__thumb {
  position: absolute;
  top: var(--video-progress);
  left: 50%;
  width: 8px;
  height: 8px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 999px;
  background: #000;
  box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.22);
  transform: translate(-50%, -50%);
}

.video-scrubber__track:focus-visible .video-scrubber__thumb {
  box-shadow:
    0 0 0 5px rgba(0, 0, 0, 0.22),
    0 0 0 7px rgba(255, 255, 255, 0.25);
}

@keyframes chrome-rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes guide-draw {
  from {
    opacity: 0;
    transform: scaleY(0);
  }
  to {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes pageRevealUp {
  from {
    opacity: 0;
    filter: blur(2px);
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes media-reveal {
  from {
    opacity: 0;
    transform: scale(1.035);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes thumb-rise {
  from {
    opacity: 0;
    transform: translateY(34px) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes about-cursor-blink {
  0%,
  48% {
    opacity: 1;
  }
  49%,
  100% {
    opacity: 0;
  }
}

.play-control {
  position: absolute;
  z-index: 114;
  top: 50%;
  left: 50%;
  display: flex;
  flex-direction: column;
  gap: 0.25em;
  align-items: center;
  max-width: 16rem;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: clamp(10px, 0.85vw, 16px);
  letter-spacing: -0.035em;
  line-height: 0.88;
  text-align: center;
  text-transform: uppercase;
  pointer-events: auto;
  mix-blend-mode: difference;
  transition: opacity 180ms ease;
}

.play-control.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.play-control.is-playing {
  opacity: 0.52;
}

.play-control.is-playing:hover,
.play-control.is-playing:focus-visible {
  opacity: 1;
}

.play-control.is-paused {
  opacity: 1;
}

.play-control span:last-child {
  font-size: 0.58em;
  opacity: 0.72;
}

.edge-nav {
  position: absolute;
  z-index: 108;
  top: 50%;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transform: translateY(-50%);
  font-size: clamp(10px, 0.84vw, 16px);
  line-height: 0.9;
  text-transform: uppercase;
}

.edge-nav span:first-child {
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.72em;
  transition: color 180ms ease;
}

.edge-nav:hover span:first-child {
  color: #fff;
}

.edge-nav-left {
  left: var(--edge);
  align-items: flex-start;
}

.edge-nav-right {
  right: var(--edge);
  align-items: flex-end;
}

.video-progress {
  position: absolute;
  z-index: 109;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.14);
  pointer-events: none;
}

.video-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 160ms linear;
}

.video-progress.is-hidden {
  display: none;
}

.project-info {
  position: absolute;
  z-index: 120;
  top: 0;
  right: 0;
  display: flex;
  width: min(43vw, 690px);
  height: 100%;
  flex-direction: column;
  padding: var(--edge);
  background: #f1efe7;
  color: #080808;
}

.info-close {
  align-self: flex-end;
  font-size: var(--ui-size);
}

.info-title {
  margin-top: clamp(80px, 13vh, 150px);
}

.info-title > span {
  font-size: 10px;
  text-transform: uppercase;
}

.info-title h2 {
  max-width: 8ch;
  margin: 0.2em 0 0;
  font-size: clamp(58px, 6.6vw, 112px);
  font-weight: 700;
  letter-spacing: -0.075em;
  line-height: 0.82;
}

.project-info dl {
  margin: auto 0 0;
  border-top: 1px solid rgba(0, 0, 0, 0.25);
}

.project-info dl div {
  display: grid;
  grid-template-columns: 0.36fr 1fr;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  font-size: clamp(12px, 1vw, 16px);
}

.project-info dt {
  font-size: 0.68em;
  text-transform: uppercase;
}

.project-info dd {
  margin: 0;
}

.project-info > p {
  max-width: 44ch;
  margin: clamp(35px, 7vh, 90px) 0 0;
  font-size: clamp(16px, 1.25vw, 22px);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

@media (max-width: 1023px) {
  .view-switch,
  .site-shell.is-list-view .view-switch {
    width: clamp(220px, 28vw, 284px);
    font-size: 16px;
  }

  .view-switch button:first-child {
    margin-right: clamp(24px, 2.4vw, 34px);
  }

  .view-switch button:last-child {
    margin-left: clamp(24px, 2.4vw, 34px);
  }

  .category-filter {
    top: clamp(36px, 4.4vh, 58px);
    right: auto;
    left: calc(50% + 90px);
    width: 170px;
  }

  .contact-hero {
    grid-template-columns: minmax(0, 1fr);
    align-content: center;
    row-gap: clamp(54px, 8vh, 82px);
    padding-top: 132px;
  }

  .contact-copy {
    max-width: 760px;
    padding-right: 0;
  }

  .contact-right {
    width: min(100%, 660px);
    justify-self: end;
  }

  .contact-desktop-right {
    padding-left: 0;
  }

  .contact-lanyard-block {
    min-height: auto;
    justify-content: flex-start;
    margin-bottom: 0;
  }

  .contact-visual {
    width: clamp(150px, 20vw, 210px);
  }
}

@media (min-width: 768px) {
  :root {
    --desktop-pad-x: clamp(22px, 3vw, 56px);
    --desktop-top-y: clamp(22px, 2vw, 36px);
    --desktop-center-line-x: 50%;
    --desktop-top-safe-height: clamp(132px, 12vw, 190px);
    --desktop-brand-title-size: clamp(17px, 1.35vw, 23px);
    --desktop-brand-subtitle-size: clamp(13px, 1.05vw, 17px);
    --desktop-toggle-top: clamp(24px, 2vw, 34px);
    --desktop-toggle-width: clamp(150px, 12vw, 190px);
    --desktop-toggle-font-size: clamp(14px, 1.1vw, 17px);
    --desktop-toggle-gap: clamp(16px, 1.5vw, 24px);
    --desktop-nav-top: clamp(20px, 1.8vw, 32px);
    --desktop-pill-height: clamp(30px, 2.5vw, 38px);
    --desktop-pill-font-size: clamp(13px, 1vw, 16px);
    --desktop-pill-pad-x: clamp(12px, 1.1vw, 18px);
    --contact-content-top: clamp(190px, 20vh, 270px);
    --contact-left-max: clamp(500px, 42vw, 760px);
    --contact-right-max: clamp(520px, 40vw, 740px);
    --contact-title-main-size: clamp(58px, 6.2vw, 118px);
    --contact-title-accent-size: clamp(52px, 5.3vw, 100px);
    --contact-copy-size: clamp(17px, 1.45vw, 25px);
    --contact-info-label-size: clamp(11px, 0.8vw, 13px);
    --contact-info-value-size: clamp(17px, 1.35vw, 24px);
    --contact-lanyard-size: clamp(160px, 16vw, 260px);
  }

  .site-shell.is-contact-view .work-category-slot {
    display: none;
  }

  .site-shell.is-contact-view .site-brand {
    top: var(--desktop-top-y);
    left: var(--desktop-pad-x);
  }

  .site-shell.is-contact-view .desktop-view-toggle {
    top: var(--desktop-toggle-top);
    left: var(--desktop-center-line-x);
    width: var(--desktop-toggle-width);
    transform: translateX(-50%) !important;
  }

  .site-shell.is-contact-view .desktop-view-toggle button {
    font-size: var(--desktop-toggle-font-size);
    font-weight: 600;
  }

  .site-shell.is-contact-view .desktop-view-toggle button:first-child {
    margin-right: var(--desktop-toggle-gap);
  }

  .site-shell.is-contact-view .desktop-view-toggle button:last-child {
    margin-left: var(--desktop-toggle-gap);
  }

  .site-shell.is-contact-view .primary-nav {
    top: var(--desktop-nav-top);
    right: var(--desktop-pad-x);
  }

  .site-shell.is-contact-view .center-divider {
    left: var(--desktop-center-line-x);
  }

  .contact-section {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    padding: 0;
    background: #f7f5ef;
  }

  .contact-section .section-back {
    right: var(--desktop-pad-x);
    bottom: clamp(28px, 4.6vh, 58px);
  }

  .contact-desktop-layout,
  .contact-hero {
    position: relative;
    display: grid;
    min-height: 100svh;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
    column-gap: 0;
    row-gap: 0;
    padding: 0;
  }

  .contact-desktop-left {
    position: relative;
    display: block;
    min-width: 0;
    padding-top: var(--contact-content-top);
    padding-right: clamp(36px, 5vw, 96px);
    padding-left: var(--desktop-pad-x);
  }

  .contact-desktop-right {
    position: relative;
    display: flex;
    min-width: 0;
    align-self: stretch;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: clamp(150px, 17vh, 230px);
    padding-right: var(--desktop-pad-x);
    padding-left: clamp(36px, 5vw, 96px);
  }

  .contact-copy {
    max-width: var(--contact-left-max);
    padding-right: 0;
  }

  .contact-kicker {
    margin-bottom: clamp(36px, 4vw, 70px);
    color: rgba(0, 0, 0, 0.52);
    font-family: var(--font-body), "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
    font-size: clamp(11px, 0.85vw, 14px);
    font-weight: 700;
    letter-spacing: 0.16em;
    line-height: 1;
    text-transform: uppercase;
  }

  .contact-title {
    max-width: var(--contact-left-max);
    margin: 0;
    color: #050505;
  }

  .contact-title-main {
    display: block;
    font-family: var(--font-display), "Inter Tight", "Helvetica Neue", Arial, sans-serif;
    font-size: var(--contact-title-main-size);
    font-weight: 780;
    letter-spacing: -0.06em;
    line-height: 0.92;
  }

  .contact-title-accent,
  .contact-title-italic {
    display: block;
    margin-top: clamp(8px, 1vw, 18px);
    font-family: var(--font-serif, "Instrument Serif"), Georgia, serif;
    font-size: var(--contact-title-accent-size);
    font-style: italic;
    font-weight: 400;
    letter-spacing: -0.045em;
    line-height: 0.96;
  }

  .contact-intro {
    max-width: clamp(420px, 33vw, 620px);
    margin-top: clamp(44px, 5vw, 84px);
    padding-top: clamp(28px, 3vw, 48px);
    border-top: 1px solid rgba(0, 0, 0, 0.14);
    color: rgba(0, 0, 0, 0.62);
    font-family: var(--font-body), "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
    font-size: var(--contact-copy-size);
    letter-spacing: -0.04em;
    line-height: 1.35;
  }

  .contact-right {
    width: auto;
    gap: 0;
    align-items: center;
    justify-self: stretch;
  }

  .contact-lanyard-block {
    display: flex;
    width: var(--contact-lanyard-size);
    height: var(--contact-lanyard-size);
    min-height: 0;
    align-items: center;
    justify-content: center;
    margin-bottom: clamp(54px, 7vh, 96px);
  }

  .contact-lanyard-block .static-lanyard,
  .contact-lanyard-block .lanyard-wrapper {
    width: 100%;
    height: 100%;
    transform: scale(1);
    transform-origin: center;
  }

  .contact-lanyard-block canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
  }

  .contact-visual,
  .contact-lanyard-visual {
    width: 100%;
    max-width: 100%;
  }

  .contact-info-list,
  .contact-info {
    width: min(100%, var(--contact-right-max));
    border-top: 1px solid rgba(0, 0, 0, 0.14);
  }

  .contact-info-row,
  .contact-row {
    display: grid;
    grid-template-columns: clamp(120px, 11vw, 190px) minmax(0, 1fr);
    gap: 0;
    min-height: clamp(72px, 7vw, 112px);
    align-items: center;
    padding: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.11);
  }

  .contact-info-label,
  .contact-label {
    color: rgba(0, 0, 0, 0.48);
    font-family: var(--font-body), "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
    font-size: var(--contact-info-label-size);
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1;
    text-transform: uppercase;
  }

  .contact-info-value,
  .contact-value,
  .contact-info-link {
    color: #050505;
    font-family: var(--font-body), "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
    font-size: var(--contact-info-value-size);
    font-weight: 430;
    letter-spacing: -0.045em;
    line-height: 1.15;
  }

  .contact-info-link,
  .contact-value a {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 5px;
  }
}

@media (min-width: 768px) and (max-width: 1279px) {
  :root {
    --desktop-pad-x: 22px;
    --contact-content-top: 180px;
    --contact-title-main-size: clamp(54px, 5.8vw, 72px);
    --contact-title-accent-size: clamp(48px, 5vw, 66px);
    --contact-copy-size: 17px;
    --contact-lanyard-size: 150px;
  }

  .contact-desktop-left {
    padding-right: 34px;
  }

  .contact-desktop-right {
    padding-left: 34px;
  }
}

@media (min-width: 1280px) and (max-width: 1439px) {
  :root {
    --contact-content-top: 190px;
    --contact-title-main-size: clamp(68px, 5.7vw, 86px);
    --contact-title-accent-size: clamp(58px, 4.9vw, 78px);
    --contact-lanyard-size: 180px;
  }
}

@media (min-width: 1440px) and (max-width: 1727px) {
  :root {
    --contact-content-top: 205px;
    --contact-title-main-size: clamp(78px, 5.8vw, 104px);
    --contact-title-accent-size: clamp(68px, 4.8vw, 92px);
    --contact-lanyard-size: 210px;
  }
}

@media (min-width: 1728px) {
  :root {
    --desktop-pad-x: 48px;
    --contact-content-top: 230px;
    --contact-title-main-size: clamp(96px, 5.4vw, 128px);
    --contact-title-accent-size: clamp(82px, 4.7vw, 108px);
    --contact-lanyard-size: 240px;
  }
}

@media (max-width: 980px) {
  :root {
    --ui-size: 14px;
  }

  .portfolio-track {
    padding-inline: 15vw;
  }

  .project-frame {
    width: clamp(184px, 22vw, 280px);
    height: auto;
  }

  .big-wordmark {
    right: var(--edge);
    bottom: clamp(8px, 1vw, 14px);
    left: var(--edge);
    width: auto;
  }

  .list-left-index {
    width: 45vw;
  }

  .list-right-index {
    width: 31vw;
  }

  .list-image-rail {
    width: clamp(220px, 34vw, 320px);
  }

  .list-thumb {
    width: clamp(108px, 13vw, 142px);
  }

  .about-main {
    grid-template-columns: minmax(270px, 31vw) minmax(0, 1fr) minmax(230px, 27vw);
    column-gap: clamp(20px, 3.2vw, 40px);
    padding-top: clamp(110px, 14vh, 128px);
    padding-bottom: clamp(66px, 8vh, 82px);
  }

  .about-panel-copy {
    padding: 0;
  }

  .about-section .about-title {
    max-width: 8.6ch;
    font-size: clamp(58px, 5.8vw, 76px);
    font-weight: 430;
    letter-spacing: -0.055em;
    line-height: 1.05;
  }

  .about-lower {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 20px;
    padding-top: clamp(22px, 3vh, 30px);
  }

  .about-description {
    max-width: 410px;
  }

  .about-service-row {
    min-height: 33px;
  }

  .about-hero-visual {
    left: 51%;
    width: clamp(330px, 34vw, 480px);
    height: min(74vh, 640px);
  }

  .project-info {
    width: 58vw;
  }
}

@media (max-width: 720px) {
  :root {
    --edge: 14px;
    --ui-size: 13px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    row-gap: 18px;
  }

  .studio-lockup span:nth-child(2) {
    display: none;
  }

  .view-switch {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: start;
    gap: 24px;
    font-size: 16px;
  }

  .site-shell.is-list-view .view-switch {
    position: static;
    width: auto;
    justify-content: flex-start;
    gap: 0.7em;
    transform: none;
  }

  .primary-nav {
    grid-column: 2;
    grid-row: 1;
    gap: 0.7em;
  }

  .mobile-nav-toggle {
    position: relative;
    z-index: 61;
    display: grid;
    width: 32px;
    height: 22px;
    grid-column: 2;
    grid-row: 1;
    align-content: center;
    gap: 6px;
    justify-self: end;
  }

  .mobile-nav-toggle span {
    display: block;
    width: 100%;
    height: 1px;
    background: currentColor;
    transition:
      transform 180ms ease,
      opacity 180ms ease;
  }

  .site-shell.is-mobile-nav-open .mobile-nav-toggle span:first-child {
    transform: translateY(3.5px) rotate(18deg);
  }

  .site-shell.is-mobile-nav-open .mobile-nav-toggle span:last-child {
    transform: translateY(-3.5px) rotate(-18deg);
  }

  .primary-nav {
    position: fixed;
    inset: 0;
    z-index: 58;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    background: rgba(255, 255, 255, 0.72);
    font-size: clamp(38px, 14vw, 74px);
    opacity: 0;
    pointer-events: none;
    transform: none;
    backdrop-filter: blur(18px);
    transition: opacity 220ms ease;
  }

  .site-shell.is-mobile-nav-open .primary-nav {
    opacity: 1;
    pointer-events: auto;
  }

  .site-shell.is-about-view .primary-nav {
    top: 0;
    left: 0;
    transform: none;
  }

  .site-shell.is-about-view .view-switch {
    display: none;
  }

  .editorial-guide {
    left: 54%;
  }

  .category-filter {
    top: 92px;
    right: 0;
    left: 0;
    flex-direction: row;
    gap: 17px;
    padding: 0 var(--edge) 8px;
    overflow-x: auto;
    font-size: 12px;
  }

  .category-filter button {
    display: flex;
    min-width: max-content;
    gap: 0.35em;
  }

  .category-mark {
    display: none;
  }

  .category-count {
    font-size: 0.62em;
  }

  .slider-viewport {
    top: 43%;
  }

  .portfolio-track {
    gap: 7px;
    padding-inline: 13vw;
  }

  .project-frame {
    width: min(70vw, 320px);
    height: auto;
  }

  .project-frame.frame-wide,
  .project-frame.frame-featured,
  .project-frame.frame-standard,
  .project-frame.frame-narrow {
    width: min(70vw, 320px);
  }

  .frame-meta {
    opacity: 1;
    transform: none;
  }

  .slider-instruction {
    display: none;
  }

  .big-wordmark {
    top: auto;
    right: var(--edge);
    bottom: 8px;
    left: var(--edge);
    display: block;
    width: auto;
  }

  .big-wordmark-inner {
    display: block;
    width: 100%;
  }

  .work-wordmark__full {
    opacity: 1 !important;
  }

  .work-wordmark__split {
    opacity: 0 !important;
  }

  .work-index {
    display: none;
  }

  .portfolio-list-wrap {
    top: 136px;
    right: var(--edge);
    bottom: 120px;
    left: var(--edge);
    overflow-y: auto;
    touch-action: pan-y;
    font-size: 14px;
  }

  .list-image-rail,
  .list-right-index,
  .list-active-preview,
  .list-scroll-instruction {
    display: none;
  }

  .list-left-index {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    transform: none;
  }

  .list-project-line {
    grid-template-columns: 2.5rem 1fr;
    min-height: 20px;
  }

  .text-section {
    padding-top: 145px;
  }

  .text-section h1 {
    font-size: 15vw;
    line-height: 0.84;
  }

  .section-back {
    display: none;
  }

  .about-section {
    height: auto;
    min-height: 100svh;
    overflow-y: auto;
  }

  .about-main {
    display: block;
    height: auto;
    min-height: 100svh;
    padding: 124px var(--edge) 136px;
  }

  .about-panel-copy {
    position: relative;
    z-index: 2;
    height: auto;
    min-height: 0;
    padding: 0;
    background: transparent;
    backdrop-filter: blur(8px);
  }

  .about-section .about-title {
    max-width: 8.4ch;
    font-size: clamp(46px, 11.4vw, 62px);
    font-weight: 430;
    letter-spacing: -0.055em;
    line-height: 1.05;
  }

  .about-section .about-title span {
    white-space: nowrap;
  }

  .about-lower {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 0;
    padding-top: 36px;
  }

  .about-description {
    max-width: 34rem;
    font-size: 19px;
  }

  .about-services {
    width: 100%;
    max-width: none;
    margin-top: 34px;
  }

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

  .about-service-row span:last-child {
    font-size: 16px;
  }

  .about-hero-visual {
    position: relative;
    left: 50%;
    bottom: auto;
    width: min(86vw, 380px);
    height: 50vh;
    margin: 28px 0 0;
    transform: translateX(-50%);
  }

  .hero-head {
    display: none;
  }

  .about-corner-logo {
    width: 74px;
    bottom: 18px;
  }

  .about-back {
    right: var(--edge);
    bottom: 24px;
    font-size: 16px;
  }

  .contact-section {
    padding: 0 var(--edge) 76px;
    overflow-y: auto;
  }

  .contact-section .section-back {
    display: block;
    right: var(--edge);
    bottom: 18px;
    font-size: 16px;
  }

  .contact-hero {
    min-height: auto;
    padding: 150px 0 86px;
    row-gap: 64px;
  }

  .contact-kicker {
    margin-bottom: 34px;
  }

  .contact-title-main {
    font-size: clamp(44px, 12.8vw, 70px);
    line-height: 0.92;
  }

  .contact-title-italic {
    font-size: clamp(43px, 12.2vw, 66px);
    line-height: 0.9;
  }

  .contact-intro {
    margin-top: 34px;
    font-size: 18px;
    line-height: 1.42;
  }

  .contact-right,
  .contact-info {
    width: 100%;
    justify-self: stretch;
  }

  .contact-visual {
    width: clamp(136px, 40vw, 180px);
  }

  .contact-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 0;
  }

  .contact-value {
    font-size: 17px;
  }

  .overlay-controls {
    padding-top: 16px;
  }

  .video-stage {
    inset: 76px 0 148px;
  }

  .project-overlay.has-video .video-stage {
    inset: 76px 0 148px;
  }

  .video-scrubber {
    position: absolute;
    top: auto;
    right: 18px;
    bottom: max(78px, calc(env(safe-area-inset-bottom) + 64px));
    left: 18px;
    display: grid;
    height: 28px;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: none;
    gap: 12px;
    align-items: center;
    color: rgba(247, 245, 239, 0.72);
    font-size: 11px;
    transform: none;
    z-index: 112;
  }

  .video-scrubber__time {
    min-width: 4.5ch;
    color: rgba(247, 245, 239, 0.78);
    font-size: 11px;
    text-align: center;
  }

  .video-scrubber__track {
    width: 100%;
    height: 28px;
    cursor: ew-resize;
  }

  .video-scrubber__track::before {
    top: 50%;
    right: 0;
    bottom: auto;
    left: 0;
    width: auto;
    height: 1px;
    background: rgba(247, 245, 239, 0.28);
    transform: translateY(-50%);
  }

  .video-scrubber__progress {
    top: 50%;
    left: 0;
    width: var(--video-progress);
    height: 1px;
    background: rgba(247, 245, 239, 0.95);
    transform: translateY(-50%);
  }

  .video-scrubber__thumb {
    top: 50%;
    left: var(--video-progress);
    width: 9px;
    height: 9px;
    border-color: rgba(247, 245, 239, 0.95);
    background: #f7f5ef;
    box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.18);
    transform: translate(-50%, -50%);
  }

  .project-video,
  .project-poster {
    object-position: center;
  }

  .project-detail-image {
    object-fit: contain;
  }

  .project-video-detail {
    pointer-events: auto;
  }

  .play-control {
    position: fixed;
    z-index: 114;
    font-size: 12px;
    color: #f7f5ef;
    mix-blend-mode: normal;
  }

  .edge-nav {
    top: auto;
    bottom: max(18px, calc(env(safe-area-inset-bottom) + 12px));
    transform: none;
    z-index: 110;
  }

  .edge-nav span:first-child {
    color: rgba(255, 255, 255, 0.64);
  }

  .project-info {
    width: 100%;
  }

  .info-title h2 {
    font-size: 18vw;
  }

  .project-info dl div {
    grid-template-columns: 5rem 1fr;
  }
}

@media (max-width: 720px) {
  html,
  body {
    overflow-x: hidden;
    overflow-y: auto;
    background: #faf9f6;
  }

  .site-shell {
    min-height: 100svh;
    overflow: visible;
  }

  .site-stage {
    min-height: 100svh;
  }

  .page-transition-shell--exiting {
    filter: blur(1px);
    transform: translateY(8px);
  }

  .page-transition-shell--entering {
    filter: blur(1px);
    transform: translateY(12px);
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    row-gap: 12px;
    padding: 14px;
  }

  .site-header.mobile-top-chrome {
    --mobile-top-scrim-height: 178px;
    --mobile-top-scrim-height-scrolled: 192px;
    position: fixed;
    z-index: 300;
    top: 0;
    right: 0;
    left: 0;
    overflow: visible;
    isolation: isolate;
    background: transparent;
    backdrop-filter: none;
    transition: box-shadow 0.28s ease;
  }

  .site-header.mobile-top-chrome::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 0;
    right: 0;
    left: 0;
    height: var(--mobile-top-scrim-height);
    pointer-events: none;
    background:
      linear-gradient(
        to bottom,
        rgba(247, 245, 239, 0.96) 0%,
        rgba(247, 245, 239, 0.88) 46%,
        rgba(247, 245, 239, 0.62) 74%,
        rgba(247, 245, 239, 0) 100%
      );
    opacity: 0.92;
    backdrop-filter: blur(18px) saturate(1.05);
    -webkit-backdrop-filter: blur(18px) saturate(1.05);
    transition:
      opacity 0.28s ease,
      height 0.28s ease,
      background 0.28s ease;
  }

  .site-header.mobile-top-chrome.is-scrolled {
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.055);
  }

  .site-header.mobile-top-chrome.is-scrolled::before,
  .site-shell.is-mobile-top-scrolled .site-header.mobile-top-chrome::before {
    height: var(--mobile-top-scrim-height-scrolled);
    background:
      linear-gradient(
        to bottom,
        rgba(247, 245, 239, 0.985) 0%,
        rgba(247, 245, 239, 0.94) 50%,
        rgba(247, 245, 239, 0.72) 78%,
        rgba(247, 245, 239, 0) 100%
      );
    opacity: 1;
  }

  .site-header.mobile-top-chrome > * {
    position: relative;
    z-index: 2;
  }

  .studio-lockup {
    max-width: 172px;
    font-size: 12px;
    line-height: 1.12;
  }

  .studio-lockup span:nth-child(2) {
    display: block;
  }

  .mobile-nav-toggle {
    display: none;
  }

  .primary-nav,
  .site-shell.is-mobile-nav-open .primary-nav,
  .site-shell.is-about-view .primary-nav {
    position: static;
    inset: auto;
    display: flex;
    flex-direction: row;
    grid-column: 2;
    grid-row: 1;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 10px;
    justify-self: end;
    width: auto;
    height: auto;
    padding: 0;
    background: transparent;
    color: var(--ink);
    opacity: 1;
    pointer-events: auto;
    transform: none;
    backdrop-filter: none;
    transition: none;
  }

  .top-pill-nav__list {
    gap: 2px;
    padding: 2px;
    background: rgba(0, 0, 0, 0.035);
  }

  .top-pill-nav__pill {
    height: 28px;
    padding: 0 9px;
    font-size: 13px;
    letter-spacing: -0.025em;
  }

  .view-switch,
  .site-shell.is-list-view .view-switch {
    position: static;
    top: auto;
    left: auto;
    display: flex;
    width: auto;
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    justify-self: start;
    gap: 20px;
    color: var(--ink);
    font-size: 16px;
    font-weight: 800;
    transform: none;
  }

  .site-shell.is-about-view .view-switch {
    display: flex;
    opacity: 1;
    pointer-events: auto;
  }

  .category-filter,
  .site-shell.is-list-view .category-filter {
    position: fixed;
    z-index: 60;
    top: 106px;
    right: 0;
    left: 0;
    display: flex;
    width: auto;
    gap: 10px;
    padding: 0 14px 10px;
    overflow-x: auto;
    overflow-y: hidden;
    background:
      linear-gradient(
        to bottom,
        rgba(247, 245, 239, 0.76),
        rgba(247, 245, 239, 0.54)
      );
    backdrop-filter: blur(12px) saturate(1.03);
    -webkit-backdrop-filter: blur(12px) saturate(1.03);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.035);
    color: rgba(0, 0, 0, 0.36);
    font-size: 11px;
    scrollbar-width: none;
    transform: none !important;
  }

  .category-filter::-webkit-scrollbar {
    display: none;
  }

  .category-filter button {
    display: inline-flex;
    min-width: max-content;
    align-items: center;
    gap: 5px;
    padding: 5px 0;
    color: rgba(0, 0, 0, 0.34);
    line-height: 1;
  }

  .category-filter button.is-active {
    color: #050505;
  }

  .category-count {
    min-width: auto;
    font-size: 0.66em;
  }

  .category-mark {
    display: none;
  }

  .category-label {
    white-space: nowrap;
  }

  .editorial-guide {
    display: none;
  }

  .work-stage {
    height: auto;
    min-height: 100svh;
    overflow: visible;
    padding: 144px 0 72px;
    background: #faf9f6;
  }

  .slider-viewport,
  .portfolio-list-wrap,
  .big-wordmark,
  .work-index,
  .home-lanyard-visual,
  .work-lanyard-anchor {
    display: none !important;
  }

  .mobile-work-home {
    display: block;
  }

  .mobile-hero,
  .mobile-work-section,
  .mobile-about-contact {
    padding-right: 14px;
    padding-left: 14px;
  }

  .mobile-hero {
    position: relative;
    z-index: 1;
    padding-right: 20px;
    padding-bottom: 44px;
    padding-left: 20px;
  }

  .mobile-kicker {
    margin: 0 0 28px;
    color: rgba(0, 0, 0, 0.52);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    line-height: 1;
    text-transform: uppercase;
  }

  .mobile-hero-title {
    max-width: 9.5ch;
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(50px, 13.8vw, 68px);
    font-weight: 790;
    letter-spacing: -0.055em;
    line-height: 0.9;
    text-transform: none;
    text-wrap: normal;
    word-break: normal;
  }

  .mobile-hero-title span {
    display: block;
    white-space: nowrap;
  }

  .mobile-hero-copy {
    max-width: 30ch;
    margin: 26px 0 0;
    color: rgba(0, 0, 0, 0.62);
    font-family: var(--font-body);
    font-size: clamp(19px, 5vw, 23px);
    letter-spacing: -0.045em;
    line-height: 1.12;
  }

  .mobile-hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 22px;
    margin-top: 28px;
    font-size: 18px;
    letter-spacing: -0.035em;
  }

  .mobile-hero-actions button {
    border-bottom: 1px solid currentColor;
    color: var(--ink);
    line-height: 1;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
  }

  .mobile-hero-media {
    margin-top: 42px;
    border-radius: 10px;
    background: #e9e8e4;
  }

  .page-hero .about-main {
    padding-right: 20px;
    padding-left: 20px;
  }

  .page-hero-content {
    width: 100%;
    max-width: none;
  }

  .page-hero .page-hero-kicker {
    margin-bottom: 34px;
    color: rgba(0, 0, 0, 0.48);
    font-family: var(--font-body), "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.22em;
    line-height: 1;
    text-transform: uppercase;
  }

  .page-hero .page-hero-title {
    max-width: 8.8ch;
    margin: 0;
    color: #050505;
    font-family: var(--font-display), "Inter Tight", "Helvetica Neue", Arial, sans-serif;
    font-size: clamp(52px, 13.6vw, 66px);
    font-weight: 780;
    letter-spacing: -0.058em;
    line-height: 0.92;
    text-transform: none;
    text-wrap: normal;
    word-break: normal;
  }

  .page-hero .page-hero-title span {
    display: block;
    white-space: nowrap;
  }

  .page-hero .about-hero-title {
    max-width: 8.4ch;
    font-family: var(--font-display), "Inter Tight", "Helvetica Neue", Arial, sans-serif;
    font-size: clamp(46px, 11.4vw, 62px);
    font-weight: 430;
    letter-spacing: -0.055em;
    line-height: 1.05;
  }

  .page-hero .page-hero-copy {
    max-width: 31ch;
    margin-top: 34px;
    color: rgba(0, 0, 0, 0.68);
    font-family: var(--font-body), "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
    font-size: clamp(19px, 5vw, 23px);
    font-weight: 430;
    letter-spacing: -0.045em;
    line-height: 1.12;
  }

  .page-hero .page-hero-visual {
    margin-top: 56px;
  }

  .about-section {
    overflow-x: hidden;
  }

  .about-section .about-main {
    padding-right: 32px;
    padding-left: 32px;
  }

  .about-section .about-hero-left,
  .about-section .about-copy-main {
    width: 100%;
    max-width: none;
  }

  .about-section .about-kicker {
    margin-bottom: 36px;
    color: rgba(0, 0, 0, 0.52);
    font-family: var(--font-body), "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.22em;
    line-height: 1;
    text-transform: uppercase;
  }

  .about-section .about-hero-title {
    width: 100%;
    max-width: none;
    margin: 0;
    color: #050505;
    font-family: var(--font-display), "Inter Tight", "Helvetica Neue", Arial, sans-serif;
    font-size: clamp(64px, 16.8vw, 98px);
    font-weight: 430;
    letter-spacing: -0.065em;
    line-height: 1.02;
    text-transform: none;
  }

  .about-section .about-hero-title span {
    display: block;
    white-space: nowrap;
  }

  .about-section .about-description {
    width: 100%;
    max-width: 34ch;
    margin-top: 36px;
    color: rgba(0, 0, 0, 0.62);
    font-family: var(--font-body), "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
    font-size: clamp(23px, 6vw, 31px);
    letter-spacing: -0.05em;
    line-height: 1.16;
  }

  .about-section .about-hero-visual {
    left: auto;
    width: min(100%, 520px);
    max-width: none;
    height: clamp(430px, 118vw, 560px);
    margin: 46px auto 0;
    transform: none;
  }

  .about-section .hero-body {
    max-width: 100%;
  }

  @media (max-width: 390px) {
    .mobile-hero-title {
      max-width: 9.6ch;
      font-size: clamp(46px, 13.2vw, 56px);
      letter-spacing: -0.05em;
      line-height: 0.92;
    }

    .page-hero .page-hero-title {
      max-width: 9.2ch;
      font-size: clamp(46px, 12.8vw, 56px);
      font-weight: 770;
      letter-spacing: -0.052em;
      line-height: 0.94;
    }

    .page-hero .about-hero-title {
      max-width: 8.4ch;
      font-size: clamp(46px, 11.4vw, 62px);
      font-weight: 430;
      letter-spacing: -0.052em;
      line-height: 1.05;
    }

    .about-section .about-main {
      padding-right: 24px;
      padding-left: 24px;
    }

    .about-section .about-hero-title {
      max-width: none;
      font-size: clamp(56px, 15.8vw, 68px);
      font-weight: 430;
      letter-spacing: -0.06em;
      line-height: 1.04;
    }
  }

  .mobile-hero-video,
  .mobile-hero-image,
  .mobile-preview-video,
  .mobile-preview-image {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    pointer-events: none;
  }

  .mobile-preview-video {
    z-index: 2;
    opacity: 0;
    transition: opacity 220ms ease;
  }

  .mobile-media-shell.is-video-active .mobile-preview-video {
    opacity: 1;
  }

  .mobile-media-shell.is-video-active .mobile-preview-image {
    opacity: 0;
  }

  .mobile-work-section {
    padding-top: 42px;
    padding-bottom: 48px;
  }

  .mobile-section-head {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 16px;
    color: rgba(0, 0, 0, 0.48);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.1;
    text-transform: uppercase;
  }

  .mobile-slider-section {
    padding-right: 0;
    padding-left: 0;
  }

  .mobile-slider-section .mobile-section-head {
    padding-right: 14px;
    padding-left: 14px;
  }

  .mobile-slider-track {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 14px 12px;
    max-width: 100%;
    overscroll-behavior-x: contain;
    scroll-padding-inline: 14px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    touch-action: pan-x pan-y;
    user-select: none;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-slider-track::-webkit-scrollbar {
    display: none;
  }

  .mobile-slider-track.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
  }

  .mobile-slider-track.is-auto-scrolling {
    scroll-snap-type: none;
  }

  .mobile-project-card {
    display: block;
    flex: 0 0 calc(100vw - 42px);
    max-width: 390px;
    color: inherit;
    opacity: 0.72;
    scroll-snap-align: center;
    text-align: left;
    touch-action: pan-x pan-y;
    transform: scale(0.965);
    transform-origin: center center;
    transition:
      opacity 420ms cubic-bezier(0.22, 1, 0.36, 1),
      transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .mobile-hero-media,
  .mobile-project-card,
  .mobile-list-row,
  .mobile-list-preview-button {
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
  }

  .mobile-hero-media,
  .mobile-list-row,
  .mobile-list-preview-button {
    touch-action: manipulation;
  }

  .mobile-project-card .mobile-media-shell,
  .mobile-project-card .mobile-preview-video,
  .mobile-project-card .mobile-preview-image,
  .mobile-project-card .mobile-card-meta,
  .mobile-project-card .mobile-card-meta span,
  .mobile-list-preview-button .mobile-media-shell,
  .mobile-list-preview-button .mobile-preview-video,
  .mobile-list-preview-button .mobile-preview-image,
  .mobile-list-row span {
    pointer-events: none;
  }

  .mobile-project-card.is-mobile-active {
    opacity: 1;
    transform: scale(1);
  }

  .mobile-project-card .mobile-media-shell {
    background: #ecebe8;
  }

  .mobile-card-meta {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 10px;
    font-size: 13px;
    letter-spacing: -0.045em;
    line-height: 1.12;
  }

  .mobile-card-meta span:last-child {
    color: rgba(0, 0, 0, 0.5);
    text-align: right;
  }

  .mobile-list {
    display: grid;
    gap: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.16);
  }

  .mobile-list-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.14);
  }

  .mobile-list-row {
    display: grid;
    width: 100%;
    grid-template-columns: 34px minmax(0, 1fr) 46px;
    gap: 10px;
    align-items: baseline;
    padding: 11px 0;
    color: rgba(0, 0, 0, 0.68);
    font-size: 15px;
    letter-spacing: -0.055em;
    line-height: 1.02;
    text-align: left;
  }

  .mobile-list-number,
  .mobile-list-year {
    font-variant-numeric: tabular-nums;
  }

  .mobile-list-year {
    text-align: right;
  }

  .mobile-list-title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-list-item.is-active .mobile-list-number,
  .mobile-list-item.is-active .mobile-list-title,
  .mobile-list-item.is-active .mobile-list-year {
    display: inline-block;
    width: fit-content;
    background: #050505;
    color: #fff;
    font-weight: 800;
  }

  .mobile-list-item.is-active .mobile-list-year {
    justify-self: end;
  }

  .mobile-list-preview-button {
    display: none;
    width: 100%;
    padding: 0 0 14px 44px;
  }

  .mobile-list-item.is-active .mobile-list-preview-button {
    display: block;
  }

  .mobile-list-preview-button .mobile-media-shell {
    width: min(100%, 330px);
    background: #ecebe8;
  }

  .mobile-about-contact {
    display: grid;
    gap: 0;
    padding: 88px 20px 96px;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.14);
    background: #f7f5ef;
  }

  .mobile-about-block {
    width: 100%;
    max-width: none;
  }

  .mobile-about-kicker {
    margin: 0 0 42px;
    color: rgba(0, 0, 0, 0.52);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    line-height: 1;
    text-transform: uppercase;
  }

  .mobile-about-title {
    max-width: 11ch;
    margin: 0;
    color: #050505;
    font-family: var(--font-display);
    font-size: clamp(46px, 11.8vw, 58px);
    font-weight: 560;
    letter-spacing: -0.055em;
    line-height: 1.02;
    text-transform: none;
  }

  .mobile-about-title span {
    display: block;
  }

  .mobile-about-copy {
    max-width: 31ch;
    margin: 34px 0 0;
    color: rgba(0, 0, 0, 0.58);
    font-family: var(--font-body);
    font-size: clamp(18px, 4.8vw, 22px);
    letter-spacing: -0.035em;
    line-height: 1.22;
  }

  .mobile-about-project {
    margin-top: 58px;
    padding-top: 34px;
    border-top: 1px solid rgba(0, 0, 0, 0.14);
  }

  .mobile-about-contact-kicker {
    margin: 0 0 34px;
    color: rgba(0, 0, 0, 0.52);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    line-height: 1;
    text-transform: uppercase;
  }

  .mobile-about-contact-list {
    display: grid;
    gap: 22px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .mobile-about-contact-item {
    display: grid;
    min-height: 32px;
    grid-template-columns: 34px minmax(0, 1fr);
    align-items: center;
    column-gap: 20px;
  }

  .mobile-about-contact-icon {
    width: 24px;
    height: 24px;
    color: #050505;
  }

  .mobile-about-contact-icon svg {
    display: block;
    width: 100%;
    height: 100%;
  }

  .mobile-about-contact-link,
  .mobile-about-contact-text {
    min-width: 0;
    color: #050505;
    font-family: var(--font-body);
    font-size: clamp(20px, 5.3vw, 24px);
    letter-spacing: -0.045em;
    line-height: 1.05;
  }

  .mobile-about-contact-link {
    overflow-wrap: anywhere;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 5px;
  }

  .mobile-about-contact-text {
    overflow-wrap: anywhere;
  }

  @media (max-width: 390px) {
    .mobile-about-title {
      max-width: 11.5ch;
      font-size: clamp(42px, 11vw, 52px);
      letter-spacing: -0.05em;
      line-height: 1.04;
    }
  }

  .site-shell.is-mobile-work-transitioning .is-mobile-transition-target {
    visibility: hidden;
  }

  .mobile-transition-clone img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }
}

@media (max-width: 390px) {
  .top-pill-nav__list {
    gap: 1px;
    padding: 2px;
  }

  .top-pill-nav__pill {
    padding: 0 8px;
    font-size: 12px;
  }
}

.view-switch {
  font-family: var(--font-body), "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
}

.view-switch button {
  border: 0;
  background: transparent;
  box-shadow: none;
  color: rgba(0, 0, 0, 0.32);
  font-weight: 500;
  opacity: 1;
  transition: color 160ms ease;
}

.view-switch button:hover,
.view-switch button.is-active {
  color: #050505;
}

.view-switch button.is-active {
  font-weight: 700;
}

@media (min-width: 768px) {
  .desktop-view-toggle,
  .site-shell.is-work-view .desktop-view-toggle,
  .site-shell.is-work-view.is-list-view .desktop-view-toggle,
  .site-shell.is-work-view-transitioning .desktop-view-toggle,
  .site-shell.is-about-view .desktop-view-toggle,
  .site-shell.is-contact-view .desktop-view-toggle {
    position: fixed;
    top: var(--desktop-toggle-top);
    left: var(--desktop-center-line-x);
    display: grid;
    width: 170px;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 0;
    opacity: 1;
    pointer-events: none;
    transform: translateX(-50%) !important;
  }

  .desktop-view-toggle button,
  .site-shell.is-contact-view .desktop-view-toggle button {
    pointer-events: auto;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: -0.025em;
    line-height: 1;
    opacity: 1;
  }

  .desktop-view-toggle button:first-child,
  .site-shell.is-contact-view .desktop-view-toggle button:first-child {
    justify-self: end;
    margin-right: 24px;
  }

  .desktop-view-toggle button:last-child,
  .site-shell.is-contact-view .desktop-view-toggle button:last-child {
    justify-self: start;
    margin-left: 24px;
  }

  .desktop-view-toggle button.is-active,
  .site-shell.is-contact-view .desktop-view-toggle button.is-active {
    font-weight: 700;
  }
}

@media (max-width: 767px) {
  .site-shell .desktop-view-toggle,
  .site-shell.is-list-view .desktop-view-toggle,
  .site-shell.is-about-view .desktop-view-toggle,
  .site-shell.is-contact-view .desktop-view-toggle {
    position: static;
    top: auto;
    left: auto;
    display: flex;
    width: auto;
    grid-column: 1 / -1;
    grid-row: 2;
    align-items: center;
    justify-content: flex-start;
    gap: 28px;
    justify-self: start;
    margin: 0;
    opacity: 1;
    pointer-events: auto;
    transform: none !important;
  }

  .desktop-view-toggle button,
  .desktop-view-toggle button:first-child,
  .desktop-view-toggle button:last-child,
  .site-shell.is-contact-view .desktop-view-toggle button:first-child,
  .site-shell.is-contact-view .desktop-view-toggle button:last-child {
    margin: 0;
  }

  .desktop-view-toggle button {
    color: rgba(0, 0, 0, 0.34);
    font-size: 24px;
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1;
  }

  .desktop-view-toggle button.is-active {
    color: #050505;
    font-weight: 800;
  }
}

@media (max-width: 390px) {
  .desktop-view-toggle button {
    font-size: 23px;
  }
}

@media (max-width: 767px) {
  html,
  body,
  .site-shell {
    overflow-x: hidden;
    background: #f7f5ef;
  }

  .site-header.mobile-top-chrome {
    --mobile-top-scrim-height: 190px;
    --mobile-top-scrim-height-scrolled: 206px;
    padding: 28px 20px 0;
    row-gap: 30px;
  }

  .site-header.mobile-top-chrome::before {
    background:
      linear-gradient(
        to bottom,
        rgba(247, 245, 239, 0.96) 0%,
        rgba(247, 245, 239, 0.86) 58%,
        rgba(247, 245, 239, 0.38) 86%,
        rgba(247, 245, 239, 0) 100%
      );
    opacity: 0.95;
    backdrop-filter: blur(18px) saturate(1.08);
    -webkit-backdrop-filter: blur(18px) saturate(1.08);
  }

  .studio-lockup {
    max-width: 220px;
    font-size: 17px;
    letter-spacing: -0.035em;
    line-height: 1.15;
  }

  .studio-lockup span:first-child {
    font-size: 23px;
    font-weight: 500;
    letter-spacing: -0.058em;
    line-height: 1;
  }

  .studio-lockup span:nth-child(2) {
    margin-top: 14px;
  }

  .top-pill-nav__list {
    gap: 3px;
    padding: 4px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.48);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(18px) saturate(1.05);
    -webkit-backdrop-filter: blur(18px) saturate(1.05);
  }

  .top-pill-nav__pill {
    height: 42px;
    padding: 0 17px;
    border-radius: 999px;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: -0.04em;
  }

  .site-shell .desktop-view-toggle,
  .site-shell.is-list-view .desktop-view-toggle,
  .site-shell.is-about-view .desktop-view-toggle,
  .site-shell.is-contact-view .desktop-view-toggle {
    gap: 36px;
  }

  .desktop-view-toggle button {
    position: relative;
    color: rgba(0, 0, 0, 0.32);
    font-size: 26px;
    font-weight: 500;
    letter-spacing: -0.045em;
  }

  .desktop-view-toggle button.is-active {
    color: #050505;
    font-weight: 760;
  }

  .desktop-view-toggle button.is-active::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -17px;
    left: 0;
    height: 1px;
    background: currentColor;
    opacity: 0.72;
  }

  .category-filter,
  .site-shell.is-list-view .category-filter {
    top: 136px;
    gap: 27px;
    padding: 0 28px 23px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.11);
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    color: rgba(0, 0, 0, 0.42);
  }

  .category-filter button {
    gap: 8px;
    padding: 4px 0;
    color: rgba(0, 0, 0, 0.42);
    font-family: var(--font-body), "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.015em;
    line-height: 1;
  }

  .category-filter button.is-active {
    color: #050505;
    font-weight: 620;
  }

  .category-count {
    font-size: 11px;
    letter-spacing: -0.02em;
  }

  .category-label {
    white-space: nowrap;
  }

  .work-stage {
    padding-top: 154px;
    background: #f7f5ef;
  }

  .mobile-work-home {
    overflow-x: hidden;
    background: #f7f5ef;
  }

  .mobile-hero,
  .mobile-work-section,
  .mobile-about-contact {
    padding-right: 28px;
    padding-left: 28px;
  }

  .mobile-hero {
    padding-top: 34px;
    padding-bottom: 46px;
  }

  .mobile-kicker {
    margin-bottom: 32px;
    color: rgba(0, 0, 0, 0.48);
    font-family: var(--font-body), "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.22em;
  }

  .mobile-hero-title {
    max-width: 8.8ch;
    font-family: var(--font-display), "Inter Tight", "Helvetica Neue", Arial, sans-serif;
    font-size: clamp(68px, 15.6vw, 92px);
    font-weight: 430;
    letter-spacing: -0.065em;
    line-height: 1.02;
    text-transform: none;
  }

  .mobile-hero-title span {
    display: block;
    white-space: nowrap;
  }

  .mobile-hero-copy {
    max-width: 31ch;
    margin-top: 30px;
    color: rgba(0, 0, 0, 0.62);
    font-family: var(--font-body), "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
    font-size: clamp(20px, 5.5vw, 26px);
    font-weight: 400;
    letter-spacing: -0.045em;
    line-height: 1.26;
  }

  .mobile-hero-actions {
    gap: 36px;
    margin-top: 34px;
  }

  .mobile-hero-actions button {
    border-bottom: 1px solid currentColor;
    font-family: var(--font-body), "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
    font-size: 20px;
    font-weight: 450;
    letter-spacing: -0.045em;
    text-underline-offset: 5px;
  }

  .mobile-hero-media.project-cover {
    aspect-ratio: 1.42 / 1;
    margin-top: 54px;
    overflow: hidden;
    border-radius: 26px;
    background: #050505;
  }

  .mobile-hero-media > img,
  .mobile-hero-media > video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .mobile-work-section {
    padding-top: 34px;
    padding-bottom: 52px;
  }

  .mobile-slider-section {
    padding-right: 0;
    padding-left: 0;
  }

  .mobile-slider-section .mobile-section-head {
    margin-right: 28px;
    margin-left: 28px;
    padding-right: 0;
    padding-left: 0;
  }

  .mobile-section-head {
    margin-bottom: 28px;
    padding-top: 28px;
    border-top: 1px solid rgba(0, 0, 0, 0.11);
    color: rgba(0, 0, 0, 0.48);
    font-family: var(--font-body), "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.22em;
    line-height: 1;
  }

  .mobile-slider-track {
    padding-right: 28px;
    padding-left: 28px;
    scroll-padding-inline: 28px;
  }

  .mobile-services-flow {
    display: block;
    margin-top: 76px;
    margin-bottom: 88px;
    padding-right: 28px;
    padding-left: 28px;
    overflow: hidden;
    background: #f7f5ef;
  }

  .mobile-services-flow__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  }

  .mobile-services-flow__kicker {
    margin: 0;
    color: rgba(0, 0, 0, 0.52);
    font-family: var(--font-body), "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    line-height: 1;
    text-transform: uppercase;
  }

  .mobile-services-flow__kicker--right {
    text-align: right;
  }

  .mobile-services-flow__list {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .mobile-services-flow__item {
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .mobile-services-flow__button {
    display: grid;
    width: 100%;
    min-height: 68px;
    grid-template-columns: 44px minmax(0, 1fr);
    align-items: center;
    border: 0;
    padding: 0;
    background: transparent;
    cursor: pointer;
    text-align: left;
  }

  .mobile-services-flow__number {
    color: rgba(0, 0, 0, 0.42);
    font-family: var(--font-body), "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
  }

  .mobile-services-flow__label {
    min-width: 0;
    color: #050505;
    font-family: var(--font-body), "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
    font-size: clamp(24px, 6.3vw, 31px);
    font-weight: 430;
    letter-spacing: -0.055em;
    line-height: 1;
  }

  .mobile-services-flow__preview {
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition:
      height 0.48s cubic-bezier(0.76, 0, 0.24, 1),
      opacity 0.32s ease;
  }

  .mobile-services-flow__item.is-active .mobile-services-flow__preview {
    height: 72px;
    opacity: 1;
  }

  .mobile-services-flow__marquee {
    display: flex;
    width: 100%;
    height: 72px;
    align-items: center;
    overflow: hidden;
  }

  .mobile-services-flow__marquee-track {
    display: flex;
    width: max-content;
    align-items: center;
    animation: mobileServicesMarquee 11s linear infinite;
    will-change: transform;
  }

  .mobile-services-flow__marquee-track > span {
    flex: 0 0 auto;
  }

  .mobile-services-flow__marquee-text {
    padding-right: 16px;
    color: rgba(0, 0, 0, 0.72);
    font-family: var(--font-body), "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1;
    text-transform: uppercase;
  }

  .mobile-services-flow__image {
    width: 112px;
    height: 42px;
    margin-right: 20px;
    overflow: hidden;
    border-radius: 999px;
    background: #ddd;
  }

  .mobile-services-flow__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  @keyframes mobileServicesMarquee {
    from {
      transform: translateX(0);
    }

    to {
      transform: translateX(-50%);
    }
  }

  .mobile-services-flow + .mobile-about-contact {
    margin-top: 0;
  }
}

@media (max-width: 390px) {
  .studio-lockup {
    font-size: 15px;
  }

  .studio-lockup span:first-child {
    font-size: 21px;
  }

  .top-pill-nav__pill {
    height: 38px;
    padding: 0 13px;
    font-size: 15px;
  }

  .category-filter,
  .site-shell.is-list-view .category-filter {
    gap: 22px;
    padding-right: 24px;
    padding-left: 24px;
  }

  .mobile-hero,
  .mobile-work-section,
  .mobile-about-contact {
    padding-right: 24px;
    padding-left: 24px;
  }

  .mobile-hero-title {
    max-width: 8.8ch;
    font-size: clamp(58px, 15vw, 72px);
    font-weight: 430;
    letter-spacing: -0.06em;
    line-height: 1.03;
  }

  .mobile-slider-section .mobile-section-head {
    margin-right: 24px;
    margin-left: 24px;
  }

  .mobile-slider-track {
    padding-right: 24px;
    padding-left: 24px;
    scroll-padding-inline: 24px;
  }

  .mobile-services-flow {
    padding-right: 24px;
    padding-left: 24px;
  }

  .mobile-services-flow__header {
    gap: 14px;
  }

  .mobile-services-flow__kicker {
    font-size: 11px;
    letter-spacing: 0.15em;
  }

  .mobile-services-flow__label {
    font-size: clamp(23px, 6vw, 28px);
  }

  .mobile-services-flow__image {
    width: 104px;
    height: 40px;
    margin-right: 18px;
  }
}

@media (max-width: 767px) {
  .site-header.mobile-top-chrome,
  .site-shell.is-work-view .site-header.mobile-top-chrome,
  .site-shell.is-list-view .site-header.mobile-top-chrome {
    position: relative !important;
    top: auto;
    right: auto;
    left: auto;
    z-index: 300;
    display: grid;
    width: 100%;
    grid-template-columns: minmax(0, 1fr) auto;
    row-gap: 0;
    column-gap: 12px;
    padding: 24px 22px 0;
    overflow: visible;
    background: #f7f5ef;
    box-shadow: none;
    pointer-events: none;
    transform: none !important;
  }

  .site-header.mobile-top-chrome::before,
  .site-header.mobile-top-chrome.is-scrolled::before,
  .site-shell.is-mobile-top-scrolled .site-header.mobile-top-chrome::before {
    display: none;
  }

  .site-header.mobile-top-chrome > * {
    position: relative;
    z-index: 2;
    pointer-events: auto;
  }

  .site-header.mobile-top-chrome .studio-lockup {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
    max-width: none;
    align-self: start;
    justify-self: start;
    margin: 0;
    color: #050505;
    font-size: 16px;
    letter-spacing: -0.035em;
    line-height: 1.12;
    transform: none !important;
  }

  .site-header.mobile-top-chrome .studio-lockup span:first-child {
    margin-bottom: 13px;
    font-size: 21px;
    font-weight: 400;
    letter-spacing: -0.075em;
    line-height: 1;
    white-space: nowrap;
  }

  .site-header.mobile-top-chrome .studio-lockup span:nth-child(2),
  .site-header.mobile-top-chrome .studio-lockup span:nth-child(3) {
    display: block;
    margin: 0;
    white-space: nowrap;
  }

  .site-header.mobile-top-chrome .primary-nav,
  .site-shell.is-mobile-nav-open .site-header.mobile-top-chrome .primary-nav,
  .site-shell.is-about-view .site-header.mobile-top-chrome .primary-nav {
    position: relative;
    inset: auto;
    grid-column: 2;
    grid-row: 1;
    align-self: start;
    justify-self: end;
    width: auto;
    height: auto;
    padding: 0;
    opacity: 1;
    pointer-events: auto;
    transform: none !important;
  }

  .site-header.mobile-top-chrome .top-pill-nav__list {
    height: 40px;
    gap: 2px;
    padding: 3px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.55);
    box-shadow: none;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .site-header.mobile-top-chrome .top-pill-nav__pill {
    height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1;
    white-space: nowrap;
  }

  .site-header.mobile-top-chrome .desktop-view-toggle,
  .site-shell.is-list-view .site-header.mobile-top-chrome .desktop-view-toggle,
  .site-shell.is-about-view .site-header.mobile-top-chrome .desktop-view-toggle,
  .site-shell.is-contact-view .site-header.mobile-top-chrome .desktop-view-toggle {
    position: relative !important;
    top: auto;
    right: auto;
    left: auto;
    grid-column: 1 / -1;
    grid-row: 2;
    display: flex;
    width: auto;
    align-items: center;
    justify-content: flex-start;
    gap: 34px;
    justify-self: start;
    margin: 36px 0 24px;
    padding: 0;
    opacity: 1;
    pointer-events: auto;
    transform: none !important;
  }

  .site-header.mobile-top-chrome .desktop-view-toggle button {
    position: relative;
    margin: 0 !important;
    padding: 0;
    color: rgba(0, 0, 0, 0.32);
    font-family: var(--font-body), "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
    font-size: 25px;
    font-weight: 500;
    letter-spacing: -0.045em;
    line-height: 1;
  }

  .site-header.mobile-top-chrome .desktop-view-toggle button.is-active {
    color: #050505;
    font-weight: 760;
  }

  .site-header.mobile-top-chrome .desktop-view-toggle button.is-active::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -14px;
    left: 0;
    height: 2px;
    background: #050505;
    opacity: 1;
  }

  .site-header.mobile-top-chrome .work-category-slot {
    position: relative !important;
    top: auto;
    right: auto;
    left: auto;
    grid-column: 1 / -1;
    grid-row: 3;
    display: block;
    width: 100%;
    margin: 0;
    padding: 0 0 24px;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 0, 0, 0.09);
    pointer-events: auto;
    transform: none !important;
  }

  .site-header.mobile-top-chrome .category-filter,
  .site-shell.is-list-view .site-header.mobile-top-chrome .category-filter {
    position: relative !important;
    top: auto;
    right: auto;
    left: auto;
    display: flex;
    width: 100%;
    align-items: center;
    gap: 24px;
    margin: 0;
    padding: 0;
    overflow-x: auto;
    overflow-y: hidden;
    border: 0;
    background: transparent;
    box-shadow: none;
    color: rgba(0, 0, 0, 0.42);
    scrollbar-width: none;
    transform: none !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .site-header.mobile-top-chrome .category-filter::-webkit-scrollbar {
    display: none;
  }

  .site-header.mobile-top-chrome .category-filter button {
    display: inline-flex;
    width: auto;
    min-width: max-content;
    grid-template-columns: none;
    align-items: baseline;
    gap: 7px;
    padding: 0;
    color: rgba(0, 0, 0, 0.42);
    font-family: var(--font-body), "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.01em;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .site-header.mobile-top-chrome .category-filter button.is-active {
    color: #050505;
    font-weight: 650;
  }

  .site-header.mobile-top-chrome .category-count {
    min-width: auto;
    color: rgba(0, 0, 0, 0.42);
    font-size: 10px;
    letter-spacing: -0.02em;
    text-align: left;
  }

  .site-header.mobile-top-chrome .category-mark {
    display: none;
  }

  .site-header.mobile-top-chrome .category-label {
    white-space: nowrap;
  }

  .site-header.mobile-top-chrome .work-lanyard-anchor {
    display: none !important;
  }

  .work-stage {
    padding-top: 0;
  }

  .mobile-hero {
    padding-top: 36px;
  }
}

@media (max-width: 390px) {
  .site-header.mobile-top-chrome {
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 10px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .site-header.mobile-top-chrome .studio-lockup {
    font-size: 15px;
  }

  .site-header.mobile-top-chrome .studio-lockup span:first-child {
    font-size: 20px;
  }

  .site-header.mobile-top-chrome .top-pill-nav__list {
    height: 38px;
    padding: 3px;
  }

  .site-header.mobile-top-chrome .top-pill-nav__pill {
    height: 32px;
    padding: 0 9px;
    font-size: 14px;
  }

  .site-header.mobile-top-chrome .desktop-view-toggle,
  .site-shell.is-list-view .site-header.mobile-top-chrome .desktop-view-toggle {
    gap: 32px;
    margin-top: 34px;
  }

  .site-header.mobile-top-chrome .desktop-view-toggle button {
    font-size: 24px;
  }

  .site-header.mobile-top-chrome .category-filter {
    gap: 22px;
  }
}

@media (max-width: 767px) {
  .about-section,
  .contact-section {
    overflow-x: hidden;
  }

  .about-section .about-main {
    padding: 28px 28px 76px;
    padding-top: 28px;
    row-gap: 0;
  }

  .about-section .about-hero-left,
  .about-section .about-copy-main,
  .contact-desktop-left,
  .contact-copy {
    width: 100%;
    max-width: none;
    margin-top: 0;
    padding-top: 0;
  }

  .about-section .about-kicker,
  .contact-kicker {
    margin-top: 0;
    margin-bottom: 22px;
    color: rgba(0, 0, 0, 0.46);
    font-family: var(--font-body), "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    line-height: 1;
    text-transform: uppercase;
  }

  .about-section .about-hero-title {
    width: 100%;
    max-width: none;
    margin: 0;
    color: #050505;
    font-family: var(--font-display), "Inter Tight", "Helvetica Neue", Arial, sans-serif;
    font-size: clamp(56px, 13vw, 72px);
    font-weight: 430;
    letter-spacing: -0.06em;
    line-height: 1.02;
    text-transform: none;
  }

  .about-section .about-hero-title span {
    display: block;
    white-space: nowrap;
  }

  .about-section .about-description,
  .contact-intro {
    max-width: 32ch;
    margin-top: 28px;
    color: rgba(0, 0, 0, 0.62);
    font-family: var(--font-body), "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
    font-size: clamp(18px, 4.8vw, 23px);
    font-weight: 400;
    letter-spacing: -0.035em;
    line-height: 1.28;
  }

  .about-section .about-hero-visual,
  .contact-lanyard-block {
    margin-top: 48px;
  }

  .contact-section {
    padding: 0 28px 76px;
  }

  .contact-hero {
    min-height: auto;
    padding: 28px 0 86px;
    row-gap: 48px;
  }

  .contact-desktop-left,
  .contact-desktop-right {
    min-width: 0;
    width: 100%;
    padding-left: 0;
  }

  .contact-copy {
    padding-right: 0;
  }

  .contact-right,
  .contact-info {
    width: 100%;
    justify-self: stretch;
  }

  .contact-title {
    width: 100%;
    max-width: none;
    margin: 0;
    color: #050505;
  }

  .contact-title-main {
    display: block;
    font-family: var(--font-display), "Inter Tight", "Helvetica Neue", Arial, sans-serif;
    font-size: clamp(46px, 11.2vw, 62px);
    font-weight: 760;
    letter-spacing: -0.06em;
    line-height: 0.96;
  }

  .contact-title-italic {
    display: block;
    max-width: 10.4ch;
    margin-top: 2px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(44px, 10.8vw, 58px);
    font-style: italic;
    font-weight: 400;
    letter-spacing: -0.045em;
    line-height: 0.98;
  }

  .contact-info-list,
  .contact-info {
    margin-top: 44px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }

  .contact-info-row,
  .contact-row {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    min-height: 0;
    padding: 18px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.085);
  }

  .contact-info-label,
  .contact-label {
    color: rgba(0, 0, 0, 0.42);
    font-family: var(--font-body), "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1;
    text-transform: uppercase;
  }

  .contact-info-value,
  .contact-value,
  .contact-info-link,
  .contact-value a {
    color: #050505;
    font-family: var(--font-body), "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.025em;
    line-height: 1.32;
  }

  .contact-info-link,
  .contact-value a {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
  }
}

@media (max-width: 390px) {
  .about-section .about-main,
  .contact-section {
    padding-right: 24px;
    padding-left: 24px;
  }

  .about-section .about-hero-title {
    font-size: clamp(52px, 12.6vw, 64px);
    letter-spacing: -0.055em;
    line-height: 1.03;
  }

  .contact-title-main {
    font-size: clamp(42px, 10.8vw, 54px);
    letter-spacing: -0.055em;
    line-height: 0.98;
  }

  .contact-title-italic {
    max-width: 10.8ch;
    font-size: clamp(40px, 10.2vw, 52px);
    line-height: 1;
  }

  .contact-info-row,
  .contact-row {
    grid-template-columns: 98px minmax(0, 1fr);
    gap: 14px;
  }
}

@media (min-width: 768px) and (max-height: 960px) {
  :root {
    --contact-lanyard-size: clamp(120px, 14vh, 145px);
  }

  .contact-desktop-left {
    padding-top: clamp(138px, 18vh, 168px);
  }

  .contact-desktop-right {
    padding-top: clamp(108px, 13vh, 138px);
  }

  .contact-lanyard-block {
    margin-bottom: clamp(22px, 3vh, 32px);
  }

  .contact-info-row,
  .contact-row {
    min-height: clamp(62px, 7.5vh, 72px);
  }

  .contact-section .section-back {
    position: fixed;
    bottom: 16px;
  }
}

@media (max-width: 767px) {
  .site-header.mobile-top-chrome,
  .site-shell.is-work-view .site-header.mobile-top-chrome,
  .site-shell.is-list-view .site-header.mobile-top-chrome,
  .site-shell.is-about-view .site-header.mobile-top-chrome,
  .site-shell.is-contact-view .site-header.mobile-top-chrome {
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 10px;
  }

  .site-header.mobile-top-chrome .studio-lockup,
  .site-header.mobile-top-chrome .site-brand {
    width: min(42vw, 168px);
    max-width: min(42vw, 168px);
    min-width: 0;
    overflow: hidden;
    font-size: clamp(12px, 3.25vw, 14px);
    letter-spacing: -0.035em;
    line-height: 1.08;
  }

  .site-header.mobile-top-chrome .studio-lockup span:first-child {
    max-width: 100%;
    margin-bottom: 8px;
    overflow: hidden;
    font-size: clamp(17px, 4.6vw, 19px);
    line-height: 1;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .site-header.mobile-top-chrome .studio-lockup span:nth-child(2),
  .site-header.mobile-top-chrome .studio-lockup span:nth-child(3) {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .site-header.mobile-top-chrome .primary-nav,
  .site-shell.is-mobile-nav-open .site-header.mobile-top-chrome .primary-nav,
  .site-shell.is-about-view .site-header.mobile-top-chrome .primary-nav,
  .site-shell.is-contact-view .site-header.mobile-top-chrome .primary-nav {
    justify-self: end;
    max-width: calc(100vw - (var(--mobile-pad-x) * 2) - 148px);
  }

  .site-header.mobile-top-chrome .top-pill-nav__pill {
    padding-inline: clamp(8px, 2.4vw, 11px);
    font-size: clamp(13px, 3.4vw, 15px);
  }
}

@media (max-width: 390px) {
  .site-header.mobile-top-chrome .studio-lockup,
  .site-header.mobile-top-chrome .site-brand {
    width: min(39vw, 150px);
    max-width: min(39vw, 150px);
    font-size: 12px;
  }

  .site-header.mobile-top-chrome .studio-lockup span:first-child {
    margin-bottom: 7px;
    font-size: 17px;
  }

  .site-header.mobile-top-chrome .top-pill-nav__pill {
    padding-inline: 8px;
    font-size: 13px;
  }
}

/* Mobile header collision guard: keep brand and pill nav in the normal layout flow. */
@media (max-width: 767px) {
  .site-header.mobile-top-chrome,
  .site-shell.is-work-view .site-header.mobile-top-chrome,
  .site-shell.is-list-view .site-header.mobile-top-chrome,
  .site-shell.is-about-view .site-header.mobile-top-chrome,
  .site-shell.is-contact-view .site-header.mobile-top-chrome {
    position: relative !important;
    display: grid;
    align-items: start;
    width: 100%;
    overflow: visible;
    transform: none !important;
  }

  .site-header.mobile-top-chrome .studio-lockup,
  .site-header.mobile-top-chrome .site-brand,
  .site-header.mobile-top-chrome .primary-nav,
  .site-shell.is-mobile-nav-open .site-header.mobile-top-chrome .primary-nav,
  .site-shell.is-about-view .site-header.mobile-top-chrome .primary-nav,
  .site-shell.is-contact-view .site-header.mobile-top-chrome .primary-nav {
    position: relative !important;
    inset: auto !important;
    transform: none !important;
  }

  .site-header.mobile-top-chrome .studio-lockup span:first-child {
    white-space: nowrap;
  }
}

@media (max-width: 520px) {
  .site-header.mobile-top-chrome,
  .site-shell.is-work-view .site-header.mobile-top-chrome,
  .site-shell.is-list-view .site-header.mobile-top-chrome,
  .site-shell.is-about-view .site-header.mobile-top-chrome,
  .site-shell.is-contact-view .site-header.mobile-top-chrome {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 18px;
  }

  .site-header.mobile-top-chrome .studio-lockup,
  .site-header.mobile-top-chrome .site-brand {
    grid-column: 1;
    grid-row: 1;
    max-width: none;
    justify-self: start;
  }

  .site-header.mobile-top-chrome .primary-nav,
  .site-shell.is-mobile-nav-open .site-header.mobile-top-chrome .primary-nav,
  .site-shell.is-about-view .site-header.mobile-top-chrome .primary-nav,
  .site-shell.is-contact-view .site-header.mobile-top-chrome .primary-nav {
    grid-column: 1;
    grid-row: 2;
    justify-self: end;
  }

  .site-header.mobile-top-chrome .desktop-view-toggle,
  .site-shell.is-list-view .site-header.mobile-top-chrome .desktop-view-toggle,
  .site-shell.is-about-view .site-header.mobile-top-chrome .desktop-view-toggle,
  .site-shell.is-contact-view .site-header.mobile-top-chrome .desktop-view-toggle {
    grid-row: 3;
    margin-top: 10px;
    margin-bottom: 22px;
  }

  .site-header.mobile-top-chrome .work-category-slot {
    grid-row: 4;
  }
}

/* Mobile Work hero refinement: logo watermark + lighter editorial typography. */
@media (max-width: 767px) {
  .mobile-work-home {
    overflow-x: clip;
    background: #f7f5ef;
  }

  .mobile-work-home .mobile-hero {
    position: relative;
    overflow: hidden;
    padding-right: clamp(22px, 6vw, 32px);
    padding-left: clamp(22px, 6vw, 32px);
  }

  .mobile-hero-brand-mark {
    position: absolute;
    top: clamp(126px, 31vw, 156px);
    right: clamp(22px, 7vw, 42px);
    z-index: 0;
    width: min(clamp(96px, 26vw, 142px), 34vw);
    max-width: calc(100vw - 48px);
    height: auto;
    opacity: 0.09;
    pointer-events: none;
    user-select: none;
    transform: none !important;
    transform-origin: center;
  }

  .mobile-hero-brand-mark img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    aspect-ratio: auto;
    object-fit: contain;
    object-position: center;
    transform: none !important;
  }

  .mobile-work-home .mobile-kicker,
  .mobile-work-home .mobile-hero-title,
  .mobile-work-home .mobile-hero-copy,
  .mobile-work-home .mobile-hero-actions {
    position: relative;
    z-index: 1;
  }

  .mobile-work-home .mobile-kicker {
    margin-top: 0;
    margin-bottom: 30px;
    color: rgba(0, 0, 0, 0.46);
    font-family: var(--font-body), "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    line-height: 1;
    text-transform: uppercase;
  }

  .mobile-work-home .mobile-hero-title {
    width: 100%;
    max-width: 8.8ch;
    margin: 0;
    color: #050505;
    font-family: var(--font-display), "Inter Tight", "Helvetica Neue", Arial, sans-serif;
    font-size: clamp(56px, 14vw, 76px);
    font-weight: 430;
    letter-spacing: -0.062em;
    line-height: 1.02;
    text-transform: none;
  }

  .mobile-work-home .mobile-hero-title span {
    display: block;
    white-space: nowrap;
  }

  .mobile-work-home .mobile-hero-copy {
    max-width: 31ch;
    margin-top: 28px;
    color: rgba(0, 0, 0, 0.62);
    font-family: var(--font-body), "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
    font-size: clamp(19px, 5.1vw, 24px);
    font-weight: 400;
    letter-spacing: -0.04em;
    line-height: 1.28;
  }

  .mobile-work-home .mobile-hero-actions {
    display: flex;
    align-items: center;
    gap: 34px;
    margin-top: 32px;
  }

  .mobile-work-home .mobile-hero-actions button {
    color: #050505;
    font-family: var(--font-body), "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
    font-size: 18px;
    font-weight: 430;
    letter-spacing: -0.03em;
    line-height: 1;
    text-decoration-thickness: 1px;
    text-underline-offset: 5px;
  }
}

@media (max-width: 359px) {
  .mobile-work-home .mobile-hero-title {
    font-size: clamp(50px, 13.4vw, 58px);
    letter-spacing: -0.055em;
    line-height: 1.04;
  }

  .mobile-hero-brand-mark {
    top: 122px;
    right: 18px;
    width: 88px;
    opacity: 0.082;
  }
}

@media (min-width: 360px) and (max-width: 389px) {
  .mobile-hero-brand-mark {
    top: 128px;
    right: 22px;
    width: 96px;
    opacity: 0.086;
  }
}

@media (min-width: 390px) and (max-width: 429px) {
  .mobile-hero-brand-mark {
    top: 132px;
    right: 26px;
    width: 106px;
    opacity: 0.09;
  }
}

@media (min-width: 430px) and (max-width: 767px) {
  .mobile-hero-brand-mark {
    top: 136px;
    right: 30px;
    width: clamp(112px, 26vw, 142px);
    opacity: 0.092;
  }
}

@media (max-width: 767px) {
  .site-header.mobile-top-chrome,
  .site-shell.is-work-view .site-header.mobile-top-chrome,
  .site-shell.is-list-view .site-header.mobile-top-chrome,
  .site-shell.is-about-view .site-header.mobile-top-chrome,
  .site-shell.is-contact-view .site-header.mobile-top-chrome {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    column-gap: 14px;
    row-gap: 0;
  }

  .site-header.mobile-top-chrome .studio-lockup,
  .site-header.mobile-top-chrome .site-brand {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
    max-width: 190px;
    justify-self: start;
  }

  .site-header.mobile-top-chrome .primary-nav,
  .site-shell.is-mobile-nav-open .site-header.mobile-top-chrome .primary-nav,
  .site-shell.is-about-view .site-header.mobile-top-chrome .primary-nav,
  .site-shell.is-contact-view .site-header.mobile-top-chrome .primary-nav {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
    justify-self: end;
  }

  .site-header.mobile-top-chrome .top-pill-nav__list {
    max-width: 100%;
    overflow: hidden;
  }

  .site-header.mobile-top-chrome .desktop-view-toggle,
  .site-shell.is-list-view .site-header.mobile-top-chrome .desktop-view-toggle,
  .site-shell.is-about-view .site-header.mobile-top-chrome .desktop-view-toggle,
  .site-shell.is-contact-view .site-header.mobile-top-chrome .desktop-view-toggle {
    grid-column: 1 / -1;
    grid-row: 2;
    margin-top: 30px;
    margin-bottom: 24px;
  }

  .site-header.mobile-top-chrome .work-category-slot {
    grid-column: 1 / -1;
    grid-row: 3;
  }
}

@media (max-width: 430px) {
  .site-header.mobile-top-chrome,
  .site-shell.is-work-view .site-header.mobile-top-chrome,
  .site-shell.is-list-view .site-header.mobile-top-chrome,
  .site-shell.is-about-view .site-header.mobile-top-chrome,
  .site-shell.is-contact-view .site-header.mobile-top-chrome {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 18px;
  }

  .site-header.mobile-top-chrome .studio-lockup,
  .site-header.mobile-top-chrome .site-brand {
    grid-column: 1;
    grid-row: 1;
    max-width: none;
  }

  .site-header.mobile-top-chrome .primary-nav,
  .site-shell.is-mobile-nav-open .site-header.mobile-top-chrome .primary-nav,
  .site-shell.is-about-view .site-header.mobile-top-chrome .primary-nav,
  .site-shell.is-contact-view .site-header.mobile-top-chrome .primary-nav {
    grid-column: 1;
    grid-row: 2;
    justify-self: end;
  }

  .site-header.mobile-top-chrome .top-pill-nav__list {
    height: 40px;
  }

  .site-header.mobile-top-chrome .top-pill-nav__pill {
    height: 32px;
    padding: 0 11px;
    font-size: 14px;
  }

  .site-header.mobile-top-chrome .desktop-view-toggle,
  .site-shell.is-list-view .site-header.mobile-top-chrome .desktop-view-toggle,
  .site-shell.is-about-view .site-header.mobile-top-chrome .desktop-view-toggle,
  .site-shell.is-contact-view .site-header.mobile-top-chrome .desktop-view-toggle {
    grid-row: 3;
    margin-top: 10px;
    margin-bottom: 22px;
  }

  .site-header.mobile-top-chrome .work-category-slot {
    grid-row: 4;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .mobile-services-flow__marquee-track {
    animation: none !important;
  }

  .mobile-services-flow__preview {
    transition: none !important;
  }

  .page-transition-shell,
  .page-reveal,
  .top-pill-nav__pill {
    animation: none !important;
    filter: none !important;
    transform: none !important;
    transition: none !important;
  }
}

.contact-title-accent-line {
  display: inline;
}

.contact-title-accent-line:first-child {
  margin-right: 0.28ch;
}

@media (max-width: 767px) {
  :root {
    --mobile-bg: #f7f5ef;
    --mobile-pad-x: 28px;
    --mobile-brand-title-size: 19px;
    --mobile-brand-subtitle-size: 14px;
    --mobile-nav-height: 38px;
    --mobile-nav-pill-height: 30px;
    --mobile-nav-font-size: 14px;
    --mobile-view-toggle-size: 18px;
    --mobile-view-toggle-gap: 30px;
    --mobile-kicker-size: 12px;
    --mobile-body-size: clamp(18px, 4.8vw, 23px);
    --mobile-section-gap: 72px;
    --mobile-hero-gap: 34px;
  }

  html,
  body,
  .site-shell,
  .work-stage,
  .mobile-work-home,
  .about-section,
  .contact-section {
    overflow-x: hidden;
    background: var(--mobile-bg);
  }

  .site-header.mobile-top-chrome,
  .site-shell.is-work-view .site-header.mobile-top-chrome,
  .site-shell.is-list-view .site-header.mobile-top-chrome,
  .site-shell.is-about-view .site-header.mobile-top-chrome,
  .site-shell.is-contact-view .site-header.mobile-top-chrome {
    position: relative !important;
    top: auto;
    right: auto;
    left: auto;
    z-index: 300;
    display: grid;
    width: 100%;
    grid-template-columns: minmax(0, 1fr) auto;
    row-gap: 0;
    column-gap: 16px;
    padding: 24px var(--mobile-pad-x) 0;
    overflow: visible;
    background: var(--mobile-bg);
    box-shadow: none;
    pointer-events: none;
    transform: none !important;
  }

  .site-header.mobile-top-chrome::before,
  .site-header.mobile-top-chrome.is-scrolled::before,
  .site-shell.is-mobile-top-scrolled .site-header.mobile-top-chrome::before {
    display: none;
  }

  .site-header.mobile-top-chrome > * {
    position: relative;
    z-index: 2;
    pointer-events: auto;
  }

  .site-header.mobile-top-chrome .studio-lockup {
    grid-column: 1;
    grid-row: 1;
    width: clamp(158px, 40vw, 178px);
    min-width: 0;
    max-width: 178px;
    align-self: start;
    justify-self: start;
    margin: 0;
    color: #050505;
    font-family: var(--font-body), "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
    font-size: var(--mobile-brand-subtitle-size);
    font-weight: 400;
    letter-spacing: -0.035em;
    line-height: 1.12;
    transform: none !important;
  }

  .site-header.mobile-top-chrome .studio-lockup span:first-child {
    margin: 0 0 9px;
    font-family: var(--font-brand), "Instrument Serif", Georgia, serif;
    font-size: var(--mobile-brand-title-size);
    font-weight: 400;
    letter-spacing: -0.045em;
    line-height: 1;
    white-space: nowrap;
  }

  .site-header.mobile-top-chrome .studio-lockup span:nth-child(2),
  .site-header.mobile-top-chrome .studio-lockup span:nth-child(3) {
    display: block;
    margin: 0;
    white-space: nowrap;
  }

  .site-header.mobile-top-chrome .primary-nav,
  .site-shell.is-mobile-nav-open .site-header.mobile-top-chrome .primary-nav,
  .site-shell.is-about-view .site-header.mobile-top-chrome .primary-nav,
  .site-shell.is-contact-view .site-header.mobile-top-chrome .primary-nav {
    position: relative;
    inset: auto;
    grid-column: 2;
    grid-row: 1;
    align-self: start;
    justify-self: end;
    width: auto;
    height: auto;
    padding: 0;
    opacity: 1;
    pointer-events: auto;
    transform: none !important;
  }

  .site-header.mobile-top-chrome .top-pill-nav__list {
    display: flex;
    align-items: center;
    gap: 2px;
    height: var(--mobile-nav-height);
    padding: 3px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.55);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .site-header.mobile-top-chrome .top-pill-nav__pill {
    height: var(--mobile-nav-pill-height);
    padding: 0 9px;
    border-radius: 999px;
    font-family: var(--font-body), "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
    font-size: var(--mobile-nav-font-size);
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1;
    white-space: nowrap;
  }

  .site-header.mobile-top-chrome .desktop-view-toggle,
  .site-shell.is-list-view .site-header.mobile-top-chrome .desktop-view-toggle,
  .site-shell.is-about-view .site-header.mobile-top-chrome .desktop-view-toggle,
  .site-shell.is-contact-view .site-header.mobile-top-chrome .desktop-view-toggle {
    position: relative !important;
    top: auto;
    right: auto;
    left: auto;
    grid-column: 1 / -1;
    grid-row: 2;
    display: flex;
    width: auto;
    align-items: center;
    justify-content: flex-start;
    gap: var(--mobile-view-toggle-gap);
    justify-self: start;
    margin: 30px 0 24px;
    padding: 0;
    opacity: 1;
    pointer-events: auto;
    transform: none !important;
  }

  .site-header.mobile-top-chrome .desktop-view-toggle button {
    position: relative;
    margin: 0 !important;
    border: 0;
    padding: 0 0 8px;
    background: transparent;
    color: rgba(0, 0, 0, 0.34);
    font-family: var(--font-body), "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
    font-size: var(--mobile-view-toggle-size);
    font-weight: 500;
    letter-spacing: -0.025em;
    line-height: 1;
  }

  .site-header.mobile-top-chrome .desktop-view-toggle button.is-active {
    color: #050505;
    font-weight: 620;
  }

  .site-header.mobile-top-chrome .desktop-view-toggle button.is-active::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1.5px;
    border-radius: 999px;
    background: #050505;
    opacity: 1;
  }

  .site-header.mobile-top-chrome .work-category-slot {
    position: relative !important;
    top: auto;
    right: auto;
    left: auto;
    grid-column: 1 / -1;
    grid-row: 3;
    display: block;
    width: 100%;
    margin: 0;
    padding: 0 0 24px;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 0, 0, 0.075);
    pointer-events: auto;
    transform: none !important;
  }

  .site-header.mobile-top-chrome .category-filter,
  .site-shell.is-list-view .site-header.mobile-top-chrome .category-filter {
    position: relative !important;
    top: auto;
    right: auto;
    left: auto;
    display: flex;
    width: 100%;
    align-items: center;
    gap: 24px;
    margin: 0;
    padding: 0;
    overflow-x: auto;
    overflow-y: hidden;
    border: 0;
    background: transparent;
    box-shadow: none;
    color: rgba(0, 0, 0, 0.38);
    scrollbar-width: none;
    transform: none !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .site-header.mobile-top-chrome .category-filter::-webkit-scrollbar {
    display: none;
  }

  .site-header.mobile-top-chrome .category-filter button {
    display: inline-flex;
    width: auto;
    min-width: max-content;
    grid-template-columns: none;
    align-items: baseline;
    gap: 7px;
    padding: 0;
    color: rgba(0, 0, 0, 0.38);
    font-family: var(--font-body), "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.01em;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .site-header.mobile-top-chrome .category-filter button.is-active {
    color: #050505;
    font-weight: 600;
  }

  .site-header.mobile-top-chrome .category-count {
    min-width: auto;
    color: rgba(0, 0, 0, 0.38);
    font-size: 10px;
    letter-spacing: -0.02em;
    line-height: 1;
    text-align: left;
  }

  .site-header.mobile-top-chrome .category-mark {
    display: none;
  }

  .site-header.mobile-top-chrome .category-label {
    white-space: nowrap;
  }

  .site-shell:not(.is-work-view) .site-header.mobile-top-chrome .work-category-slot {
    display: none;
    padding: 0;
    border-bottom: 0;
  }

  .site-shell.is-about-view .site-header.mobile-top-chrome .desktop-view-toggle,
  .site-shell.is-contact-view .site-header.mobile-top-chrome .desktop-view-toggle {
    margin-bottom: 0;
  }

  .site-header.mobile-top-chrome .work-lanyard-anchor,
  .site-header.mobile-top-chrome .mobile-nav-toggle {
    display: none !important;
  }

  .work-stage {
    padding-top: 0;
  }

  .mobile-hero,
  .mobile-work-section,
  .mobile-about-contact {
    padding-right: var(--mobile-pad-x);
    padding-left: var(--mobile-pad-x);
  }

  .mobile-hero {
    padding-top: 28px;
    padding-bottom: 0;
  }

  .mobile-kicker,
  .mobile-about-kicker,
  .mobile-about-contact-kicker,
  .about-section .about-kicker,
  .contact-kicker {
    margin-top: 0;
    margin-bottom: 30px;
    color: rgba(0, 0, 0, 0.46);
    font-family: var(--font-body), "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
    font-size: var(--mobile-kicker-size);
    font-weight: 700;
    letter-spacing: 0.2em;
    line-height: 1;
    text-transform: uppercase;
  }

  .mobile-hero-title {
    width: 100%;
    max-width: 8.8ch;
    margin: 0;
    color: #050505;
    font-family: var(--font-display), "Inter Tight", "Helvetica Neue", Arial, sans-serif;
    font-size: clamp(58px, 14.2vw, 76px);
    font-weight: 430;
    letter-spacing: -0.062em;
    line-height: 1.02;
    text-transform: none;
  }

  .mobile-hero-title span {
    display: block;
    white-space: nowrap;
  }

  .mobile-hero-copy,
  .mobile-about-copy,
  .about-section .about-description,
  .contact-intro {
    max-width: 32ch;
    margin-top: 28px;
    color: rgba(0, 0, 0, 0.62);
    font-family: var(--font-body), "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
    font-size: var(--mobile-body-size);
    font-weight: 400;
    letter-spacing: -0.035em;
    line-height: 1.28;
  }

  .mobile-hero-actions {
    gap: 34px;
    margin-top: 32px;
  }

  .mobile-hero-actions button {
    border-bottom: 1px solid currentColor;
    font-family: var(--font-body), "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
    font-size: 18px;
    font-weight: 430;
    letter-spacing: -0.03em;
    line-height: 1;
    text-underline-offset: 5px;
  }

  .mobile-hero-media.project-cover {
    aspect-ratio: 1.42 / 1;
    display: block;
    width: 100%;
    margin-top: 48px;
    overflow: hidden;
    padding: 0;
    border: 0;
    border-radius: 24px;
    background: #050505;
    color: inherit;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  .mobile-hero-media > img,
  .mobile-hero-media > video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    pointer-events: none;
  }

  .mobile-work-section {
    padding-top: 52px;
    padding-bottom: 0;
  }

  .mobile-slider-section {
    padding-right: 0;
    padding-left: 0;
  }

  .mobile-slider-section .mobile-section-head {
    margin-right: var(--mobile-pad-x);
    margin-bottom: 28px;
    margin-left: var(--mobile-pad-x);
    padding-top: 28px;
  }

  .mobile-section-head {
    margin-bottom: 28px;
    padding-top: 28px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    color: rgba(0, 0, 0, 0.48);
    font-family: var(--font-body), "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    line-height: 1;
    text-transform: uppercase;
  }

  .mobile-slider-track {
    padding-right: var(--mobile-pad-x);
    padding-left: var(--mobile-pad-x);
    scroll-padding-inline: var(--mobile-pad-x);
  }

  .mobile-services-flow {
    display: block;
    margin-top: 68px;
    margin-bottom: 78px;
    padding-right: var(--mobile-pad-x);
    padding-left: var(--mobile-pad-x);
    overflow: hidden;
    background: var(--mobile-bg);
  }

  .mobile-services-flow__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .mobile-services-flow__kicker {
    margin: 0;
    color: rgba(0, 0, 0, 0.48);
    font-family: var(--font-body), "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    line-height: 1;
    text-transform: uppercase;
  }

  .mobile-services-flow__item {
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 0, 0, 0.085);
  }

  .mobile-services-flow__button {
    display: grid;
    width: 100%;
    min-height: 58px;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    border: 0;
    padding: 0;
    background: transparent;
    cursor: pointer;
    text-align: left;
  }

  .mobile-services-flow__number {
    color: rgba(0, 0, 0, 0.38);
    font-family: var(--font-body), "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
  }

  .mobile-services-flow__label {
    min-width: 0;
    color: #050505;
    font-family: var(--font-body), "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
    font-size: clamp(20px, 5.2vw, 24px);
    font-weight: 400;
    letter-spacing: -0.045em;
    line-height: 1.08;
  }

  .mobile-services-flow__preview {
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition:
      height 0.48s cubic-bezier(0.76, 0, 0.24, 1),
      opacity 0.32s ease;
  }

  .mobile-services-flow__item.is-active .mobile-services-flow__preview {
    height: 58px;
    opacity: 1;
  }

  .mobile-services-flow__marquee {
    display: flex;
    width: 100%;
    height: 58px;
    align-items: center;
    overflow: hidden;
  }

  .mobile-services-flow__marquee-track {
    display: flex;
    width: max-content;
    align-items: center;
    animation: mobileServicesMarquee 11s linear infinite;
    will-change: transform;
  }

  .mobile-services-flow__marquee-track > span {
    flex: 0 0 auto;
  }

  .mobile-services-flow__marquee-text {
    padding-right: 14px;
    color: rgba(0, 0, 0, 0.62);
    font-family: var(--font-body), "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1;
    text-transform: uppercase;
  }

  .mobile-services-flow__image {
    width: 96px;
    height: 34px;
    margin-right: 18px;
    overflow: hidden;
    border-radius: 999px;
    background: #ddd;
  }

  .mobile-services-flow__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .mobile-about-contact {
    display: grid;
    gap: 0;
    margin-top: 0;
    padding-top: 72px;
    padding-bottom: 84px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    background: var(--mobile-bg);
  }

  .mobile-about-block {
    width: 100%;
    max-width: none;
  }

  .mobile-about-title {
    width: 100%;
    max-width: none;
    margin: 0;
    color: #050505;
    font-family: var(--font-display), "Inter Tight", "Helvetica Neue", Arial, sans-serif;
    font-size: clamp(50px, 12vw, 64px);
    font-weight: 430;
    letter-spacing: -0.055em;
    line-height: 1.03;
    text-transform: none;
  }

  .mobile-about-title span {
    display: block;
    white-space: nowrap;
  }

  .mobile-about-project {
    margin-top: 54px;
    padding-top: 28px;
    border-top: 1px solid rgba(0, 0, 0, 0.09);
  }

  .mobile-about-contact-list {
    display: grid;
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .mobile-about-contact-item {
    display: grid;
    min-height: 28px;
    grid-template-columns: 28px minmax(0, 1fr);
    align-items: center;
    column-gap: 16px;
  }

  .mobile-about-contact-icon {
    width: 20px;
    height: 20px;
    color: rgba(0, 0, 0, 0.8);
  }

  .mobile-about-contact-link,
  .mobile-about-contact-text {
    min-width: 0;
    color: #050505;
    font-family: var(--font-body), "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
    font-size: clamp(16px, 4.4vw, 19px);
    font-weight: 400;
    letter-spacing: -0.03em;
    line-height: 1.28;
  }

  .mobile-about-contact-link {
    overflow-wrap: anywhere;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
  }

  .mobile-about-contact-text {
    overflow-wrap: anywhere;
  }

  .about-section {
    height: auto;
    min-height: auto;
    overflow-x: hidden;
  }

  .about-section .about-main {
    display: grid;
    height: auto;
    min-height: auto;
    grid-template-columns: 1fr;
    align-items: start;
    row-gap: 0;
    column-gap: 0;
    padding: 28px var(--mobile-pad-x) 84px;
    padding-top: 28px;
  }

  .about-section .about-panel-copy,
  .about-section .about-hero-left,
  .about-section .about-copy-main {
    grid-column: auto;
    width: 100%;
    max-width: none;
    margin-top: 0;
    padding-top: 0;
  }

  .about-section .about-hero-title {
    width: 100%;
    max-width: none;
    margin: 0;
    color: #050505;
    font-family: var(--font-display), "Inter Tight", "Helvetica Neue", Arial, sans-serif;
    font-size: clamp(56px, 13vw, 72px);
    font-weight: 430;
    letter-spacing: -0.06em;
    line-height: 1.02;
    text-transform: none;
  }

  .about-section .about-hero-title span {
    display: block;
    white-space: nowrap;
  }

  .about-section .about-hero-visual {
    position: relative;
    left: auto;
    bottom: auto;
    width: min(100%, 520px);
    height: clamp(430px, 118vw, 560px);
    margin: 46px auto 0;
    transform: none;
  }

  .about-section .hero-body {
    max-width: 100%;
  }

  .about-section .about-services {
    grid-column: auto;
    width: 100%;
    max-width: none;
    justify-self: stretch;
    margin-top: 56px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }

  .about-section .flowing-services__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    color: rgba(0, 0, 0, 0.48);
    font-family: var(--font-body), "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    line-height: 1;
    text-transform: uppercase;
  }

  .about-section .flowing-menu__item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.085);
  }

  .about-section .flowing-menu__item-link {
    min-height: 58px;
    padding: 0;
  }

  .about-section .flowing-menu__item-index {
    color: rgba(0, 0, 0, 0.38);
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
  }

  .about-section .flowing-menu__item-text {
    color: #050505;
    font-size: clamp(20px, 5.2vw, 24px);
    font-weight: 400;
    letter-spacing: -0.045em;
    line-height: 1.08;
  }

  .contact-section {
    overflow-x: hidden;
    padding: 0 var(--mobile-pad-x) 76px;
  }

  .contact-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    align-items: start;
    row-gap: 0;
    column-gap: 0;
    padding: 28px 0 84px;
  }

  .contact-desktop-left,
  .contact-desktop-right,
  .contact-copy {
    width: 100%;
    max-width: none;
    min-width: 0;
    padding: 0;
  }

  .contact-title.contact-hero-title {
    width: 100%;
    max-width: none;
    margin: 0;
    color: #050505;
  }

  .contact-hero-title-main {
    display: block;
    font-family: var(--font-display), "Inter Tight", "Helvetica Neue", Arial, sans-serif;
    font-size: clamp(46px, 11.2vw, 62px);
    font-weight: 760;
    letter-spacing: -0.06em;
    line-height: 0.96;
  }

  .contact-hero-title-accent {
    display: block;
    max-width: none;
    margin-top: 2px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(44px, 10.8vw, 58px);
    font-style: italic;
    font-weight: 400;
    letter-spacing: -0.045em;
    line-height: 0.98;
  }

  .contact-hero-title-accent .contact-title-accent-line {
    display: block;
    margin-right: 0;
  }

  .contact-lanyard-block {
    display: none;
  }

  .contact-right,
  .contact-info {
    width: 100%;
    justify-self: stretch;
  }

  .contact-info-list,
  .contact-info {
    margin-top: 44px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }

  .contact-info-row,
  .contact-row {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    min-height: 0;
    padding: 18px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.085);
  }

  .contact-info-label,
  .contact-label {
    color: rgba(0, 0, 0, 0.42);
    font-family: var(--font-body), "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1;
    text-transform: uppercase;
  }

  .contact-info-value,
  .contact-value,
  .contact-info-link,
  .contact-value a {
    color: #050505;
    font-family: var(--font-body), "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.025em;
    line-height: 1.32;
  }

  .contact-info-link,
  .contact-value a {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
  }
}

@media (max-width: 390px) {
  :root {
    --mobile-pad-x: 24px;
    --mobile-brand-title-size: 18px;
    --mobile-brand-subtitle-size: 13px;
    --mobile-nav-font-size: 13px;
  }

  .site-header.mobile-top-chrome {
    column-gap: 10px;
    padding-right: var(--mobile-pad-x);
    padding-left: var(--mobile-pad-x);
    grid-template-columns: 1fr;
  }

  .site-header.mobile-top-chrome .primary-nav,
  .site-shell.is-mobile-nav-open .site-header.mobile-top-chrome .primary-nav,
  .site-shell.is-about-view .site-header.mobile-top-chrome .primary-nav,
  .site-shell.is-contact-view .site-header.mobile-top-chrome .primary-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: start;
    margin-top: 16px;
  }

  .site-header.mobile-top-chrome .studio-lockup span:first-child {
    font-size: var(--mobile-brand-title-size);
  }

  .site-header.mobile-top-chrome .studio-lockup {
    width: 100%;
    max-width: none;
    font-size: var(--mobile-brand-subtitle-size);
  }

  .site-header.mobile-top-chrome .top-pill-nav__list {
    height: 40px;
  }

  .site-header.mobile-top-chrome .top-pill-nav__pill {
    height: 32px;
    padding: 0 10px;
  }

  .site-header.mobile-top-chrome .desktop-view-toggle,
  .site-shell.is-list-view .site-header.mobile-top-chrome .desktop-view-toggle {
    grid-row: 3;
    gap: 26px;
    margin-top: 28px;
    margin-bottom: 22px;
  }

  .site-header.mobile-top-chrome .work-category-slot {
    grid-row: 4;
  }

  .site-header.mobile-top-chrome .desktop-view-toggle button {
    font-size: 17px;
    padding-bottom: 7px;
  }

  .site-header.mobile-top-chrome .category-filter {
    gap: 22px;
  }

  .mobile-hero-title {
    font-size: clamp(54px, 13.6vw, 68px);
    letter-spacing: -0.056em;
    line-height: 1.03;
  }

  .mobile-services-flow__button {
    min-height: 56px;
  }

  .mobile-services-flow__label,
  .about-section .flowing-menu__item-text {
    font-size: clamp(19px, 5vw, 22px);
    line-height: 1.1;
  }

  .mobile-services-flow__image {
    width: 88px;
    height: 32px;
  }

  .about-section .about-hero-title {
    font-size: clamp(52px, 12.6vw, 64px);
    letter-spacing: -0.055em;
    line-height: 1.03;
  }

  .contact-hero-title-main {
    font-size: clamp(42px, 10.8vw, 54px);
    letter-spacing: -0.055em;
    line-height: 0.98;
  }

  .contact-hero-title-accent {
    font-size: clamp(40px, 10.2vw, 52px);
    line-height: 1;
  }

  .contact-info-row,
  .contact-row {
    grid-template-columns: 98px minmax(0, 1fr);
    gap: 14px;
  }
}

.liquid-background {
  position: fixed;
  z-index: 0;
  inset: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  opacity: 0.42;
  pointer-events: none;
}

.liquid-ether-container,
.liquid-ether-canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.liquid-ether-canvas {
  pointer-events: none;
}

.site-content {
  position: relative;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce), (max-width: 640px) {
  .liquid-background {
    display: none;
  }
}

.flowing-services {
  border-top: 0;
}

.flowing-services__header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(12px, 1.7vh, 18px);
  color: rgba(5, 5, 5, 0.48);
  font-size: clamp(9px, 0.66vw, 11px);
  font-weight: 700;
  letter-spacing: 0.24em;
  line-height: 1;
  text-transform: uppercase;
}

.flowing-menu {
  --flowing-menu-bg: transparent;
  --flowing-menu-text: #050505;
  --flowing-menu-marquee-bg: #0f0f0f;
  --flowing-menu-marquee-text: #f4f1ea;
  --flowing-menu-border: rgba(5, 5, 5, 0.18);
  --flowing-menu-enter-y: 102%;
  --flowing-menu-shift: 280px;
  --flowing-menu-speed: 14s;
  position: relative;
  width: 100%;
  border-top: 1px solid var(--flowing-menu-border);
  background: var(--flowing-menu-bg);
  color: var(--flowing-menu-text);
  isolation: isolate;
}

.flowing-menu__item {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--flowing-menu-border);
  background: transparent;
  isolation: isolate;
}

.flowing-menu__item-link {
  position: relative;
  z-index: 1;
  display: grid;
  width: 100%;
  min-height: clamp(58px, 6.4vw, 88px);
  grid-template-columns: clamp(42px, 5vw, 70px) minmax(0, 1fr);
  gap: clamp(12px, 1.8vw, 26px);
  align-items: center;
  color: inherit;
  text-align: left;
}

.flowing-menu__item-index {
  align-self: center;
  color: rgba(5, 5, 5, 0.54);
  font-size: clamp(10px, 0.72vw, 13px);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.03em;
}

.flowing-menu__item-text {
  overflow: hidden;
  font-size: clamp(24px, 2.35vw, 40px);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.95;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.flowing-menu__marquee {
  position: absolute;
  z-index: 3;
  inset: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--flowing-menu-marquee-bg);
  color: var(--flowing-menu-marquee-text);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, var(--flowing-menu-enter-y), 0);
  transition:
    transform 560ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 120ms ease;
  will-change: transform, opacity;
}

.flowing-menu__item.is-flowing-active .flowing-menu__marquee {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.flowing-menu__marquee-inner {
  display: flex;
  width: max-content;
  align-items: center;
  will-change: transform;
}

.flowing-menu__item.is-flowing-active:not(.is-flowing-gsap) .flowing-menu__marquee-inner {
  animation: flowing-menu-marquee var(--flowing-menu-speed) linear infinite;
}

.flowing-menu__marquee-part {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: clamp(18px, 2vw, 34px);
  padding-right: clamp(24px, 3vw, 54px);
  white-space: nowrap;
}

.flowing-menu__marquee-part img {
  display: block;
  width: clamp(140px, 15vw, 230px);
  height: clamp(46px, 5.7vw, 72px);
  border-radius: 999px;
  object-fit: cover;
  object-position: center center;
}

.flowing-menu__marquee-part span {
  font-size: clamp(24px, 2.35vw, 40px);
  font-weight: 600;
  letter-spacing: -0.07em;
  line-height: 0.95;
}

.about-services.flowing-services {
  max-width: min(520px, 100%);
  border-top: 0;
}

.about-services .flowing-menu__item-link {
  min-height: clamp(50px, 5.6vh, 70px);
}

.about-services .flowing-menu__item-text,
.about-services .flowing-menu__marquee-part span {
  font-size: clamp(20px, 1.76vw, 32px);
}

.about-services .flowing-menu__marquee-part img {
  width: clamp(120px, 12vw, 190px);
  height: clamp(40px, 4.7vw, 62px);
}

@keyframes flowing-menu-marquee {
  to {
    transform: translate3d(calc(var(--flowing-menu-shift) * -1), 0, 0);
  }
}

@media (hover: none), (pointer: coarse) {
  .flowing-menu__marquee {
    display: none;
  }
}

@media (max-width: 720px) {
  .about-services .flowing-menu__item-link {
    min-height: 46px;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
  }

  .about-services .flowing-menu__item-text {
    font-size: 17px;
    letter-spacing: -0.05em;
  }

  .about-services .flowing-menu__item-index {
    color: rgba(0, 0, 0, 0.42);
    font-size: 11px;
  }

  .flowing-services__header {
    gap: 18px;
    font-size: 10px;
    letter-spacing: 0.12em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .flowing-menu__marquee,
  .flowing-menu__marquee-inner {
    animation: none !important;
    transition: none !important;
  }
}

.site-preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 44%, rgba(255, 255, 255, 0.9), rgba(247, 245, 239, 0.96) 52%, #f7f5ef 100%);
  color: #050505;
  pointer-events: all;
  transition:
    opacity 0.36s cubic-bezier(0.76, 0, 0.24, 1),
    visibility 0.36s cubic-bezier(0.76, 0, 0.24, 1);
}

.site-preloader.is-exiting {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-preloader__desktop,
.site-preloader__mobile {
  position: absolute;
  inset: 0;
}

.site-preloader__desktop {
  display: none;
}

.site-preloader__mobile {
  display: block;
}

.site-preloader__mobile-logo-wrap {
  position: absolute;
  top: 42%;
  left: 50%;
  display: flex;
  width: min(68vw, 310px);
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
}

.site-preloader__mobile-logo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  opacity: 0;
  transform: translateY(12px) scale(0.96);
  animation: mobileLoaderLogoIn 0.9s cubic-bezier(0.76, 0, 0.24, 1) 0.12s forwards;
}

.site-preloader__mobile-progress-wrap {
  position: absolute;
  bottom: clamp(86px, 12vh, 128px);
  left: 50%;
  display: grid;
  width: min(70vw, 330px);
  justify-items: center;
  transform: translateX(-50%);
}

.site-preloader__mobile-track {
  position: relative;
  width: 100%;
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.16);
}

.site-preloader__mobile-fill,
.site-preloader__desktop-fill {
  position: absolute;
  inset: 0;
  transform: scaleX(calc(1 / 23));
  transform-origin: left center;
  border-radius: inherit;
  background: #050505;
  transition: transform 0.38s cubic-bezier(0.76, 0, 0.24, 1);
}

.site-preloader__mobile-label,
.site-preloader__mobile-count {
  font-family: var(--font-body), "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
  color: rgba(0, 0, 0, 0.72);
}

.site-preloader__mobile-label {
  margin: 28px 0 0;
  font-size: 12px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.site-preloader__mobile-count {
  margin: 18px 0 0;
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.18em;
}

.site-preloader.is-exiting .site-preloader__mobile-logo {
  opacity: 0;
  transform: translateY(-10px) scale(0.98);
}

.site-preloader.is-exiting .site-preloader__mobile-progress-wrap {
  opacity: 0;
  transform: translateX(-50%) translateY(12px);
  transition:
    opacity 0.48s ease,
    transform 0.48s cubic-bezier(0.76, 0, 0.24, 1);
}

@media (min-width: 768px) {
  .site-preloader {
    display: none;
    pointer-events: none;
  }

  .site-preloader__mobile {
    display: none;
  }

  .site-preloader__desktop {
    display: none;
  }

  .site-preloader__desktop-mark {
    position: absolute;
    top: 30%;
    left: 50%;
    width: clamp(54px, 5.2vw, 92px);
    height: auto;
    opacity: 0;
    transform: translate(-50%, -50%);
    animation: desktopLoaderMarkIn 0.9s cubic-bezier(0.76, 0, 0.24, 1) 0.1s forwards;
  }

  .site-preloader__desktop-logo {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .site-preloader__desktop-brand {
    position: absolute;
    top: 45%;
    left: 50%;
    width: min(80vw, 980px);
    text-align: center;
    opacity: 0;
    transform: translate(-50%, -50%);
    animation: desktopLoaderBrandIn 1s cubic-bezier(0.76, 0, 0.24, 1) 0.22s forwards;
  }

  .site-preloader__desktop-title {
    margin: 0;
    font-family: var(--font-display), "Inter Tight", "Helvetica Neue", Arial, sans-serif;
    font-size: clamp(72px, 8vw, 150px);
    line-height: 0.95;
    font-weight: 430;
    letter-spacing: -0.065em;
    color: #050505;
  }

  .site-preloader__desktop-subtitle {
    margin: clamp(22px, 2.2vw, 36px) 0 0;
    font-family: var(--font-body), "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
    font-size: clamp(13px, 1vw, 18px);
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.48);
  }

  .site-preloader__desktop-progress {
    position: absolute;
    top: 66%;
    left: 50%;
    display: grid;
    width: min(68vw, 900px);
    justify-items: center;
    opacity: 0;
    transform: translateX(-50%);
    animation: desktopLoaderProgressIn 0.9s cubic-bezier(0.76, 0, 0.24, 1) 0.36s forwards;
  }

  .site-preloader__desktop-track {
    position: relative;
    width: 100%;
    height: 2px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.14);
  }

  .site-preloader__desktop-count {
    margin: clamp(24px, 2.5vw, 42px) 0 0;
    font-family: var(--font-body), "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
    font-size: clamp(14px, 1.15vw, 20px);
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0.24em;
    color: rgba(0, 0, 0, 0.72);
  }

  .site-preloader__desktop-corner {
    position: absolute;
    bottom: clamp(28px, 3.2vw, 56px);
    margin: 0;
    font-family: var(--font-body), "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
    font-size: clamp(10px, 0.75vw, 13px);
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.42);
  }

  .site-preloader__desktop-corner--left {
    left: clamp(28px, 4vw, 72px);
  }

  .site-preloader__desktop-corner--right {
    right: clamp(28px, 4vw, 72px);
  }

  .site-preloader.is-exiting .site-preloader__desktop-mark {
    opacity: 0;
    transform: translate(-50%, calc(-50% - 12px));
    transition:
      opacity 0.45s ease,
      transform 0.45s cubic-bezier(0.76, 0, 0.24, 1);
  }

  .site-preloader.is-exiting .site-preloader__desktop-brand {
    opacity: 0;
    transform: translate(-50%, calc(-50% - 16px));
    transition:
      opacity 0.5s ease,
      transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
  }

  .site-preloader.is-exiting .site-preloader__desktop-progress {
    opacity: 0;
    transform: translateX(-50%) translateY(16px);
    transition:
      opacity 0.45s ease,
      transform 0.45s cubic-bezier(0.76, 0, 0.24, 1);
  }
}

@media (max-width: 390px) {
  .site-preloader__mobile-logo-wrap {
    top: 41%;
    width: min(72vw, 280px);
  }

  .site-preloader__mobile-progress-wrap {
    bottom: 88px;
    width: min(74vw, 300px);
  }

  .site-preloader__mobile-label {
    font-size: 11px;
  }

  .site-preloader__mobile-count {
    font-size: 15px;
  }
}

#app.site-is-loading {
  opacity: 0;
}

#app.site-is-ready {
  opacity: 1;
  transition: opacity 0.28s ease;
}

@media (prefers-reduced-motion: reduce) {
  #app.site-is-ready {
    transition: none;
  }
}

@keyframes mobileLoaderLogoIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes desktopLoaderMarkIn {
  from {
    opacity: 0;
    transform: translate(-50%, calc(-50% + 10px)) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes desktopLoaderBrandIn {
  from {
    opacity: 0;
    transform: translate(-50%, calc(-50% + 16px));
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

@keyframes desktopLoaderProgressIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-preloader,
  .site-preloader *,
  .site-is-ready {
    animation: none !important;
    transition: none !important;
  }

  .site-preloader__mobile-logo {
    opacity: 1;
    transform: none;
  }

  .site-preloader__desktop-mark {
    opacity: 1;
    transform: translate(-50%, -50%);
  }

  .site-preloader__desktop-brand {
    opacity: 1;
    transform: translate(-50%, -50%);
  }

  .site-preloader__desktop-progress {
    opacity: 1;
    transform: translateX(-50%);
  }

  .site-preloader__mobile-progress-wrap {
    transform: translateX(-50%);
  }
}

.site-stage {
  min-height: 100svh;
}

.stage-enter {
  animation: stage-enter 450ms ease-out both;
}

.project-frame {
  animation: none;
}

.big-wordmark {
  animation: wordmark-in 1050ms 150ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.project-poster {
  position: absolute;
  inset: 0;
}

.project-video {
  position: relative;
  z-index: 2;
}

.project-video.is-unavailable {
  display: none;
}

.project-info {
  animation: info-enter 500ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.project-overlay {
  animation: overlay-enter 700ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.project-overlay.is-closing {
  animation: overlay-exit 420ms cubic-bezier(0.55, 0, 1, 0.45) both;
}

.work-stage.is-shared-transition-target.stage-enter,
.work-stage.is-shared-transition-target .big-wordmark {
  animation: none !important;
}

.floating-preview {
  opacity: 0;
  transform: translateY(24px) scale(0.72);
  transform-origin: center;
  transition:
    opacity 180ms ease,
    transform 340ms cubic-bezier(0.22, 1, 0.36, 1);
}

.floating-preview.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.floating-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.category-filter button.is-active .category-mark {
  display: block;
}

.category-filter button:not(.is-active) .category-mark {
  display: none;
}

@keyframes stage-enter {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scatter-in {
  from {
    opacity: 0;
    transform: translateY(var(--scatter, 60px)) scale(0.68);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes wordmark-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes overlay-enter {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes overlay-exit {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(100%);
  }
}

@keyframes info-enter {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .stage-enter,
  .project-frame,
  .big-wordmark,
  .project-info,
  .project-overlay,
  .project-overlay.is-closing {
    animation: none;
  }
}
