:root {
  --bg: #050505;
  --ink: #f5f2ea;
  --muted: rgba(245, 242, 234, .64);
  --dim: rgba(245, 242, 234, .38);
  --line: rgba(245, 242, 234, .14);
  --tif-red: #e23224;
  --acid: #2f80ff;
  --blue: #2577ff;
  --panel: #10100f;
  --serif: "Cormorant Garamond", "Times New Roman", "Songti SC", "STSong", serif;
  --sans: "Avenir Next", "Helvetica Neue", Arial, "PingFang SC", "Hiragino Sans GB", sans-serif;
  --script: "Snell Roundhand", "Bradley Hand", "Segoe Script", "Kaiti SC", "STKaiti", cursive;
  --side: 272px;
  --max: 1480px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--sans);
  letter-spacing: 0;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.noise {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  opacity: .11;
  mix-blend-mode: screen;
  background-image:
    repeating-radial-gradient(circle at 20% 30%, rgba(255,255,255,.12) 0 1px, transparent 1px 4px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.04) 0 1px, transparent 1px 9px);
}

.sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 30;
  width: var(--side);
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 42px 42px 34px;
  background: #030303;
  border-right: 1px solid var(--line);
}

.identity {
  display: grid;
  gap: 8px;
  line-height: 1;
}

.identity strong {
  font-family: var(--script);
  font-size: 27px;
  font-weight: 300;
  letter-spacing: .01em;
  text-transform: none;
}

.identity span {
  color: var(--tif-red);
  font-size: 12px;
  letter-spacing: .26em;
}

.lang-switch {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 124px;
  height: 36px;
  margin-top: -8px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(245, 242, 234, .035);
}

.lang-switch::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: calc(50% - 3px);
  height: calc(100% - 6px);
  border-radius: 999px;
  background: var(--tif-red);
  transition: transform .24s ease;
}

.lang-switch:has([data-lang-option="en"].active)::before {
  transform: translateX(100%);
}

.lang-switch button {
  position: relative;
  z-index: 1;
  height: 28px;
  border: 0;
  color: var(--dim);
  background: transparent;
  font: inherit;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .2s ease, background .2s ease;
}

.lang-switch button.active {
  color: #050505;
  background: transparent;
}

.mode {
  margin-top: 28px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 560;
  line-height: 1.15;
  text-transform: uppercase;
}

.side-art {
  position: absolute;
  left: 42px;
  right: 42px;
  top: 178px;
  min-height: 166px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  pointer-events: none;
}

.side-art::before {
  content: "";
  position: absolute;
  inset: 20px auto 20px 0;
  width: 118px;
  border: 1px solid rgba(245, 242, 234, .18);
  border-radius: 50%;
  transform: scaleX(1.6);
}

.side-art::after {
  content: attr(data-index);
  position: absolute;
  right: -10px;
  bottom: -22px;
  color: rgba(245, 242, 234, .08);
  font-family: var(--serif);
  font-size: 132px;
  line-height: .8;
}

.side-art span {
  position: absolute;
  left: 0;
  top: 22px;
  color: var(--dim);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .28em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.menu {
  position: absolute;
  left: 42px;
  right: 42px;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  gap: 20px;
  margin: 0;
}

.menu-group {
  display: grid;
  gap: 10px;
}

.menu-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.menu a {
  display: grid;
  gap: 4px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 420;
  transition: color .22s ease, transform .22s ease;
}

.menu a em {
  color: var(--dim);
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.menu a:hover,
.menu a.active {
  color: var(--tif-red);
  transform: translateX(6px);
}

.submenu {
  display: grid;
  gap: 10px;
  padding-left: 18px;
  border-left: 1px solid rgba(245, 242, 234, .12);
}

.submenu a {
  gap: 3px;
  font-size: 13px;
  font-weight: 360;
  line-height: 1.3;
}

.submenu a span {
  display: block;
}

.submenu a small {
  color: var(--dim);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.sidebar-foot {
  margin-top: auto;
  display: grid;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.42;
}

.page {
  margin-left: var(--side);
  min-height: 100vh;
}

.index-grid {
  min-height: 100svh;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.poster,
.cover {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--panel);
}

.poster {
  min-height: 50svh;
  display: grid;
  align-content: space-between;
  gap: 36px;
  padding: clamp(28px, 5vw, 66px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.poster::before,
.cover::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--img) center / cover;
  filter: grayscale(.42) contrast(1.02) brightness(.96);
  transform: scale(1.1);
  transition: transform .8s ease, filter .8s ease, opacity .8s ease;
  opacity: 1;
}

.poster::after,
.cover::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(120deg, rgba(5,5,5,.78), rgba(5,5,5,.16) 54%, rgba(5,5,5,.66)),
    radial-gradient(circle at 78% 12%, rgba(226,50,36,.24), transparent 25rem);
}

.poster:hover::before {
  transform: scale(1.16) rotate(.6deg);
  filter: grayscale(.35) contrast(1.08) brightness(.82);
}

.poster:hover::after { opacity: .76; }

.poster-kicker,
.cover-kicker {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--dim);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.cover-kicker span:last-child { font-weight: 400; }

.poster h1,
.poster h2,
.cover h1 {
  margin: 0;
  max-width: 860px;
  font-family: var(--serif);
  font-size: clamp(54px, 8vw, 140px);
  font-weight: 400;
  line-height: .82;
  letter-spacing: -.035em;
}

.headline-kicker {
  display: block;
  color: var(--tif-red);
  font-family: var(--sans);
  font-size: clamp(13px, 1.3vw, 18px);
  font-weight: 520;
  letter-spacing: .16em;
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.headline-title {
  display: block;
  color: var(--ink);
  font-family: var(--serif);
  font-size: inherit;
  font-weight: 400;
  line-height: inherit;
  letter-spacing: inherit;
}

.poster-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
}

.poster p,
.cover p {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.arrow {
  width: clamp(74px, 9vw, 126px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(245,242,234,.55);
  border-radius: 50%;
  font-size: clamp(46px, 6vw, 82px);
  line-height: 1;
  color: var(--ink);
  transition: transform .3s ease, background .3s ease, color .3s ease, border-color .3s ease;
}

.poster:hover .arrow {
  transform: translate(10px, -10px) rotate(-45deg);
  background: var(--acid);
  color: #050505;
  border-color: var(--acid);
}

.cover {
  min-height: 100svh;
  display: grid;
  align-content: space-between;
  padding: clamp(34px, 5vw, 74px);
}

.cover h1 {
  max-width: 1120px;
  font-size: clamp(74px, 12vw, 220px);
}

.cover-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: end;
}

.scroll-cue {
  display: grid;
  place-items: center;
  width: 112px;
  aspect-ratio: 1;
  border: 1px solid rgba(245,242,234,.5);
  border-radius: 50%;
  color: var(--tif-red);
  font-size: 72px;
  line-height: 1;
  animation: pulseArrow 1.5s ease-in-out infinite;
}

@keyframes pulseArrow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

.content {
  padding: clamp(80px, 9vw, 138px) clamp(24px, 5vw, 72px);
  border-top: 1px solid var(--line);
}

.section-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(280px, 520px);
  gap: clamp(32px, 6vw, 100px);
  align-items: end;
  margin-bottom: clamp(40px, 6vw, 84px);
}

.section-head h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(54px, 8vw, 132px);
  font-weight: 400;
  line-height: .84;
  letter-spacing: -.04em;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

.tag {
  display: block;
  margin-bottom: 14px;
  color: var(--tif-red);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.photo-gallery-head {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(280px, 560px);
  gap: clamp(28px, 5vw, 84px);
  align-items: end;
  margin-bottom: clamp(26px, 4vw, 54px);
}

.photo-gallery-head span {
  color: var(--tif-red);
  font-family: var(--serif);
  font-size: clamp(44px, 6vw, 96px);
  font-weight: 400;
  line-height: .86;
  letter-spacing: -.035em;
  white-space: nowrap;
}

.photo-gallery-head p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.photo-masonry {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 42px);
  align-items: start;
}

.photo-tile {
  position: relative;
  margin: 0;
  padding: clamp(6px, .8vw, 10px);
  overflow: visible;
  background: rgba(245, 242, 234, .02);
  border: 1px solid rgba(245, 242, 234, .075);
}

.photo-tile img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: none;
  transform: none;
  transition: transform .6s ease;
}

.photo-tile:hover img {
  transform: translateY(-4px);
  filter: none;
}

.photo-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border: 1px solid rgba(245, 242, 234, .18);
  background: rgba(8, 8, 8, .62);
  color: rgba(245, 242, 234, .88);
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.photo-tile figcaption {
  position: absolute;
  left: 16px;
  bottom: 14px;
  color: rgba(245, 242, 234, .72);
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 48px);
  line-height: .8;
  opacity: .72;
  mix-blend-mode: difference;
}

.photo-tile:has(figcaption) {
  overflow: hidden;
}

.journey-map {
  margin-top: clamp(72px, 10vw, 150px);
  padding-top: clamp(34px, 5vw, 72px);
  border-top: 1px solid var(--line);
}

.journey-content .journey-map:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.journey-map-secondary {
  margin-top: clamp(54px, 8vw, 112px);
}

.journey-map-immersive {
  width: calc(100vw - var(--side));
  margin-left: calc(50% - 50vw + (var(--side) / 2));
  padding-left: clamp(24px, 4vw, 52px);
  padding-right: clamp(24px, 4vw, 52px);
}

.journey-map-head {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, 560px);
  gap: clamp(28px, 5vw, 84px);
  align-items: end;
  margin-bottom: clamp(28px, 4vw, 54px);
}

.journey-map-head span {
  display: block;
  margin-bottom: 18px;
  color: var(--tif-red);
  font-size: 12px;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.journey-map h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(54px, 8vw, 128px);
  font-weight: 400;
  line-height: .86;
  letter-spacing: -.04em;
}

.journey-map-head p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.map-stage {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(245, 242, 234, .12);
  background:
    linear-gradient(135deg, rgba(226, 50, 36, .11), transparent 42%),
    #050505;
}

.map-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, .72), transparent 16%, transparent 84%, rgba(5, 5, 5, .56)),
    linear-gradient(0deg, rgba(5, 5, 5, .42), transparent 22%, transparent 78%, rgba(5, 5, 5, .34));
}

.map-stage img,
.map-object {
  display: block;
  width: 100%;
  min-height: clamp(280px, 46vw, 620px);
  object-fit: cover;
  border: 0;
}

.map-stage-china img,
.map-stage-china .map-object {
  width: min(100%, 1480px);
  min-height: 0;
  aspect-ratio: 860 / 680;
  margin: 0 auto;
  object-fit: contain;
}

.map-stage-china {
  min-height: clamp(620px, 88vh, 1100px);
  padding: clamp(24px, 3vw, 34px);
  background:
    radial-gradient(circle at 18% 22%, rgba(226, 50, 36, .16), transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(245, 242, 234, .08), transparent 24%),
    linear-gradient(180deg, rgba(14, 14, 16, .92), rgba(5, 5, 5, .98));
}

.map-stage-china::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(245, 242, 234, .08);
  background:
    linear-gradient(rgba(245, 242, 234, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 242, 234, .035) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: .4;
  pointer-events: none;
}

.map-stage-tools {
  position: absolute;
  top: clamp(18px, 2vw, 26px);
  right: clamp(18px, 2vw, 26px);
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.map-tool {
  min-width: 52px;
  height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(245, 242, 234, .18);
  background: rgba(8, 8, 8, .68);
  color: rgba(245, 242, 234, .92);
  font: inherit;
  font-size: 14px;
  letter-spacing: .08em;
  cursor: pointer;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
  backdrop-filter: blur(10px);
}

.map-tool:hover,
.map-tool:focus-visible {
  border-color: rgba(226, 50, 36, .72);
  background: rgba(24, 24, 24, .84);
  transform: translateY(-1px);
  outline: none;
}

.map-tool:disabled {
  opacity: .42;
  cursor: default;
  transform: none;
}

.map-tool-reset,
.map-tool-fullscreen {
  min-width: 68px;
}

.map-viewport {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: calc(clamp(620px, 88vh, 1100px) - clamp(48px, 6vw, 68px));
  overflow: auto;
  padding: clamp(32px, 4vw, 56px) clamp(18px, 3vw, 36px);
  scrollbar-width: thin;
  scrollbar-color: rgba(245, 242, 234, .2) transparent;
}

.map-canvas {
  --map-scale: 1;
  flex: 0 0 auto;
  width: min(100%, 1480px);
  max-width: none;
  transform-origin: top center;
  transform: scale(var(--map-scale));
  transition: transform .28s ease;
  will-change: transform;
}

.map-stage-china.is-fullscreen {
  position: fixed;
  inset: 0;
  width: 100vw;
  min-height: 100vh;
  padding: clamp(20px, 3vw, 30px);
  z-index: 80;
  border-color: rgba(245, 242, 234, .2);
}

.map-stage-china.is-fullscreen .map-viewport {
  min-height: calc(100vh - 40px);
  padding-top: 84px;
}

body.map-focus-lock {
  overflow: hidden;
}

.map-stage-china.is-fullscreen .map-canvas {
  width: min(92vw, 1480px);
}

.map-ledger {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.map-ledger article {
  min-height: 210px;
  padding: clamp(22px, 3vw, 38px);
  border-right: 1px solid var(--line);
  background: rgba(7, 7, 7, .92);
}

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

.map-ledger em,
.map-lists h3 {
  color: var(--dim);
  font-style: normal;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.map-ledger strong {
  display: block;
  margin: 18px 0 16px;
  color: var(--tif-red);
  font-family: var(--serif);
  font-size: clamp(58px, 7vw, 104px);
  font-weight: 400;
  line-height: .82;
}

.map-ledger strong span {
  color: rgba(245, 242, 234, .72);
  font-size: .46em;
}

.map-ledger p,
.map-lists p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.map-lists {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr);
  gap: 1px;
  margin-top: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.map-lists > div {
  padding: clamp(24px, 4vw, 44px);
  background: #070707;
}

.map-lists h3 {
  margin: 0 0 18px;
  color: var(--tif-red);
}

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

.text-piece,
.audio-piece,
.design-piece {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr) auto;
  gap: clamp(20px, 4vw, 56px);
  align-items: center;
  min-height: 188px;
  padding: clamp(24px, 4vw, 48px);
  background: #070707;
  transition: background .26s ease, transform .26s ease;
}

.text-piece:hover,
.audio-piece:hover,
.design-piece:hover {
  transform: translateX(8px);
  background: #11100f;
}

.piece-no {
  display: grid;
  gap: 14px;
  align-content: start;
  color: var(--tif-red);
  font-family: var(--serif);
  font-size: clamp(42px, 6vw, 88px);
  line-height: .8;
}

.piece-no time {
  color: var(--dim);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .18em;
  line-height: 1;
}

.piece-main h2,
.piece-main h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 72px);
  font-weight: 400;
  line-height: .92;
  letter-spacing: -.035em;
}

.piece-main p {
  max-width: 720px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.76;
}

.piece-main p a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: rgba(226, 50, 36, .7);
  text-underline-offset: 5px;
}

.voice-player {
  width: min(100%, 520px);
  margin-top: 22px;
  accent-color: var(--tif-red);
  filter: invert(1) saturate(.45) hue-rotate(180deg);
}

.voice-piece .piece-main {
  min-width: 0;
}

.voice-disclosure {
  width: min(100%, 920px);
  margin-top: 24px;
  border-top: 1px solid rgba(245, 242, 234, .14);
}

.voice-disclosure summary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-top: 18px;
  color: var(--tif-red);
  cursor: pointer;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  list-style: none;
}

.voice-disclosure summary::-webkit-details-marker {
  display: none;
}

.voice-disclosure summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 28px;
  aspect-ratio: 1;
  border: 1px solid rgba(226, 50, 36, .45);
  border-radius: 50%;
  font-size: 16px;
  line-height: 1;
}

.voice-disclosure[open] summary::after {
  content: "-";
}

.voice-poem-single,
.poem-translation {
  margin-top: 28px;
}

.voice-poem-single > p {
  max-width: 780px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

.poem-text-cn {
  display: grid;
  gap: 22px;
  max-width: 760px;
  margin-top: 28px;
}

.poem-text-cn p {
  margin: 0;
  color: rgba(245, 242, 234, .82);
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 2.05;
}

.voice-text-panel {
  margin-top: clamp(36px, 6vw, 76px);
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid var(--line);
  background: #070707;
}

.voice-text-head {
  display: grid;
  gap: 12px;
  margin-bottom: clamp(28px, 4vw, 44px);
}

.voice-text-head em {
  color: var(--tif-red);
  font-style: normal;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.voice-text-head h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 68px);
  font-weight: 400;
  line-height: .95;
}

.poem-translation {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 64px);
}

.poem-column h3 {
  margin: 0 0 18px;
  color: var(--dim);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.poem-column p,
.voice-summary p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 16px;
  line-height: 2;
}

.text-muted {
  color: var(--dim) !important;
}

@media (max-width: 760px) {
  .poem-translation {
    grid-template-columns: 1fr;
  }
}

.piece-meta {
  display: grid;
  gap: 8px;
  justify-items: end;
  color: var(--dim);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.piece-enter {
  display: grid;
  place-items: center;
  width: clamp(76px, 8vw, 108px);
  aspect-ratio: 1;
  border: 1px solid rgba(245,242,234,.55);
  border-radius: 50%;
  color: var(--ink);
  font-size: clamp(42px, 5.4vw, 72px);
  line-height: 1;
  transition: transform .3s ease, background .3s ease, color .3s ease, border-color .3s ease;
}

.text-piece:hover .piece-enter,
.audio-piece:hover .piece-enter {
  transform: translate(10px, -10px) rotate(-45deg);
  background: var(--acid);
  color: #050505;
  border-color: var(--acid);
}

.demo-stack {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.demo-piece {
  display: grid;
  grid-template-columns: 124px minmax(0, 1fr) auto;
  gap: clamp(20px, 3vw, 44px);
  align-items: start;
  padding: clamp(24px, 4vw, 44px);
  background: #070707;
  transition: background .24s ease, transform .24s ease;
}

.demo-piece:hover {
  transform: translateX(6px);
  background: #10100f;
}

.article-link {
  position: relative;
  cursor: pointer;
}

.demo-piece .piece-main h2 {
  font-size: clamp(26px, 4vw, 52px);
}

.demo-piece .piece-main p {
  max-width: 760px;
}

.demo-piece .piece-meta {
  min-width: 112px;
  min-height: 96px;
  align-content: space-between;
  gap: 18px;
}

.piece-arrow {
  display: grid;
  place-items: center;
  width: 58px;
  aspect-ratio: 1;
  border: 1px solid rgba(245,242,234,.46);
  border-radius: 50%;
  color: var(--ink);
  font-size: 34px;
  line-height: 1;
  opacity: 1;
  transition: transform .3s ease, background .3s ease, color .3s ease, border-color .3s ease;
}

.article-link:hover .piece-arrow {
  transform: translate(6px, -6px) rotate(-45deg);
  background: var(--acid);
  color: #050505;
  border-color: var(--acid);
}

.reading-stack {
  display: grid;
  gap: clamp(28px, 4vw, 44px);
}

.reading-intro {
  max-width: 860px;
}

.reading-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.95;
}

.reading-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(280px, .75fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.reading-body {
  display: grid;
  gap: 20px;
}

.reading-body p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 2;
}

.reading-aside {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.reading-note {
  padding: 22px 24px;
  background: #080808;
}

.reading-note em {
  display: block;
  margin-bottom: 10px;
  color: var(--tif-red);
  font-style: normal;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.reading-note strong {
  display: block;
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: clamp(24px, 3.2vw, 40px);
  font-weight: 400;
  line-height: .96;
}

.reading-note p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.78;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--tif-red);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.back-link:hover {
  transform: translateX(-3px);
}

.poem-sheet {
  width: min(100%, 920px);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 72px);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(245, 242, 234, .045), rgba(245, 242, 234, .015)),
    #070707;
}

.poem-head {
  display: grid;
  gap: 12px;
  margin-bottom: clamp(36px, 5vw, 64px);
}

.poem-head em {
  color: var(--tif-red);
  font-style: normal;
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.poem-head h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(46px, 8vw, 96px);
  font-weight: 400;
  line-height: .9;
  letter-spacing: -.035em;
}

.poem-body {
  display: grid;
  gap: clamp(28px, 4vw, 48px);
}

.poem-section {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: clamp(18px, 3vw, 38px);
  align-items: start;
}

.poem-section h3 {
  margin: .3em 0 0;
  color: var(--tif-red);
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
}

.poem-section p {
  margin: 0;
  color: rgba(245, 242, 234, .82);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 2.05;
  white-space: pre-line;
}


.wave {
  width: 144px;
  height: 34px;
  background:
    linear-gradient(90deg, var(--tif-red) 0 4px, transparent 4px 8px) 0 50% / 12px 100%;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  opacity: .85;
}

.voice-piece.is-playing .wave {
  animation: wave-marquee .72s linear infinite;
  opacity: 1;
}

@keyframes wave-marquee {
  from { background-position-x: 0; }
  to { background-position-x: 24px; }
}

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

.project-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 3vw, 40px);
  background: #080808;
  transition: background .26s ease, transform .26s ease, color .26s ease;
}

.project-card:hover {
  transform: translateY(-6px);
  background: var(--tif-red);
  color: #050505;
}

.project-card em {
  color: var(--dim);
  font-style: normal;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.project-card strong {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 58px);
  font-weight: 400;
  line-height: .9;
}

.project-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.project-card:hover em,
.project-card:hover p { color: rgba(5, 5, 5, .68); }

.project-card-entry {
  position: relative;
  min-height: 330px;
  padding-right: clamp(88px, 8vw, 112px);
}

.project-card-enter {
  position: absolute;
  top: 50%;
  right: clamp(18px, 2.2vw, 28px);
  width: 66px;
  height: 66px;
  font-size: 34px;
  transform: translateY(-50%);
}

.project-card-entry:hover .project-card-enter {
  transform: translate(8px, -50%) rotate(-45deg);
  background: var(--acid);
  color: #050505;
  border-color: var(--acid);
}

.project-card-status {
  position: absolute;
  top: 50%;
  right: clamp(20px, 2.2vw, 30px);
  transform: translateY(-50%);
  color: var(--dim);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.design-web-showcase {
  margin-top: clamp(44px, 7vw, 92px);
  display: grid;
  gap: clamp(22px, 3vw, 34px);
}

.design-web-head {
  display: grid;
  grid-template-columns: minmax(0, .64fr) minmax(0, 1.36fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: end;
  padding: 0 clamp(2px, .4vw, 8px);
}

.design-web-head em,
.design-web-meta em {
  color: var(--tif-red);
  font-style: normal;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.design-web-head h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(40px, 5.6vw, 78px);
  font-weight: 400;
  line-height: .92;
}

.design-web-head p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

.design-web-case {
  display: grid;
  gap: clamp(22px, 3vw, 34px);
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(245, 242, 234, .03), rgba(245, 242, 234, .012)),
    #070707;
}

.design-web-case-featured {
  grid-template-columns: minmax(280px, .46fr) minmax(0, 1.54fr);
  align-items: start;
}

.design-web-case-wide {
  gap: clamp(26px, 4vw, 40px);
}

.design-web-copy {
  display: grid;
  gap: 16px;
  align-content: start;
}

.design-web-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.design-web-meta span {
  color: var(--dim);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.design-web-copy h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(30px, 4.5vw, 58px);
  font-weight: 400;
  line-height: .94;
}

.design-web-copy p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

.design-web-dual {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(240px, .52fr);
  gap: clamp(16px, 2vw, 24px);
  align-items: start;
}

.design-web-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 34px);
}

.design-web-shot {
  margin: 0;
  border: 1px solid rgba(245, 242, 234, .1);
  background: rgba(10, 10, 10, .92);
}

.design-web-shot img {
  display: block;
  width: 100%;
  height: auto;
}

.design-web-shot figcaption {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  border-top: 1px solid rgba(245, 242, 234, .08);
  color: var(--dim);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.shot-zoom {
  border: 0;
  padding: 0;
  background: transparent;
  color: rgba(245, 242, 234, .88);
  font: inherit;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  cursor: pointer;
}

.shot-zoom:hover,
.shot-zoom:focus-visible {
  color: var(--tif-red);
  outline: none;
}

.design-web-shot-mobile {
  align-self: start;
}

.design-web-shot-tall img {
  max-height: 1100px;
  object-fit: cover;
  object-position: top center;
}

.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 3vw, 34px);
  background: rgba(6, 6, 6, .88);
  backdrop-filter: blur(14px);
}

.lightbox-overlay.is-open {
  display: flex;
}

.lightbox-shell {
  width: min(100%, 1280px);
  max-height: calc(100vh - 36px);
  border: 1px solid rgba(245, 242, 234, .16);
  background: #070707;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
}

.lightbox-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(245, 242, 234, .08);
}

.lightbox-copy {
  display: grid;
  gap: 6px;
}

.lightbox-copy strong {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 400;
  line-height: 1;
}

.lightbox-copy span {
  color: var(--dim);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.lightbox-close {
  border: 1px solid rgba(245, 242, 234, .16);
  background: transparent;
  color: rgba(245, 242, 234, .92);
  font: inherit;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 12px 14px;
  cursor: pointer;
}

.lightbox-body {
  overflow: auto;
  background: #020202;
}

.lightbox-body img {
  display: block;
  width: 100%;
  height: auto;
}

body.lightbox-lock {
  overflow: hidden;
}

.frame {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  margin: 0;
  background: #111;
}

.frame.small { min-height: 350px; }

.frame img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: grayscale(.82) contrast(1.15) brightness(.78);
  transition: transform .7s ease, filter .7s ease;
}

.frame:hover img {
  transform: scale(1.05);
  filter: grayscale(.28) contrast(1.08) brightness(.92);
}

.frame figcaption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.stack { display: grid; gap: clamp(18px, 2.4vw, 36px); }

.quote {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
  gap: clamp(34px, 6vw, 96px);
  align-items: center;
  min-height: 58svh;
}

blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 6vw, 110px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -.035em;
}

.quote p,
.copy-block p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 2;
}

.copy-block {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 5vw, 78px);
}

.rooms {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.room {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 3vw, 38px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #080808;
  transition: transform .28s ease, background .28s ease, color .28s ease;
}

.room:hover {
  transform: translateY(-7px);
  background: var(--acid);
  color: #050505;
}

.room em {
  color: var(--tif-red);
  font-style: normal;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.room strong {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 400;
  line-height: .9;
}

.room p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.room:hover p,
.room:hover em { color: rgba(5,5,5,.64); }

.email-only {
  min-height: 58svh;
  display: grid;
  place-items: center start;
}

.email-only a {
  display: inline-block;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(38px, 7vw, 116px);
  line-height: .92;
  letter-spacing: -.035em;
  border-bottom: 2px solid var(--tif-red);
}

.reveal {
  opacity: .82;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 980px) {
  :root { --side: 0; }
  .sidebar {
    position: static;
    width: auto;
    min-height: auto;
    padding: 24px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .mode,
  .menu,
  .sidebar-foot { display: none; }
  .page { margin-left: 0; }
  .index-grid { grid-template-columns: 1fr; }
  .poster { min-height: 72svh; border-right: 0; }
  .section-head,
  .design-web-head,
  .photo-gallery-head,
  .journey-map-head,
  .quote,
  .copy-block,
  .text-piece,
  .audio-piece,
  .design-piece,
  .demo-piece,
  .reading-grid { grid-template-columns: 1fr; }
  .rooms { grid-template-columns: repeat(2, 1fr); }
  .project-grid { grid-template-columns: 1fr; }
  .design-web-grid,
  .design-web-case-featured,
  .design-web-dual { grid-template-columns: 1fr; }
  .lightbox-shell {
    width: 100%;
    max-height: calc(100vh - 20px);
  }
  .map-ledger,
  .map-lists { grid-template-columns: 1fr; }
  .map-ledger article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .map-ledger article:last-child {
    border-bottom: 0;
  }
  .journey-map-immersive {
    width: 100%;
    margin-left: 0;
    padding-left: 0;
    padding-right: 0;
  }
  .map-stage-china {
    min-height: clamp(480px, 74vh, 760px);
    padding: 18px;
  }
  .map-stage-tools {
    left: 18px;
    right: 18px;
    justify-content: space-between;
  }
  .map-tool {
    min-width: 48px;
    height: 40px;
    padding: 0 14px;
  }
  .map-viewport {
    min-height: calc(clamp(480px, 74vh, 760px) - 36px);
    padding: 64px 8px 18px;
  }
  .frame,
  .frame.small { min-height: 430px; }
  .photo-masonry {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .piece-meta { justify-items: start; }
  .poem-section { grid-template-columns: 1fr; }
  .poem-section h3 { margin: 0; }
}

@media (max-width: 620px) {
  .poster,
  .cover {
    min-height: 78svh;
    padding: 28px 22px;
  }
  .poster h1,
  .poster h2 {
    font-size: clamp(58px, 18vw, 92px);
  }
  .cover h1 {
    font-size: clamp(68px, 20vw, 112px);
  }
  .poster-bottom,
  .cover-bottom {
    grid-template-columns: 1fr;
  }
  .arrow,
  .scroll-cue {
    width: 84px;
  }
  .content {
    padding-left: 20px;
    padding-right: 20px;
  }
  .photo-masonry {
    grid-template-columns: 1fr;
  }
  .poem-sheet { padding: 28px 22px; }
  .poem-section p {
    font-size: 17px;
    line-height: 1.95;
  }
  .rooms { grid-template-columns: 1fr; }
  .room { min-height: 220px; }
}
