/* Kee visual system — plates 28px, chips pill, photos are the UI, hairline only.
   Other Kee rooms follow this file. One still: /assets/images/hero.jpg. */
:root {
  --soot: #0e0c0a;
  --bone: #f3ead8;
  --rust: #c45a2c;
  --rust-ink: #2a120c;
  --moss: #24382e;
  --ink: #161310;
  --mute: #c9b89a;
  --rule: rgba(243, 234, 216, 0.14);
  --hair: 1px solid rgba(243, 234, 216, 0.14);
  --plate: 28px;
  --radius: 28px;
  --chip: 999px;
  --display: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", system-ui, sans-serif;
  --ui: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", system-ui, sans-serif;
  --body: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", system-ui, sans-serif;
  --dur: 200ms;
  --dur-phone: 200ms;
  --motion: 200ms;
  --pad: clamp(1.15rem, 3.4vw, 2.8rem);
  --max: 74rem;
  --ease: ease-out;
  --still: url("/assets/images/hero.jpg");
  --safe-t: env(safe-area-inset-top, 0px);
  --safe-r: env(safe-area-inset-right, 0px);
  --safe-b: env(safe-area-inset-bottom, 0px);
  --safe-l: env(safe-area-inset-left, 0px);
  --tap: 44px;
  --bar-h: 3.6rem;
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: clip;
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
}
::selection { background: var(--rust); color: var(--bone); }
body {
  margin: 0;
  background:
    radial-gradient(1200px 700px at 10% -10%, rgba(196,90,44,.18), transparent 50%),
    var(--soot);
  color: var(--bone);
  font-family: var(--body);
  font-size: clamp(1.05rem, 0.4vw + 1rem, 1.15rem);
  line-height: 1.7;
  letter-spacing: -0.011em;
  min-height: 100svh;
  text-rendering: optimizeLegibility;
  max-width: 100%;
  overflow-x: clip;
}
body.menu-open, body.lb-open {
  overflow: clip;
  overscroll-behavior: none;
}
img, video, svg, iframe { max-width: 100%; height: auto; display: block; }
.bar > *, .dock > *, .split > *, .hero > *, .wrap > *, .listen-dock > *,
.courses > *, .jackets > *, .stillgrid > *, .clip-bay > *, .foot-grid > *,
.actions > *, .cards > * { min-width: 0; }
a { color: inherit; text-underline-offset: 0.2em; }
a:hover { color: var(--rust); }
:focus-visible {
  outline: 3px solid var(--rust);
  outline-offset: 3px;
}
.visually-hidden, .live {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.skip {
  position: absolute; left: -999px; z-index: 90;
}
.skip:focus {
  left: 1rem; top: 1rem;
  background: var(--bone); color: var(--soot);
  padding: 0.55rem 0.8rem;
}
#main:focus { outline: none; }

.grain {
  pointer-events: none;
  position: fixed; inset: 0; z-index: 60;
  opacity: 0.09;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='.55'/></svg>");
}

.bar {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding:
    max(0.7rem, var(--safe-t))
    max(var(--pad), var(--safe-r))
    0.7rem
    max(var(--pad), var(--safe-l));
  background: color-mix(in srgb, var(--soot) 82%, transparent);
  backdrop-filter: blur(16px) saturate(1.1);
  border-bottom: var(--hair);
}
.mark {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.85rem;
  letter-spacing: 0.06em;
  text-decoration: none;
}
.bar nav { display: flex; flex-wrap: wrap; gap: 0.35rem 0.15rem; }
.bar nav a {
  text-decoration: none;
  font-size: 0.98rem;
  min-height: var(--tap);
  min-width: var(--tap);
  display: inline-flex; align-items: center;
  padding: 0 0.7rem;
  position: relative;
}
.bar nav a::after {
  content: "";
  position: absolute; left: 0.7rem; right: 0.7rem; bottom: 0.55rem;
  height: 1px; background: var(--rust);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--motion) var(--ease);
}
.bar nav a:hover::after, .bar nav a[aria-current="page"]::after { transform: scaleX(1); }
.bar nav a[aria-current="page"] { color: var(--rust); }
.nav-toggle {
  display: none;
  min-height: var(--tap); min-width: var(--tap);
  z-index: 52;
  padding: 0 1.05rem;
  background: none; border: var(--hair); color: var(--bone);
  border-radius: var(--chip);
  font-family: var(--display); font-size: 1.05rem;
}
.nav-backdrop {
  position: fixed; inset: 0; z-index: 48;
  background: rgba(8,6,5,.55);
  overscroll-behavior: contain;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms var(--ease);
}
.nav-backdrop.is-on {
  opacity: 1;
  pointer-events: auto;
}

.wrap {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: max(1rem, var(--safe-l), var(--safe-r));
}
.page { padding: 3.2rem 0 5.5rem; }
.page h1 { font-size: clamp(3.2rem, 11vw, 7.2rem); }
h1, h2, h3 {
  font-family: var(--display);
  line-height: 0.86;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-wrap: balance;
}
h2 { font-size: clamp(2.3rem, 6vw, 4.6rem); margin: 0 0 0.85rem; }
h3 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
.lede { font-size: 1.2rem; max-width: 38rem; color: var(--mute); }
.fine { color: var(--mute); font-size: 0.95rem; }
.kicker {
  font-family: var(--display);
  font-size: 1.05rem;
  color: var(--rust);
  margin: 0 0 0.6rem;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 100svh;
  border-bottom: var(--hair);
  overflow: hidden;
}
.hero-copy { padding: clamp(2rem, 6vw, 5rem) var(--pad); align-self: center; }
.hero-copy p { max-width: 30rem; }
.hero h1 {
  font-size: clamp(5.2rem, 18vw, 13rem);
  margin: 0 0 0.35rem;
}
.hero-photo {
  position: relative;
  min-height: 100svh;
  background: transparent;
  overflow: hidden;
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 12%;
  min-height: 100svh;
  transform: scale(1.06);
  animation: settle var(--dur) var(--ease) both;
}
.hero-photo::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, var(--soot) 0%, transparent 42%),
    linear-gradient(180deg, transparent 60%, rgba(14,12,10,.35));
  pointer-events: none;
}
.hero-copy > * { animation: rise var(--motion) var(--ease) both; }
.hero-copy > *:nth-child(2) { animation-delay: 80ms; }
.hero-copy > *:nth-child(3) { animation-delay: 140ms; }
.hero-copy > *:nth-child(4) { animation-delay: 200ms; }
.actions { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.4rem; }

@keyframes rise {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: none; }
}
@keyframes settle {
  to { transform: scale(1); }
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: var(--tap);
  min-width: var(--tap);
  padding: 0.65rem 1.2rem;
  background: var(--rust);
  color: var(--bone);
  text-decoration: none;
  font-family: var(--ui);
  font-size: 1.05rem;
  border: 0;
  cursor: pointer;
  border-radius: var(--chip);
  transition: transform var(--motion) var(--ease), background var(--motion) var(--ease), color var(--motion) var(--ease);
}
.btn:hover { color: var(--bone); }
.btn.ghost { background: transparent; border: var(--hair); }
.btn.ghost:hover { background: var(--bone); color: var(--soot); }
.btn:active { transform: scale(0.98); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
.split .facts { grid-template-columns: 1fr 1fr; }
.stack { display: grid; gap: 1.15rem; min-width: 0; }
.stack > * { min-width: 0; max-width: 100%; }
.prose { max-width: 40rem; }
.prose p + p { margin-top: 0; }

.list a {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
  transition: padding-left var(--motion) var(--ease);
}
.list a:hover { color: var(--bone); }
.list a strong { font-family: var(--display); font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 800; }
.list a span { color: var(--mute); font-family: var(--display); }
.quote {
  font-family: var(--display);
  font-size: clamp(2.2rem, 5.4vw, 4rem);
  line-height: 0.92;
  margin: 0;
}

.band {
  background: var(--ink);
  padding: 3.2rem 0;
  border-block: 1px solid var(--rule);
}
.ticker {
  overflow: hidden;
  border-block: 1px solid var(--rule);
  font-family: var(--display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: 0.12em;
  white-space: nowrap;
}
.ticker-track {
  display: inline-block;
  padding: 0.65rem 0;
  animation: tick 28s linear infinite;
}
@keyframes tick {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.timeline { display: grid; gap: 0; }
.timeline article {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 1.2rem;
  padding: 1.3rem 0;
  border-bottom: 1px solid var(--rule);
}
.timeline b { font-family: var(--display); font-size: 1.3rem; color: var(--rust); }

form { display: grid; gap: 0.9rem; max-width: 30rem; }
.field { display: grid; gap: 0.35rem; }
label { font-size: 0.95rem; display: grid; gap: 0.35rem; }
input, textarea, select {
  width: 100%;
  background: rgba(255,255,255,.03);
  border: var(--hair);
  border-radius: 16px;
  color: var(--bone);
  padding: 0.8rem 0.8rem;
  font: inherit;
  min-height: 48px;
}
input:focus, textarea:focus, select:focus { border-color: var(--rust); }
[aria-invalid="true"] { border-color: #e07a4a; }
.field-err { color: #e7b39a; font-size: 0.88rem; }
.hp { position: absolute; left: -9999px; }
.note {
  border-left: 1px solid var(--rust);
  padding: 0.2rem 0 0.2rem 1rem;
  color: var(--mute);
}

.tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); gap: 0.8rem; }
.tile {
  min-height: 12rem;
  padding: 1.25rem;
  background: linear-gradient(180deg, #1b1713, var(--ink));
  text-decoration: none;
  display: flex; flex-direction: column; justify-content: flex-end;
  border-radius: var(--plate);
  transition: transform var(--motion) var(--ease);
}
.tile:hover { color: inherit; }
.tile:active { transform: scale(0.99); }
.tile strong { font-family: var(--display); font-size: 2rem; }

[data-reveal] { opacity: 0; transform: translateY(6px); transition: opacity var(--motion) var(--ease), transform var(--motion) var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }

.player {
  background: #110f0c;
  border: var(--hair);
  border-radius: var(--plate);
  padding: 1rem;
}
.player iframe { width: 100%; min-height: 152px; border: 0; }

footer {
  padding:
    2.2rem
    max(var(--pad), var(--safe-r))
    max(3.4rem, calc(1.6rem + var(--safe-b)))
    max(var(--pad), var(--safe-l));
  border-top: 1px solid var(--rule);
  display: flex; flex-wrap: wrap; gap: 1rem 2rem;
  justify-content: space-between;
  color: var(--mute);
}
footer nav { display: flex; flex-wrap: wrap; gap: 0.2rem 0.2rem; }
footer nav a {
  min-height: var(--tap);
  min-width: var(--tap);
  display: inline-flex; align-items: center;
  padding: 0 0.55rem;
}

@media (max-width: 860px) {
  .hero, .split, .timeline article { grid-template-columns: 1fr; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .bar .mark { z-index: 52; }
  .bar nav {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(22rem, 86%);
    max-width: 100%;
    background: #0c0a08;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0.15rem;
    padding:
      calc(var(--bar-h) + var(--safe-t) + 0.4rem)
      max(var(--pad), var(--safe-r))
      max(1.4rem, var(--safe-b))
      var(--pad);
    border-bottom: 0;
    border-left: var(--hair);
    transform: translate3d(110%, 0, 0);
    transition: transform 200ms var(--ease), visibility 0s linear 200ms;
    overflow-y: auto;
    overscroll-behavior: contain;
    touch-action: pan-y;
    z-index: 49;
    visibility: hidden;
  }
  .bar nav.open {
    display: flex;
    transform: none;
    visibility: visible;
    transition: transform 200ms var(--ease), visibility 0s linear 0s;
  }
  body.menu-open .nav-backdrop { pointer-events: auto; }
  html:has(body.menu-open) { overflow-y: clip; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}
@media (prefers-contrast: more) {
  body { background: #000; color: #fff; }
  a, .kicker, .bar nav a[aria-current="page"] { color: #ffb089; }
}

.progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 80;
  background: var(--rust);
  transform: scaleX(0); transform-origin: left;
  pointer-events: none;
}
.cursor {
  position: fixed; top: 0; left: 0; z-index: 90;
  width: 14px; height: 14px; margin: -7px 0 0 -7px;
  border: var(--hair);
  border-color: var(--rust);
  border-radius: var(--chip);
  pointer-events: none;
  mix-blend-mode: difference;
  transition: width var(--motion) var(--ease), height var(--motion) var(--ease), margin var(--motion) var(--ease), background var(--motion) var(--ease);
}
.cursor.is-hot {
  width: 36px; height: 36px; margin: -18px 0 0 -18px;
  background: rgba(196,90,44,.18);
}
html.has-cursor, html.has-cursor * { cursor: none !important; }

.crumbs { font-family: var(--display); font-size: 1.05rem; color: var(--mute); margin: 0 0 1.4rem; }
.crumbs ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0.35rem 0.55rem; }
.crumbs a { color: var(--mute); }
.crumbs [aria-current="page"] { color: var(--bone); }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.85rem; }
.card {
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 16rem; padding: 1.3rem;
  background: linear-gradient(180deg, #1a1612, #110f0c);
  border: var(--hair);
  border-radius: var(--plate);
  text-decoration: none; color: inherit;
  transition: transform var(--motion) var(--ease), border-color var(--motion) var(--ease);
}
.card:hover { color: inherit; border-color: var(--rust); }
.card:active { transform: scale(0.99); }
.card .num { font-family: var(--display); font-size: 3.2rem; color: var(--rust); line-height: 0.8; }
.card strong { font-family: var(--display); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; }
.card span { color: var(--mute); }

.facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(243, 234, 216, 0.14); border: var(--hair); border-radius: var(--plate); overflow: hidden; }
.facts div { background: var(--soot); padding: 1.1rem 1rem; }
.facts b { display: block; font-family: var(--display); font-size: 0.95rem; color: var(--rust); }
.facts span { font-family: var(--display); font-size: 1.35rem; }

.poster {
  background: var(--ink);
  padding: clamp(1.6rem, 4vw, 2.6rem);
  border: var(--hair);
  border-radius: var(--plate);
}
.dock {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.4rem, 4vw, 2.8rem);
  align-items: center;
}
.socials { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
.socials a {
  display: flex; justify-content: space-between; align-items: center;
  min-width: 0; max-width: 100%;
  min-height: 64px; padding: 0.8rem 1rem;
  border: var(--hair); border-radius: var(--plate); text-decoration: none;
  transition: background var(--motion) var(--ease), transform var(--motion) var(--ease);
}
.socials a:hover { background: var(--ink); color: var(--bone); }
.socials a:active { transform: scale(0.99); }
.socials strong { font-family: var(--display); font-size: 1.6rem; }

.plaque {
  border-left: 1px solid var(--rust);
  padding: 0.2rem 0 0.2rem 1.15rem;
}
.frame {
  position: relative;
  overflow: hidden;
  background: transparent;
  border: 0;
  border-radius: var(--plate);
}
.frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 14%;
  transition: transform var(--motion) var(--ease);
}
.frame:active img { transform: scale(0.995); }
.stamp {
  font-family: var(--display); letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--rust); font-size: 0.92rem;
}
.nightboard, .stage, .locker { }
.nightboard { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.4rem, 4vw, 2.6rem); align-items: start; }
.stage iframe { min-height: 172px; width: 100%; border: 0; }
.reels { display: grid; gap: clamp(1.6rem, 4vw, 2.8rem); }
.reel { margin: 0; }
.reel .stage {
  position: relative;
  aspect-ratio: 16 / 9;
  background: transparent;
  border: 0;
  border-radius: var(--plate);
  overflow: hidden;
}
.reel iframe { position: absolute; inset: 0; width: 100%; height: 100%; min-height: 0; border: 0; }
.reel figcaption { display: flex; flex-direction: column; gap: 0.2rem; padding: 0.85rem 0.15rem 0; }
.reel strong { font-family: var(--display); font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; }
.reel span { color: var(--mute); }
.locker { min-height: 16rem; }

.rack {
  position: relative;
  min-height: 18rem;
  padding: 1.15rem 0.8rem 0.4rem;
  background: linear-gradient(180deg, rgba(196,90,44,.1), transparent 42%), #14110e;
  border: var(--hair);
  border-radius: var(--plate);
}
.rack.is-floor {
  min-height: 22rem;
  padding: 1.4rem 1rem 1.1rem;
  box-shadow: inset 0 -3.2rem 0 #0a0908, 0 22px 40px rgba(0,0,0,.35);
}
.rack-floor {
  margin: 0.4rem 0.2rem 0;
  font-family: var(--display);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
  font-size: 0.92rem;
}
.rod {
  height: 8px;
  margin: 0 0.35rem;
  border-radius: 99px;
  background: linear-gradient(#c4a27a, #5c4330 46%, #2a1c14);
  box-shadow: 0 12px 18px rgba(0,0,0,.45);
}
.pegs { display: grid; grid-template-columns: repeat(6, 1fr); }
.peg { display: flex; flex-direction: column; align-items: center; min-height: 14rem; }
.hook {
  width: 36px; height: 62px; margin-top: -1px;
  border: 1px solid #d7c4a4; border-top: 0; border-radius: 0 0 18px 18px;
  position: relative; opacity: 0.78;
}
.hook::before {
  content: "";
  position: absolute; top: -14px; left: 13px;
  width: 10px; height: 16px;
  border: 1px solid #d7c4a4; border-bottom: 0; border-radius: 10px 10px 0 0;
}
.peg b {
  margin-top: auto; padding-bottom: 0.7rem;
  font-family: var(--display); letter-spacing: 0.16em; text-transform: uppercase;
  font-size: 1.15rem; color: var(--rust);
}
.roll { list-style: none; margin: 2rem 0 0; padding: 0; }
.roll li {
  display: grid; grid-template-columns: 9rem 1fr; gap: 1rem;
  padding: 1.15rem 0; border-top: 1px solid var(--rule);
}
.roll b { font-family: var(--display); font-size: 1.7rem; color: var(--rust); }
.handles { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; }
.handles a {
  min-height: 12.5rem; padding: 1.2rem 1.25rem;
  display: flex; flex-direction: column; justify-content: space-between;
  text-decoration: none; border: var(--hair); border-radius: var(--plate);
  background: linear-gradient(180deg, #1b1713, #110f0c);
  transition: transform var(--motion) var(--ease), border-color var(--motion) var(--ease);
}
.handles a:hover { color: inherit; border-color: var(--rust); }
.handles a:active { transform: scale(0.99); }
.handles em { font-style: normal; font-family: var(--display); letter-spacing: 0.14em; text-transform: uppercase; color: var(--rust); font-size: 0.95rem; }
.handles strong { font-family: var(--display); font-size: clamp(2.1rem, 4vw, 3.3rem); font-weight: 800; line-height: 0.9; }
.handles span { color: var(--mute); }
.mailrooms { display: grid; gap: 0.7rem; margin-top: 1rem; }
.mailrooms a {
  display: flex; flex-direction: column; gap: 0.25rem; justify-content: flex-end;
  min-height: 8.5rem; padding: 1rem 1.05rem;
  text-decoration: none; border: var(--hair); border-radius: var(--plate);
  background: #14110e;
}
.mailrooms a:hover { border-color: var(--rust); color: inherit; }
.mailrooms strong { font-family: var(--display); font-size: clamp(1.35rem, 2vw, 1.8rem); line-height: 0.95; word-break: break-word; }
.mailrooms span:last-child { color: var(--mute); }

@media (max-width: 860px) {
  .pegs, .handles { grid-template-columns: 1fr 1fr; }
  .roll li { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .pegs { grid-template-columns: repeat(3, 1fr); }
  .handles { grid-template-columns: 1fr; }
  .peg { min-height: 10rem; }
}

.releases { display: grid; }
.release {
  display: grid;
  grid-template-columns: 4.2rem 1fr auto;
  gap: 1rem;
  align-items: end;
  padding: 1.55rem 0;
  border-top: 1px solid var(--rule);
  text-decoration: none;
  color: inherit;
}
.release:last-child { border-bottom: 1px solid var(--rule); }
.release:hover { color: inherit; }
.release:hover b { color: var(--rust); }
.release[aria-current="page"] b { color: var(--rust); }
.release-name { display: flex; flex-direction: column; gap: 0.3rem; }
.release-name b {
  font-family: var(--display);
  font-size: clamp(2.3rem, 5.5vw, 4rem);
  line-height: 0.86;
  font-weight: 800;
}
.release-name small { color: var(--mute); font-family: var(--display); font-size: 1.05rem; }
.release-go { font-family: var(--display); color: var(--mute); padding-bottom: 0.35rem; }

.stage {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(1.2rem, 3vw, 2.2rem);
  align-items: center;
  background: var(--ink);
  border: var(--hair);
  border-radius: var(--plate);
  padding: clamp(1.2rem, 3vw, 2.1rem);
}
.stage .player { border: 0; padding: 0; background: transparent; }
.stage .player iframe { min-height: 232px; }

.ledger { width: 100%; border-collapse: collapse; }
.ledger caption { caption-side: bottom; text-align: left; padding-top: 0.8rem; }
.ledger th, .ledger td {
  text-align: left;
  padding: 0.95rem 0.7rem 0.95rem 0;
  border-bottom: 1px solid var(--rule);
  vertical-align: baseline;
}
.ledger th {
  font-family: var(--display);
  color: var(--rust);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ledger td strong { font-family: var(--display); font-size: 1.55rem; font-weight: 800; }
.ledger a { text-decoration: none; }

.plate {
  position: relative;
  margin: 0;
  min-height: min(72svh, 42rem);
  background: transparent;
  border-radius: var(--plate);
  overflow: hidden;
}
.plate img {
  width: 100%;
  height: min(72svh, 42rem);
  object-fit: cover;
  object-position: 50% 16%;
}
.plate figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 3.2rem 1.3rem 1.2rem;
  background: linear-gradient(transparent, rgba(14,12,10,.94));
}
.plate figcaption strong {
  font-family: var(--display);
  font-size: clamp(2.4rem, 7vw, 6.2rem);
  line-height: 0.84;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.chapter {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 1rem 1.4rem;
  padding: 1.7rem 0;
  border-top: 1px solid var(--rule);
}
.chapter .num {
  font-family: var(--display);
  font-size: 2rem;
  color: var(--rust);
  line-height: 1;
}
.chapter h2 { font-size: clamp(2rem, 4.4vw, 3.3rem); margin-bottom: 0.7rem; }

.boil {
  margin: 0;
  padding: 1.15rem 1.25rem;
  background: var(--ink);
  border-left: 3px solid var(--rust);
}
.desk-mail {
  font-family: var(--display);
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  line-height: 0.95;
  font-weight: 800;
  text-decoration: none;
  overflow-wrap: anywhere;
}
.desk-mail:hover { color: var(--rust); }

.kit-sheet {
  border: var(--hair);
  border-radius: var(--plate);
  padding: clamp(1.2rem, 3vw, 2.2rem);
  background:
    linear-gradient(180deg, rgba(196,90,44,.08), transparent 18rem),
    var(--ink);
}
.kit-mast {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 1rem;
  margin-bottom: 1.4rem;
}
.kit-mast .mark { font-size: clamp(3.4rem, 8vw, 6rem); line-height: 0.8; margin: 0; }

.foot-grid {
  display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 2rem; width: min(var(--max), calc(100% - 2 * var(--pad)));
  margin: 0 auto 1.6rem;
}
.foot-grid strong { display: block; font-family: var(--display); font-size: 1.2rem; color: var(--bone); margin-bottom: 0.4rem; }
.foot-grid a { display: flex; min-height: var(--tap); align-items: center; color: var(--mute); text-decoration: none; }
.foot-grid a:hover { color: var(--rust); }
.colophon { width: min(var(--max), calc(100% - 2 * var(--pad))); margin: 0 auto; color: var(--mute); font-size: 0.9rem; }
footer.rich { display: block; padding-bottom: 3.6rem; }

.ticker { position: relative; }
.ticker:hover .ticker-track,
.ticker.is-paused .ticker-track { animation-play-state: paused; }

@keyframes ken {
  from { transform: scale(1) translate3d(0, 0, 0); }
  to { transform: scale(1.08) translate3d(-1.4%, -1%, 0); }
}
.frame.ken {
  aspect-ratio: auto;
  min-height: min(78svh, 46rem);
  height: 100%;
  border: 0;
  border-radius: var(--plate);
  background: transparent;
}
.frame.ken img {
  width: 100%;
  height: 100%;
  min-height: min(78svh, 46rem);
  object-fit: cover;
  object-position: 50% 12%;
  transform-origin: 50% 14%;
  animation: ken 22s var(--ease) infinite alternate;
}
.frame.ken figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  margin: 0;
  padding: 0.7rem 0.9rem;
  background: linear-gradient(transparent, rgba(8,6,5,.82));
}

.listen-dock { align-items: stretch; }
.listen-room h1 { font-size: clamp(3.1rem, 5.4vw, 5.4rem); }
.player.is-dock {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.65rem;
  padding: 1rem 1.05rem 0.8rem;
  background: #110f0c;
  border: var(--hair);
  border-radius: var(--plate);
  box-shadow: none;
}
.player-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}
.player-meta p { margin: 0; }
.player.is-dock iframe { min-height: 232px; width: 100%; border: 0; border-radius: var(--plate); }
.player-face { position: relative; min-height: 152px; }
.player-offline {
  display: none;
  min-height: 232px;
  padding: 1.2rem;
  border: 0;
  border-radius: var(--plate);
  align-content: end;
  background:
    linear-gradient(180deg, rgba(14,12,10,.35), rgba(14,12,10,.88)),
    var(--still);
  background-size: cover;
  background-position: 50% 18%;
}
.player.is-offline iframe { display: none; }
.player.is-offline .player-offline { display: grid; }
.player.is-offline .deck-led { background: var(--mute); box-shadow: none; }
.deck-slots .is-live { position: relative; display: flex; align-items: center; gap: 0.55rem; }
.deck-slots .is-live a { flex: 1; }
.needle {
  width: 2px;
  height: 1.35rem;
  background: var(--bone);
  transform-origin: top center;
  animation: needle 2.6s ease-in-out infinite alternate;
}
@keyframes needle {
  from { transform: rotate(-18deg); }
  to { transform: rotate(14deg); }
}
.player.is-dock:hover .needle,
html.reduce .needle,
.player.is-offline .needle { animation: none; transform: rotate(-18deg); }
.deck-slots .is-locked a { color: var(--mute); }
.deck-slots .is-locked strong { font-weight: 600; }
.deck-rail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.deck-rail .stamp { margin: 0; }
.deck-led {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--rust);
  box-shadow: 0 0 0 4px rgba(196, 90, 44, 0.2);
}
.deck-eq {
  margin-left: auto;
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 1rem;
}
.deck-eq i {
  display: block;
  width: 3px;
  height: 100%;
  background: var(--rust);
  transform-origin: bottom;
  animation: eq 0.85s ease-in-out infinite;
}
.deck-eq i:nth-child(2) { animation-delay: 0.12s; }
.deck-eq i:nth-child(3) { animation-delay: 0.22s; }
.deck-eq i:nth-child(4) { animation-delay: 0.05s; }
.deck-eq i:nth-child(5) { animation-delay: 0.28s; }
@keyframes eq {
  0%, 100% { transform: scaleY(0.28); }
  50% { transform: scaleY(1); }
}
.player.is-dock:hover .deck-eq i,
html.reduce .deck-eq i { animation: none; transform: scaleY(0.28); }
.deck-slots {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}
.deck-slots a {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: center;
  min-height: var(--tap);
  padding: 0.55rem 0;
  border-top: 1px solid var(--rule);
  text-decoration: none;
}
.deck-slots strong { font-family: var(--display); font-size: 1.25rem; }
.deck-slots span { color: var(--mute); font-size: 0.92rem; }
.deck-slots .is-live a { color: var(--bone); }
.ticker-hold {
  position: absolute;
  right: 0.45rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  min-height: var(--tap);
  min-width: var(--tap);
  padding: 0 0.95rem;
  border: var(--hair);
  border-radius: var(--chip);
  background: var(--soot);
  color: var(--bone);
  font-family: var(--ui);
  letter-spacing: 0.04em;
}

.plain { margin: 0; padding-left: 1.1rem; display: grid; gap: 0.45rem; }
.plain li::marker { color: var(--rust); }

.stage { margin: 0.4rem 0 0.2rem; }
.clip-frame {
  position: relative;
  min-height: min(58svh, 34rem);
  display: grid;
  align-content: end;
  gap: 0.35rem;
  padding: 1.25rem;
  color: var(--bone);
  background:
    linear-gradient(180deg, transparent 28%, rgba(14,12,10,.86)),
    var(--still);
  background-size: cover, cover;
  background-position: 50% 12%, 50% 12%;
  border: 0;
  border-radius: var(--plate);
  overflow: hidden;
}
.clip-frame::before,
.clip-frame::after { content: none; }
.clip-bay .clip-slot:nth-child(1) .clip-frame { background-position: 50% 10%, 50% 10%; }
.clip-bay .clip-slot:nth-child(2) .clip-frame { background-position: 72% 28%, 72% 28%; }
.clip-bay .clip-slot:nth-child(3) .clip-frame { background-position: 28% 52%, 28% 52%; }
.clip-bay .clip-slot:nth-child(4) .clip-frame { background-position: 80% 18%, 80% 18%; }
.stage-frame { min-height: 24rem; align-content: end; }
.clip-bay {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.clip-slot { margin: 0; display: grid; gap: 0.55rem; }
.clip-slot figcaption { display: flex; justify-content: space-between; gap: 0.6rem; align-items: baseline; }
.clip-slot strong { font-family: var(--display); font-size: 1.7rem; font-weight: 800; }
.clip-slot span, .clip-frame p { color: var(--mute); margin: 0; }

.install-chip, .net-note {
  position: fixed;
  z-index: 55;
  width: min(22rem, calc(100% - 2rem - var(--safe-l) - var(--safe-r)));
  margin: 0;
  padding: 0.95rem 1.05rem;
  background: color-mix(in srgb, var(--ink) 92%, transparent);
  color: var(--bone);
  border: var(--hair);
  border-radius: var(--plate);
  backdrop-filter: blur(18px);
  box-shadow: none;
}
.net-note { border-radius: var(--chip); width: auto; max-width: min(28rem, calc(100% - 2rem)); }
.install-chip {
  right: max(1rem, var(--safe-r));
  top: calc(var(--bar-h) + var(--safe-t) + 1.2rem);
  display: grid;
  gap: 0.7rem;
}
.install-chip p { margin: 0; }
.install-chip strong { font-family: var(--display); font-size: 1.6rem; letter-spacing: 0.04em; }
.net-note { left: 1rem; bottom: 1rem; }

@media (max-width: 860px) {
  .listen-dock, .clip-bay { grid-template-columns: 1fr; }
  .stage-frame { min-height: 18rem; }
}

html.reduce .ticker-track,
html.reduce .frame.ken img { animation: none !important; transform: none !important; }
html.reduce .btn { transform: none !important; }
html.reduce .cursor,
html.reduce .progress { display: none !important; }
html.reduce, html.reduce * { cursor: auto !important; }

@media (max-width: 860px) {
  .cards, .facts, .dock, .socials, .foot-grid, .nightboard { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .release, .chapter, .stage, .kit-mast { grid-template-columns: 1fr; align-items: start; }
  .plate img { height: 24rem; }
}
@media (max-width: 560px) {
  .cards, .facts, .socials, .foot-grid, .dock, .listen-dock { grid-template-columns: minmax(0, 1fr); }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .cursor, .progress { display: none !important; }
  html.has-cursor, html.has-cursor * { cursor: auto !important; }
  .hero-photo img,
  .hero-copy > *,
  .frame.ken img,
  .ticker-track,
  .needle,
  .deck-eq i { animation: none !important; transform: none !important; }
  .btn, .card, .list a, .handles a, .frame img {
    transition-duration: 0.01ms !important;
  }
}
/* Interior rooms only (photos, videos). Shared chrome above is unchanged. */
.player.film iframe {
  aspect-ratio: 16 / 9;
  height: auto;
  min-height: 12rem;
}
.slotwall {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}
.slot {
  min-height: min(56svh, 32rem);
  padding: 1.15rem;
  border: 0;
  border-radius: var(--plate);
  background:
    linear-gradient(180deg, transparent 30%, rgba(14,12,10,.88)),
    var(--still);
  background-size: cover;
  background-position: 48% 16%;
  color: inherit;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.45rem;
  overflow: hidden;
}
.slot.is-held {
  border: 0;
  background:
    linear-gradient(180deg, transparent 36%, rgba(14,12,10,.9)),
    var(--still);
  background-size: cover;
  background-position: 50% 10%;
  padding: 0;
  overflow: hidden;
}
.slot.is-held .stamp { color: #ffb089; }
.slot img {
  width: 100%;
  height: min(56svh, 32rem);
  object-fit: cover;
  object-position: 50% 12%;
}
.slot .slot-copy { padding: 0.95rem 1.1rem 1.15rem; display: grid; gap: 0.35rem; }
.slot strong {
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 0.9;
}
a.slot:hover { color: inherit; border-color: var(--rust); }
a.clip-frame { color: inherit; text-decoration: none; }
a.clip-frame:hover { color: inherit; border-color: var(--rust); }
a.clip-slot { color: inherit; text-decoration: none; }
a.clip-slot:hover { color: inherit; }
a.clip-slot:hover .clip-frame { border-color: var(--rust); }
@media (max-width: 560px) {
  .slotwall { grid-template-columns: 1fr; }
}

.pass {
  background: var(--ink); border: var(--hair); border-radius: var(--plate);
  padding: 1.3rem 1.35rem 1.4rem; display: grid; gap: 0.7rem;
}
.pass.is-stub {
  min-height: 22rem;
  align-content: start;
  background:
    radial-gradient(circle at 0 42%, var(--soot) 0 12px, transparent 13px),
    radial-gradient(circle at 100% 42%, var(--soot) 0 12px, transparent 13px),
    linear-gradient(180deg, rgba(196,90,44,.12), transparent 40%),
    var(--ink);
}
.pass-void {
  height: 3.2rem;
  margin: 0.2rem 0;
  background:
    repeating-linear-gradient(90deg, var(--bone) 0 2px, transparent 2px 8px);
  opacity: 0.18;
}
.pass dl { margin: 0; display: grid; }
.pass dl div {
  display: grid; grid-template-columns: 6.5rem 1fr; gap: 0.6rem;
  padding: 0.55rem 0; border-top: 1px solid var(--rule);
}
.pass dt { color: var(--rust); font-family: var(--display); }
.pass dd { margin: 0; }
@media (max-width: 560px) {
  .pass dl div { grid-template-columns: 1fr; }
}

.jacket {
  display: grid;
  grid-template-columns: minmax(16rem, 22rem) 1fr;
  gap: clamp(1.2rem, 3vw, 2rem);
  align-items: start;
}
.sleeve {
  aspect-ratio: 1;
  min-height: 18rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.05rem 1.1rem 1.15rem;
  color: var(--bone);
  background:
    linear-gradient(180deg, rgba(14,12,10,.15), rgba(14,12,10,.78)),
    var(--still);
  background-size: cover;
  background-position: 50% 14%;
  border: 0;
  border-radius: var(--plate);
  overflow: hidden;
}
.jacket:nth-of-type(1) .sleeve { background-position: 46% 8%; }
.jacket:nth-of-type(2) .sleeve { background-position: 70% 32%; }
.jacket:nth-of-type(3) .sleeve { background-position: 30% 48%; }
.sleeve .year {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(4.2rem, 10vw, 6.4rem);
  line-height: 0.8;
  letter-spacing: -0.04em;
  color: var(--bone);
}
.stillgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.still:not(body) {
  margin: 0;
  min-height: min(56svh, 32rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, transparent 32%, rgba(14,12,10,.88)),
    var(--still);
  background-size: cover;
  background-position: 50% 14%;
  border: 0;
  border-radius: var(--plate);
  overflow: hidden;
}
.still img { width: 100%; height: min(56svh, 32rem); object-fit: cover; object-position: 50% 12%; }
.stillgrid .still:nth-child(1) { background-position: 50% 8%; }
.stillgrid .still:nth-child(2) { background-position: 68% 30%; }
.stillgrid .still:nth-child(3) { background-position: 32% 46%; }
.still figcaption { padding: 0.85rem 1rem 1.05rem; display: grid; gap: 0.2rem; }
.still figcaption strong { font-family: var(--display); font-size: 1.7rem; line-height: 0.9; }
.still.is-open {
  justify-content: space-between;
  padding: 1rem;
  color: var(--bone);
  background:
    linear-gradient(180deg, transparent 28%, rgba(14,12,10,.86)),
    var(--still);
  background-size: cover;
  background-position: 78% 22%;
}
.still.is-mark {
  background:
    linear-gradient(180deg, rgba(14,12,10,.35), rgba(14,12,10,.8)),
    var(--still);
  background-size: cover;
  background-position: 22% 40%;
}
.still.is-mark img { height: 11rem; object-fit: contain; padding: 1.2rem; background: transparent; }
.cal {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.3rem;
}
.cal .dow, .cal .day {
  min-height: 3.4rem;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0.3rem 0.4rem;
  font-family: var(--display);
}
.cal .dow { min-height: 0; color: var(--rust); letter-spacing: 0.08em; border: 0; }
.cal .day { border: var(--hair); border-radius: 10px; color: var(--mute); background: #110f0c; }
.cal .day.is-blank { border-color: transparent; background: transparent; }
.rider {
  border: var(--hair);
  border-radius: var(--plate);
  padding: 1.15rem 1.2rem 1.25rem;
  display: grid;
  gap: 0.55rem;
}
.place {
  padding: 1.2rem 1.15rem 1.3rem;
  border: 0;
  border-radius: var(--plate);
  background:
    linear-gradient(180deg, rgba(14,12,10,.28), rgba(14,12,10,.82)),
    var(--still);
  background-size: cover;
  background-position: 40% 20%;
  overflow: hidden;
  display: grid;
  gap: 0.45rem;
}
.place strong { font-family: var(--display); font-size: clamp(2rem, 4vw, 2.8rem); line-height: 0.9; }
@media (max-width: 860px) {
  .jacket, .stillgrid { grid-template-columns: 1fr; }
  .cal .day { min-height: 2.4rem; font-size: 0.95rem; }
}

body.photo-set {
  --display: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  --body: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", sans-serif;
}
body.photo-set .frame.ken {
  border: 0;
  border-radius: 28px;
  background: transparent;
}
body.photo-set .frame.ken img {
  transition: transform var(--motion) var(--ease);
}
body.photo-set .facts div,
body.photo-set .list a,
body.photo-set .deck-slots li {
  border-color: rgba(243, 234, 216, 0.16);
}
.sleeve.has-photo {
  position: relative;
  display: block;
  padding: 0;
  min-height: 0;
  border: 0;
  border-radius: 28px;
  overflow: hidden;
  background: transparent;
}
.sleeve.has-photo img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform var(--motion) var(--ease);
}
.sleeve.has-photo:active img { transform: scale(0.995); }
.sleeve.has-photo .stamp,
.sleeve.has-photo .cap {
  position: absolute;
  z-index: 1;
  margin: 0;
  color: #f3ead8;
}
.sleeve.has-photo .stamp { top: 1rem; left: 1rem; }
.sleeve.has-photo .cap {
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}
.jackets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  background: transparent;
  border-radius: var(--plate);
  overflow: visible;
}
.jackets.four { grid-template-columns: 1fr 1fr; }
.jackets a {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  min-height: min(56svh, 32rem);
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  border: 0;
  border-radius: var(--plate);
}
.jackets a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 14%;
  transition: transform var(--motion) var(--ease);
}
.jackets a:hover { color: inherit; }
.jackets a:active img { transform: scale(0.995); }
.jackets a span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  gap: 0.12rem;
  padding: 2.8rem 1rem 0.95rem;
  background: linear-gradient(transparent, rgba(14, 12, 10, 0.78));
  border-top: 1px solid rgba(243, 234, 216, 0.16);
}
.jackets a b {
  font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}
.jackets a small { color: rgba(243, 234, 216, 0.82); font-size: 0.82rem; }
@media (max-width: 860px) {
  .jackets, .jackets.four { grid-template-columns: 1fr 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  body.photo-set .frame.ken img,
  .sleeve.has-photo img,
  .jackets a img { transition: none; animation: none; }
  .sleeve.has-photo:hover img,
  .jackets a:hover img,
  body.photo-set .frame.ken:hover img { transform: none; }
}

@media print {
  body.kit { background: #fff; color: #161310; }
  body.kit .bar,
  body.kit .grain,
  body.kit .progress,
  body.kit .cursor,
  body.kit footer,
  body.kit .skip,
  body.kit .no-print,
  body.kit .nav-backdrop { display: none !important; }
  body.kit a { color: #161310; }
  body.kit .kit-sheet { background: #fff; border-color: #161310; }
  body.kit .kicker, body.kit .stamp, body.kit .chapter .num { color: #8a3414; }
  body.kit .boil, body.kit .facts div, body.kit .stage { background: #fff; }
  body.kit .plate { min-height: 0; }
  body.kit .plate img { height: auto; max-height: 4.2in; }
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding:
    max(4.6rem, calc(3.2rem + var(--safe-t)))
    max(1.2rem, var(--safe-r))
    max(1.4rem, var(--safe-b))
    max(1.2rem, var(--safe-l));
  background: rgba(14, 12, 10, 0.92);
  overscroll-behavior: contain;
}
.lightbox[hidden] { display: none; }
.lightbox figure {
  margin: 0;
  display: grid;
  gap: 0.75rem;
  justify-items: center;
  animation: rise var(--dur) ease both;
}
.lightbox img {
  width: auto;
  max-width: min(100%, 46rem);
  max-height: min(78svh, 52rem);
  border-radius: var(--plate);
  object-fit: contain;
}
.lightbox figcaption { margin: 0; color: var(--mute); max-width: 36rem; text-align: center; }
.lightbox-close {
  position: absolute;
  top: max(1rem, var(--safe-t));
  right: max(1rem, var(--safe-r));
  min-height: var(--tap);
  min-width: var(--tap);
  padding: 0 1.15rem;
  border-radius: var(--chip);
  border: var(--hair);
  background: var(--soot);
  color: var(--bone);
  font-family: var(--ui);
  font-size: 1rem;
}

/* Shop, follow, shows, contact — system type, continuous curves, photo as surface. */
body.surface {
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
  --dur: 200ms;
  background: #000;
  color: #f5f5f7;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", system-ui, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.47;
  letter-spacing: -0.011em;
}
html.has-cursor body.surface,
html.has-cursor body.surface * { cursor: default !important; }
html.has-cursor body.surface a,
html.has-cursor body.surface button,
html.has-cursor body.surface input,
html.has-cursor body.surface textarea,
html.has-cursor body.surface select { cursor: pointer !important; }
body.surface .cursor,
body.surface .grain,
body.surface .ticker { display: none !important; }
body.surface .mark,
body.surface h1,
body.surface h2,
body.surface .kicker,
body.surface .stamp,
body.surface .btn,
body.surface nav,
body.surface footer {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", system-ui, sans-serif;
  letter-spacing: -0.022em;
}
body.surface h1 {
  font-weight: 600;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.05;
  margin: 0.35rem 0 0.8rem;
}
body.surface h2 { font-weight: 600; font-size: clamp(1.6rem, 3vw, 2rem); line-height: 1.15; }
body.surface .kicker, body.surface .stamp {
  letter-spacing: 0.01em;
  text-transform: none;
  color: #86868b;
  font-size: 0.85rem;
  font-weight: 500;
}
body.surface .lede { color: #a1a1a6; max-width: 36rem; }
body.surface a { transition: color var(--dur) var(--ease); }
body.surface a:hover { color: #f5f5f7; }
body.surface .btn {
  border-radius: 28px;
  background: #f5f5f7;
  color: #1d1d1f;
  font-size: 1rem;
  font-weight: 500;
  min-height: 44px;
  border: 0;
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease);
}
body.surface .btn:hover { background: #fff; color: #1d1d1f; transform: none; }
body.surface .btn.ghost {
  background: transparent;
  color: #f5f5f7;
  box-shadow: inset 0 0 0 0.5px rgba(245, 245, 247, 0.35);
}
body.surface .lead {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: end;
  max-width: 70rem;
  margin: 0 auto;
  padding: 1.25rem var(--pad) 2.5rem;
}
body.surface .plate-photo {
  margin: 0;
  border: 0;
  border-radius: 28px;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
}
body.surface .plate-photo img {
  width: 100%;
  height: min(78vh, 52rem);
  object-fit: cover;
  object-position: center 12%;
  border-radius: 28px;
  transform: none;
}
body.surface .specs {
  display: grid;
  margin: 1.4rem 0 0;
  padding: 0;
}
body.surface .specs div {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 0.75rem;
  padding: 0.85rem 0;
  border-top: 0.5px solid rgba(245, 245, 247, 0.22);
}
body.surface .specs div:last-child { border-bottom: 0.5px solid rgba(245, 245, 247, 0.22); }
body.surface .specs b { font-weight: 500; color: #86868b; }
body.surface .rows {
  list-style: none;
  margin: 0 auto;
  padding: 0 var(--pad) 3.5rem;
  max-width: 70rem;
}
body.surface .rows > li,
body.surface .rows > a {
  display: grid;
  grid-template-columns: 7.5rem 1fr auto;
  gap: 1rem;
  align-items: baseline;
  padding: 1.15rem 0;
  border-top: 0.5px solid rgba(245, 245, 247, 0.22);
  text-decoration: none;
  color: inherit;
  transition: color var(--dur) var(--ease);
}
body.surface .rows > li:last-child,
body.surface .rows > a:last-child { border-bottom: 0.5px solid rgba(245, 245, 247, 0.22); }
body.surface .rows strong { font-weight: 600; }
body.surface .rows p, body.surface .rows span { margin: 0.2rem 0 0; color: #a1a1a6; }
body.surface .closer {
  max-width: 70rem;
  margin: 0 auto;
  padding: 0 var(--pad) 3rem;
  color: #a1a1a6;
}
body.surface form {
  max-width: none;
  gap: 0.2rem;
}
body.surface input,
body.surface textarea,
body.surface select {
  background: transparent;
  border: 0;
  border-bottom: 0.5px solid rgba(245, 245, 247, 0.28);
  border-radius: 0;
  color: #f5f5f7;
  padding: 0.85rem 0;
  transition: border-color var(--dur) var(--ease);
}
body.surface input:focus,
body.surface textarea:focus,
body.surface select:focus { border-bottom-color: #f5f5f7; outline: none; }
body.surface .bar { background: rgba(0, 0, 0, 0.72); border-bottom: 0.5px solid rgba(245, 245, 247, 0.16); }
body.surface footer.rich { border-top: 0.5px solid rgba(245, 245, 247, 0.16); }
@media (max-width: 860px) {
  body.surface .lead,
  body.surface .rows > li,
  body.surface .rows > a,
  body.surface .specs div { grid-template-columns: 1fr; }
  body.surface .plate-photo img { height: 70vh; }
}
@media (prefers-reduced-motion: reduce) {
  body.surface, body.surface * {
    animation: none !important;
    transition: none !important;
  }
}

/* Phone chrome. 390 and 430. Gestures live in site.js. */
html, body { overflow-x: clip; max-width: 100%; }
.bar > *,
footer > *,
.actions > *,
.split > *,
.hero > *,
.jacket-snap > *,
.rows > *,
.releases > *,
.foot-grid > *,
.listen-dock > *,
nav > * { min-width: 0; }
a, button, .btn, .nav-toggle, .ticker-hold, .lightbox-close { touch-action: manipulation; }
.lightbox { touch-action: none; }
.bar {
  padding-top: max(0.85rem, env(safe-area-inset-top));
  padding-left: max(var(--pad), env(safe-area-inset-left));
  padding-right: max(var(--pad), env(safe-area-inset-right));
}
footer.rich, footer {
  padding-bottom: max(2.4rem, calc(1.2rem + env(safe-area-inset-bottom)));
  padding-left: max(var(--pad), env(safe-area-inset-left));
  padding-right: max(var(--pad), env(safe-area-inset-right));
}
.install-chip {
  top: max(5.2rem, calc(env(safe-area-inset-top) + 4.4rem));
  right: max(1rem, env(safe-area-inset-right));
}
.net-note {
  left: max(1rem, env(safe-area-inset-left));
  bottom: max(1rem, env(safe-area-inset-bottom));
}
html.is-standalone .bar { padding-top: max(0.7rem, env(safe-area-inset-top)); }
.jacket-snap { display: contents; }

@media (max-width: 430px) {
  body.native {
    overflow-x: clip;
    -webkit-tap-highlight-color: transparent;
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
  }
  body.native .bar {
    padding-top: max(0.55rem, env(safe-area-inset-top));
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
  }
  body.native .nav-toggle,
  body.native .bar nav a,
  body.native .btn,
  body.native button,
  body.native footer a,
  body.native .release,
  .deck-slots a {
    min-height: 44px;
  }
  body.native .nav-toggle { min-width: 44px; }
  body.native .bar nav.open {
    max-height: min(70dvh, calc(100dvh - env(safe-area-inset-top) - env(safe-area-inset-bottom) - 3.5rem));
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    padding-bottom: max(1rem, env(safe-area-inset-bottom));
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
  }
  body.native footer {
    padding-bottom: max(1.6rem, env(safe-area-inset-bottom));
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
  }
  body.native input,
  body.native select,
  body.native textarea { min-height: 44px; font-size: 16px; }
  body.native .rows,
  body.native .releases,
  .jacket-snap,
  .jackets,
  .jackets.four,
  .clip-bay,
  .stillgrid {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.75rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 1rem;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    padding-bottom: 0.5rem;
  }
  body.native .rows,
  body.native .releases { padding-inline: 1rem; }
  body.native .rows > li,
  body.native .rows > a,
  body.native .release {
    flex: 0 0 82%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
  .jacket-snap > .jacket,
  .jackets > a,
  .clip-bay > *,
  .stillgrid > * {
    flex: 0 0 84%;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    min-width: 0;
  }
  .jackets, .jackets.four { grid-template-columns: none; }
  body.native.lb-open .lightbox,
  body.native .lightbox {
    padding-top: max(3.4rem, calc(env(safe-area-inset-top) + 2.8rem));
    padding-bottom: max(1rem, env(safe-area-inset-bottom));
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
  }
  body.native .lightbox img { max-width: 100%; }
  body.native .lightbox-close {
    top: max(0.5rem, env(safe-area-inset-top));
    right: max(0.5rem, env(safe-area-inset-right));
    min-width: 44px;
    min-height: 44px;
  }
}
@media (hover: none) {
  .btn:hover,
  .btn.ghost:hover,
  .tile:hover,
  .card:hover,
  .list a:hover,
  .socials a:hover,
  .handles a:hover,
  .frame:hover img,
  .sleeve.has-photo:hover img,
  .jackets a:hover img,
  body.photo-set .frame.ken:hover img,
  body.surface .btn:hover,
  body.surface a:hover,
  body.native a:hover,
  body.native .btn:hover,
  body.native .release:hover,
  body.native .release:hover b {
    transform: none;
    color: inherit;
  }
  .btn:hover { color: var(--bone); }
  .btn.ghost:hover { background: transparent; color: var(--bone); }
  .list a:hover { padding-left: 0; color: inherit; }
  .card:hover,
  .handles a:hover,
  a.slot:hover,
  a.clip-frame:hover,
  a.clip-slot:hover .clip-frame { border-color: transparent; }
  body.native .bar nav a:hover::after { transform: scaleX(0); }
  body.native .bar nav a[aria-current="page"] { color: var(--rust); }
  body.native .bar nav a[aria-current="page"]::after { transform: scaleX(1); }
  body.surface.native .btn:hover { background: #f5f5f7; color: #1d1d1f; transform: none; }
  body.surface.native .btn.ghost:hover { background: transparent; color: #f5f5f7; }
  a:active,
  button:active,
  .btn:active,
  .nav-toggle:active,
  .lightbox-close:active,
  .jackets a:active,
  .deck-slots a:active,
  body.native .bar nav a:active { opacity: 0.72; }
}
@media (hover: hover) {
  a:active, button:active, .btn:active { opacity: 0.86; }
}
@media (prefers-reduced-motion: reduce) {
  .jacket-snap,
  .jackets,
  .lightbox figure,
  body.native .rows,
  body.native .releases { scroll-behavior: auto; }
  a:active, button:active, .btn:active { opacity: 1; }
}

/* Mobile system — other Kee rooms follow these tokens. 390 / 430, iOS Safari + Chrome. */
@media (hover: hover) {
  .btn:hover { transform: translateY(-2px); }
  .list a:hover { padding-left: 0.55rem; }
  .tile:hover { transform: translateY(-4px); }
  .card:hover { transform: translateY(-6px); }
  .socials a:hover { transform: translateX(4px); }
  .frame:hover img { transform: scale(1.03); }
  .handles a:hover { transform: translateY(-4px); }
  .jackets a:hover img { transform: scale(1.04); }
  .sleeve.has-photo:hover img { transform: scale(1.035); }
}

.nav-toggle:active,
.bar nav a:active,
.lightbox-close:active,
.ticker-hold:active,
.foot-grid a:active { transform: scale(0.98); }

.net-note {
  left: max(1rem, var(--safe-l));
  bottom: max(1rem, var(--safe-b));
}

@media (max-width: 860px) {
  .page { padding-bottom: max(5.5rem, calc(3.2rem + var(--safe-b))); }
  .actions { scroll-margin-bottom: calc(7.5rem + var(--safe-b)); }
  .player.is-dock {
    position: sticky;
    bottom: var(--safe-b);
    z-index: 22;
    max-height: min(42svh, 22rem);
    overflow: auto;
    overscroll-behavior: contain;
    padding-bottom: max(0.8rem, var(--safe-b));
    border-radius: var(--plate) var(--plate) 0 0;
  }
  .player.is-dock.is-yield {
    position: relative;
    bottom: auto;
    max-height: none;
    border-radius: var(--plate);
  }
  .jackets,
  .jackets.four,
  .clip-bay,
  .stillgrid,
  .slotwall {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    gap: 0.75rem;
    background: transparent;
    grid-template-columns: unset;
  }
  .jackets a,
  .clip-slot,
  .still,
  .slot {
    flex: 0 0 min(82%, 22rem);
    scroll-snap-align: start;
    min-height: min(56svh, 32rem);
  }
  .handles {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
  }
  .handles a {
    flex: 0 0 min(82%, 20rem);
    scroll-snap-align: start;
  }
  .hero h1 { font-size: clamp(4.2rem, 22vw, 6.6rem); }
  .page h1, .listen-room h1 { font-size: clamp(2.15rem, 9.4vw, 3.2rem); line-height: 0.96; text-wrap: balance; }
  h2 { font-size: clamp(1.85rem, 8vw, 2.7rem); line-height: 0.98; }
  .lede { font-size: clamp(1.05rem, 3.6vw, 1.2rem); }
  .fine, .deck-slots span, .jackets a small { font-size: max(0.92rem, 15px); }
  .facts { grid-template-columns: 1fr 1fr; }
  .bar nav a { min-height: var(--tap); width: 100%; }
  body.surface .rows > a { min-height: var(--tap); align-items: center; }
  body.surface .lead { padding-left: max(var(--pad), var(--safe-l)); padding-right: max(var(--pad), var(--safe-r)); }
}

@media (max-width: 430px) {
  .hero h1 { font-size: clamp(3.8rem, 24vw, 5.4rem); }
  .page h1, .listen-room h1 { font-size: clamp(2.05rem, 10vw, 2.7rem); }
  .mark { font-size: 1.55rem; }
  .wrap {
    width: 100%;
    padding-inline: max(var(--pad), var(--safe-l), var(--safe-r));
  }
}

html.reduce .bar nav { transition: none; }
html.reduce .player.is-dock { scroll-behavior: auto; }

@media (max-width: 430px) {
  html { scroll-padding-top: calc(env(safe-area-inset-top, 0px) + 4.6rem); }
  .bar { background: #0e0c0a; }
  #main, h1, h2, h3, [id] { scroll-margin-top: calc(env(safe-area-inset-top, 0px) + 4.6rem); }
  .player.is-dock {
    position: relative;
    bottom: auto;
    z-index: 1;
    max-height: none;
    border-radius: var(--plate);
  }
}

/* About, Listen, Photos: wrap headlines, keep Play in view. */
@media (max-width: 430px) {
  body.hand { font-size: 1.0625rem; line-height: 1.45; }
  body.hand .page,
  body.hand .wrap,
  body.hand .dock,
  body.hand .listen-dock,
  body.hand .stack,
  body.hand .listen-dock > *,
  body.hand .listen-dock > .stack > *,
  body.hand .frame,
  body.hand .frame img,
  body.hand img,
  body.hand iframe,
  body.hand .jackets,
  body.hand .jackets a,
  body.hand .player,
  body.hand .player-face {
    min-width: 0;
    max-width: 100%;
  }
  body.hand .page { padding-top: 1.6rem; overflow-x: clip; }
  body.hand h1,
  body.hand h2,
  body.hand h3,
  body.hand .listen-room h1,
  body.hand .page h1 {
    line-height: 1.12;
    letter-spacing: -0.022em;
    overflow: visible;
    text-wrap: wrap;
    overflow-wrap: anywhere;
  }
  body.hand .page h1,
  body.hand .listen-room h1 {
    font-size: 2.05rem;
    margin: 0 0 0.45rem;
    padding-bottom: 0.06em;
  }
  body.hand h2 { font-size: 1.7rem; margin-bottom: 0.55rem; }
  body.hand .lede,
  body.hand .fine,
  body.hand .crumbs,
  body.hand .crumbs a { color: #efe4d2; }
  body.hand .kicker,
  body.hand .stamp { color: #f0a57a; }
  body.hand .jackets a small,
  body.hand .jackets a b,
  body.hand .frame.ken figcaption { color: #f7f1e6; text-shadow: 0 1px 8px rgba(0, 0, 0, 0.65); }
  body.hand .jackets a span {
    background: linear-gradient(transparent, rgba(14, 12, 10, 0.92));
  }
  body.hand [data-reveal] { opacity: 1; transform: none; }
  body.hand .page.stack,
  body.hand .stack,
  body.hand .listen-dock,
  body.hand .dock {
    grid-template-columns: minmax(0, 1fr);
  }
  body.hand .listen-dock > .stack { display: flex; flex-direction: column; }
  body.hand .listen-dock > .stack > .kicker { order: 1; }
  body.hand .listen-dock > .stack > h1 { order: 2; }
  body.hand .listen-dock > .stack > .player.is-dock { order: 3; }
  body.hand .listen-dock > .stack > .lede,
  body.hand .listen-dock > .stack > .plaque,
  body.hand .listen-dock > .stack > .facts { order: 4; }
  body.hand .frame.ken,
  body.hand .frame.ken img {
    min-height: 0;
    height: auto;
    aspect-ratio: 4 / 5;
  }
  body.hand .player.is-dock,
  body.hand .player-face { overflow: visible; }
  body.hand .player.is-dock { position: relative; z-index: 2; }
  body.hand .player-face { min-height: 0; z-index: 3; }
  body.hand .player.is-dock iframe {
    position: relative;
    z-index: 3;
    display: block;
    width: 100%;
    height: 152px;
    min-height: 152px;
    border-radius: 16px;
  }
  body.hand .player-meta,
  body.hand .deck-slots a,
  body.hand .list a { flex-wrap: wrap; }
  body.hand .deck-slots a,
  body.hand .list a,
  body.hand .crumbs a,
  body.hand .foot-grid a,
  body.hand .btn,
  body.hand .nav-toggle,
  body.hand .lightbox-close {
    min-height: 44px;
  }
  body.hand .crumbs a { display: inline-flex; align-items: center; }
  body.hand .deck-slots a { align-items: center; padding-top: 0.7rem; padding-bottom: 0.7rem; }
  body.hand .deck-slots strong,
  body.hand .deck-slots span,
  body.hand .list a strong,
  body.hand .list a span { min-width: 0; overflow-wrap: anywhere; }
  body.hand .jackets,
  body.hand .jackets.four {
    display: flex;
    grid-template-columns: none;
    width: 100%;
    max-width: 100%;
    gap: 8px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0;
    background: transparent;
    border-radius: 0;
    -webkit-overflow-scrolling: touch;
  }
  body.hand .jackets a {
    flex: 0 0 78%;
    scroll-snap-align: start;
    border-radius: 28px;
  }
  body.hand .install-chip {
    top: auto;
    bottom: max(0.75rem, env(safe-area-inset-bottom));
    left: max(0.75rem, env(safe-area-inset-left));
    right: max(0.75rem, env(safe-area-inset-right));
    width: auto;
  }
}
@media (max-width: 430px) and (prefers-reduced-motion: reduce) {
  body.hand .jackets { scroll-behavior: auto; }
  body.hand a:active, body.hand button:active { transform: none; }
}

/* One idea on a phone. 200ms, inside the shared 150–250ms band. */
@media (max-width: 430px) {
  body.hand {
    --dur: var(--dur-phone);
    padding-left: env(safe-area-inset-left, 0px);
    padding-right: env(safe-area-inset-right, 0px);
  }
  body.hand .ticker,
  body.hand .crumbs { display: none; }
  body.hand .page > *,
  body.hand .stack > *,
  body.hand .listen-dock > *,
  body.hand .dock > *,
  body.hand .player > *,
  body.hand .foot-grid > *,
  body.hand .chapters > *,
  body.hand .chapter,
  body.hand .jackets > * { min-width: 0; }
  body.hand a,
  body.hand button,
  body.hand .btn,
  body.hand img {
    transition-property: opacity, transform;
    transition-duration: var(--dur-phone);
    transition-timing-function: var(--ease);
  }
  body.hand:has(#player iframe) .lede,
  body.hand:has(#player iframe) .plaque,
  body.hand:has(#player iframe) .facts,
  body.hand:has(#player iframe) .deck-rail,
  body.hand:has(#player iframe) .player-meta,
  body.hand:has(#player iframe) .deck-slots,
  body.hand:has(#player iframe) .player > .fine,
  body.hand:has(#player iframe) .player-offline,
  body.hand:has(#player iframe) .frame.ken,
  body.hand:has(#player iframe) article > .dock ~ .dock,
  body.hand:has(#player iframe) .list,
  body.hand:has(#player iframe) article > .fine,
  body.hand:has(#player iframe) .releases,
  body.hand:has(#player iframe) article > div > .kicker,
  body.hand:has(#player iframe) article > div > h2,
  body.hand:has(#player iframe) article > div > .lede { display: none; }
  body.hand:has(#table) .listen-dock > .stack > .lede,
  body.hand:has(#table) .facts,
  body.hand:has(#table) #player,
  body.hand:has(#table) .frame.ken,
  body.hand:has(#table) .jackets,
  body.hand:has(#table) #chapters,
  body.hand:has(#table) article > .dock ~ .dock { display: none; }
  body.hand:has(#table) .chapter {
    scroll-snap-align: start;
    padding-top: 1.25rem;
  }
  body.hand:has(#still) .lede,
  body.hand:has(#still) .plaque,
  body.hand:has(#still) .facts,
  body.hand:has(#still) section.player,
  body.hand:has(#still) #frames,
  body.hand:has(#still) article > .dock ~ .dock { display: none; }
}
@media (max-width: 860px) and (min-width: 431px) {
  .jackets,
  .handles,
  .clip-bay {
    scroll-snap-type: x mandatory;
    overscroll-behavior-x: contain;
  }
}
@media (max-width: 430px) and (prefers-reduced-motion: reduce) {
  body.hand,
  body.hand * {
    animation: none !important;
    transition: none !important;
  }
}

/* Shop, shows, follow. One idea on the phone. No sideways rink. */
@media (max-width: 430px) {
  body.surface {
    --dur: 200ms;
  }
  body.surface .lead,
  body.surface .lead > *,
  body.surface .plate-photo,
  body.surface .plate-photo img,
  body.surface .rows,
  body.surface .rows > li,
  body.surface .rows > a,
  body.surface .rows > li > *,
  body.surface .rows > a > *,
  body.surface .specs,
  body.surface .specs > *,
  body.surface .closer,
  body.surface .foot-grid,
  body.surface .foot-grid > * {
    min-width: 0;
    max-width: 100%;
  }
  body.surface .lead {
    display: block;
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
    padding-bottom: 1.2rem;
  }
  body.surface .plate-photo img {
    width: 100%;
    height: 52svh;
    max-height: 52svh;
  }
  body.one .specs { display: none; }
  body.surface .rows {
    display: block;
    overflow-x: clip;
    scroll-snap-type: none;
    touch-action: pan-y;
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
  }
  body.surface .rows > li,
  body.surface .rows > a {
    display: grid;
    grid-template-columns: minmax(0, 4.2rem) minmax(0, 1fr) auto;
    width: 100%;
    flex: none;
    min-height: 44px;
    align-items: center;
    scroll-snap-align: none;
  }
  body.one .rows p { display: none; }
  body.surface a,
  body.surface button,
  body.surface .btn {
    transition: opacity 200ms var(--ease), transform 200ms var(--ease), color 200ms var(--ease);
  }
}
@media (max-width: 430px) and (prefers-reduced-motion: reduce) {
  body.surface,
  body.surface * {
    animation: none !important;
    transition: none !important;
  }
}

/* Story rooms. Ice-rink clip. Media stays in the column. */
.chapters,
.chapter,
.chapter .prose,
.prose {
  min-width: 0;
  max-width: 100%;
}
.chapters img,
.chapter img,
.prose img,
body.hand .frame img,
body.hand .jackets img {
  max-width: 100%;
  height: auto;
}
.chapter .prose p,
.prose p {
  overflow-wrap: anywhere;
}
@media (max-width: 430px) {
  .chapters,
  .chapter,
  .prose,
  body.hand .listen-dock,
  body.hand .poster {
    overflow-x: clip;
  }
  .chapter {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.4rem;
  }
  .chapter .num { font-size: 1.15rem; }
}

/* Aegis — phone chrome. One still. Type sits on the photograph. */
@media (max-width: 860px) {
  .hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    min-height: 100svh;
    overflow: clip;
  }
  .hero-photo,
  .hero-copy {
    grid-area: 1 / 1;
    min-width: 0;
    max-width: 100%;
  }
  .hero-photo {
    min-height: 100svh;
  }
  .hero-copy {
    align-self: end;
    z-index: 2;
    padding:
      6rem
      max(1rem, var(--safe-l), var(--safe-r))
      max(1.5rem, var(--safe-b));
    background: linear-gradient(180deg, transparent 0%, rgba(14, 12, 10, 0.92) 48%);
  }
  .hero-copy p { max-width: 22rem; }
  .hero-photo::after { opacity: 0; }
  .hero .btn.ghost { display: none; }
  .ticker { overflow-x: clip; max-width: 100%; }
}

@media (max-width: 860px) {
  body.home .ticker,
  body.door .ticker,
  body.home .hero .kicker,
  body.door .hero .kicker,
  body.home .listen-room .frame.ken,
  body.door .listen-room .frame.ken { display: none; }
}

@media (max-width: 430px) {
  .hero h1 { font-size: clamp(3.2rem, 18vw, 4.4rem); }
  .jackets,
  .jackets.four,
  .clip-bay,
  .stillgrid,
  .slotwall,
  .handles {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    overflow-x: clip;
    scroll-snap-type: none;
  }
  .jackets a,
  .clip-slot,
  .still,
  .slot,
  .handles a {
    flex: 1 1 auto;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
}

@media (max-width: 430px) {
  footer.rich .foot-grid { grid-template-columns: minmax(0, 1fr); }
  footer.rich .foot-grid nav { display: none; }
  .ticker { display: none; }
  body.home .list,
  body.door .list,
  body.home .listen-room > .fine,
  body.door .listen-room > .fine { display: none; }
}

/* Phone: the first paint is already there. No fade-in, no Ken slide, no ticker. */
@media (max-width: 430px) {
  [data-reveal],
  .hero-copy > *,
  .lightbox figure {
    opacity: 1;
    transform: none;
    animation: none;
  }
  .ticker-track,
  .frame.ken img,
  .needle,
  .deck-eq i {
    animation: none;
    transform: none;
  }
}

/* Touch: a tap dims. It does not scale the frame. */
@media (hover: none) {
  .btn:active,
  .tile:active,
  .card:active,
  .socials a:active,
  .frame:active img,
  .handles a:active,
  .sleeve.has-photo:active img,
  .jackets a:active img,
  .nav-toggle:active,
  .bar nav a:active,
  .lightbox-close:active,
  .ticker-hold:active,
  .foot-grid a:active {
    transform: none;
    opacity: 0.72;
    transition: opacity 200ms ease-out;
  }
}

/* Videos and the list. One idea. The lecture waits. Not the title rooms. */
@media (max-width: 430px) {
  .progress,
  .cursor { display: none; }
  body:not([class]) .crumbs,
  body:not([class]) .plaque,
  body:not([class]) .facts,
  body:not([class]) .deck-rail,
  body:not([class]) .player-meta,
  body:not([class]) .player > .fine,
  body:not([class]) .dock ~ .dock,
  body:not([class]) .kicker,
  body:not([class]) .lede,
  body:not([class]) .deck-slots,
  body:not([class]) .player-offline,
  body:not([class]) article > :not(.dock),
  body:not([class]) .reel figcaption span,
  body.native:not(.surface) .kicker,
  body.native:not(.surface) .lede { display: none; }
  body.native:not(.surface) .crumbs,
  body.native:not(.surface) .plaque,
  body.native:not(.surface) .facts,
  body.native:not(.surface) .releases small,
  body.native:not(.surface) .releases,
  body.native:not(.surface) .dock ~ * { display: none; }
}

/* Home door. Name on the still. The essays wait. */
@media (max-width: 430px) {
  body.door .hero .lede,
  body.door .ticker,
  body.door .plaque,
  body.door .facts,
  body.door .deck-rail,
  body.door .player-meta,
  body.door .deck-slots,
  body.door .player > .fine,
  body.door .player-offline,
  body.door .frame.ken,
  body.door article > .dock ~ .dock .stack,
  body.door .list,
  body.door article > .fine { display: none; }
  body.door .hero > *,
  body.door .player,
  body.door iframe { min-width: 0; max-width: 100%; }
  body.door .hero .kicker { font-size: 0.75rem; letter-spacing: 0.18em; }
  body.door .hero-copy > p:not(.lede) {
    font-size: 1.25rem;
    line-height: 1.25;
    max-width: 14ch;
  }
  body.door a,
  body.door .btn { transition: opacity 200ms var(--ease), transform 200ms var(--ease); }
  body.door .listen-dock > .stack > .kicker,
  body.door .listen-dock > .stack > h2,
  body.door .band,
  body.door .split,
  body.door article > .dock ~ .dock .actions,
  body.door article > .dock ~ .dock .fine { display: none; }
}
@media (max-width: 430px) and (prefers-reduced-motion: reduce) {
  body.door,
  body.door * { animation: none !important; transition: none !important; }
}

/* Music rack. Three titles. The heading and the crops wait. */
@media (max-width: 430px) {
  body.rack .ticker,
  body.rack .crumbs,
  body.rack .lede,
  body.rack .plaque,
  body.rack .facts,
  body.rack .frame.ken,
  body.rack .listen-dock,
  body.rack #jackets,
  body.rack .deck-rail,
  body.rack .player-meta,
  body.rack .deck-slots,
  body.rack .player,
  body.rack .player > .fine,
  body.rack .player-offline,
  body.rack article > .dock ~ .dock { display: none; }
  body.rack .page,
  body.rack .jacket,
  body.rack .sleeve,
  body.rack .sleeve img,
  body.rack .player,
  body.rack iframe { min-width: 0; max-width: 100%; }
  body.rack .page h1 {
    font-size: clamp(2.35rem, 10vw, 3.1rem);
    line-height: 0.96;
    letter-spacing: -0.03em;
  }
  body.rack .jacket {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.6rem;
    padding-top: 1.4rem;
  }
  body.rack .jacket h2 { font-size: clamp(1.8rem, 8vw, 2.4rem); margin: 0; }
  body.rack a,
  body.rack .btn { transition: opacity 200ms var(--ease), transform 200ms var(--ease); }
}
@media (max-width: 430px) and (prefers-reduced-motion: reduce) {
  body.rack,
  body.rack * { animation: none !important; transition: none !important; }
}

/* Title room. The name, then the still. */
@media (max-width: 430px) {
  body.room .ticker,
  body.room .crumbs,
  body.room .lede,
  body.room .plaque,
  body.room .facts,
  body.room .player,
  body.room article > .dock ~ .dock,
  body.room .list,
  body.room .releases,
  body.room article > div[data-reveal],
  body.room article > .fine { display: none; }
  body.room .page,
  body.room .dock,
  body.room .listen-dock,
  body.room .sleeve,
  body.room .sleeve img {
    min-width: 0;
    max-width: 100%;
    overflow-x: clip;
  }
  body.room .page h1 {
    font-size: clamp(2.6rem, 12vw, 3.6rem);
    line-height: 0.92;
    letter-spacing: -0.03em;
  }
  body.room .kicker { font-size: 0.75rem; letter-spacing: 0.18em; }
  body.room a,
  body.room .btn { transition: opacity 200ms var(--ease), transform 200ms var(--ease); }
}
@media (max-width: 430px) and (prefers-reduced-motion: reduce) {
  body.room,
  body.room * { animation: none !important; transition: none !important; }
}

/* Aegis — phone chrome. Quiet. Title rooms stay in body.room. */
@media (max-width: 430px) {
  html, body { overflow-x: clip; max-width: 100%; }
  img, video, svg { max-width: 100%; height: auto; }
  .grain, .cursor, .progress, .install-chip, .net-note { display: none; }
  .kicker {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    margin-bottom: 0.35rem;
  }
  body.hand:not(.room) .ticker,
  body.hand:not(.room) .crumbs,
  body.hand:not(.room) .plaque,
  body.hand:not(.room) .facts,
  body.hand:not(.room) .deck-rail,
  body.hand:not(.room) .deck-slots,
  body.hand:not(.room) .player-offline,
  body.hand:not(.room) article > .fine { display: none; }
  body.hand:not(.room) .page h1,
  body.hand:not(.room) .listen-room h1 {
    font-size: clamp(2.15rem, 9vw, 2.7rem);
    line-height: 1.04;
  }
  body.hand:not(.room) .lede {
    font-size: 1.05rem;
    max-width: 28ch;
    color: var(--mute);
  }
  body.hand:not(.room) .chapter .num { font-size: 0.85rem; }
  body.kit .ticker,
  body.kit .crumbs,
  body.kit .plaque,
  body.kit .facts,
  body.kit .deck-rail,
  body.kit .deck-slots,
  body.kit .player-offline,
  body.kit .kicker,
  body.kit .lede,
  body.surface.native:not(.one) .kicker,
  body.surface.native:not(.one) .lede,
  body.surface.native:not(.one) .rows,
  body.surface.native:not(.one) .closer { display: none; }
  body.one .specs,
  body.one .closer { display: none; }
  body.native .plaque,
  body.native .facts { display: none; }
  .band, .socials { display: none; }
  .bar .mark { font-size: 1.35rem; letter-spacing: 0.04em; font-weight: 700; }
}

/* About. The line, then the still. The plaque waits. */
@media (max-width: 430px) {
  body.story .plaque,
  body.story .listen-dock > .stack > .kicker,
  body.story figcaption { display: none; }
  body.hand.story:has(#table) .frame.ken { display: block; }
  body.story .frame.ken,
  body.story .frame.ken img,
  body.story .page,
  body.story .dock { min-width: 0; max-width: 100%; height: auto; }
  body.story .page h1 {
    font-size: clamp(2.35rem, 10vw, 3.1rem);
    line-height: 0.96;
    letter-spacing: -0.03em;
  }
  body.story a,
  body.story .btn { transition: opacity 200ms var(--ease), transform 200ms var(--ease); }
}
@media (max-width: 430px) and (prefers-reduced-motion: reduce) {
  body.story,
  body.story * { animation: none !important; transition: none !important; }
}

/* Helix — bar, Videos, and the list. Phone-quiet. Vesper blocks untouched. */
@media (max-width: 430px) {
  .bar {
    background: #0e0c0a;
    border-bottom: 0;
    gap: 0.4rem;
  }
  .bar nav a::after { display: none; }
  .bar nav a {
    font-size: 0.95rem;
    padding-inline: 0.55rem;
  }
  .list {
    min-width: 0;
    max-width: 100%;
    overflow-x: clip;
  }
  .list a {
    flex-wrap: wrap;
    min-width: 0;
    max-width: 100%;
    align-items: flex-start;
    gap: 0.25rem 0.75rem;
    min-height: var(--tap);
  }
  .list a strong {
    font-size: clamp(1.2rem, 6vw, 1.55rem);
    line-height: 1.15;
    overflow-wrap: anywhere;
    min-width: 0;
  }
  .list a span {
    min-width: 0;
    overflow-wrap: anywhere;
    font-size: 0.92rem;
  }
  body.cuts .ticker,
  body.cuts .crumbs,
  body.cuts .lede,
  body.cuts .plaque,
  body.cuts .facts,
  body.cuts .player,
  body.cuts article > .dock ~ .dock,
  body.cuts .clip-bay,
  body.cuts article > div:not(.dock):not(.list),
  body.cuts article > .fine { display: none; }
  body.cuts .page,
  body.cuts .dock,
  body.cuts .listen-dock,
  body.cuts .reels,
  body.cuts .reel,
  body.cuts .list {
    min-width: 0;
    max-width: 100%;
    overflow-x: clip;
  }
  body.cuts .page h1 {
    font-size: clamp(2.15rem, 9vw, 2.7rem);
    line-height: 1.04;
    letter-spacing: -0.03em;
  }
  body.cuts .reels { display: grid; gap: 0.85rem; }
  body.cuts a,
  body.cuts .btn { transition: opacity 200ms var(--ease); }
}
@media (max-width: 430px) and (prefers-reduced-motion: reduce) {
  body.cuts,
  body.cuts * { animation: none !important; transition: none !important; }
}

/* Aegis — shop / shows / follow rows. Not the bar. Not title rooms. */
@media (max-width: 430px) {
  body.one .rows p { display: none; }
  body.one .lead h1 {
    font-size: clamp(2.2rem, 9vw, 2.8rem);
    line-height: 1.02;
  }
}

/* Listen. The title, then the player. */
@media (max-width: 430px) {
  body.ear .listen-dock > .stack > .kicker,
  body.ear .lede,
  body.ear figcaption,
  body.ear .frame.ken,
  body.ear .jackets,
  body.ear .list,
  body.ear .releases,
  body.ear article > .dock ~ .dock,
  body.ear article > div[data-reveal] { display: none; }
  body.ear .page,
  body.ear article,
  body.ear main,
  body.ear footer,
  body.ear .foot-grid,
  body.ear .colophon,
  body.ear .player,
  body.ear iframe { min-width: 0; max-width: 100%; overflow-x: clip; }
  body.ear .foot-grid { width: 100%; grid-template-columns: minmax(0, 1fr); }
  body.ear .fine,
  body.ear .colophon { overflow-wrap: anywhere; }
  body.ear .page h1 {
    font-size: clamp(2.15rem, 8.5vw, 2.75rem);
    line-height: 1;
    letter-spacing: -0.03em;
  }
  body.hand.ear .listen-room h1 {
    font-size: clamp(1.5rem, 7.9vw, 2.05rem);
    line-height: 1;
    letter-spacing: -0.03em;
    text-wrap: balance;
    overflow-wrap: normal;
  }
  body.ear a,
  body.ear .btn { transition: opacity 200ms var(--ease), transform 200ms var(--ease); }
  body.hand.ear .page { padding-top: 0.35rem; padding-bottom: 0; }
  body.hand.ear .wrap { max-width: 100%; padding-inline: 0; }
  body.hand.ear .listen-dock > .stack {
    padding-left: max(1rem, var(--safe-l));
    padding-right: max(1rem, var(--safe-r));
  }
  body.hand.ear .player.is-dock {
    border: 0;
    border-radius: 0;
    padding: 0;
    gap: 0;
    background: transparent;
    box-shadow: none;
    max-width: none;
    width: calc(100% + max(1rem, var(--safe-l)) + max(1rem, var(--safe-r)));
    margin-left: calc(-1 * max(1rem, var(--safe-l)));
    margin-right: calc(-1 * max(1rem, var(--safe-r)));
  }
  body.hand.ear .player.is-dock iframe {
    width: 100%;
    height: calc(100svh - 7.6rem);
    min-height: calc(100svh - 7.6rem);
    border-radius: 0;
  }
}
@media (max-width: 430px) and (prefers-reduced-motion: reduce) {
  body.ear,
  body.ear * { animation: none !important; transition: none !important; }
}

/* Photos. One still. The caption waits. */
@media (max-width: 430px) {
  body.wall .kicker,
  body.wall figcaption,
  body.wall .lede { display: none; }
  body.wall .page,
  body.wall .frame,
  body.wall .frame img { min-width: 0; max-width: 100%; height: auto; }
  body.wall .page h1 {
    font-size: clamp(2.6rem, 12vw, 3.4rem);
    line-height: 0.92;
    letter-spacing: -0.03em;
  }
  body.wall a,
  body.wall img { transition: opacity 200ms var(--ease), transform 200ms var(--ease); }
}
@media (max-width: 430px) and (prefers-reduced-motion: reduce) {
  body.wall,
  body.wall * { animation: none !important; transition: none !important; }
}

/* The still is the page. The name sits on it. Not a card in a margin. */
@media (max-width: 430px) {
  body.story .page,
  body.wall .page,
  body.room .page,
  body.rack .page { padding-top: 0; padding-bottom: 0; }
  body.story .wrap,
  body.wall .wrap,
  body.room .wrap,
  body.rack .wrap {
    max-width: 100%;
    padding-inline: 0;
  }
  body.story .listen-dock,
  body.wall .listen-dock,
  body.room .listen-dock,
  body.rack .jacket {
    position: relative;
    gap: 0;
  }
  body.story .listen-dock .frame,
  body.wall .listen-dock .frame,
  body.room .listen-dock .sleeve,
  body.rack .jacket .sleeve { margin: 0; }
  body.story .frame.ken,
  body.wall .frame.ken,
  body.room .sleeve.has-photo,
  body.rack .sleeve.has-photo {
    width: 100%;
    max-width: 100%;
    height: calc(100svh - 3.4rem);
    min-height: calc(100svh - 3.4rem);
    aspect-ratio: auto;
    border-radius: 0;
    overflow: hidden;
  }
  body.rack .page.stack { gap: 0; }
  body.rack .sleeve.has-photo,
  body.room .sleeve.has-photo {
    height: calc(100svh - 4.3rem);
    min-height: calc(100svh - 4.3rem);
  }
  body.story .frame.ken img,
  body.wall .frame.ken img,
  body.room .sleeve.has-photo img,
  body.rack .sleeve.has-photo img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    animation: none;
  }
  body.rack img[src*="crop-face"],
  body.room img[src*="crop-face"] { object-position: 50% 16%; }
  body.rack img[src*="crop-chest"],
  body.room img[src*="crop-chest"] { object-position: 50% 46%; }
  body.rack img[src*="crop-hands"],
  body.room img[src*="crop-hands"] { object-position: 50% 78%; }
  body.story .listen-dock > .stack,
  body.wall .listen-dock > .stack,
  body.room .listen-dock > .stack,
  body.rack .jacket > .stack {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    margin: 0;
    max-width: 100%;
    padding: 3.2rem max(1rem, var(--safe-r)) 1.75rem max(1rem, var(--safe-l));
    background: linear-gradient(180deg, transparent, rgba(14, 12, 10, 0.72));
  }
  body.rack { padding-top: 0; border: 0; }
  body.rack .jacket { padding-top: 0; }
  body.hand.story .listen-room h1,
  body.hand.wall .listen-room h1,
  body.room h1,
  body.rack .jacket h2 {
    font-size: clamp(2.6rem, 11vw, 3.4rem);
    line-height: 0.92;
    letter-spacing: -0.03em;
  }
  body.hand.story .listen-room h1 {
    font-size: clamp(1.9rem, 9.2vw, 2.7rem);
    line-height: 1;
    text-wrap: balance;
    overflow-wrap: normal;
  }
  body.story h1,
  body.wall h1,
  body.room h1,
  body.rack .jacket h2,
  body.rack .jacket h2 a { color: var(--bone); }
}

/* Rack and title rooms. The name. The still. The sentence waits. */
@media (max-width: 430px) {
  body.rack .listen-dock > .stack > .kicker,
  body.rack .jacket .kicker,
  body.rack .jacket .stack > p,
  body.rack .sleeve .stamp,
  body.rack .sleeve .cap,
  body.rack .page h1,
  body.room .kicker,
  body.room .sleeve .stamp,
  body.room .sleeve .cap { display: none; }
  body.rack .jacket h2 { overflow-wrap: anywhere; }
  body.room h1 {
    overflow-wrap: normal;
    text-wrap: balance;
    margin: 0;
  }
  body.room .listen-dock > .stack {
    padding-top: 1.5rem;
    padding-bottom: max(1.75rem, var(--safe-b));
    padding-left: max(var(--pad), var(--safe-l));
    padding-right: max(var(--pad), var(--safe-r));
    background: linear-gradient(180deg, transparent 0%, rgba(14, 12, 10, 0.9) 22%, rgba(14, 12, 10, 0.92) 100%);
  }
}
@media (max-width: 430px) and (prefers-reduced-motion: reduce) {
  body.rack,
  body.room,
  body.rack *,
  body.room * { animation: none !important; transition: none !important; }
}

/* Phone. One idea. The essays wait. Not the title rooms. Not the bar. */
@media (max-width: 430px) {
  footer.rich .foot-grid .fine { display: none; }
  body.one .kicker,
  body.one .lede,
  body.one #calendar { display: none; }
  body.kit .dock ~ .dock,
  body.kit .list,
  body.kit .releases,
  body.kit article > div:not(.dock),
  body.kit article > .fine,
  body.kit figcaption { display: none; }
  body.rack .kicker,
  body.rack .lede,
  body.rack .plaque,
  body.rack .facts,
  body.rack figcaption,
  body.rack .jacket .stack > p { display: none; }
  body.photo-set:not(.hand):not(.room):not(.rack) .kicker,
  body.photo-set:not(.hand):not(.room):not(.rack) .lede,
  body.photo-set:not(.hand):not(.room):not(.rack) .plaque,
  body.photo-set:not(.hand):not(.room):not(.rack) .facts,
  body.photo-set:not(.hand):not(.room):not(.rack) .deck-rail,
  body.photo-set:not(.hand):not(.room):not(.rack) .deck-slots,
  body.photo-set:not(.hand):not(.room):not(.rack) .player,
  body.photo-set:not(.hand):not(.room):not(.rack) figcaption { display: none; }
}

/* Helix — Videos list. Three IDs. Extra rows wait. Bar untouched. */
@media (max-width: 430px) {
  body.cuts .kicker,
  body.cuts .reel span,
  body.cuts figcaption,
  body.cuts .list a:nth-child(n+4) { display: none; }
}

/* Helix — list rooms. Title, then the list. Rows stay Aegis. Bar untouched. */
@media (max-width: 430px) {
  body.sheet .ticker,
  body.sheet .crumbs,
  body.sheet .lede,
  body.sheet .plaque,
  body.sheet .facts,
  body.sheet .player,
  body.sheet .kicker,
  body.sheet .frame,
  body.sheet figcaption,
  body.sheet .ledger,
  body.sheet .stillgrid,
  body.sheet .pass,
  body.sheet article > .dock ~ .dock,
  body.sheet article > div:not(.dock):not(.list),
  body.sheet article > .fine { display: none; }
  body.sheet .page,
  body.sheet .dock,
  body.sheet .listen-dock,
  body.sheet .list {
    min-width: 0;
    max-width: 100%;
    overflow-x: clip;
  }
  body.sheet .page h1 {
    font-size: clamp(2.15rem, 9vw, 2.7rem);
    line-height: 1.04;
    letter-spacing: -0.03em;
  }
  body.sheet a,
  body.sheet .btn { transition: opacity 200ms var(--ease); }
}
@media (max-width: 430px) and (prefers-reduced-motion: reduce) {
  body.sheet,
  body.sheet * { animation: none !important; transition: none !important; }
}

/* Home. The name, Play, then his one line. */
@media (max-width: 430px) {
  body.door .lede,
  body.door article > .dock ~ .dock .kicker,
  body.door article > .dock ~ .dock .poster > p { display: none; }
}

/* Phone bar. The name and Menu. The drawer takes 200ms. Home photograph stays. */
@media (max-width: 430px) {
  .bar {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .nav-toggle {
    border-color: transparent;
    padding-inline: 0.15rem;
  }
  .bar nav {
    transition: transform 200ms var(--ease), visibility 0s linear 200ms;
    padding-top: calc(var(--bar-h) + var(--safe-t) + 1.1rem);
    padding-right: max(var(--pad), var(--safe-r));
    padding-bottom: max(1.4rem, var(--safe-b));
    padding-left: max(var(--pad), var(--safe-l));
  }
  .bar nav.open { transition: transform 200ms var(--ease), visibility 0s linear 0s; }
  .nav-backdrop { transition: opacity 200ms var(--ease); }
  body.menu-open .nav-backdrop { pointer-events: auto; }
  html:has(body.menu-open) { overflow-y: clip; }
  .bar .mark,
  .bar nav a,
  .nav-toggle { transition: opacity 200ms var(--ease); }
  .nav-toggle:active,
  .bar nav a:active { transform: none; }
  .bar nav a[href="/"],
  .bar nav a[aria-current="page"],
  .bar nav a[data-section="here"] { display: none; }
}
@media (max-width: 430px) and (prefers-reduced-motion: reduce) {
  .bar,
  .bar nav,
  .bar nav a,
  .bar .mark,
  .nav-toggle,
  .nav-backdrop { transition: none; animation: none; }
}

/* Aegis — 404 miss. Not the bar. Not title rooms. */
@media (max-width: 430px) {
  body.miss .ticker,
  body.miss .crumbs,
  body.miss .plaque,
  body.miss .facts,
  body.miss .deck-rail,
  body.miss .deck-slots,
  body.miss .player-offline,
  body.miss article > .dock ~ .dock { display: none; }
  body.miss .page,
  body.miss .dock,
  body.miss img {
    min-width: 0;
    max-width: 100%;
    height: auto;
  }
  body.miss .page h1 {
    font-size: clamp(2.15rem, 9vw, 2.7rem);
    line-height: 1.04;
  }
}

/* Helix — 404 miss. Title, Listen, desk. Bar untouched. */
@media (max-width: 430px) {
  body.miss .ticker,
  body.miss .crumbs,
  body.miss .lede,
  body.miss .plaque,
  body.miss .facts,
  body.miss .player,
  body.miss .kicker,
  body.miss .frame,
  body.miss figcaption,
  body.miss article > .dock ~ .dock,
  body.miss article > div:not(.dock):not(.list),
  body.miss article > .fine { display: none; }
  body.miss .list a:not(:first-child):not(:last-child) { display: none; }
  body.miss .page,
  body.miss .dock,
  body.miss .list {
    min-width: 0;
    max-width: 100%;
    overflow-x: clip;
  }
  body.miss .page h1 {
    font-size: clamp(2.15rem, 9vw, 2.7rem);
    line-height: 1.04;
    letter-spacing: -0.03em;
  }
}

/* About. The line, then the still. The four titles wait. */
@media (max-width: 430px) {
  body.story #chapters,
  body.story .chapters { display: none; }
}

/* Owned rooms. One idea. The second name waits. Play stays on the still. */
@media (max-width: 430px) {
  body.door footer.rich .mark,
  body.story footer.rich .mark,
  body.ear footer.rich .mark,
  body.wall footer.rich .mark,
  body.rack footer.rich .mark,
  body.room footer.rich .mark { display: none; }
  body.rack .jacket .actions { display: none; }
  body.rack .jacket h2 a {
    color: inherit;
    text-decoration: none;
  }
  body.rack .jacket-snap {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
    scroll-snap-type: none;
  }
  body.rack .jacket-snap > .jacket {
    flex: none;
    width: 100%;
    max-width: 100%;
    scroll-snap-align: none;
  }
  body.door .hero,
  body.door .hero-photo,
  body.door .hero-photo img {
    min-height: calc(100svh - 4.3rem);
  }
  body.door .hero h1 { display: none; }
  body.door .hero-copy {
    background: linear-gradient(180deg, transparent, rgba(14, 12, 10, 0.62));
    padding-bottom: max(1.75rem, var(--safe-b));
  }
  body.door .hero-copy > p:not(.lede) {
    font-size: clamp(1.5rem, 7.9vw, 2.05rem);
    line-height: 0.98;
    letter-spacing: -0.03em;
    max-width: none;
    text-wrap: balance;
    overflow-wrap: normal;
    color: var(--bone);
    margin: 0 0 1rem;
  }
}

/* Rack. Three titles. The closing line waits. */
@media (max-width: 430px) {
  body.rack article > .fine,
  body.rack .player > .fine { display: none; }
}

/* Phone. The line, then the thing. Not the bar. Not the title rooms. */
@media (max-width: 430px) {
  body.door article > .dock ~ .dock { display: none; }
  body.one #rack { display: none; }
  body.one #handles em,
  body.one #handles span,
  body.one #handles p { display: none; }
  body.photo-set:not(.hand):not(.room):not(.rack) #frames,
  body.photo-set:not(.hand):not(.room):not(.rack) .jackets small,
  body.photo-set:not(.hand):not(.room):not(.rack) .dock ~ .dock { display: none; }
  body.door .btn,
  body.one .btn { transition: opacity 200ms var(--ease); }
}

/* Helix — press still. One word, then the photograph. Vesper wall untouched. */
@media (max-width: 430px) {
  body.still .ticker,
  body.still .crumbs,
  body.still .lede,
  body.still .plaque,
  body.still .facts,
  body.still .actions,
  body.still .player,
  body.still .jackets,
  body.still .kicker,
  body.still figcaption,
  body.still article > .dock ~ .dock,
  body.still article > section,
  body.still article > div:not(.dock) { display: none; }
  body.still .page,
  body.still .dock,
  body.still .frame,
  body.still .frame img {
    min-width: 0;
    max-width: 100%;
    height: auto;
  }
  body.still .page h1 {
    font-size: clamp(2.6rem, 12vw, 3.4rem);
    line-height: 0.92;
    letter-spacing: -0.03em;
  }
  body.still a,
  body.still img { transition: opacity 200ms var(--ease); }
}
@media (max-width: 430px) and (prefers-reduced-motion: reduce) {
  body.still,
  body.still * { animation: none !important; transition: none !important; }
}

/* Photos. One still. The crop labels wait. */
@media (max-width: 430px) {
  body.wall .jackets,
  body.wall .jackets.four,
  body.wall #frames { display: none; }
}

/* Leftover rooms. One line, then the thing. 200ms. No sideways rink. */
@media (max-width: 430px) {
  body.quiet {
    --dur: 200ms;
    overflow-x: clip;
    padding-left: env(safe-area-inset-left, 0px);
    padding-right: env(safe-area-inset-right, 0px);
  }
  body.quiet .ticker,
  body.quiet .crumbs,
  body.quiet .facts,
  body.quiet .deck-eq,
  body.quiet .player-offline p:not(.stamp),
  body.quiet .listen-dock ~ .listen-dock { display: none; }
  body.quiet .page, body.quiet .page > *, body.quiet .wrap,
  body.quiet .stack, body.quiet .stack > *,
  body.quiet .listen-dock, body.quiet .listen-dock > *,
  body.quiet .player, body.quiet .player > *,
  body.quiet .releases, body.quiet .release,
  body.quiet .foot-grid, body.quiet .foot-grid > *,
  body.quiet .frame, body.quiet img, body.quiet iframe,
  body.quiet .prose, body.quiet .prose p {
    min-width: 0;
    max-width: 100%;
  }
  body.quiet .listen-dock, body.quiet .dock { grid-template-columns: minmax(0, 1fr); }
  body.quiet h1 { font-size: clamp(2.05rem, 10vw, 2.7rem); line-height: 1.08; }
  body.quiet a, body.quiet button, body.quiet .btn, body.quiet img {
    transition-property: opacity, transform;
    transition-duration: 200ms;
    transition-timing-function: var(--ease);
  }
  body.quiet .page {
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
    padding-bottom: max(2rem, env(safe-area-inset-bottom));
  }
  body.rack .page { padding-left: 0; padding-right: 0; padding-bottom: 0; }
}
@media (max-width: 430px) and (prefers-reduced-motion: reduce) {
  body.quiet, body.quiet * { animation: none !important; transition: none !important; }
}

/* Videos. Three screens. The duplicate list waits. Not the bar. */
@media (max-width: 430px) {
  body.cuts .list,
  body.cuts .deck-slots { display: none; }
  body.cuts .reel,
  body.cuts iframe { min-width: 0; max-width: 100%; }
  body.cuts a,
  body.cuts .btn { transition: opacity 200ms var(--ease); }
}

/* Kit and the list. One thing. 200ms. */
.phone-desk { display: none; }
@media (max-width: 430px) {
  body.kit .player { display: none; }
  body.kit .phone-desk {
    display: block;
    margin: 0.35rem 0 0;
  }
  body.native .listen-dock ~ * { display: none; }
  body.kit .phone-desk a,
  body.native form,
  body.native .btn {
    transition: opacity 200ms var(--ease);
  }
}
@media (max-width: 430px) and (prefers-reduced-motion: reduce) {
  body.kit .phone-desk a,
  body.native form,
  body.native .btn { transition: none; }
}

/* Contact. The form. The photograph waits. */
@media (max-width: 430px) {
  body.quiet.one .plate-photo,
  body.quiet.one .rows { display: none; }
  body.quiet.one form,
  body.quiet.one .btn { transition: opacity 200ms var(--ease); }
}
@media (max-width: 430px) and (prefers-reduced-motion: reduce) {
  body.quiet.one form,
  body.quiet.one .btn { transition: none; }
}

/* Bio. His paragraphs. The still waits. */
@media (max-width: 430px) {
  body.hand.quiet .player,
  body.hand.quiet .frame,
  body.hand.quiet .lede { display: none; }
  body.hand.quiet .prose { min-width: 0; max-width: 100%; }
  body.hand.quiet .prose a { transition: opacity 200ms var(--ease); }
}
@media (max-width: 430px) and (prefers-reduced-motion: reduce) {
  body.hand.quiet .prose a { transition: none; }
}

/* Follow, shop, shows. The photograph waits. The list form drops the extra line. */
@media (max-width: 430px) {
  body.surface.one:not(.quiet) .plate-photo { display: none; }
  body.native form > .stamp,
  body.native form > p:not(.fine) { display: none; }
  body.surface.one:not(.quiet) .rows a,
  body.surface.one:not(.quiet) .rows li {
    transition: opacity 200ms var(--ease);
  }
}
@media (max-width: 430px) and (prefers-reduced-motion: reduce) {
  body.surface.one:not(.quiet) .rows a,
  body.surface.one:not(.quiet) .rows li { transition: none; }
}

/* The label waits. The handles are the names. */
@media (max-width: 430px) {
  body.hand.quiet .kicker { display: none; }
  body.surface.one:not(.quiet) .rows em,
  body.surface.one:not(.quiet) .rows span { display: none; }
}
@media (max-width: 430px) and (prefers-reduced-motion: reduce) {
  body.hand.quiet .kicker,
  body.surface.one:not(.quiet) .rows em,
  body.surface.one:not(.quiet) .rows span { transition: none; }
}

/* A miss. The second sentence under Listen waits. The desk stays. */
@media (max-width: 430px) {
  body.miss .list a:first-child span { display: none; }
  body.miss .list a { transition: opacity 200ms var(--ease); }
}
@media (max-width: 430px) and (prefers-reduced-motion: reduce) {
  body.miss .list a { transition: none; }
}

/* Press drawer. The names. The second lines wait. The desk keeps press@. */
@media (max-width: 430px) {
  body.sheet .list:has(a[href="/press/bio/"]) a:not([href^="mailto:"]) span { display: none; }
  body.sheet .list:has(a[href="/press/bio/"]) a { transition: opacity 200ms var(--ease); }
}
@media (max-width: 430px) and (prefers-reduced-motion: reduce) {
  body.sheet .list:has(a[href="/press/bio/"]) a { transition: none; }
}

/* The desk. Name, email, message. The topic menu waits. */
@media (max-width: 430px) {
  body.quiet.one .field:has(#f-about) { display: none; }
}

/* Follow, shop, shows. The line or the names. The footer mark waits. */
@media (max-width: 430px) {
  body.surface.one:not(.quiet) footer.rich .mark,
  body.surface.one:not(.quiet) footer.rich .colophon { display: none; }
}

/* Shows. One line. The rest of the sentence waits. */
@media (max-width: 430px) {
  body.surface.one:not(.quiet):has(#calendar) h1 span { display: none; }
}

/* Press drawer. The names. The footer mark waits. */
@media (max-width: 430px) {
  body.sheet:has(.list a[href="/press/bio/"]) footer.rich .mark,
  body.sheet:has(.list a[href="/press/bio/"]) footer.rich .colophon { display: none; }
}

/* Contact. The form. The footer mark waits. */
@media (max-width: 430px) {
  body.quiet.one footer.rich .mark,
  body.quiet.one footer.rich .colophon { display: none; }
}

/* A miss. The line, Listen, and the desk. The footer mark waits. */
@media (max-width: 430px) {
  body.miss footer.rich .mark,
  body.miss footer.rich .colophon { display: none; }
}

/* Cities, Past, Privacy, the pass. The names. The footer mark waits. */
@media (max-width: 430px) {
  body.sheet:not(.quiet) footer.rich .mark,
  body.sheet:not(.quiet) footer.rich .colophon { display: none; }
}

/* Press drawer. The names. The sentence waits. */
@media (max-width: 430px) {
  body.sheet:has(.list a[href="/press/bio/"]) h1 { display: none; }
}

/* Follow. The four names. The repeated handle waits. */
@media (max-width: 430px) {
  body.surface.one:not(.quiet):has(#handles) h1 { display: none; }
}

/* The pass. One line. The list link waits. */
@media (max-width: 430px) {
  body.sheet:has(.list a[href="/keemunity/"]):not(:has(.list a[href="/contact/"])) .list { display: none; }
}

/* Privacy. One word. The two links wait. */
@media (max-width: 430px) {
  body.sheet:has(.list a[href="/keemunity/"]):has(.list a[href="/contact/"]) .list { display: none; }
}

/* Cities and Past. The names. The label waits. */
@media (max-width: 430px) {
  body.sheet:has(#places) h1,
  body.sheet:has(#nights) h1 { display: none; }
}

/* The list. The form. The label waits. */
@media (max-width: 430px) {
  body.quiet.native.sheet h1 { display: none; }
}

/* Press drawer. Bio, Photo, the desk. The other rooms wait. */
@media (max-width: 430px) {
  body.sheet:has(.list a[href="/press/bio/"]) .list a[href="/epk/"],
  body.sheet:has(.list a[href="/press/bio/"]) .list a[href="/listen/"] { display: none; }
  body.sheet:has(.list a[href="/press/bio/"]) .list a[href^="mailto:"] strong { display: none; }
}

/* A miss. The line, Listen, the address. The word Desk waits. */
@media (max-width: 430px) {
  body.miss .list a[href^="mailto:"] strong { display: none; }
}

/* Videos. The line. The cuts wait one screen. */
@media (max-width: 430px) {
  body.cuts .listen-dock > .stack {
    min-height: calc(100svh - 2.6rem);
  }
}

/* Videos. One cut. The next cut waits. */
@media (max-width: 430px) {
  body.cuts .reel {
    min-height: 100svh;
  }
}

/* Videos. The cut is the end. The footer line waits. */
@media (max-width: 430px) {
  body.cuts footer.rich { display: none; }
}

/* Bio. One paragraph. The next one waits. His words stay. */
@media (max-width: 430px) {
  body.hand.quiet:has(#table) .prose > p:first-child {
    min-height: calc(100svh - 10.5rem);
  }
  body.hand.quiet:has(#table) .prose > p:nth-child(2) {
    min-height: calc(100svh - 1.2rem);
  }
  body.hand.quiet:has(#table) .prose > p:nth-child(3) {
    min-height: calc(100svh - 1.2rem);
  }
  body.hand.quiet:has(#table) .prose > p:nth-child(4) {
    min-height: calc(100svh - 1.2rem);
  }
}

/* Bio. The sign-off is the end. The footer line waits. His words stay. */
@media (max-width: 430px) {
  body.hand.quiet:has(#table) footer.rich { display: none; }
}

/* Kit. Kee and the desk. The footer line waits. */
@media (max-width: 430px) {
  body.kit footer.rich { display: none; }
}

/* Kit. The photograph waits. Kee and the desk stay. */
@media (max-width: 430px) {
  body.kit .frame { display: none; }
}

/* Leftover lines. The empty footer waits. */
@media (max-width: 430px) {
  body.surface.one:not(.quiet) footer.rich,
  body.miss footer.rich,
  body.sheet:not(.quiet) footer.rich,
  body.quiet.native.sheet footer.rich,
  body.quiet.one footer.rich { display: none; }
}

/* The still. The picture. The footer line waits. */
@media (max-width: 430px) {
  body.still footer.rich { display: none; }
}

