@import url("https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&display=swap");

:root {
  color-scheme: light;
  --paper: #f5f1e8;
  --paper-soft: #fbf8f1;
  --ink: #151413;
  --ink-muted: #6a645c;
  --line: rgba(21, 20, 19, 0.16);
  --line-strong: rgba(21, 20, 19, 0.34);
  --sage: #536a58;
  --berry: #a34f5b;
  --blue: #5f8fa2;
  --clay: #a4664d;
  --charcoal: #242321;
  --shadow: 0 24px 70px rgba(21, 20, 19, 0.14);
  --font-latin: "PP Editorial New", "Editorial New", "Instrument Serif", "Bodoni 72", "Bodoni MT", Didot, "Times New Roman";
  --font-cjk: "Source Han Sans SC", "Source Han Sans CN", "Noto Sans CJK SC", "思源黑体";
  --font-home-cjk: "Source Han Serif SC", "Source Han Serif CN", "Noto Serif CJK SC", "思源宋体", SimSun, serif;
  --font-site: var(--font-latin), var(--font-cjk), Georgia, serif;
}

@font-face {
  font-family: "PP Editorial New";
  src:
    local("PP Editorial New Ultralight"),
    local("PP EditorialNew-Ultralight"),
    local("PPEditorialNew-Ultralight");
  font-style: normal;
  font-weight: 200;
}

@font-face {
  font-family: "PP Editorial New";
  src:
    local("PP Editorial New Ultralight Italic"),
    local("PP Editorial New Ultralight Itali"),
    local("PP EditorialNew-UltralightItalic"),
    local("PPEditorialNew-UltralightItalic");
  font-style: italic;
  font-weight: 200;
}

@font-face {
  font-family: "Rois Medium";
  src:
    local("Rois Medium"),
    local("Rois-Medium"),
    local("Rois");
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: "Source Han Sans SC";
  src:
    local("Source Han Sans SC"),
    local("Source Han Sans CN"),
    local("Noto Sans CJK SC"),
    local("思源黑体");
  font-style: normal;
  font-weight: 300 900;
}

@font-face {
  font-family: "Source Han Serif SC";
  src:
    local("Source Han Serif SC SemiBold"),
    local("Source Han Serif SC Semibold"),
    local("Source Han Serif CN SemiBold"),
    local("Noto Serif CJK SC SemiBold"),
    local("思源宋体 SemiBold"),
    local("思源宋体");
  font-style: normal;
  font-weight: 600;
}

@property --float-x {
  syntax: "<length>";
  inherits: false;
  initial-value: 0px;
}

@property --float-y {
  syntax: "<length>";
  inherits: false;
  initial-value: 0px;
}

@property --float-rotate {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-site);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body.is-locked {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.site-frame {
  min-height: 100vh;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 32px, 620px);
  min-height: 0;
  padding: 0;
  border-bottom: 0;
  background: transparent;
  transform: translateX(-50%);
  pointer-events: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #d0c3a4;
  font-family: var(--font-site);
  font-size: 1rem;
}

.brand-copy {
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  justify-content: center;
}

.nav-pill {
  width: 100%;
  align-items: center;
  padding: 8px;
  border-radius: 8px;
  background: rgba(29, 29, 28, 0.94);
  box-shadow: 0 18px 42px rgba(20, 18, 16, 0.24);
  pointer-events: auto;
}

.nav-links a,
.footer-link,
.project-back,
.archive-link {
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 9px 13px;
  color: rgba(245, 241, 232, 0.72);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.nav-links a:hover,
.nav-dropdown:hover .nav-trigger,
.nav-trigger:focus-visible {
  border-color: transparent;
  background: rgba(245, 241, 232, 0.12);
  color: var(--paper);
}

.footer-link,
.project-back,
.archive-link {
  border-color: var(--line);
  border-radius: 999px;
  color: var(--ink);
}

.footer-link:hover,
.project-back:hover,
.archive-link:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.nav-dropdown {
  position: relative;
}

.project-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  display: grid;
  width: min(320px, calc(100vw - 32px));
  overflow: hidden;
  border-radius: 8px;
  background: rgba(29, 29, 28, 0.96);
  box-shadow: 0 26px 52px rgba(20, 18, 16, 0.28);
  opacity: 0;
  transform: translateY(-8px);
  visibility: hidden;
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.nav-dropdown:hover .project-menu,
.nav-dropdown:focus-within .project-menu {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.project-menu a {
  border-radius: 0;
  border-top: 1px solid rgba(245, 241, 232, 0.12);
  padding: 10px 16px;
  color: rgba(245, 241, 232, 0.72);
  font-size: 0.84rem;
  font-weight: 600;
  text-transform: none;
}

.project-menu a:first-child {
  border-top: 0;
}

.project-menu a:hover {
  background: rgba(245, 241, 232, 0.1);
  color: var(--paper);
}

.page-nav-header {
  top: 5.22vh;
  right: 2.55vw;
  left: auto;
  z-index: 30;
  display: block;
  width: auto;
  transform: none;
  pointer-events: none;
}

.page-nav-header .page-home-nav {
  position: static;
  z-index: auto;
  display: grid;
  gap: clamp(1.2rem, 2.95vh, 2.2rem);
  color: rgba(235, 235, 235, 0.66);
  text-align: center;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.34);
  pointer-events: auto;
}

.page-nav-header .home-nav-item {
  color: rgba(235, 235, 235, 0.66);
}

.page-nav-header .home-nav-item:hover,
.page-nav-header .home-nav-item:focus-visible {
  color: rgba(255, 255, 255, 0.86);
}

.page-nav-header .home-project-menu {
  background: rgba(5, 5, 5, 0.12);
}

.page-nav-header .home-project-menu a {
  color: rgba(235, 235, 235, 0.6);
}

.page-nav-header .home-project-menu a:hover,
.page-nav-header .home-project-menu a:focus-visible {
  color: rgba(255, 255, 255, 0.86);
}


body:has(.studio-home) .site-header,
body:has(.studio-home) .site-footer {
  font-family: var(--font-site);
  font-synthesis: none;
}

body:has(.studio-home) .brand,
body:has(.studio-home) .brand-mark,
body:has(.studio-home) .nav-links a,
body:has(.studio-home) .project-menu a,
body:has(.studio-home) .footer-link,
body:has(.studio-home) .site-footer .eyebrow,
body:has(.studio-home) .site-footer h2 {
  font-weight: 200;
}

.studio-home {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 0;
  background: #0d0d0b;
  color: var(--paper);
  font-family: var(--font-site);
  font-synthesis: none;
  isolation: isolate;
}

.studio-home::before {
  display: none;
}

.home-hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  place-items: center;
  isolation: isolate;
}

.home-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #050505;
  overflow: hidden;
}

.home-reel-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  object-fit: cover;
  transform: scale(1.035);
  transition:
    opacity 760ms cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 1600ms cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, transform;
}

.home-reel-video.is-active {
  opacity: 1;
  transform: scale(1.02);
}

.home-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(4, 4, 4, 0.42), rgba(4, 4, 4, 0.08) 46%, rgba(4, 4, 4, 0.52)),
    radial-gradient(circle at center, rgba(245, 241, 232, 0.14), rgba(0, 0, 0, 0.22) 58%, rgba(0, 0, 0, 0.62));
  pointer-events: none;
}

.home-hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(100% - 48px, 1180px);
  justify-items: center;
  gap: 24px;
  padding-top: 54px;
  text-align: center;
  transform:
    translate3d(
      calc(var(--cursor-x, 0) * -12px),
      calc(var(--cursor-y, 0) * -8px),
      0
    );
  transition: transform 220ms ease;
}

.home-kicker {
  margin: 0;
  color: rgba(245, 241, 232, 0.74);
  font-size: 0.78rem;
  font-weight: 200;
  letter-spacing: 0;
  text-transform: uppercase;
}

.studio-title-heading {
  display: grid;
  width: min(100%, 1120px);
  margin: 0;
  color: #fff;
  font-family: var(--font-site);
  font-weight: 200;
  line-height: 0.82;
  text-align: left;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.38), 0 0 20px rgba(245, 241, 232, 0.26);
  user-select: none;
}

.studio-title-name {
  display: block;
  margin-left: 0.04em;
  font-family: var(--font-cjk);
  font-size: 2.35rem;
  font-weight: 300;
  line-height: 1;
}

.studio-title-word {
  display: block;
  font-family: var(--font-latin);
  font-size: 10rem;
  font-style: normal;
  font-weight: 200;
  letter-spacing: 0;
  line-height: 0.78;
}

.home-statement {
  max-width: 640px;
  margin: 0;
  color: rgba(245, 241, 232, 0.78);
  font-size: clamp(0.92rem, 1.1vw, 1.08rem);
  font-style: italic;
  font-weight: 200;
  line-height: 1.65;
}

.home-scroll-link {
  position: absolute;
  right: 28px;
  bottom: 24px;
  z-index: 2;
  border: 1px solid rgba(245, 241, 232, 0.34);
  border-radius: 999px;
  padding: 10px 14px;
  color: rgba(245, 241, 232, 0.78);
  font-size: 0.78rem;
  font-weight: 200;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.home-scroll-link:hover {
  border-color: var(--paper);
  background: var(--paper);
  color: #111;
}

.home-work-index {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 56px;
  padding: 96px 28px 118px;
  background: var(--paper);
  color: var(--ink);
}

.home-work-head {
  display: grid;
  grid-template-columns: minmax(160px, 0.26fr) minmax(0, 0.74fr);
  gap: 28px;
  width: min(100%, 1280px);
  margin: 0 auto;
}

.home-work-head .home-kicker {
  color: var(--ink-muted);
}

.home-work-head h2 {
  margin: 0;
  max-width: 960px;
  font-size: clamp(2.2rem, 5vw, 5.8rem);
  font-style: italic;
  font-weight: 200;
  line-height: 0.93;
}

.home-project-list {
  display: grid;
  width: min(100%, 1280px);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.home-project-row {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) minmax(180px, 0.3fr);
  gap: 18px;
  align-items: center;
  min-height: 88px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}

.home-project-number,
.home-project-meta {
  color: var(--ink-muted);
  font-size: 0.78rem;
  font-weight: 200;
  text-transform: uppercase;
}

.home-project-title {
  min-width: 0;
  font-size: clamp(1.65rem, 4.2vw, 4.6rem);
  font-weight: 200;
  line-height: 0.94;
}

.studio-work-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  margin: 0;
}

.studio-float {
  --tile-drift-x: calc(var(--cursor-x, 0) * 18px);
  --tile-drift-y: calc(var(--cursor-y, 0) * 12px);
  --float-x: 0px;
  --float-y: 0px;
  --float-rotate: 0deg;
  --float-range-x: 10px;
  --float-range-y: 18px;
  --float-rotate-range: 0.7deg;
  --float-duration: 17s;
  --float-delay: -2s;
  position: absolute;
  top: var(--tile-y);
  left: var(--tile-x);
  display: block;
  width: clamp(187px, calc(var(--tile-w) * 1.2), 780px);
  aspect-ratio: var(--tile-ratio);
  z-index: 2;
  transform:
    translate3d(
      calc(var(--tile-drift-x) + var(--float-x)),
      calc(var(--tile-drift-y) + var(--float-y)),
      0
    )
    rotateZ(var(--float-rotate));
  animation: studio-tile-float var(--float-duration) ease-in-out var(--float-delay) infinite alternate;
  will-change: transform;
}

.studio-float:nth-child(2n) {
  --tile-drift-x: calc(var(--cursor-x, 0) * -14px);
  --tile-drift-y: calc(var(--cursor-y, 0) * 16px);
  --float-range-x: -12px;
  --float-range-y: 14px;
  --float-rotate-range: -0.55deg;
  --float-duration: 19s;
  --float-delay: -7s;
}

.studio-float:nth-child(3n) {
  --float-range-x: 8px;
  --float-range-y: -20px;
  --float-rotate-range: 0.42deg;
  --float-duration: 22s;
  --float-delay: -11s;
}

.studio-float:nth-child(4n) {
  --float-range-x: -7px;
  --float-range-y: 16px;
  --float-rotate-range: -0.8deg;
  --float-duration: 24s;
  --float-delay: -5s;
}

.studio-float:nth-child(5n) {
  --float-range-x: 13px;
  --float-range-y: 11px;
  --float-rotate-range: 0.58deg;
  --float-duration: 20s;
  --float-delay: -14s;
}

.studio-float[data-layer="front"] {
  z-index: 8;
}

.studio-float:hover,
.studio-float:focus-within {
  z-index: 9;
  animation-play-state: paused;
}

.studio-tile {
  --paper-lift: 0px;
  --paper-depth: 0px;
  --paper-scale: 1;
  --paper-tilt-x: 0deg;
  --paper-tilt-y: 0deg;
  --paper-twist: 0deg;
  --paper-origin-x: 50%;
  --paper-origin-y: 50%;
  --paper-light-angle: 128deg;
  --paper-fold-angle: 112deg;
  --paper-curl-x: 84%;
  --paper-curl-y: 78%;
  --paper-shadow-x: 100%;
  --paper-shadow-y: 100%;
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  border-radius: 2px;
  background: var(--paper-soft);
  box-shadow: 0 16px 42px rgba(24, 20, 17, 0.08);
  isolation: isolate;
  transform-origin: var(--paper-origin-x) var(--paper-origin-y);
  transform-style: preserve-3d;
  transform:
    translate3d(
      0,
      var(--paper-lift),
      var(--paper-depth)
    )
    perspective(900px)
    rotateX(var(--paper-tilt-x))
    rotateY(var(--paper-tilt-y))
    rotateZ(var(--paper-twist))
    scale(var(--paper-scale));
  transition:
    transform 360ms cubic-bezier(0.2, 0.9, 0.22, 1),
    filter 280ms ease,
    box-shadow 320ms ease;
  will-change: transform;
}

.studio-tile::before,
.studio-tile::after {
  content: "";
  position: absolute;
  display: none;
  pointer-events: none;
  opacity: 0;
  transition:
    opacity 260ms ease,
    transform 360ms cubic-bezier(0.2, 0.9, 0.22, 1);
  backface-visibility: hidden;
}

.studio-tile::before {
  inset: 0;
  z-index: 3;
  border-radius: inherit;
  background:
    linear-gradient(
      var(--paper-fold-angle),
      rgba(255, 252, 244, 0) 0 33%,
      rgba(255, 252, 244, 0.5) 44%,
      rgba(255, 252, 244, 0.18) 50%,
      rgba(30, 26, 22, 0.16) 58%,
      rgba(30, 26, 22, 0) 72%
    ),
    radial-gradient(105% 72% at var(--paper-curl-x) var(--paper-curl-y), rgba(255, 252, 244, 0.54), rgba(255, 252, 244, 0.16) 34%, rgba(255, 252, 244, 0) 58%),
    radial-gradient(92% 78% at var(--paper-shadow-x) var(--paper-shadow-y), rgba(24, 20, 17, 0.22), rgba(24, 20, 17, 0.08) 36%, rgba(24, 20, 17, 0) 68%);
  mix-blend-mode: soft-light;
  transform: translateZ(18px) scale(1.01);
}

.studio-tile::after {
  inset: 0;
  z-index: 4;
  border-radius: inherit;
  background:
    linear-gradient(
      var(--paper-light-angle),
      rgba(255, 255, 255, 0.42),
      rgba(255, 255, 255, 0.06) 26%,
      rgba(24, 20, 17, 0.1) 74%,
      rgba(24, 20, 17, 0.22)
    ),
    radial-gradient(80% 92% at var(--paper-curl-x) var(--paper-curl-y), rgba(255, 252, 244, 0.42), rgba(255, 252, 244, 0.06) 44%, rgba(255, 252, 244, 0) 72%);
  mix-blend-mode: overlay;
  transform: translateZ(28px);
}

.studio-float[data-layer="front"] .studio-tile > img,
.studio-float[data-layer="front"] .studio-tile > video {
  filter: saturate(1.03) contrast(1.01);
}

.studio-tile:hover,
.studio-tile:focus-visible {
  --paper-lift: -12px;
  --paper-depth: 34px;
  --paper-scale: 1.018;
  --paper-tilt-x: -5deg;
  --paper-tilt-y: 9deg;
  --paper-twist: -0.6deg;
  z-index: 9;
  filter: saturate(1.04);
  box-shadow:
    0 26px 70px rgba(24, 20, 17, 0.18),
    0 3px 9px rgba(24, 20, 17, 0.1);
}

.studio-tile:focus-visible {
  outline: 2px solid rgba(21, 20, 19, 0.42);
  outline-offset: 6px;
}

.studio-tile:hover::before,
.studio-tile:hover::after,
.studio-tile:focus-visible::before,
.studio-tile:focus-visible::after {
  opacity: 0;
}

.studio-tile:hover::after,
.studio-tile:focus-visible::after {
  transform: translateZ(36px) scale(1.012);
}

.studio-tile > img,
.studio-tile > video {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: transparent;
  backface-visibility: hidden;
  object-fit: contain;
  transition:
    opacity 220ms ease,
    transform 420ms cubic-bezier(0.2, 0.9, 0.22, 1),
    filter 280ms ease;
}

.studio-tile:hover > img,
.studio-tile:hover > video,
.studio-tile:focus-visible > img,
.studio-tile:focus-visible > video {
  opacity: 1;
  filter: none;
  transform: translateZ(10px) scale(1.025);
}

.studio-hover-card {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  padding: 16px;
  transition: opacity 220ms ease, transform 260ms ease;
  transform: scale(0.92);
}

.studio-tile-label {
  display: block;
  width: 100%;
  max-width: 100%;
  color: #fffaf1;
  font-size: clamp(0.9rem, 1.15vw, 1.18rem);
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
  text-shadow: 0 2px 18px rgba(18, 16, 14, 0.5);
  text-transform: none;
}

.studio-tile:hover .studio-hover-card,
.studio-tile:focus-visible .studio-hover-card {
  opacity: 1;
  transform: translateZ(42px) scale(1);
}

@keyframes studio-tile-float {
  0% {
    --float-x: calc(var(--float-range-x) * -1);
    --float-y: calc(var(--float-range-y) * -0.45);
    --float-rotate: calc(var(--float-rotate-range) * -1);
  }

  42% {
    --float-x: calc(var(--float-range-x) * 0.55);
    --float-y: var(--float-range-y);
    --float-rotate: var(--float-rotate-range);
  }

  100% {
    --float-x: var(--float-range-x);
    --float-y: calc(var(--float-range-y) * -0.35);
    --float-rotate: calc(var(--float-rotate-range) * -0.35);
  }
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  gap: 28px;
  min-height: calc(86vh - 70px);
  padding: 44px 28px 28px;
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: space-between;
  gap: 42px;
}

.eyebrow {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 920px;
  margin: 18px 0 0;
  font-family: var(--font-site);
  font-size: 7rem;
  font-weight: 400;
  line-height: 0.95;
}

.hero-statement {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--ink-muted);
  font-size: 1.12rem;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
}

.meta-cell {
  min-height: 112px;
  padding: 18px;
  border-top: 1px solid var(--line-strong);
}

.meta-cell strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-site);
  font-size: 2rem;
  font-weight: 400;
}

.meta-cell span {
  color: var(--ink-muted);
  font-size: 0.88rem;
}

.hero-media {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  grid-template-rows: minmax(280px, 1fr) 190px;
  gap: 14px;
  min-height: 620px;
}

.hero-media-main,
.hero-media-small {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--charcoal);
  box-shadow: var(--shadow);
}

.hero-media-main {
  grid-row: 1 / 3;
}

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

.hero-media-small:nth-child(2) {
  background: var(--sage);
}

.hero-media-small:nth-child(3) {
  background: var(--berry);
}

.section {
  padding: 68px 28px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 30px;
}

.section-heading h2 {
  margin: 0;
  font-family: var(--font-site);
  font-size: 3.25rem;
  font-weight: 400;
  line-height: 1;
}

.section-heading p {
  max-width: 640px;
  margin: 0;
  color: var(--ink-muted);
}

.filterbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 24px;
}

.filterbar button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.filterbar button.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.project-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.project-card {
  position: relative;
  display: grid;
  min-height: 460px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-soft);
  grid-column: span 4;
  isolation: isolate;
}

.project-card.is-wide {
  grid-column: span 7;
}

.project-card.is-medium {
  grid-column: span 5;
}

.project-card.is-compact {
  min-height: 360px;
  grid-column: span 3;
}

.project-card.is-tall {
  min-height: 620px;
}

.project-card-media {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background: var(--charcoal);
}

.project-card-media img,
.project-card-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease, filter 450ms ease;
}

.project-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 62%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0));
  content: "";
}

.project-card:hover .project-card-media img,
.project-card:hover .project-card-media video {
  transform: scale(1.035);
  filter: saturate(1.06);
}

.project-card-copy {
  position: relative;
  z-index: 1;
  align-self: end;
  padding: 24px;
  color: #fffaf1;
}

.project-card-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.project-card h3 {
  max-width: 620px;
  margin: 0;
  font-family: var(--font-site);
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 1;
}

.project-card p {
  max-width: 520px;
  margin: 12px 0 0;
  color: rgba(255, 250, 241, 0.78);
  font-size: 0.92rem;
}

.profile-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1fr);
  gap: 36px;
  padding: 76px 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #f8f7f3;
}

.profile-band h2 {
  margin: 0;
  font-family: var(--font-site);
  font-size: 4.1rem;
  font-weight: 400;
  line-height: 1;
}

.profile-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.profile-columns p,
.profile-columns li {
  color: var(--ink-muted);
}

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

.profile-columns li + li {
  margin-top: 10px;
}

.motion-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.video-thumb {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--charcoal);
}

.video-thumb button {
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-align: left;
}

.video-thumb video {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.video-thumb p {
  margin: 0;
  padding: 12px;
  color: var(--paper);
  font-size: 0.82rem;
}

.project-page {
  padding: 104px 28px 28px;
}

.project-page.is-editorial-page {
  padding: 0 28px 28px;
  margin-top: -1px;
}

.is-editorial-page > .project-back {
  display: none;
}

.project-top {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1.08fr);
  gap: 28px;
  align-items: stretch;
  min-height: calc(86vh - 126px);
}

.is-editorial-page .project-top {
  display: block;
  margin: 0 -28px;
  padding: 0 28px;
  border-bottom: 0;
  background: #171717;
  color: var(--paper);
  min-height: auto;
}

.project-intro {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: 16px 0 0;
}

.is-editorial-page .project-intro {
  display: block;
  max-width: none;
  border-top: 0;
  padding: clamp(46px, 7.4vw, 98px) 0 clamp(38px, 5vw, 72px);
}

.project-title h1 {
  margin: 18px 0 0;
  font-family: var(--font-site);
  font-size: 5.7rem;
  font-weight: 400;
  line-height: 0.96;
}

.is-editorial-page .project-title h1 {
  max-width: min(100%, 1060px);
  margin-top: clamp(28px, 4.2vw, 58px);
  font-family: var(--font-site);
  font-size: clamp(5.4rem, 12vw, 13.25rem);
  font-weight: 200;
  letter-spacing: 0;
  line-height: 0.84;
  overflow-wrap: normal;
}

.is-editorial-page .project-title h1.is-latin {
  font-style: normal;
}

.is-editorial-page .project-title h1.is-cjk {
  max-width: min(100%, 1120px);
  font-family: var(--font-home-cjk);
  font-size: clamp(5.1rem, 11.6vw, 12.8rem);
  font-style: normal;
  font-weight: 600;
  line-height: 0.96;
}

.is-motion-reel-page .project-title h1 {
  max-width: min(100%, 1120px);
  font-family: var(--font-home-cjk);
  font-size: clamp(5.1rem, 11.6vw, 12.8rem);
  font-style: normal;
  font-weight: 600;
  line-height: 0.96;
}

.is-editorial-page .project-title h1.is-long {
  font-size: clamp(4.8rem, 9.8vw, 11rem);
  line-height: 0.9;
}

.project-title p {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--ink-muted);
  font-size: 1.05rem;
}

.is-editorial-page .project-title p {
  max-width: 720px;
  color: rgba(245, 241, 232, 0.68);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.38;
}

.is-editorial-page .project-title p:not(.eyebrow) {
  margin-top: clamp(24px, 3vw, 42px);
}

.project-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.is-editorial-page .project-facts {
  align-self: stretch;
  grid-template-columns: 1fr;
}

.project-fact {
  min-height: 112px;
  padding: 16px;
  background: var(--paper);
}

.is-editorial-page .project-fact {
  min-height: auto;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  background: transparent;
}

.is-editorial-page .project-fact:first-child {
  border-top: 0;
}

.project-fact span {
  display: block;
  margin-bottom: 8px;
  color: var(--ink-muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.project-fact strong {
  font-size: 1rem;
  font-weight: 600;
}

.project-visual {
  overflow: hidden;
  border-radius: 8px;
  background: var(--charcoal);
  box-shadow: var(--shadow);
}

.is-editorial-page .project-visual {
  display: block;
  width: calc(100% + 56px);
  margin: 0 -28px;
  border-radius: 0;
  background: #f8f5ed;
  box-shadow: none;
}

.project-visual img,
.project-visual video {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.is-editorial-page .project-visual img,
.is-editorial-page .project-visual video {
  display: block;
  height: auto;
  width: 100%;
  min-height: 0;
  max-height: none;
  aspect-ratio: auto;
  object-fit: contain;
}

.roopy-feature-video {
  margin: 6px -28px 0;
}

.roopy-feature-video .media-button {
  border-radius: 0;
  background: #171717;
}

.roopy-feature-video video {
  display: block;
  width: 100%;
  height: auto;
  background: #171717;
}

.project-section {
  padding: 70px 0 0;
}

.project-section-head {
  display: grid;
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 1fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 18px;
}

.project-section-head h2 {
  margin: 0;
  font-family: var(--font-site);
  font-size: 2.4rem;
  font-weight: 400;
}

.project-section-head p {
  max-width: 660px;
  margin: 0;
  color: var(--ink-muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
}

.gallery-item {
  grid-column: span var(--gallery-span, 4);
}

.gallery-item.is-panorama {
  grid-column: span var(--gallery-span, 8);
}

.gallery-item.is-portrait {
  grid-column: span var(--gallery-span, 3);
}

.gallery-item.is-tall {
  grid-column: span var(--gallery-span, 4);
}

.media-button {
  display: block;
  width: 100%;
  border: 0;
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
  background: var(--paper-soft);
  cursor: zoom-in;
}

.media-button img {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--paper-soft);
  object-fit: var(--gallery-fit, cover);
  transition: transform 360ms ease;
}

.gallery-item.is-panorama .media-button img {
  aspect-ratio: 16 / 9;
}

.gallery-item.is-portrait .media-button img,
.gallery-item.is-tall .media-button img {
  aspect-ratio: 3 / 4;
}

.media-button:hover img {
  transform: scale(1.025);
}

.caption {
  margin: 8px 0 0;
  color: var(--ink-muted);
  font-size: 0.78rem;
}

.editorial-section {
  padding-top: 0;
}

.is-editorial-page .editorial-section {
  margin-right: -28px;
  margin-left: -28px;
}

.editorial-divider {
  display: grid;
  grid-template-columns: minmax(160px, 0.34fr) minmax(0, 0.66fr);
  gap: 22px;
  margin-top: 6px;
  border-top: 1px solid rgba(245, 241, 232, 0.24);
  padding: clamp(14px, 1.5vw, 22px) 8px clamp(42px, 6vw, 92px);
  background: #171717;
  color: rgba(245, 241, 232, 0.72);
}

.editorial-divider span {
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
}

.editorial-divider p {
  max-width: 980px;
  margin: 0;
  font-family: var(--font-site);
  font-size: clamp(2.4rem, 4.8vw, 5.8rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.02;
}

.editorial-gallery {
  display: block;
}

.editorial-row {
  display: flex;
  gap: 6px;
  align-items: flex-start;
  margin-bottom: 6px;
}

.editorial-row:last-child {
  margin-bottom: 0;
}

.editorial-gallery.is-compact-gallery .editorial-row {
  gap: 4px;
  margin-bottom: 4px;
}

.editorial-item {
  flex: var(--image-grow, 1) 1 0;
  margin: 0;
  min-width: 0;
}

.editorial-item .media-button {
  border-radius: 0;
  background: #f8f5ed;
  cursor: zoom-in;
}

.editorial-item .media-button img,
.editorial-item .media-button video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: var(--image-ratio);
  background: #f8f5ed;
  object-fit: contain;
  object-position: center;
}

.editorial-video-item .media-button,
.editorial-video-item .media-button video {
  background: #171717;
}

.editorial-video-item .media-button {
  aspect-ratio: var(--image-ratio);
}

.editorial-video-item .media-button video {
  height: 100%;
  object-fit: cover;
}

.is-motion-reel-page .editorial-row,
.is-motion-reel-page .editorial-gallery.is-compact-gallery .editorial-row {
  gap: 0;
  margin-bottom: 0;
}

.is-motion-reel-page .editorial-video-item .media-button video {
  object-fit: contain;
}

.is-editorial-page [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 48px, 0);
  transition:
    opacity 760ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 920ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.is-editorial-page [data-reveal="media"] {
  overflow: hidden;
  clip-path: inset(10% 0 0 0);
  transform: translate3d(0, 64px, 0) scale(0.985);
  transition:
    opacity 820ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 1050ms cubic-bezier(0.22, 1, 0.36, 1),
    clip-path 1050ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.is-editorial-page [data-reveal="media"] img,
.is-editorial-page [data-reveal="media"] video {
  transform: scale(1.035);
  transition: transform 1200ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.is-editorial-page [data-reveal].is-visible {
  opacity: 1;
  clip-path: inset(0 0 0 0);
  transform: translate3d(0, 0, 0) scale(1);
}

.is-editorial-page [data-reveal].is-visible img,
.is-editorial-page [data-reveal].is-visible video {
  transform: scale(1);
}

.is-editorial-page [data-reveal].is-visible .media-button:hover img,
.is-editorial-page [data-reveal].is-visible .media-button:hover video {
  transform: scale(1.025);
}

.project-videos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.project-videos video {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  background: var(--charcoal);
  object-fit: cover;
}

.is-editorial-page .project-section:last-of-type {
  margin-right: -28px;
  margin-left: -28px;
  padding-top: 6px;
  background: #171717;
  color: var(--paper);
}

.is-editorial-page .project-section:last-of-type .section-heading {
  display: grid;
  grid-template-columns: minmax(160px, 0.34fr) minmax(0, 0.66fr);
  gap: 22px;
  margin-bottom: 0;
  border-top: 1px solid rgba(245, 241, 232, 0.24);
  padding: clamp(14px, 1.5vw, 22px) 8px clamp(42px, 6vw, 92px);
}

.is-editorial-page .project-section:last-of-type .section-heading h2 {
  margin: 0;
  color: rgba(245, 241, 232, 0.72);
  font-family: var(--font-site);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
}

.is-editorial-page .project-section:last-of-type .section-heading p {
  max-width: 980px;
  margin: 0;
  color: rgba(245, 241, 232, 0.72);
  font-family: var(--font-site);
  font-size: clamp(2.4rem, 4.8vw, 5.8rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.02;
}

.is-editorial-page .project-section:last-of-type .project-card {
  min-height: min(76vh, 720px);
  border: 0;
  border-radius: 0;
  grid-column: span 12;
}

.is-editorial-page .project-section:last-of-type .project-card-copy {
  padding: 24px;
}

.is-editorial-page .project-section:last-of-type .project-card h3 {
  max-width: 620px;
  font-family: var(--font-site);
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 1;
}

.is-editorial-page .project-section:last-of-type .project-card-kicker {
  gap: 8px;
  margin-bottom: 10px;
  color: rgba(255, 250, 241, 0.72);
  font-size: 0.78rem;
  font-weight: 700;
}

.is-editorial-page .project-section:last-of-type .project-card p {
  max-width: 520px;
  margin-top: 12px;
  color: rgba(255, 250, 241, 0.72);
  font-size: 0.92rem;
}

.next-project-link {
  display: grid;
  grid-template-columns: minmax(160px, 0.34fr) minmax(0, 1fr) auto;
  gap: 22px;
  align-items: end;
  padding: clamp(24px, 5vw, 72px) 8px clamp(34px, 6vw, 88px);
  border-top: 1px solid rgba(245, 241, 232, 0.24);
  color: var(--paper);
  text-decoration: none;
}

.next-project-kicker,
.next-project-action {
  color: rgba(245, 241, 232, 0.68);
  font-family: var(--font-site);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.next-project-link strong {
  display: block;
  color: var(--paper);
  font-family: var(--font-site);
  font-size: clamp(3.8rem, 10vw, 11rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.82;
}

.next-project-action {
  justify-self: end;
  padding-bottom: 0.18em;
}

.next-project-link:hover strong {
  color: rgba(245, 241, 232, 0.76);
}

.archive-page {
  padding: 104px 28px 28px;
}

.archive-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: 28px;
  align-items: stretch;
  min-height: calc(82vh - 126px);
}

.archive-panel {
  display: grid;
  place-items: center;
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ebe8dc;
}

.archive-panel h2 {
  margin: 0;
  font-family: var(--font-site);
  font-size: 7rem;
  font-weight: 400;
}

.archive-panel span {
  display: block;
  margin-top: 8px;
  color: var(--ink-muted);
  text-align: center;
}

.archive-pdf-page .archive-hero {
  display: block;
  min-height: auto;
  margin: 0 -28px;
  padding: 104px 28px clamp(42px, 7vw, 96px);
  background: #171717;
  color: var(--paper);
}

.archive-pdf-section {
  padding-top: 0;
  margin-right: -28px;
  margin-left: -28px;
}

.archive-pdf-list {
  display: grid;
  gap: 0;
}

.archive-pdf-item {
  width: min(100%, var(--archive-image-width), 1500px);
  margin: 0 auto;
}

.archive-pdf-item .media-button {
  border-radius: 0;
  background: #ece8dc;
  box-shadow: none;
  line-height: 0;
}

.archive-pdf-item img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  background: #ece8dc;
  object-fit: contain;
}

.editor-page {
  padding: 104px 28px 72px;
}

.editor-hero {
  display: flex;
  gap: 24px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 28px;
}

.editor-hero h1 {
  margin: 10px 0 0;
  font-family: var(--font-site);
  font-size: 4rem;
  font-weight: 400;
  line-height: 1;
}

.editor-actions,
.editor-order {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.editor-actions button,
.editor-order button,
.editor-panel button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.editor-actions button:hover,
.editor-order button:hover,
.editor-panel button:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.editor-actions button:disabled,
.editor-order button:disabled,
.editor-panel button:disabled {
  cursor: default;
  opacity: 0.36;
}

.editor-shell {
  display: grid;
  grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.editor-panel {
  position: sticky;
  top: 94px;
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-soft);
}

.editor-panel label,
.editor-controls label {
  display: grid;
  gap: 8px;
  color: var(--ink-muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.editor-panel select,
.editor-panel textarea,
.editor-controls select {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  background: #fffdf7;
  color: var(--ink);
  font: inherit;
  text-transform: none;
}

.editor-panel textarea {
  min-height: 126px;
  resize: vertical;
}

.editor-status {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.86rem;
}

.editor-list {
  display: grid;
  gap: 14px;
}

.editor-card {
  display: grid;
  grid-template-columns: minmax(180px, 260px) minmax(0, 1fr);
  gap: 16px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-soft);
}

.editor-thumb {
  overflow: hidden;
  border-radius: 8px;
  background: var(--charcoal);
}

.editor-thumb img,
.editor-thumb video {
  width: 100%;
  height: 100%;
  min-height: 170px;
  object-fit: cover;
}

.editor-card-main {
  display: grid;
  gap: 18px;
}

.editor-card-head {
  display: flex;
  gap: 16px;
  align-items: start;
  justify-content: space-between;
}

.editor-card-head h2 {
  margin: 6px 0 0;
  font-family: var(--font-site);
  font-size: 1.7rem;
  font-weight: 400;
}

.editor-controls {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.site-footer {
  display: grid;
  gap: 0;
  padding: clamp(34px, 4vw, 58px) 28px 24px;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.site-footer h2 {
  max-width: 1120px;
  margin: 0;
  font-family: var(--font-site);
  font-size: clamp(3.25rem, 9vw, 9.5rem);
  font-weight: 400;
  line-height: 0.88;
}

.footer-directory {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: clamp(20px, 4vw, 56px);
  align-items: start;
  padding: 0 0 34px;
}

.footer-directory-item {
  display: grid;
  min-width: 0;
  gap: 8px;
}

.footer-directory-item span,
.footer-meta {
  color: rgba(26, 25, 22, 0.58);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-directory-item strong {
  color: var(--ink);
  font-family: var(--font-site);
  font-size: clamp(1.05rem, 1.45vw, 1.55rem);
  font-weight: 400;
  line-height: 1.04;
  overflow-wrap: anywhere;
}

.footer-meta {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

body:has(.is-editorial-page) .site-footer {
  margin-right: 0;
  margin-left: 0;
  border-top: 1px solid rgba(245, 241, 232, 0.24);
  background: #171717;
  color: var(--paper);
}

body:has(.is-editorial-page) .site-footer .eyebrow {
  color: rgba(245, 241, 232, 0.72);
}

body:has(.is-editorial-page) .footer-directory,
body:has(.is-editorial-page) .footer-meta {
  border-top-color: rgba(245, 241, 232, 0.24);
}

body:has(.is-editorial-page) .footer-directory-item span,
body:has(.is-editorial-page) .footer-meta {
  color: rgba(245, 241, 232, 0.62);
}

body:has(.is-editorial-page) .footer-directory-item strong {
  color: var(--paper);
}

body:has(.is-editorial-page) .site-footer h2 {
  color: var(--paper);
  font-family: var(--font-site);
  font-size: clamp(2.8rem, 6vw, 7rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.9;
}

body:has(.is-editorial-page) .footer-link {
  border-color: rgba(245, 241, 232, 0.42);
  color: var(--paper);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 16px;
  padding: 18px;
  background: rgba(16, 15, 14, 0.94);
  color: var(--paper);
}

.lightbox.is-open {
  display: grid;
}

.lightbox-close {
  justify-self: end;
  min-height: 42px;
  border: 1px solid rgba(245, 241, 232, 0.3);
  border-radius: 999px;
  padding: 8px 15px;
  background: transparent;
  color: var(--paper);
  cursor: pointer;
}

.lightbox-stage {
  display: grid;
  min-height: 0;
  place-items: center;
}

.lightbox-stage img,
.lightbox-stage video {
  max-width: 100%;
  max-height: 78vh;
  border-radius: 8px;
  object-fit: contain;
}

.lightbox-caption {
  margin: 0;
  color: rgba(245, 241, 232, 0.72);
  text-align: center;
}

@media (max-width: 1120px) {
  .hero,
  .project-top,
  .archive-hero,
  .profile-band {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 5.2rem;
  }

  .studio-title-word {
    font-size: 7.4rem;
  }

  .studio-title-name {
    font-size: 1.9rem;
  }


  .hero-media {
    min-height: 560px;
  }

  .project-title h1 {
    font-size: 4.6rem;
  }

  .project-card,
  .project-card.is-wide,
  .project-card.is-medium {
    grid-column: span 6;
  }

  .project-card.is-compact {
    grid-column: span 4;
  }
}

@media (max-width: 760px) {
  .site-header {
    top: 12px;
    width: calc(100% - 24px);
  }

  .page-nav-header {
    top: 5.22vh;
    right: 2.55vw;
    left: auto;
    width: auto;
  }

  .nav-links {
    gap: 2px;
    justify-content: center;
    overflow: visible;
  }

  .nav-links a,
  .project-menu a {
    padding-right: 9px;
    padding-left: 9px;
    font-size: 0.74rem;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .project-menu {
    left: 50%;
    width: min(300px, calc(100vw - 24px));
    transform: translate(-50%, -8px);
  }

  .nav-dropdown:hover .project-menu,
  .nav-dropdown:focus-within .project-menu {
    transform: translate(-50%, 0);
  }

  .hero,
  .section,
  .project-page,
  .archive-page,
  .editor-page,
  .profile-band,
  .site-footer {
    padding-right: 16px;
    padding-left: 16px;
  }

  .studio-home {
    min-height: 100vh;
    padding: 0;
  }

  .home-hero {
    min-height: 100svh;
  }

  .home-hero-content {
    width: min(100% - 28px, 620px);
    gap: 18px;
    padding-top: 48px;
  }

  .studio-title-heading {
    width: min(100%, 520px);
  }

  .studio-title-word {
    font-size: 4.15rem;
  }

  .studio-title-name {
    font-size: 1.35rem;
  }

  .home-statement {
    max-width: 90vw;
    font-size: 0.86rem;
  }

  .home-scroll-link {
    right: 16px;
    bottom: 18px;
    padding: 8px 11px;
    font-size: 0.68rem;
  }

  .home-work-index {
    gap: 36px;
    padding: 66px 16px 88px;
  }

  .home-work-head {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .home-work-head h2 {
    font-size: clamp(2.4rem, 12vw, 4.6rem);
  }

  .home-project-row {
    grid-template-columns: 42px minmax(0, 1fr);
    min-height: 76px;
  }

  .home-project-meta {
    grid-column: 2;
    font-size: 0.7rem;
  }

  .studio-work-grid {
    display: block;
    width: 100%;
    margin: 0;
  }

  .studio-float {
    width: clamp(170px, calc(var(--tile-w) * 1.86), 374px);
  }

  .studio-tile {
    width: 100%;
  }

  .hero {
    min-height: auto;
    padding-top: 28px;
  }

  .hero h1 {
    font-size: 3.25rem;
  }

  .hero-meta,
  .project-facts,
  .profile-columns,
  .section-heading,
  .project-section-head,
  .editorial-heading,
  .editorial-divider {
    grid-template-columns: 1fr;
  }

  .is-editorial-page .project-section:last-of-type .section-heading {
    grid-template-columns: 1fr;
  }

  .is-editorial-page .project-section:last-of-type .section-heading p {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .next-project-link {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .next-project-link strong {
    font-size: clamp(3rem, 16vw, 5.4rem);
  }

  .next-project-action {
    justify-self: start;
  }

  .editorial-divider p {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .editorial-row {
    flex-direction: column;
  }

  .editorial-item {
    width: 100%;
    flex: none;
  }

  .hero-media {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 420px 180px;
    min-height: 0;
  }

  .hero-media-main {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  .section-heading h2,
  .profile-band h2 {
    font-size: 2.6rem;
  }

  .project-grid,
  .gallery-grid,
  .editorial-gallery,
  .project-videos,
  .motion-strip {
    grid-template-columns: 1fr;
  }

  .project-card,
  .project-card.is-wide,
  .project-card.is-medium,
  .project-card.is-compact,
  .gallery-item,
  .gallery-item.is-panorama,
  .gallery-item.is-portrait,
  .gallery-item.is-tall,
  .editorial-item,
  .editorial-item.is-feature,
  .editorial-item.is-pair,
  .editorial-item.is-third,
  .editorial-item.is-wide-left,
  .editorial-item.is-narrow-right,
  .editorial-item.is-narrow-left,
  .editorial-item.is-wide-right {
    grid-column: span 1;
  }

  .project-card,
  .project-card.is-compact,
  .project-card.is-tall {
    min-height: 420px;
  }

  .project-title h1 {
    font-size: 3rem;
  }

  .project-visual img,
  .project-visual video,
  .archive-panel {
    min-height: 420px;
  }

  .site-footer {
    padding: 34px 16px 22px;
  }

  .footer-directory {
    grid-template-columns: 1fr;
  }

  .footer-directory {
    gap: 24px;
  }

  .footer-directory .footer-link {
    justify-self: start;
  }

  .footer-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .editor-hero,
  .editor-card-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .editor-hero h1 {
    font-size: 2.6rem;
  }

  .editor-shell,
  .editor-card,
  .editor-controls {
    grid-template-columns: 1fr;
  }

  .editor-panel {
    position: static;
  }

  .site-footer h2 {
    font-size: clamp(3rem, 16vw, 5.5rem);
  }
}

@media (max-width: 420px) {
  .studio-title-word {
    font-size: 3.35rem;
  }

  .studio-title-name {
    font-size: 1.18rem;
  }
}

body:has(.studio-home) {
  background: #050505;
  overflow-x: hidden;
}

body:has(.studio-home) .site-header {
  display: none;
}

body:has(.studio-home) .site-frame {
  isolation: isolate;
  background: #ece7dc;
}

body:has(.studio-home) #app {
  position: relative;
  z-index: 2;
  background: #ece7dc;
}

body.is-home-route .site-footer,
body:has(.studio-home) .site-footer {
  position: sticky;
  bottom: 0;
  z-index: 1;
  border-top: 0 !important;
  box-shadow: none;
  background: #ece7dc;
  color: rgba(21, 20, 19, 0.78);
}

body:has(.studio-home) .site-footer::before {
  display: block;
  height: clamp(180px, 28vh, 340px);
  content: "";
}

body.is-home-route .home-work-index,
body:has(.studio-home) .home-work-index {
  box-shadow: none;
}

body.is-home-route .footer-meta,
body:has(.studio-home) .footer-meta {
  border-top: 0;
}

body:has(.studio-home) .footer-directory,
body:has(.studio-home) .footer-meta {
  border-top-color: rgba(21, 20, 19, 0.16);
}

body:has(.studio-home) .footer-directory-item span,
body:has(.studio-home) .footer-meta {
  color: rgba(21, 20, 19, 0.48);
}

body:has(.studio-home) .footer-directory-item strong {
  color: rgba(21, 20, 19, 0.84);
}

body:has(.studio-home) .footer-link {
  border-color: rgba(21, 20, 19, 0.24);
  color: rgba(21, 20, 19, 0.84);
}

body:has(.studio-home) .footer-link:hover {
  border-color: rgba(21, 20, 19, 0.86);
  background: rgba(21, 20, 19, 0.86);
  color: #ece7dc;
}

.studio-home {
  min-height: 100svh;
  overflow: visible;
  background: #050505;
}

.home-hero {
  position: sticky;
  top: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100svh;
  min-height: 100svh;
  padding: 0;
  overflow: hidden;
  background: #050505;
}

.home-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  filter: brightness(var(--hero-brightness, 1));
  transition: filter 120ms linear;
}

.home-reel-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  filter: none;
  object-fit: cover;
  transform: scale(1.035);
  transition:
    opacity 760ms cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 1600ms cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, transform;
}

.home-reel-video.is-active {
  opacity: 1;
  transform: scale(1.015);
}

.home-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.04) 46%, rgba(0, 0, 0, 0.14)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.12), transparent 28%, transparent 72%, rgba(0, 0, 0, 0.1));
  pointer-events: none;
}

.home-brand-lockup,
.home-role,
.home-location,
.home-nav,
.home-folio-mark {
  position: absolute;
  z-index: 3;
  color: rgba(238, 238, 238, 0.78);
  text-shadow: none;
}

.home-brand-lockup {
  position: fixed;
  top: 5.49vh;
  left: 2.04vw;
  z-index: 32;
  display: grid;
  width: max-content;
  color: var(--home-brand-color, rgba(238, 238, 238, 0.86));
  font-family: var(--font-latin);
  font-weight: 200;
  text-decoration: none;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.22);
  transition: color 120ms linear, text-shadow 120ms linear;
}

.home-brand-name,
.home-brand-sub {
  display: block;
  letter-spacing: 0;
}

.home-brand-name {
  font-size: clamp(1rem, 1.56vw, 2rem);
  font-style: normal;
  line-height: 0.9;
}

.home-brand-sub {
  justify-self: end;
  margin-top: -0.14em;
  font-size: clamp(1rem, 1.56vw, 2rem);
  font-style: italic;
  line-height: 0.84;
  user-select: none;
}

.home-role,
.home-location {
  top: 5.35vh;
  margin: 0;
  font-family: var(--font-latin);
  font-size: clamp(1rem, 1.56vw, 2rem);
  font-style: normal;
  font-weight: 200;
  letter-spacing: 0;
  line-height: 0.95;
}

.home-role {
  left: 33.02vw;
}

.home-location {
  left: 56.95vw;
}

.home-nav {
  top: 5.22vh;
  right: 2.55vw;
  display: grid;
  gap: clamp(1.2rem, 2.95vh, 2.2rem);
  text-align: center;
}

.home-nav-project {
  position: relative;
}

.home-nav-project::before {
  position: absolute;
  top: -0.75rem;
  right: 100%;
  width: 2.4rem;
  height: calc(100% + 1.5rem);
  content: "";
}

.home-nav-item {
  display: grid;
  justify-items: center;
  gap: 0;
  color: rgba(238, 238, 238, 0.78);
  transition: color 180ms ease, transform 180ms ease;
}

.home-nav-item:hover,
.home-nav-item:focus-visible {
  color: rgba(255, 255, 255, 0.96);
  transform: translateY(-1px);
}

.home-nav-cn {
  font-family: var(--font-home-cjk);
  font-size: clamp(1.24rem, 1.78vw, 2.28rem);
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.98;
}

.home-nav-en {
  font-family: var(--font-latin);
  font-size: clamp(1rem, 1.34vw, 1.72rem);
  font-style: italic;
  font-weight: 200;
  letter-spacing: 0;
  line-height: 0.9;
}

.home-project-menu {
  position: absolute;
  top: -0.3rem;
  right: calc(100% + 0.35rem);
  display: grid;
  gap: 0.12rem;
  width: max-content;
  min-width: 0;
  max-width: min(13rem, 42vw);
  padding: 0.42rem 0.52rem;
  border-radius: 6px;
  background: rgba(5, 5, 5, 0.12);
  opacity: 0;
  text-align: right;
  transform: translateX(10px) scale(0.985);
  transform-origin: right top;
  transition:
    opacity 220ms ease 180ms,
    transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1) 180ms;
  pointer-events: none;
}

.home-project-menu a {
  display: block;
  padding: 0.12rem 0;
  color: rgba(238, 238, 238, 0.72);
  font-family: var(--font-latin);
  font-size: clamp(0.92rem, 1vw, 1.15rem);
  font-style: italic;
  font-weight: 200;
  line-height: 1.1;
  opacity: 0;
  transform: translate3d(0.55rem, 0.25rem, 0) scale(0.96);
  transform-origin: right center;
  transition:
    color 180ms ease,
    opacity 260ms ease,
    transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: calc(var(--menu-index, 0) * 34ms);
}

.home-project-menu-primary {
  color: rgba(238, 238, 238, 0.86);
  font-size: clamp(1.02rem, 1.18vw, 1.38rem);
}

.home-project-menu-children {
  display: grid;
  gap: 0;
  margin: 0.05rem 0 0.38rem;
}

.home-project-menu-children a {
  color: rgba(238, 238, 238, 0.62);
  font-size: clamp(0.78rem, 0.86vw, 1rem);
  font-style: normal;
}

.home-nav-project:hover .home-project-menu,
.home-nav-project:focus-within .home-project-menu {
  opacity: 1;
  transform: translateX(0) scale(1);
  transition-delay: 0ms;
  pointer-events: auto;
}

.home-nav-project:hover .home-project-menu a,
.home-nav-project:focus-within .home-project-menu a {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.home-project-menu a:hover,
.home-project-menu a:focus-visible {
  color: rgba(255, 255, 255, 0.96);
  transform: translate3d(-0.24rem, -0.04rem, 0) scale(1.08);
  transition-delay: 0ms;
}

.home-folio-mark {
  left: 1.8vw;
  bottom: 5.49vh;
  display: block;
  color: rgba(238, 238, 238, 0.86);
  font-family: var(--font-latin);
  font-size: clamp(4.25rem, 4.45vw, 6.4rem);
  font-style: italic;
  font-weight: 200;
  letter-spacing: 0;
  line-height: 0.72;
  white-space: nowrap;
  user-select: none;
}

.home-work-index {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(96px, 13vw) minmax(0, 1160px);
  gap: clamp(48px, 6vw, 86px) 0;
  min-height: 0;
  align-content: start;
  padding: clamp(58px, 6.4vw, 90px) clamp(22px, 3vw, 42px) clamp(42px, 5vw, 76px);
  margin-top: 0;
  border-top: 1px solid rgba(21, 20, 19, 0.18);
  background: #ece7dc;
  color: rgba(21, 20, 19, 0.82);
  font-family: var(--font-latin), var(--font-home-cjk);
  box-shadow: 0 -28px 70px rgba(21, 20, 19, 0.18);
  backdrop-filter: blur(12px) saturate(0.78);
}

.home-work-head {
  display: contents;
}

.home-work-head .home-kicker {
  display: none;
}

.home-work-head h2 {
  grid-column: 2;
  max-width: min(100%, 1160px);
  margin: 0;
  color: rgba(21, 20, 19, 0.46);
  font-family: var(--font-latin);
  font-size: clamp(3.1rem, 4.9vw, 5.45rem);
  font-style: italic;
  font-weight: 200;
  line-height: 0.96;
  text-wrap: balance;
}

.home-project-list {
  grid-column: 1 / 3;
  display: grid;
  gap: clamp(44px, 6vw, 78px);
  width: 100%;
  border-top: 0;
}

.home-project-row {
  grid-template-columns: minmax(96px, 13vw) minmax(0, 760px);
  min-height: 0;
  padding: 0;
  gap: 0;
  align-items: start;
  border-bottom: 0;
}

.home-project-row.has-children {
  min-height: 0;
  padding-bottom: 0;
}

.home-project-number,
.home-project-meta {
  color: rgba(21, 20, 19, 0.42);
  font-family: var(--font-latin);
  font-size: clamp(0.78rem, 0.82vw, 0.98rem);
  font-style: normal;
  font-weight: 200;
  line-height: 1.08;
}

.home-project-number {
  transform: none;
}

.home-project-row:nth-child(2) .home-project-number {
  transform: translateY(0.42em);
}

.home-project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.12em 0.28em;
  align-self: end;
  padding-bottom: 0.1em;
  font-style: italic;
  text-transform: none;
}

.home-project-title {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  gap: 0.02em 0.18em;
  align-items: baseline;
  color: rgba(21, 20, 19, 0.5);
  font-size: clamp(2.35rem, 4vw, 4.75rem);
  font-style: italic;
  line-height: 0.9;
}

.home-project-stack {
  display: grid;
  gap: clamp(10px, 1.2vw, 18px);
  min-width: 0;
}

.home-project-title-link {
  width: fit-content;
  max-width: 100%;
  transition: transform 180ms ease, color 180ms ease;
}

.home-project-title-link:hover,
.home-project-title-link:focus-visible {
  transform: translateX(0.08em);
}

.home-subproject-list {
  display: grid;
  gap: 0.05em;
  width: min(100%, 520px);
  padding-left: 0.2em;
}

.home-subproject-link {
  position: relative;
  width: fit-content;
  padding-left: 0.82em;
  color: rgba(21, 20, 19, 0.48);
  font-family: var(--font-latin), var(--font-home-cjk);
  font-size: clamp(0.82rem, 0.92vw, 1.05rem);
  font-style: normal;
  font-weight: 200;
  line-height: 1.12;
}

.home-subproject-link::before {
  position: absolute;
  top: 0.48em;
  left: 0;
  width: 0.34em;
  height: 0.34em;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.home-project-title-link:hover,
.home-project-title-link:focus-visible,
.home-subproject-link:hover,
.home-subproject-link:focus-visible {
  color: rgba(21, 20, 19, 0.78);
}

.home-media-river {
  --river-gap: clamp(4px, 0.55vw, 9px);
  position: relative;
  z-index: 4;
  display: grid;
  gap: var(--river-gap);
  width: 100%;
  margin: 0;
  padding: var(--river-gap) 0;
  overflow: hidden;
  background: #ece7dc;
}

.home-media-row {
  --row-h: clamp(260px, 27vw, 500px);
  overflow: hidden;
  background: #ece7dc;
}

.home-media-row:nth-child(2) {
  --row-h: clamp(300px, 31vw, 560px);
}

.home-media-row:nth-child(3) {
  --row-h: clamp(240px, 24vw, 460px);
}

.home-media-row + .home-media-row {
  margin-top: var(--river-gap);
}

.home-media-track,
.home-media-set {
  display: flex;
  gap: var(--river-gap);
  width: max-content;
  background: #ece7dc;
}

.home-media-track {
  animation: home-media-drift var(--row-duration, 74s) linear infinite;
  will-change: transform;
}

.home-media-row:nth-child(2) .home-media-track {
  animation-name: home-media-drift-reverse;
}

.home-media-set {
  align-items: stretch;
}

.home-media-card {
  position: relative;
  display: block;
  flex: 0 0 clamp(260px, var(--card-w), 780px);
  width: clamp(260px, var(--card-w), 780px);
  height: var(--row-h);
  overflow: hidden;
  background: rgba(21, 20, 19, 0.06);
  color: #ece7dc;
}

.home-media-river,
.home-media-river * {
  border-color: #ece7dc;
}

.home-media-card img,
.home-media-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.95) contrast(1.03);
  transform: scale(var(--media-scale, 1.018));
  transform-origin: var(--media-origin, center);
  transition:
    filter 240ms ease,
    transform 420ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.home-media-card:hover img,
.home-media-card:hover video,
.home-media-card:focus-visible img,
.home-media-card:focus-visible video {
  filter: saturate(1.06) contrast(1.06);
  transform: scale(var(--media-hover-scale, 1.06));
}

.home-media-label {
  position: absolute;
  left: 14px;
  bottom: 12px;
  z-index: 2;
  color: rgba(245, 241, 232, 0.82);
  font-family: var(--font-latin), var(--font-home-cjk);
  font-size: clamp(0.72rem, 0.78vw, 0.95rem);
  font-style: italic;
  font-weight: 200;
  line-height: 1;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.home-media-card:hover .home-media-label,
.home-media-card:focus-visible .home-media-label {
  opacity: 1;
  transform: translateY(0);
}

@keyframes home-media-drift {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(calc(-50% - var(--river-gap) / 2), 0, 0);
  }
}

@keyframes home-media-drift-reverse {
  from {
    transform: translate3d(calc(-50% - var(--river-gap) / 2), 0, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-media-track {
    animation: none;
  }
}

.home-text-en {
  font-family: var(--font-latin);
  font-style: normal;
  font-weight: 200;
}

.home-text-cn {
  font-family: var(--font-home-cjk);
  font-style: normal;
  font-weight: 600;
}

.home-project-title .home-text-cn {
  font-size: 0.76em;
  color: inherit;
  line-height: 1;
}

.home-project-title .home-text-en {
  font-style: italic;
}

.home-project-title .home-text-cn + .home-text-en {
  font-size: 0.64em;
}

.home-project-meta .home-text-cn {
  font-size: 0.92em;
  font-style: italic;
}

.home-project-meta .home-text-en {
  font-style: italic;
}

@media (max-width: 1120px) {
  .home-role {
    left: 33.02vw;
  }

  .home-location {
    left: 56.95vw;
    right: auto;
  }

  .home-work-head {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .home-work-head h2 {
    font-size: clamp(3.45rem, 9vw, 6.6rem);
    line-height: 0.94;
  }
}

@media (max-width: 760px) {
  .studio-home {
    min-height: 100svh;
  }

  .home-hero {
    height: 100svh;
    min-height: 100svh;
  }

  .home-hero {
    padding: 0;
  }

  .home-brand-lockup {
    top: 5.49vh;
    left: 2.04vw;
  }

  .home-role {
    top: 5.35vh;
    left: 33.02vw;
    font-size: clamp(1rem, 1.56vw, 2rem);
  }

  .home-location {
    top: 5.35vh;
    right: auto;
    left: 56.95vw;
    font-size: clamp(1rem, 1.56vw, 2rem);
  }

  .home-nav {
    top: 5.22vh;
    right: 2.55vw;
    gap: clamp(1.2rem, 2.95vh, 2.2rem);
  }

  .home-nav-cn {
    font-size: clamp(1.24rem, 1.78vw, 2.28rem);
  }

  .home-nav-en {
    font-size: clamp(1rem, 1.34vw, 1.72rem);
  }

  .home-project-menu {
    top: 100%;
    right: 0;
    min-width: 9.5rem;
    max-width: 12rem;
    padding-top: 0.6rem;
    background: rgba(5, 5, 5, 0.24);
  }

  .home-project-menu a {
    font-size: 0.88rem;
  }

  .home-folio-mark {
    left: 1.8vw;
    bottom: 5.49vh;
  }

  .home-work-index {
    gap: 38px;
    padding: 66px 16px 48px;
  }

  .home-media-river {
    --river-gap: 5px;
  }

  body:has(.studio-home) .site-footer::before {
    height: clamp(140px, 22vh, 220px);
  }

  .home-media-card {
    flex-basis: clamp(180px, var(--card-w), 420px);
    width: clamp(180px, var(--card-w), 420px);
  }

  .home-work-head {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .home-work-head h2 {
    font-size: clamp(2.7rem, 9.5vw, 4.35rem);
    line-height: 0.94;
  }

  .home-project-row {
    grid-template-columns: 42px minmax(0, 1fr);
    min-height: 92px;
    padding: 12px 0 15px;
    gap: 14px;
  }

  .home-project-row.has-children {
    min-height: 0;
    padding-bottom: 22px;
  }

  .home-project-title {
    font-size: clamp(2rem, 9.6vw, 3.65rem);
  }

  .home-subproject-link {
    font-size: clamp(1rem, 4.7vw, 1.45rem);
  }

  .home-project-meta {
    grid-column: 2;
    align-self: start;
    font-size: 0.72rem;
  }
}

@media (max-width: 420px) {
  .home-role,
  .home-location {
    display: none;
  }

  .home-nav {
    right: 2.55vw;
  }

  .home-folio-mark {
    font-size: clamp(2.7rem, 12vw, 3.2rem);
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }

  .is-editorial-page [data-reveal],
  .is-editorial-page [data-reveal="media"],
  .is-editorial-page [data-reveal="media"] img,
  .is-editorial-page [data-reveal="media"] video {
    opacity: 1;
    clip-path: none;
    transform: none;
    transition: none;
  }

  .studio-float {
    --float-x: 0px;
    --float-y: 0px;
    --float-rotate: 0deg;
    animation: none;
  }
}
