:root {
  --bg: #11110f;
  --surface: #191916;
  --surface-raised: #20201c;
  --paper: #ede9df;
  --muted: #aaa399;
  --text-secondary: #c8c0b5;
  --line: #ede9df3d;
  --focus: #d8c8a7;
  --official: #c9b48c;
  --interview: #9fb4ad;
  --criticism: #b39aac;
  --editorial: #c7c2b8;
  --veil: #11110f99;
  --serif: Georgia, "Songti SC", "Times New Roman", serif;
  --sans: Arial, "PingFang SC", sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  background: var(--bg);
  color: var(--paper);
  font-family: var(--sans);
  text-rendering: optimizeLegibility;
}
img { display: block; width: 100%; }
a { color: inherit; }
a:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 4px;
}
.skip {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  background: var(--paper);
  color: var(--bg);
  padding: 12px 16px;
}
.skip:focus { top: 16px; }
.story-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 64px;
  padding: 0 4vw;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: #11110fe8;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.story-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: .08em;
  transition: color 220ms ease-out;
}
.story-nav a:hover { color: #fff; }
.story-nav a:focus-visible,
.next-story:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 4px;
}
.story-nav .brand {
  font-family: var(--serif);
  letter-spacing: .08em;
}
.story-nav .source { justify-self: end; color: var(--muted); }
.story-hero {
  min-height: calc(100dvh - 64px);
  padding: clamp(48px, 7vw, 108px) 4vw 5vw;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 7vw;
  align-items: center;
}
.issue-label {
  display: block;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.story-hero h1 {
  margin: 0;
  max-width: 7ch;
  font: 400 clamp(64px, 9vw, 146px) / .82 var(--serif);
  letter-spacing: -.065em;
}
.story-hero h1 span { display: block; margin-left: .45em; }
.story-hero .dek {
  max-width: 42ch;
  margin: 38px 0 0;
  color: #c2bbb1;
  font-size: 13px;
  line-height: 1.9;
}
.verified {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero-image {
  position: relative;
  min-height: 68dvh;
  overflow: hidden;
  background: var(--surface);
  box-shadow: 0 40px 80px #07070666;
}
.hero-image img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}
.hero-image figcaption,
.plate figcaption {
  padding-top: 12px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.6;
}
.plate figcaption strong,
.plate figcaption span { display: block; }
.plate figcaption strong {
  color: var(--paper);
  font-weight: 400;
  letter-spacing: .04em;
}
.plate figcaption span { margin-top: 4px; }
.hero-image figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 8px 10px;
  color: var(--paper);
  background: var(--veil);
  border: 1px solid var(--line);
  letter-spacing: .12em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.boundary {
  margin: 0 4vw;
  padding: 5vw 0 6vw;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: 8vw;
}
.boundary h2,
.chapter h2 {
  margin: 0;
  font: 400 clamp(36px, 4.8vw, 72px) / .95 var(--serif);
  letter-spacing: -.04em;
}
.boundary p {
  margin: 0;
  max-width: 62ch;
  color: #c2bbb1;
  font-size: 14px;
  line-height: 2;
}
.boundary-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}
.boundary-tags li {
  padding: 8px 11px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 9px;
  letter-spacing: .08em;
}
.source-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin: 0 10px 4px 0;
  padding: 3px 8px;
  border: 1px solid currentColor;
  font-size: 8px;
  letter-spacing: .12em;
  line-height: 1;
  text-transform: uppercase;
  vertical-align: middle;
}
.source-badge.official { color: var(--official); }
.source-badge.interview { color: var(--interview); }
.source-badge.criticism { color: var(--criticism); }
.source-badge.editorial { color: var(--editorial); }
.route-nav {
  position: relative;
  z-index: 2;
  margin: 0 4vw;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.route-nav a {
  min-height: 92px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line);
  color: var(--text-secondary);
  font: 400 17px var(--serif);
  text-decoration: none;
  transition: color 220ms ease-out, background 220ms ease-out;
}
.route-nav a:last-child { border-right: 0; }
.route-nav a:hover { color: var(--paper); background: var(--surface); }
.route-nav span {
  color: var(--muted);
  font: 400 9px var(--sans);
  letter-spacing: .18em;
}
.chapter[id] { scroll-margin-top: 76px; }
.chapter {
  padding: 6vw 4vw 9vw;
}
.chapter + .chapter { border-top: 1px solid var(--line); }
.chapter-head {
  max-width: 780px;
  margin-bottom: 4vw;
}
.chapter-index {
  display: block;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.chapter-head p {
  max-width: 56ch;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}
.chapter-head.split-head {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, .8fr);
  gap: 8vw;
  align-items: end;
}
.chapter-head.split-head p { margin: 0 0 4px; }
.chapter-copy {
  margin: 0 0 clamp(44px, 6vw, 88px);
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(320px, 1.08fr);
  gap: 8vw;
  align-items: start;
}
.chapter-copy.reverse { grid-template-columns: minmax(320px, 1.08fr) minmax(0, .92fr); }
.chapter-copy > p {
  max-width: 62ch;
  margin: 0;
  color: var(--text-secondary);
  font: 400 15px/2 var(--sans);
}
.research-note {
  padding: 24px 0 0 28px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.research-note b {
  color: var(--paper);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.research-note p {
  max-width: 58ch;
  margin: 14px 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.9;
}
.research-note a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--text-secondary);
  font-size: 10px;
  text-underline-offset: 4px;
}
.pull-quote {
  max-width: 18ch;
  margin: 0;
  font: 400 clamp(28px, 3.4vw, 54px)/1.08 var(--serif);
  letter-spacing: -.035em;
}
.pull-quote cite {
  display: block;
  margin-top: 22px;
  color: var(--muted);
  font: normal 400 8px var(--sans);
  letter-spacing: .16em;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 30px);
  align-items: start;
}
.plate { margin: 0; min-width: 0; }
.plate img {
  background: var(--surface);
  object-fit: cover;
  aspect-ratio: 4 / 5;
  transition: transform 280ms ease-out, filter 280ms ease-out;
}
.plate:hover img { transform: translateY(-3px); filter: contrast(1.03); }
.plate.major { grid-column: span 7; }
.plate.minor { grid-column: span 5; margin-top: 8vw; }
.plate.detail { grid-column: 2 / span 4; margin-top: 3vw; }
.plate.closing { grid-column: 7 / span 6; margin-top: -4vw; }
.plate.full { grid-column: 1 / -1; }
.plate.wide { grid-column: span 8; }
.plate.half { grid-column: span 6; }
.plate.portrait { grid-column: span 4; }
.plate.tall { grid-column: span 5; }
.plate.offset { grid-column: 7 / span 6; margin-top: 7vw; }
.plate.cover img { aspect-ratio: 16 / 9; }
.plate.portrait img { aspect-ratio: 3 / 4; }
.plate.graphic img { aspect-ratio: 4 / 3; object-fit: contain; }
.plate.tall img { aspect-ratio: 4 / 5; }
.plate.full img { max-height: 86dvh; object-fit: cover; }
.plate.cinematic img { aspect-ratio: 16 / 9; }
.plate.scale-corrected img { height: auto; }
.plate.lower { margin-top: 9vw; }
.plate.lift { margin-top: -3vw; }
.lead-pair img { object-position: center 42%; }
.chapter-tonal { background: #151512; }
.chapter-objects { background: #0c0c0b; }
.chapter-archive { background: #171714; }
.story-black .story-hero h1 {
  max-width: 8.5ch;
  font-size: clamp(58px, 7.8vw, 126px);
}
.story-black .story-hero h1 span {
  margin-left: .2em;
  font-size: .76em;
  line-height: .9;
}
.story-black .face-crop img { object-position: 50% 10%; }
.story-black .hand-crop img { object-position: 52% 62%; }
.material-ledger {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.material-card {
  margin: 0;
  min-width: 0;
  background: var(--bg);
}
.material-card img {
  aspect-ratio: 3 / 4;
  height: auto;
  object-fit: cover;
  filter: saturate(.78) contrast(1.03);
}
.material-card.rib img { object-position: 50% 51%; }
.material-card.pattern img { object-position: 45% 59%; }
.material-card.mesh img { object-position: 55% 57%; }
.material-card.print img { object-position: 48% 50%; }
.material-card figcaption {
  min-height: 70px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: .08em;
}
.material-card figcaption b { color: var(--paper); font-weight: 400; }
.black-ledger {
  margin-top: clamp(48px, 7vw, 100px);
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
}
.black-ledger .material-card img { aspect-ratio: 4 / 3; }
.material-quote {
  min-height: 100%;
  padding: clamp(34px, 6vw, 92px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 60px;
  background: #141411;
}
.material-quote p {
  max-width: 16ch;
  margin: 0;
  font: 400 clamp(30px, 4.2vw, 66px) / 1.03 var(--serif);
  letter-spacing: -.04em;
}
.material-quote span,
.archive-note b {
  color: var(--muted);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.archive-note {
  max-width: 720px;
  margin: 0 0 4vw auto;
  padding: 24px 0 24px 32px;
  border-left: 1px solid var(--focus);
}
.archive-note p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}
.archive-note a {
  min-height: 44px;
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  color: var(--paper);
  font-size: 10px;
  text-underline-offset: 4px;
}
.pending-note {
  border-left-color: #b88f60;
  background: #b88f6008;
}
.pending-note b { color: #d3ad7d; }
.archive-gate img { object-position: center 58%; }
.sources-copy { max-width: 66ch; }
.source-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.source-links a {
  color: var(--paper);
  text-underline-offset: 4px;
}
.endnote {
  margin: 0 4vw;
  padding: 6vw 0 8vw;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}
.endnote p {
  max-width: 58ch;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.8;
}
.refresh-note {
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--text-secondary) !important;
}
.culture-index {
  padding: 7vw 4vw 9vw;
  border-top: 1px solid var(--line);
  background: #e7e1d6;
  color: #171714;
}
.culture-index header {
  display: grid;
  grid-template-columns: .55fr 1.45fr;
  gap: 8vw;
  align-items: start;
  margin-bottom: 5vw;
}
.culture-index header span {
  padding-top: 8px;
  color: #615c54;
  font-size: 9px;
  letter-spacing: .18em;
}
.culture-index h2 {
  max-width: 12ch;
  margin: 0;
  font: 400 clamp(44px, 6vw, 94px)/.9 var(--serif);
  letter-spacing: -.05em;
}
.culture-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid #17171455;
  border-bottom: 1px solid #17171455;
}
.culture-grid article {
  min-height: 220px;
  padding: 28px 24px;
  border-right: 1px solid #17171455;
}
.culture-grid article:last-child { border-right: 0; }
.culture-grid b {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .08em;
}
.culture-grid p {
  margin: 62px 0 0;
  color: #4f4a43;
  font: 400 14px/1.8 var(--sans);
}
.next-story {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  border-bottom: 1px solid currentColor;
  text-decoration: none;
  font: 400 22px var(--serif);
  white-space: nowrap;
}
.story-gta { padding-bottom: 108px; }
.bgm-player {
  position: fixed;
  left: 4vw;
  bottom: 22px;
  z-index: 30;
  width: min(760px, calc(100vw - 8vw));
  min-height: 68px;
  padding: 10px 16px 10px 10px;
  display: grid;
  grid-template-columns: 44px minmax(150px, .8fr) minmax(180px, 1.2fr) auto 92px;
  align-items: center;
  gap: 16px;
  color: var(--paper);
  background: #151513e8;
  border: 1px solid #ede9df2e;
  box-shadow: 0 20px 54px #07070680, inset 0 1px #ffffff0a;
  backdrop-filter: blur(18px) saturate(.8);
}
.bgm-player::before {
  content: "";
  position: absolute;
  inset: -1px auto -1px -1px;
  width: 2px;
  background: #9b352d;
}
.bgm-toggle {
  width: 44px;
  height: 44px;
  border: 0;
  color: #f1ede4;
  background: #9b352d;
  cursor: pointer;
  transition: transform 180ms ease, background 220ms ease;
}
.bgm-toggle:hover { background: #ad4137; }
.bgm-toggle:active { transform: scale(.96); }
.bgm-toggle:focus-visible,
.bgm-player input:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}
.bgm-glyph {
  display: block;
  font: 600 14px/1 var(--sans);
  transform: translateX(1px);
}
.bgm-player[data-state="playing"] .bgm-glyph { transform: none; }
.bgm-meta { min-width: 0; }
.bgm-meta span,
.bgm-meta small {
  display: block;
  color: var(--muted);
  font-size: 8px;
  line-height: 1.4;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.bgm-meta strong {
  display: block;
  overflow: hidden;
  margin: 3px 0 2px;
  font: 400 13px/1.2 var(--serif);
  letter-spacing: .01em;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.bgm-time {
  color: var(--text-secondary);
  font-size: 9px;
  font-variant-numeric: tabular-nums;
  letter-spacing: .08em;
  white-space: nowrap;
}
.bgm-scrubber,
.bgm-volume {
  display: flex;
  align-items: center;
  gap: 8px;
}
.bgm-volume span {
  color: var(--muted);
  font-size: 8px;
  letter-spacing: .12em;
}
.bgm-player input[type="range"] {
  --bgm-progress: 0%;
  width: 100%;
  height: 22px;
  margin: 0;
  appearance: none;
  background: transparent;
  cursor: pointer;
}
.bgm-player input[type="range"]::-webkit-slider-runnable-track {
  height: 2px;
  background: linear-gradient(to right, #b6473d var(--bgm-progress), #ede9df36 var(--bgm-progress));
}
.bgm-player input[type="range"]::-webkit-slider-thumb {
  width: 8px;
  height: 8px;
  margin-top: -3px;
  appearance: none;
  border: 1px solid #151513;
  border-radius: 50%;
  background: var(--paper);
}
.bgm-volume input[type="range"] { --bgm-progress: var(--bgm-volume, 72%); }
.bgm-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
@media (max-width: 760px) {
  .story-nav { padding: 0 16px; grid-template-columns: 1fr auto; }
  .story-nav .brand { display: none; }
  .story-hero {
    min-height: auto;
    padding: 56px 16px 72px;
    grid-template-columns: 1fr;
    gap: 52px;
  }
  .story-hero h1 { font-size: clamp(60px, 20vw, 82px); }
  .story-hero .dek { font-size: 16px; line-height: 1.75; }
  .verified { font-size: 10px; line-height: 1.6; }
  .hero-image { min-height: 66dvh; margin: 0; }
  .boundary {
    margin: 0 16px;
    padding: 72px 0;
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .boundary p { font-size: 16px; line-height: 1.8; }
  .route-nav {
    margin: 0 16px;
    grid-template-columns: 1fr 1fr;
  }
  .route-nav a { min-height: 88px; border-bottom: 1px solid var(--line); }
  .route-nav a:nth-child(2) { border-right: 0; }
  .route-nav a:nth-child(n+3) { border-bottom: 0; }
  .chapter { padding: 72px 16px 96px; }
  .chapter-head { margin-bottom: 42px; }
  .chapter-head p { font-size: 15px; }
  .chapter-head.split-head { grid-template-columns: 1fr; gap: 22px; }
  .chapter-head.split-head p { margin: 0; }
  .chapter-copy,
  .chapter-copy.reverse {
    grid-template-columns: 1fr;
    gap: 38px;
    margin-bottom: 54px;
  }
  .chapter-copy > p { font-size: 16px; line-height: 1.85; }
  .research-note { padding: 22px 0 0 20px; }
  .research-note p { font-size: 14px; }
  .pull-quote { max-width: 16ch; font-size: clamp(30px, 10vw, 46px); }
  .gallery { grid-template-columns: 1fr; gap: 42px; }
  .plate.full,
  .plate.wide,
  .plate.half,
  .plate.portrait,
  .plate.tall,
  .plate.offset,
  .plate.major,
  .plate.minor,
  .plate.detail,
  .plate.closing { grid-column: 1; margin-top: 0; }
  .plate img,
  .plate.portrait img,
  .plate.tall img { aspect-ratio: 4 / 5; max-height: none; object-fit: cover; }
  .plate figcaption { font-size: 12px; }
  .plate.cinematic img { aspect-ratio: 4 / 5; }
  .material-ledger { grid-template-columns: 1fr 1fr; }
  .material-card figcaption { min-height: 76px; }
  .source-links { flex-direction: column; gap: 10px; }
  .story-black .story-hero h1 { font-size: clamp(54px, 17vw, 76px); }
  .black-ledger { grid-template-columns: 1fr; }
  .black-ledger .material-card img { aspect-ratio: 4 / 5; }
  .material-quote { min-height: 420px; padding: 34px 24px; }
  .archive-note { margin: 0 0 42px; padding: 20px 0 20px 20px; }
  .archive-note p { font-size: 14px; }
  .culture-index { padding: 72px 16px 88px; }
  .culture-index header { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
  .culture-grid { grid-template-columns: 1fr 1fr; }
  .culture-grid article:nth-child(2) { border-right: 0; }
  .culture-grid article:nth-child(-n+2) { border-bottom: 1px solid #17171455; }
  .culture-grid article { min-height: 210px; }
  .culture-grid p { margin-top: 42px; }
  .endnote {
    margin: 0 16px;
    padding: 64px 0 80px;
    align-items: flex-start;
    flex-direction: column;
  }
  .story-gta { padding-bottom: 96px; }
  .bgm-player {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    min-height: 72px;
    padding: 10px 12px 10px 10px;
    grid-template-columns: 44px minmax(0, 1fr) auto;
    grid-template-areas: "toggle meta time" "toggle progress progress";
    column-gap: 12px;
    row-gap: 2px;
  }
  .bgm-toggle { grid-area: toggle; }
  .bgm-meta { grid-area: meta; }
  .bgm-meta span,
  .bgm-meta small { display: none; }
  .bgm-meta strong { font-size: 13px; }
  .bgm-scrubber { grid-area: progress; }
  .bgm-time { grid-area: time; }
  .bgm-volume { display: none; }
}
@media (max-width: 430px) {
  .material-ledger { grid-template-columns: 1fr; }
  .material-card img { aspect-ratio: 4 / 5; }
  .culture-grid { grid-template-columns: 1fr; }
  .culture-grid article,
  .culture-grid article:nth-child(2) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid #17171455;
  }
  .culture-grid article:last-child { border-bottom: 0; }
  .culture-grid p { margin-top: 28px; }
}
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
