:root {
  color-scheme: light;
  --bg: #ffffff;
  --fg: #050505;
  --muted: #666666;
  --line: #050505;
  --soft-line: rgba(5, 5, 5, 0.16);
  --paper: #f4f4f1;
  --accent: #d8ff3e;
  --klein: #002fa7;
  --klein-bright: #0057ff;
  --gap: clamp(18px, 2.2vw, 34px);
  --page: min(calc(100% - 32px), 1680px);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  color: var(--fg);
  background: var(--bg);
  font-family:
    Arial,
    Helvetica,
    "PingFang SC",
    "Microsoft YaHei",
    sans-serif;
  letter-spacing: 0;
}

body.is-viewer-open {
  overflow: visible;
}

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

button {
  color: inherit;
  font: inherit;
}

.page-loader {
  --loader-spread: 0;
  --loader-left-x: 0px;
  --loader-right-x: 0px;
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 16px;
  background: #050505;
  color: #ffffff;
  pointer-events: auto;
  transform: translateY(0);
  transition:
    opacity 360ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 520ms cubic-bezier(0.7, 0, 0.2, 1);
}

.page-loader.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100%);
}

.loader-inner {
  position: relative;
  width: calc(100vw - 32px);
  min-height: 1em;
  text-transform: uppercase;
}

.loader-inner > span,
.loader-inner > strong {
  position: absolute;
  top: 50%;
  left: 50%;
  color: rgba(255, 255, 255, 0.88);
  font-family: "Courier New", Consolas, monospace;
  font-size: clamp(12px, 0.95vw, 17px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  transform: translate(-50%, -50%);
}

.loader-inner > span {
  z-index: 1;
}

.loader-inner strong {
  z-index: 2;
  white-space: nowrap;
}

.loader-inner #loader-count {
  position: static;
  display: inline;
  transform: none;
}

.loader-inner .loader-left {
  transform: translate(calc(-50% + var(--loader-left-x)), -50%);
}

.loader-inner .loader-right {
  transform: translate(calc(-50% + var(--loader-right-x)), -50%);
}

@media (max-width: 640px) {
  .loader-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    width: auto;
  }
}

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

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  width: var(--page);
  margin: 0 auto;
  padding: 0;
  color: var(--accent);
  background: transparent;
  border: 0;
  backdrop-filter: none;
  mix-blend-mode: normal;
  text-shadow: 0 0 18px rgba(216, 255, 62, 0.2);
}

.brand {
  font-size: clamp(20px, 2vw, 34px);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px 22px;
  max-width: 620px;
  padding-top: 4px;
}

.site-nav a,
.text-link,
.site-footer a {
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.selected,
.archive,
.intro-section,
.profile-section,
.site-footer {
  width: var(--page);
  margin: 0 auto;
}

.opening {
  --hero-opacity: 1;
  --hero-blur: 0px;
  --hero-y: 0vh;
  --hero-scale: 1;
  --copy-opacity: 1;
  --copy-y: 0vh;
  --enter-opacity: 1;

  width: 100%;
  height: 100vh;
  min-height: 100vh;
  height: 100dvh;
  min-height: 100dvh;
  position: relative;
  overflow: hidden;
  display: block;
  padding: 0;
  background: #050505;
  border-bottom: 1px solid var(--line);
}

.opening-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  width: var(--page);
  height: 100%;
  min-height: 100%;
  margin: 0 auto;
  min-width: 0;
  padding: 104px 0 42px;
  color: var(--accent);
  pointer-events: none;
  mix-blend-mode: normal;
  opacity: var(--copy-opacity);
  transform: translateY(var(--copy-y));
  text-shadow: 0 0 18px rgba(216, 255, 62, 0.18);
  transition:
    opacity 120ms linear,
    transform 120ms linear;
}

.hero-effect {
  position: absolute;
  inset: -4%;
  z-index: 1;
  width: 108%;
  height: 108%;
  border: 0;
  background: #050505;
  opacity: var(--hero-opacity);
  filter: blur(var(--hero-blur));
  transform: translateY(var(--hero-y)) scale(calc(var(--hero-scale) * 1.08));
  transition:
    opacity 120ms linear,
    transform 120ms linear,
    filter 120ms linear;
}

.opening-overlay a,
.opening-overlay button {
  pointer-events: auto;
}

.opening-index {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 20px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.opening-index span,
.opening-grid p,
.profile-statement p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3,
p,
ul {
  margin-top: 0;
}

h1 {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  margin-bottom: 0;
  font-size: 1px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.opening-grid {
  display: grid;
  grid-template-columns: minmax(0, 280px) minmax(0, 280px);
  gap: var(--gap);
  justify-content: space-between;
  width: 100%;
  max-width: none;
  min-width: 0;
}

.opening-grid > * {
  min-width: 0;
}

.opening-grid p,
.profile-statement p {
  margin-bottom: 0;
  font-size: clamp(13px, 1.1vw, 17px);
  font-weight: 800;
  line-height: 1.12;
}

.hero-media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: var(--paper);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition:
    filter 240ms ease,
    transform 420ms ease;
}

.hero-media:hover img,
.hero-media:focus-visible img {
  filter: grayscale(0%);
  transform: scale(1.025);
}

.hero-media span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 9px 10px;
  background: var(--accent);
  color: var(--fg);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.section-label {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.selected,
.archive,
.intro-section,
.profile-section {
  scroll-margin-top: 88px;
}

.intro-section {
  padding: clamp(72px, 9vw, 150px) 0 clamp(56px, 7vw, 110px);
  border-bottom: 1px solid var(--line);
}

.intro-kicker {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.intro-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
}

.intro-trail {
  position: absolute;
  inset: 0;
  z-index: 5;
  overflow: hidden;
  pointer-events: auto;
}

.intro-trail iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
}

.intro-grid h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  width: 100%;
  max-width: none;
  font-size: clamp(48px, 7.8vw, 136px);
  font-weight: 900;
  line-height: 0.84;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.intro-copy {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: min(760px, 100%);
  margin-left: auto;
}

.intro-copy p {
  margin: 0;
  color: #202020;
  font-size: clamp(20px, 1.75vw, 28px);
  font-weight: 800;
  line-height: 1.24;
  text-align: justify;
  text-align-last: left;
}

.intro-section {
  --intro-copy-opacity: 0;
  --intro-copy-y: 38px;
  --intro-drift-x: 4%;
  --intro-photo-opacity: 0;
  --intro-photo-y: 72px;
  --intro-photo-rotate: 4deg;
  --intro-card-warm-x: 0px;
  --intro-card-warm-y: 0px;
  --intro-card-warm-rotate: 0deg;
  --intro-card-pale-x: 0px;
  --intro-card-pale-y: 0px;
  --intro-card-pale-rotate: 0deg;
  --intro-card-dark-x: 0px;
  --intro-card-dark-y: 0px;
  --intro-card-dark-rotate: 0deg;
  --intro-card-photo-rotate: 0deg;
  --intro-corner-opacity: 0;
  --intro-wordmark-y: 18%;
  --intro-wordmark-opacity: 0;
  position: relative;
  display: block;
  width: 100%;
  min-height: 220vh;
  min-height: 220svh;
  margin: 0;
  padding: 0 max(22px, calc((100% - 1680px) / 2 + 32px));
  overflow: visible;
  isolation: isolate;
  border-bottom: 0;
  background:
    linear-gradient(rgba(243, 240, 232, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(243, 240, 232, 0.03) 1px, transparent 1px),
    #050605;
  background-size: 80px 80px, 80px 80px, auto;
  color: #f3f0e8;
  scroll-margin-top: 0;
}

.intro-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.16;
  background-image: radial-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 4px 4px;
}

.intro-section::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 3;
  height: 34%;
  pointer-events: none;
  background: linear-gradient(to top, #050605 4%, transparent);
}

.intro-section > .intro-grid {
  display: none;
}

.intro-section .intro-kicker {
  position: absolute;
  top: 30%;
  left: max(22px, calc((100% - 1680px) / 2 + 32px));
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: rgba(243, 240, 232, 0.44);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.intro-section .intro-kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--klein-bright);
  box-shadow: 0 0 20px rgba(0, 87, 255, 0.62);
}

.intro-side-rail {
  position: absolute;
  left: 22px;
  bottom: 30px;
  z-index: 4;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: rgba(243, 240, 232, 0.34);
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.intro-drift {
  position: absolute;
  top: -54px;
  left: -18px;
  z-index: 0;
  color: rgba(243, 240, 232, 0.08);
  font-size: 216px;
  font-weight: 900;
  line-height: 0.72;
  letter-spacing: 0;
  white-space: nowrap;
  transform: translate3d(var(--intro-drift-x), 0, 0);
  will-change: transform;
}

.intro-hero-wordmark {
  position: absolute;
  left: max(8px, calc((100% - 1680px) / 2 + 12px));
  bottom: clamp(18px, 3.2vw, 54px);
  z-index: 1;
  max-width: 100vw;
  color: rgba(232, 224, 212, 0.72);
  font-size: clamp(128px, 20vw, 340px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0;
  pointer-events: none;
  transform: translate3d(0, var(--intro-wordmark-y), 0);
  opacity: var(--intro-wordmark-opacity);
  will-change: transform, opacity;
}

.intro-axis-grid {
  position: sticky;
  top: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(270px, 0.7fr) minmax(420px, 600px) minmax(220px, 0.6fr);
  gap: clamp(46px, 5vw, 78px);
  align-items: center;
  width: min(100%, 1560px);
  min-height: 100svh;
  margin: 0 auto;
  padding: 92px 0;
}

.intro-axis-copy {
  align-self: center;
  max-width: 410px;
  padding-top: 0;
  opacity: var(--intro-copy-opacity);
  transform: translate3d(0, var(--intro-copy-y), 0);
  will-change: opacity, transform;
}

.intro-axis-copy p {
  margin: 0;
  color: rgba(243, 240, 232, 0.62);
  font-size: clamp(16px, 1.1vw, 19px);
  font-weight: 800;
  line-height: 1.58;
}

.intro-axis-copy p + p {
  margin-top: 18px;
}

.intro-hero-button {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-height: 48px;
  margin-top: 48px;
  padding: 0 10px 0 20px;
  border: 1px solid rgba(243, 240, 232, 0.18);
  border-radius: 999px;
  color: rgba(243, 240, 232, 0.84);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.024);
  backdrop-filter: blur(14px);
}

.intro-hero-button span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--klein-bright);
  color: #f5f7ff;
  font-size: 18px;
}

.intro-photo-stack {
  position: relative;
  width: min(100%, 500px);
  aspect-ratio: 4 / 5;
  justify-self: center;
  opacity: var(--intro-photo-opacity);
  transform: translate3d(0, var(--intro-photo-y), 0) rotate(var(--intro-photo-rotate));
  transform-origin: center;
  will-change: opacity, transform;
}

.intro-card {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 1px solid rgba(243, 240, 232, 0.13);
  border-radius: 12px;
  box-shadow: 0 38px 110px rgba(0, 0, 0, 0.62);
  will-change: transform;
}

.intro-card--warm {
  background: linear-gradient(135deg, rgba(0, 47, 167, 0.82), rgba(0, 16, 72, 0.9));
  transform: translate3d(var(--intro-card-warm-x), var(--intro-card-warm-y), 0) rotate(var(--intro-card-warm-rotate));
}

.intro-card--pale {
  background: #cfc3ad;
  transform: translate3d(var(--intro-card-pale-x), var(--intro-card-pale-y), 0) rotate(var(--intro-card-pale-rotate));
}

.intro-card--dark {
  background: linear-gradient(135deg, #0b0b0a, #151515);
  transform: translate3d(var(--intro-card-dark-x), var(--intro-card-dark-y), 0) rotate(var(--intro-card-dark-rotate));
}

.intro-card--image {
  margin: 0;
  background: #0b0b0a;
}

.intro-card--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.96) contrast(1.03);
}

.intro-card--photo {
  margin: 0;
  background: #17120e;
  transform: rotate(var(--intro-card-photo-rotate));
}

.intro-card--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  filter: saturate(0.92) contrast(1.05);
}

.intro-words {
  display: none;
  gap: 20px;
  min-width: 0;
  color: #f3f0e8;
}

.intro-word {
  margin: 0;
  font-size: 82px;
  font-weight: 900;
  line-height: 0.83;
  letter-spacing: 0;
  opacity: var(--word-opacity, 0);
  transform: translate3d(var(--word-x, 0), var(--word-y, 74px), 0);
  will-change: opacity, transform;
}

.intro-word--right {
  text-align: right;
}

.intro-corner {
  position: absolute;
  right: max(22px, calc((100% - 1680px) / 2 + 32px));
  bottom: 44px;
  z-index: 4;
  width: 260px;
  padding: 24px;
  border: 1px solid rgba(243, 240, 232, 0.07);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.026);
  color: rgba(243, 240, 232, 0.74);
  opacity: var(--intro-corner-opacity);
  transform: translate3d(0, 24px, 0);
  backdrop-filter: blur(16px);
}

.intro-corner span {
  display: block;
  margin-bottom: 26px;
  color: var(--klein-bright);
  font-size: 28px;
  line-height: 1;
}

.intro-corner p {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.24;
}

.intro-corner small {
  display: block;
  margin-top: 34px;
  color: rgba(243, 240, 232, 0.38);
  font-size: 9px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0;
}

.selected {
  --selected-copy-opacity: 0;
  --selected-copy-y: 34px;
  --selected-drift-x: 4%;
  width: 100%;
  max-width: none;
  margin: 0;
  background:
    linear-gradient(rgba(243, 240, 232, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(243, 240, 232, 0.025) 1px, transparent 1px),
    #050605;
  background-size: 80px 80px, 80px 80px, auto;
  color: #f3f0e8;
  overflow: hidden;
  scroll-margin-top: 0;
}

.selected > .section-label,
.selected > .filter-bar,
.selected > .featured-grid {
  width: var(--page);
  margin-right: auto;
  margin-left: auto;
}

.selected > .section-label {
  border-bottom-color: rgba(243, 240, 232, 0.18);
}

.selected-method-stage {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 78vh;
  min-height: 78svh;
  padding: clamp(42px, 5vw, 72px) max(22px, calc((100% - 1680px) / 2 + 32px)) clamp(34px, 4vw, 58px);
  isolation: isolate;
  overflow: hidden;
}

.selected-method-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.16;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 4px 4px;
}

.selected-trail-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.selected-drift {
  position: absolute;
  top: clamp(18px, 3vw, 50px);
  left: max(18px, calc((100% - 1680px) / 2 + 18px));
  z-index: 0;
  color: rgba(243, 240, 232, 0.08);
  font-size: clamp(76px, 12vw, 190px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0;
  transform: translate3d(var(--selected-drift-x), 0, 0);
  will-change: transform;
}

.selected-method-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(560px, 1fr);
  gap: clamp(52px, 10vw, 190px);
  align-items: start;
  width: min(100%, 1220px);
  margin: 0 auto;
}

.selected-method-copy {
  max-width: 420px;
  opacity: var(--selected-copy-opacity);
  transform: translate3d(0, var(--selected-copy-y), 0);
  will-change: opacity, transform;
}

.selected-method-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 28px;
  color: rgba(243, 240, 232, 0.5);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.selected-method-kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--klein-bright);
  box-shadow: 0 0 20px rgba(0, 87, 255, 0.58);
}

.selected-method-copy p:not(.selected-method-kicker) {
  margin: 0;
  color: rgba(243, 240, 232, 0.76);
  font-size: clamp(14px, 1vw, 17px);
  font-weight: 800;
  line-height: 1.62;
}

.selected-method-copy p:not(.selected-method-kicker) + p:not(.selected-method-kicker) {
  margin-top: 14px;
}

.selected-words {
  display: grid;
  gap: clamp(12px, 1.45vw, 18px);
  min-width: 0;
}

.selected-word {
  margin: 0;
  color: #f3f0e8;
  font-size: clamp(76px, 8.6vw, 146px);
  font-weight: 900;
  line-height: 0.84;
  letter-spacing: 0;
  opacity: var(--selected-word-opacity, 0);
  transform: translate3d(var(--selected-word-x, 0), var(--selected-word-y, 78px), 0);
  will-change: opacity, transform;
}

.selected-word--right {
  text-align: right;
}

.selected-word--medium {
  font-size: clamp(48px, 5vw, 96px);
  white-space: nowrap;
}

.section-label h2 {
  margin-bottom: 0;
  font-size: clamp(28px, 4.2vw, 74px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.section-label span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.filter-bar {
  display: none;
  flex-wrap: wrap;
  gap: 8px;
  padding: 18px 0 0;
}

.filter-button {
  min-height: 34px;
  padding: 0 13px;
  background: transparent;
  border: 1px solid var(--soft-line);
  border-radius: 999px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.filter-button:hover,
.filter-button:focus-visible,
.filter-button.is-active {
  background: var(--fg);
  border-color: var(--fg);
  color: var(--bg);
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 48px);
  padding: clamp(42px, 6vw, 92px) 0 clamp(62px, 8vw, 120px);
  border-bottom: 1px solid var(--line);
}

.work-card {
  width: 100%;
  margin: 0;
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: opacity, transform;
}

.featured-grid.is-row-reveal-ready .work-card {
  opacity: var(--work-card-opacity, 1);
  transform: translate3d(0, var(--work-card-y, 0), 0);
  will-change: opacity, transform;
}

.work-link {
  display: grid;
  place-items: center;
  width: 100%;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
}

.thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: transparent;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
  transition:
    filter 240ms ease,
    transform 420ms ease;
}

.work-link:hover img,
.work-link:focus-visible img {
  filter: none;
  transform: translateY(-8px) scale(1.03);
}

.archive {
  display: none;
}

.archive-list {
  padding-bottom: 72px;
  border-bottom: 1px solid var(--line);
}

.archive-row {
  display: grid;
  grid-template-columns: 76px 1fr 0.65fr auto;
  gap: 18px;
  width: 100%;
  padding: 14px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--soft-line);
  cursor: pointer;
  text-align: left;
}

.archive-row:last-child {
  border-bottom: 0;
}

.archive-row strong {
  font-size: clamp(18px, 2.8vw, 48px);
  font-weight: 900;
  line-height: 0.92;
  text-transform: uppercase;
}

.archive-row span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.archive-row:hover strong,
.archive-row:focus-visible strong {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.profile-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 0.9fr;
  gap: var(--gap);
  padding: var(--gap) 0 72px;
  border-bottom: 1px solid var(--line);
}

.profile-statement {
  display: grid;
  gap: 28px;
  align-content: start;
}

.profile-grid h3 {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.plain-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.plain-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--soft-line);
  font-size: clamp(17px, 1.7vw, 30px);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(72px, 18vw, 360px);
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(44px, 7vw, 110px) max(24px, calc((100vw - 1680px) / 2 + 32px));
  background: #050505;
  color: #f7f4ee;
}

.site-footer h2,
.site-footer address {
  margin: 0;
  font-style: normal;
}

.site-footer h2 {
  justify-self: start;
  font-size: clamp(62px, 8.8vw, 158px);
  font-weight: 900;
  line-height: 0.86;
  letter-spacing: 0;
}

.site-footer address {
  justify-self: end;
  max-width: 100%;
  text-align: right;
}

.site-footer address a {
  display: block;
  border-bottom: clamp(3px, 0.42vw, 7px) solid currentColor;
  font-size: clamp(34px, 4.1vw, 88px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
}

.viewer {
  --bg: #000000;
  --fg: #ffffff;
  --muted: rgba(255, 255, 255, 0.58);
  --line: rgba(255, 255, 255, 0.72);
  --soft-line: rgba(255, 255, 255, 0.18);
  position: fixed;
  inset: 0;
  z-index: 60;
  display: block;
  padding: 0;
  overflow-y: auto;
  background: var(--bg);
  color: var(--fg);
  clip-path: inset(0 0 0 0 round 0);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 180ms ease,
    clip-path 640ms cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: center center;
  will-change: clip-path, opacity, transform, filter;
}

.viewer[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}

.viewer.is-transitioning {
  pointer-events: none;
}

.viewer-close {
  position: fixed;
  top: max(18px, env(safe-area-inset-top));
  right: max(18px, env(safe-area-inset-right));
  z-index: 1000;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: #ffffff;
  color: #000000;
  border: 1px solid #ffffff;
  border-radius: 50%;
  cursor: pointer;
  font-size: 29px;
  font-weight: 400;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

body.is-viewer-open .viewer-close {
  opacity: 1;
  pointer-events: auto;
  transform: translateZ(0);
}

.viewer-content {
  width: min(calc(100% - 32px), 1680px);
  margin: 0 auto;
  padding: 76px 0 48px;
}

.viewer-content.has-entry-poster {
  width: 100%;
  padding: 0 0 48px;
}

.project-detail-body {
  width: min(calc(100% - 32px), 1680px);
  margin: 0 auto;
  padding-top: 76px;
}

.viewer-content:not(.has-entry-poster) .project-detail-body {
  width: auto;
  padding-top: 0;
}

.project-detail-header {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: var(--gap);
  align-items: start;
  min-height: min(58vh, 620px);
  padding: 0 0 clamp(34px, 5vw, 86px);
  border-bottom: 1px solid var(--line);
}

.project-detail-meta {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 24px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.project-detail h2 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(58px, 13vw, 220px);
  font-weight: 900;
  line-height: 0.76;
  letter-spacing: 0;
  text-transform: uppercase;
}

.project-detail h2.is-stacked-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.02em;
  max-width: 4ch;
  line-height: 0.72;
}

.project-detail h2.is-chinese-stacked-title {
  gap: 0.16em;
  max-width: 7em;
  font-size: clamp(72px, 8.4vw, 150px);
  line-height: 0.98;
}

.project-detail h2.is-chinese-stacked-title .detail-title-line {
  align-self: flex-start;
  font-size: 1em;
  white-space: nowrap;
}

.project-detail h2.is-fashion-week-title {
  color: #ffffff;
  max-width: 6em;
  font-size: clamp(74px, 9.4vw, 168px);
  line-height: 1.04;
}

.detail-title-line {
  display: block;
}

.detail-title-line:nth-child(2) {
  align-self: center;
  font-size: 0.78em;
  line-height: 0.62;
}

.project-detail-copy {
  display: grid;
  gap: 14px;
  align-self: start;
}

.project-detail-copy p {
  margin: 0;
  max-width: 42em;
  font-size: clamp(16px, 1.28vw, 23px);
  font-weight: 800;
  line-height: 1.24;
  white-space: pre-line;
}

.detail-subtitle {
  max-width: 18em !important;
  font-size: clamp(24px, 2.45vw, 42px) !important;
  line-height: 1 !important;
  font-weight: 900 !important;
}

.detail-text-section {
  display: grid;
  gap: 8px;
  margin-top: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.detail-text-section h3 {
  margin: 0;
  font-size: clamp(20px, 2.05vw, 34px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.detail-text-section p {
  max-width: 42em;
  font-size: clamp(13px, 1.02vw, 18px);
  font-weight: 800;
  line-height: 1.22;
}

.project-detail-media {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  padding-top: 16px;
}

.detail-year-section {
  display: grid;
  gap: 16px;
  padding-top: clamp(28px, 4vw, 58px);
  border-top: 1px solid var(--line);
}

.detail-year-section:first-child {
  padding-top: 0;
  border-top: 0;
}

.detail-year-images {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
}

.detail-folder-section {
  display: grid;
  gap: 16px;
  padding-top: clamp(34px, 5vw, 72px);
  border-top: 1px solid var(--soft-line);
}

.detail-folder-section:first-child {
  padding-top: 0;
  border-top: 0;
}

.detail-year-section h3,
.detail-folder-section h3,
.poster-slider h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(28px, 5.2vw, 84px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: 0;
}

.detail-folder-images {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
}

.project-detail-media.is-oppo-grid .detail-folder-section {
  padding-top: 0;
  border-top: 0;
}

.project-detail-media.is-oppo-grid .detail-folder-images {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.project-detail-media.is-oppo-grid .detail-media {
  overflow: visible;
}

.project-detail-media.is-oppo-grid .detail-media:first-child {
  grid-column: auto;
}

.project-detail-media.is-oppo-grid .detail-media img {
  height: auto;
  object-fit: contain;
}

.project-detail-media.is-kuaishou-pair .detail-folder-images {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.project-detail-media.is-kuaishou-pair .detail-media:first-child {
  grid-column: auto;
}

.project-detail-media.is-kuaishou-pair .detail-media:nth-child(n + 3) {
  grid-column: 1 / -1;
}

.project-detail-media.is-signage-grid .detail-folder-images {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.project-detail-media.is-signage-grid .detail-media:first-child {
  grid-column: auto;
}

.project-detail-media.is-signage-grid .detail-folder-section:first-child .detail-media:first-child {
  grid-column: 1 / -1;
}

.project-detail-media.is-signage-grid .detail-folder-section:first-child .detail-media:first-child img {
  height: min(86vh, 920px);
  object-fit: contain;
  background: #ffffff;
}

.project-detail-media.is-signage-grid .detail-media img {
  height: auto;
  object-fit: contain;
}

.project-detail-media.is-hkils-invite-grid .detail-folder-section:nth-of-type(3) .detail-folder-images {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}

.project-detail-media.is-hkils-invite-grid .detail-folder-section:nth-of-type(3) .detail-media:first-child {
  grid-column: 1 / -1;
}

.project-detail-media.is-hkils-invite-grid .detail-folder-section:nth-of-type(3) .detail-media:nth-of-type(2) {
  grid-column: 1 / -1;
}

.project-detail-media.is-hkils-invite-grid .detail-folder-section:nth-of-type(3) .detail-media img {
  height: auto;
  object-fit: contain;
}

.project-detail-media.is-hkils-invite-grid .detail-folder-section:nth-of-type(4) .detail-folder-images {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}

.project-detail-media.is-hkils-invite-grid .detail-folder-section:nth-of-type(4) .detail-media:nth-of-type(-n + 2) {
  grid-column: 1 / -1;
}

.project-detail-media.is-hkils-invite-grid .detail-folder-section:nth-of-type(4) .detail-media img {
  height: auto;
  object-fit: contain;
}

.diagonal-scroller {
  grid-column: 1 / -1;
  position: relative;
  height: min(100vh, 920px);
  min-height: 760px;
  overflow: hidden;
  cursor: grab;
  touch-action: none;
  user-select: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.05) 28%, rgba(0, 0, 0, 0.08) 68%, rgba(0, 0, 0, 0.82)),
    #050505;
  border-top: 1px solid var(--soft-line);
  border-bottom: 1px solid var(--soft-line);
}

.diagonal-scroller.is-dragging {
  cursor: grabbing;
}

.diagonal-scroller::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, #000000 0%, transparent 16%, transparent 84%, #000000 100%),
    linear-gradient(180deg, #000000 0%, transparent 22%, transparent 72%, #000000 100%);
}

.diagonal-scroll-column {
  position: absolute;
  top: -34%;
  bottom: -34%;
  left: calc(1.5% + var(--column-index) * 19.5%);
  width: clamp(132px, 16.8vw, 285px);
  transform: rotate(-8deg) translateY(var(--column-offset));
  transform-origin: center;
  overflow: visible;
}

.diagonal-scroll-stack {
  display: grid;
  gap: clamp(14px, 1.4vw, 28px);
  will-change: transform;
}

.diagonal-scroll-card {
  height: auto;
  margin: 0;
  overflow: visible;
  background: #111111;
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.48);
}

.diagonal-scroll-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.detail-media {
  margin: 0;
  background: #000000;
}

.detail-media:first-child,
.detail-media-video,
.detail-media-pdf {
  grid-column: 1 / -1;
}

.detail-media img,
.detail-media video,
.detail-media iframe {
  display: block;
  width: 100%;
  height: auto;
  background: #111111;
}

.detail-media video {
  max-height: 86vh;
  object-fit: contain;
}

.detail-media iframe {
  height: 86vh;
  border: 0;
}

.poster-slider {
  grid-column: 1 / -1;
  display: grid;
  gap: 16px;
  overflow: hidden;
  padding: 0 0 16px;
  border-bottom: 1px solid var(--soft-line);
}

.poster-slider-row {
  width: 100%;
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.poster-slider-row.is-dragging {
  cursor: grabbing;
}

.poster-slider-track {
  display: flex;
  width: max-content;
  gap: 16px;
  will-change: transform;
}

.poster-slider-row-reverse .poster-slider-track {
}

.poster-slide-card {
  flex: 0 0 clamp(220px, 22vw, 420px);
  margin: 0;
  background: #111111;
}

.poster-slide-card img {
  display: block;
  width: 100%;
  height: clamp(320px, 32vw, 620px);
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

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

.poster-grid-card {
  margin: 0;
  background: #111111;
}

.poster-grid-card img {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.poster-slider-starmoly {
  position: relative;
  height: 100svh;
  min-height: 720px;
  padding: clamp(18px, 2vw, 30px);
  overflow: hidden;
  background: #061f33;
  border: 0;
  isolation: isolate;
}

.poster-slider-starmoly::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(6, 31, 51, 0.2), rgba(6, 31, 51, 0) 28%, rgba(6, 31, 51, 0.62) 100%),
    radial-gradient(circle at 50% 50%, rgba(216, 236, 255, 0.08), transparent 34%);
}

.starmoly-flow-stage {
  position: absolute;
  inset: clamp(18px, 2vw, 30px);
  z-index: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.25vw, 18px);
}

.starmoly-flow-column {
  --flow-start: -2%;
  --flow-end: -28%;
  display: grid;
  align-content: start;
  gap: clamp(12px, 1.25vw, 18px);
  will-change: transform;
  animation: starmoly-flow-drift 18s ease-in-out infinite alternate;
}

.starmoly-flow-column--2 {
  --flow-start: -24%;
  --flow-end: -4%;
  animation-duration: 21s;
}

.starmoly-flow-column--3 {
  --flow-start: -7%;
  --flow-end: -33%;
  animation-duration: 24s;
}

.starmoly-flow-card {
  aspect-ratio: 3 / 4;
  margin: 0;
  overflow: hidden;
  background: #0a1521;
  border-radius: 8px;
}

.starmoly-flow-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.starmoly-flow-prompt {
  top: 50%;
  bottom: auto;
  z-index: 3;
  width: min(520px, calc(100% - 48px));
  height: 56px;
  min-height: 56px;
  max-height: 56px;
  padding: 0 18px 0 34px;
  background: #d8ecff;
  transform: translate(-50%, -50%);
}

.starmoly-flow-prompt:hover {
  background: #ffffff;
  transform: translate(-50%, calc(-50% - 2px));
}

.starmoly-flow-prompt span {
  position: relative;
  width: auto;
  display: inline-block;
  min-width: 1px;
  line-height: 1;
  animation: none;
}

.starmoly-flow-prompt span::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 0.9em;
  margin-left: 4px;
  vertical-align: -0.08em;
  background: #000000;
  animation: prompt-caret 760ms steps(1, end) infinite;
}

@keyframes starmoly-flow-drift {
  from {
    transform: translateY(var(--flow-start));
  }

  to {
    transform: translateY(var(--flow-end));
  }
}

.poster-slider-picture-scroll {
  position: relative;
  min-height: min(94vh, 980px);
  padding: 0 0 clamp(82px, 7vw, 118px);
  overflow: hidden;
  background: #000000;
}

.poster-slider-picture-scroll.is-entry-screen {
  min-height: 100svh;
  height: 100svh;
  padding: 0 0 clamp(92px, 8vh, 126px);
  border: 0;
}

.poster-slider-picture-scroll h3 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  max-width: 9.5em;
  margin: 0;
  color: #d8ecff;
  font-size: clamp(48px, 6vw, 104px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: 0;
  pointer-events: none;
}

.picture-scroll-stage {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 18px;
  height: min(78vh, 820px);
  overflow: hidden;
}

.poster-slider-picture-scroll.is-entry-screen .picture-scroll-stage {
  height: calc(100% - clamp(112px, 11vh, 150px));
  padding: clamp(16px, 2vw, 28px) 0 0;
}

.picture-scroll-row {
  min-width: 0;
  height: 100%;
}

.picture-scroll-row .poster-slider-track {
  height: 100%;
}

.picture-scroll-card {
  flex: 0 0 auto;
  height: 100%;
  margin: 0;
  background: #000000;
}

.picture-scroll-card img {
  display: block;
  width: auto;
  max-width: none;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.poster-slider-picture-scroll.is-entry-screen .picture-scroll-card img {
  height: 100%;
  object-fit: contain;
}

.picture-scroll-prompt {
  position: absolute;
  left: 50%;
  bottom: clamp(18px, 2.2vw, 34px);
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px;
  align-items: center;
  width: min(520px, calc(100% - 48px));
  min-height: 56px;
  padding: 0 18px 0 34px;
  color: #000000;
  background: #ffffff;
  border: 1px solid #000000;
  border-radius: 0;
  transform: translateX(-50%);
  font-size: clamp(14px, 1.4vw, 24px);
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  cursor: pointer;
  appearance: none;
  font-family: inherit;
  transition:
    transform 180ms ease,
    background-color 180ms ease;
}

.picture-scroll-prompt:hover {
  transform: translateX(-50%) translateY(-2px);
  background: #d8ecff;
}

.picture-scroll-prompt span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.poster-slider-picture-scroll.is-entry-screen .picture-scroll-prompt span {
  position: relative;
  display: inline-block;
  width: 0;
  animation: prompt-retype 4200ms steps(9, end) infinite;
}

.poster-slider-picture-scroll.is-entry-screen .picture-scroll-prompt span::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 0.9em;
  margin-left: 4px;
  vertical-align: -0.08em;
  background: #000000;
  animation: prompt-caret 760ms steps(1, end) infinite;
}

.picture-scroll-prompt i {
  position: relative;
  display: block;
  width: 22px;
  height: 1.5px;
  justify-self: end;
  background: #000000;
}

.picture-scroll-prompt i::before,
.picture-scroll-prompt i::after {
  content: "";
  position: absolute;
  right: 0;
  width: 8px;
  height: 1.5px;
  background: #000000;
  transform-origin: right center;
}

.picture-scroll-prompt i::before {
  transform: rotate(36deg);
}

.picture-scroll-prompt i::after {
  transform: rotate(-36deg);
}

@keyframes prompt-retype {
  0% {
    width: 0;
  }

  44%,
  70% {
    width: 9ch;
  }

  100% {
    width: 0;
  }
}

@keyframes prompt-caret {
  0%,
  49% {
    opacity: 1;
  }

  50%,
  100% {
    opacity: 0;
  }
}

.note-marquee {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 16px 0 22px;
  cursor: grab;
  scrollbar-width: none;
  touch-action: pan-y;
  user-select: none;
}

.note-marquee::-webkit-scrollbar {
  display: none;
}

.note-marquee.is-dragging {
  cursor: grabbing;
}

.note-track {
  display: flex;
  width: max-content;
  gap: 16px;
  will-change: scroll-position;
}

.note-card {
  flex: 0 0 clamp(220px, 22vw, 380px);
  margin: 0;
  background: #000000;
}

.note-card img {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.viewer-caption {
  display: none;
}

@media (max-width: 1000px) {
  .hero-media {
    min-height: 420px;
  }

  .intro-grid {
    grid-template-columns: 1fr;
  }

  .intro-copy {
    max-width: 720px;
  }

  .intro-section {
    min-height: 220svh;
    padding-top: 0;
    padding-bottom: 0;
  }

  .intro-section .intro-kicker {
    top: 72px;
  }

  .intro-drift {
    top: -18px;
    font-size: 136px;
  }

  .intro-axis-grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
    gap: 34px;
    min-height: 100svh;
    padding-top: 118px;
    padding-bottom: 96px;
  }

  .intro-axis-copy {
    grid-column: 1;
    padding-top: 54px;
  }

  .intro-photo-stack {
    grid-column: 2;
    grid-row: 1 / span 2;
    width: min(100%, 360px);
  }

  .intro-words {
    display: none;
  }

  .intro-hero-wordmark {
    bottom: 22px;
    font-size: clamp(76px, 16vw, 136px);
  }

  .intro-corner {
    display: none;
  }

  .selected-method-stage {
    min-height: auto;
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .selected-drift {
    top: 24px;
    left: 18px;
    font-size: 112px;
  }

  .selected-method-grid {
    grid-template-columns: 1fr;
    gap: 52px;
    width: min(100%, 720px);
  }

  .selected-method-copy {
    max-width: 420px;
  }

  .selected-word {
    font-size: clamp(56px, 12vw, 92px);
  }

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

  .archive-row {
    grid-template-columns: 58px 1fr auto;
  }

  .archive-row .archive-category {
    display: none;
  }

  .project-detail-media,
  .detail-year-images {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .picture-scroll-stage {
    grid-template-rows: repeat(2, minmax(0, 1fr));
    height: min(70vh, 720px);
  }

  .profile-grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(28px, 10vw, 140px);
    padding-top: 44px;
    padding-bottom: 52px;
  }

  .site-footer address {
    justify-self: end;
  }

  .site-footer address a {
    white-space: nowrap;
  }
}

@media (max-width: 640px) {
  :root {
    --page: min(calc(100% - 22px), 1680px);
  }

  .site-header {
    grid-template-columns: 1fr;
    top: 10px;
    padding: 10px;
    gap: 8px;
  }

  .site-nav {
    justify-content: flex-start;
    gap: 8px 16px;
  }

  .brand {
    font-size: 22px;
  }

  .opening-index {
    display: grid;
    grid-template-columns: 1fr;
  }

  .opening {
    height: 100vh;
    min-height: 100vh;
    height: 100dvh;
    min-height: 100dvh;
  }

  .opening-copy {
    height: 100%;
    min-height: 100%;
    padding-top: 120px;
  }

  h1 {
    font-size: clamp(64px, 21vw, 96px);
  }

  .opening-grid,
  .intro-grid,
  .profile-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 38px 16px 46px;
  }

  .site-footer h2 {
    font-size: clamp(56px, 18vw, 92px);
  }

  .site-footer address a {
    font-size: clamp(28px, 8.2vw, 44px);
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .intro-section {
    min-height: 220svh;
    padding: 0 18px;
  }

  .intro-section::after {
    height: 18%;
  }

  .intro-section .intro-kicker {
    top: 108px;
    left: 18px;
  }

  .intro-side-rail {
    display: none;
  }

  .intro-drift {
    top: -2px;
    left: -12px;
    font-size: 76px;
  }

  .intro-axis-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    min-height: 100svh;
    padding-top: 146px;
    padding-bottom: 58px;
  }

  .intro-axis-copy {
    max-width: none;
    padding-top: 0;
  }

  .intro-axis-copy p {
    font-size: 14px;
    line-height: 1.5;
  }

  .intro-hero-button {
    min-height: 44px;
    margin-top: 28px;
    padding-left: 16px;
    font-size: 10px;
  }

  .intro-photo-stack {
    grid-column: auto;
    grid-row: auto;
    order: 2;
    width: min(78vw, 300px);
    margin: 32px auto 10px;
  }

  .intro-card--warm {
    transform: translate3d(var(--intro-card-warm-x), var(--intro-card-warm-y), 0) rotate(var(--intro-card-warm-rotate));
  }

  .intro-card--pale {
    transform: translate3d(var(--intro-card-pale-x), var(--intro-card-pale-y), 0) rotate(var(--intro-card-pale-rotate));
  }

  .intro-card--dark {
    transform: translate3d(var(--intro-card-dark-x), var(--intro-card-dark-y), 0) rotate(var(--intro-card-dark-rotate));
  }

  .intro-words {
    display: none;
  }

  .intro-hero-wordmark {
    bottom: 16px;
    left: 10px;
    font-size: 25vw;
    opacity: min(var(--intro-wordmark-opacity), 0.55);
  }

  .selected-method-stage {
    min-height: auto;
    padding: 70px 18px 58px;
  }

  .selected-drift {
    top: 22px;
    left: 18px;
    font-size: 64px;
  }

  .selected-method-grid {
    gap: 44px;
  }

  .selected-method-copy p:not(.selected-method-kicker) {
    font-size: 13px;
    line-height: 1.56;
  }

  .selected-words {
    gap: 15px;
  }

  .selected-word {
    font-size: clamp(43px, 15vw, 58px);
    line-height: 0.86;
  }

  .selected-word--medium {
    font-size: clamp(34px, 10.8vw, 48px);
    white-space: nowrap;
  }

  .intro-grid h2 {
    max-width: none;
    font-size: clamp(38px, 12vw, 72px);
    line-height: 0.9;
  }

  .intro-copy {
    grid-template-columns: 1fr;
    margin-left: 0;
  }

  .intro-copy p {
    font-size: 20px;
    line-height: 1.16;
  }

  .opening-grid {
    max-width: calc(100vw - 44px);
    width: 100%;
  }

  .opening-grid p,
  .profile-statement p {
    font-size: 18px;
    line-height: 1.08;
    max-width: 27ch;
  }

  .hero-media {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .hero-media span {
    right: 10px;
    bottom: 10px;
    left: 10px;
    max-width: calc(100% - 20px);
    text-align: center;
  }

  .featured-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding-top: 54px;
  }

  .work-card {
    margin-bottom: 0;
  }

  .project-detail-media.is-hkils-invite-grid .detail-folder-section:nth-of-type(3) .detail-folder-images {
    grid-template-columns: 1fr;
  }

  .project-detail-media.is-hkils-invite-grid .detail-folder-section:nth-of-type(4) .detail-folder-images {
    grid-template-columns: 1fr;
  }

  .archive-row {
    grid-template-columns: 44px 1fr;
    gap: 10px;
  }

  .archive-row span:last-child {
    grid-column: 2;
  }

  .viewer {
    padding: 58px 12px 18px;
  }

  .viewer-content {
    width: min(calc(100% - 22px), 1680px);
    padding: 68px 0 36px;
  }

  .viewer-close {
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
  }

  .project-detail-header,
  .project-detail-media,
  .detail-year-images {
    grid-template-columns: 1fr;
  }

  .project-detail-media.is-oppo-grid .detail-folder-images {
    grid-template-columns: 1fr;
  }

  .project-detail-media.is-kuaishou-pair .detail-folder-images {
    grid-template-columns: 1fr;
  }

  .project-detail-media.is-kuaishou-pair .detail-media:first-child,
  .project-detail-media.is-kuaishou-pair .detail-media:nth-child(n + 3) {
    grid-column: auto;
  }

  .project-detail-media.is-signage-grid .detail-folder-images {
    grid-template-columns: 1fr;
  }

  .diagonal-scroller {
    height: 78vh;
    min-height: 560px;
  }

  .diagonal-scroll-column {
    top: -28%;
    bottom: -28%;
    left: calc(-10% + var(--column-index) * 31%);
    width: clamp(120px, 34vw, 210px);
  }

  .project-detail-header {
    min-height: 0;
    gap: 28px;
    padding-bottom: 36px;
  }

  .project-detail h2 {
    max-width: 100%;
    font-size: clamp(46px, 18vw, 92px);
    line-height: 0.82;
  }

  .project-detail-copy p {
    font-size: 17px;
    line-height: 1.2;
  }

  .poster-slide-card {
    flex-basis: clamp(190px, 64vw, 320px);
  }

  .poster-slide-card img {
    height: clamp(280px, 92vw, 480px);
  }

  .poster-grid {
    grid-template-columns: 1fr;
  }

  .poster-slider-starmoly {
    height: 82vh;
    min-height: 560px;
    padding: 12px;
  }

  .starmoly-flow-stage {
    inset: 12px;
    gap: 10px;
  }

  .starmoly-flow-column {
    gap: 10px;
  }

  .starmoly-flow-prompt {
    width: min(360px, calc(100% - 32px));
    height: 48px;
    min-height: 48px;
    max-height: 48px;
    padding: 0 14px 0 18px;
  }

  .poster-slider-picture-scroll {
    min-height: 82vh;
    padding: 0 0 78px;
  }

  .poster-slider-picture-scroll h3 {
    font-size: clamp(38px, 13vw, 64px);
  }

  .picture-scroll-stage {
    grid-template-rows: repeat(2, minmax(0, 1fr));
    height: 68vh;
  }

  .picture-scroll-card img {
    height: clamp(300px, 96vw, 520px);
  }

  .picture-scroll-prompt {
    min-height: 48px;
    padding: 0 14px 0 18px;
    font-size: 14px;
  }
}

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

  .poster-slider-track {
    transform: none !important;
  }

  .diagonal-scroll-stack {
    animation: none !important;
  }

  .intro-section {
    --intro-copy-opacity: 1;
    --intro-copy-y: 0px;
    --intro-photo-opacity: 1;
    --intro-photo-y: 0px;
    --intro-photo-rotate: 1deg;
    --intro-card-warm-x: -72px;
    --intro-card-warm-y: 48px;
    --intro-card-warm-rotate: -16deg;
    --intro-card-pale-x: 52px;
    --intro-card-pale-y: -48px;
    --intro-card-pale-rotate: 13deg;
    --intro-card-dark-x: 76px;
    --intro-card-dark-y: 28px;
    --intro-card-dark-rotate: 17deg;
    --intro-card-photo-rotate: 2deg;
    --intro-corner-opacity: 1;
    --intro-wordmark-y: 0%;
    --intro-wordmark-opacity: 0.72;
  }

  .intro-word {
    --word-opacity: 1;
    --word-x: 0px;
    --word-y: 0px;
  }

  .selected {
    --selected-copy-opacity: 1;
    --selected-copy-y: 0px;
    --selected-drift-x: 0%;
  }

  .selected-word {
    --selected-word-opacity: 1;
    --selected-word-x: 0px;
    --selected-word-y: 0px;
  }
}
