:root {
  --ink: #16130f;
  --paper: #f3efe7;
  --paper-2: #e7e0d4;
  --muted: #6f675e;
  --red: #9d1c2b;
  --line: rgba(22, 19, 15, 0.12);
  --serif: "Fraunces", "Iowan Old Style", Georgia, serif;
  --sans: "Outfit", "Avenir Next", "PingFang TC", sans-serif;
  --pad: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
.official { max-width: 38em; margin: 28px auto 0; padding: 0 var(--pad); color: var(--muted); }
.ascii-name { margin: 0 0 8px; font-size: 13px; letter-spacing: 0.02em; color: var(--muted); }
.langs a.lang { display: inline-flex; align-items: center; justify-content: center; min-width: 44px; min-height: 44px; text-decoration: none; }
.langs a.lang.on { color: var(--ink); }
.missing { min-height: 100dvh; display: grid; align-content: center; padding: 48px 22px; }
.missing h1 { font-family: var(--serif); font-weight: 460; font-size: clamp(32px, 6vw, 56px); line-height: 1.05; max-width: 16ch; }
.missing a { border-bottom: 1px solid var(--ink); }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 340;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
[hidden] { display: none !important; }
a { color: inherit; }
a, button { -webkit-tap-highlight-color: transparent; }
button, .go-card, .plat-grid a, .films a, .channel, .foot-social a, .coffee, .text-link, .map-open, .namecard-links a, .sub-btn {
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}
@media (hover: hover) {
  .go-grid a.go-card:hover, .plat-grid a:hover, .films a:hover, .channel:hover, .namecard-links a:hover {
    transform: translateY(-3px);
    border-color: var(--ink);
    box-shadow: 0 16px 32px rgba(22, 19, 15, 0.12);
  }
  .go-grid a.go-card:hover .go-arrow { transform: translateX(3px); }
  .plat-grid a:hover .card-arrow, .films a:hover .film-play, .channel:hover .channel-go, .text-link:hover .ext, .map-open:hover .ext, .sub-btn:hover .ext { transform: translateX(3px); }
  .namecard-links a:hover .card-arrow { transform: translate(3px, -50%); }
  .langs button:hover { color: var(--ink); }
  .text-link:hover, .map-open:hover { border-color: var(--ink); color: var(--ink); }
  .sub-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(22, 19, 15, 0.16); }
}
.go-grid a.go-card:active, .plat-grid a:active, .films a:active, .namecard-links a:active, .coffee:active, .menu:active, .sub-btn:active, .map-open:active, .text-link:active { transform: translateY(1px); box-shadow: none; }
:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }

.bar {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 8px 12px;
  padding: 10px var(--pad);
  background: rgba(243, 239, 231, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  letter-spacing: 0.22em;
  font-size: 12px;
  font-weight: 560;
}
.brand img { width: 28px; height: 28px; }
.menu {
  display: inline-flex;
  align-items: center;
  order: 2;
  min-height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 12px;
  cursor: pointer;
}
.menu::before {
  content: "";
  width: 12px;
  height: 8px;
  margin-right: 8px;
  background:
    linear-gradient(var(--ink), var(--ink)) 0 0 / 100% 1.5px no-repeat,
    linear-gradient(var(--ink), var(--ink)) 0 50% / 100% 1.5px no-repeat,
    linear-gradient(var(--ink), var(--ink)) 0 100% / 100% 1.5px no-repeat;
}
.bar nav {
  display: none;
  order: 4;
  flex: 1 0 100%;
  gap: 0;
  padding: 4px 0 8px;
  border-top: 1px solid var(--line);
}
.bar.open nav { display: flex; flex-direction: column; }
.bar nav a {
  text-decoration: none;
  font-size: 18px;
  font-family: var(--serif);
  color: var(--ink);
  padding: 12px 2px;
  border-bottom: 1px solid var(--line);
}
.bar nav a.on { color: var(--ink); }
.langs {
  display: none;
  order: 5;
  gap: 4px;
  margin: 4px 0 6px;
}
.bar.open .langs { display: flex; }
.langs button {
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 12px;
  letter-spacing: 0.08em;
  min-height: 44px;
  padding: 6px 10px;
  cursor: pointer;
}
.langs button.on { color: var(--ink); border-bottom: 1px solid var(--ink); }

.hero { position: relative; height: 92svh; min-height: 92svh; overflow: hidden; background: #1a1612; color: #f6f1e8; touch-action: pan-y; }
.hero-track { position: absolute; inset: 0; }
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--pos, center 30%);
  opacity: 0;
  transition: opacity 1.1s ease;
}
.hero-photo.is-on { opacity: 1; }
.hero-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: max(4px, env(safe-area-inset-bottom));
  display: flex;
  justify-content: center;
}
.hero-dots button {
  width: 30px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.hero-dots button::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  margin: auto;
  border-radius: 50%;
  background: rgba(246, 241, 232, 0.45);
  transition: background 0.3s ease, transform 0.3s ease;
}
.hero-dots button[aria-current="true"]::before { background: #f6f1e8; transform: scale(1.35); }
@media (prefers-reduced-motion: reduce) { .hero-photo { transition: none; } }
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 9, 6, 0.15), rgba(12, 9, 6, 0.08) 40%, rgba(12, 9, 6, 0.78));
}
.hero-copy { position: absolute; left: var(--pad); right: var(--pad); bottom: 56px; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 11px;
}
.eyebrow img { width: 22px; height: 22px; filter: invert(1); }
h1 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(64px, 18vw, 112px);
  line-height: 0.86;
  letter-spacing: -0.03em;
}
.line { margin: 18px 0 0; font-family: var(--serif); font-style: italic; font-size: 22px; }
.deck { margin: 6px 0 0; color: rgba(246, 241, 232, 0.78); font-size: 15px; }

.quote { padding: 56px var(--pad); background: var(--ink); color: var(--paper); }
.quote p { margin: 0; font-family: var(--serif); font-size: clamp(30px, 8vw, 48px); line-height: 1.15; }
.quote span { display: block; margin-top: 16px; color: rgba(243, 239, 231, 0.62); font-size: 14px; }

.about, .platforms { padding: 56px var(--pad) 28px; }
.about .lede { max-width: 42em; }
.about-grid, .plat-grid { display: grid; gap: 10px; margin-top: 22px; }
.about-grid article, .plat-grid a {
  display: block;
  padding: 18px 16px 16px;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 18px;
  text-decoration: none;
  min-height: 132px;
  box-shadow: 0 8px 20px rgba(22, 19, 15, 0.04);
}
.about-grid strong, .plat-grid strong { display: block; font-family: var(--serif); font-weight: 460; font-size: 26px; }
.about-grid span, .plat-grid em { display: block; margin-top: 8px; color: var(--muted); font-style: normal; }
.plat-grid small { letter-spacing: 0.16em; text-transform: uppercase; font-size: 11px; color: var(--red); }
.plat-grid span { display: inline-flex; align-items: center; margin-top: 14px; min-height: 32px; letter-spacing: 0.06em; font-size: 13px; font-weight: 540; color: var(--red); }
.more-films { display: inline-flex; align-items: center; margin-top: 18px; min-height: 44px; }
.stats { display: grid; border-bottom: 1px solid var(--line); }
.stats article { padding: 28px var(--pad); border-top: 1px solid var(--line); }
.stats strong { display: block; font-family: var(--serif); font-size: 56px; font-weight: 400; line-height: 1; }
.stats span { color: var(--muted); font-size: 14px; }

.portrait-break { position: relative; }
.portrait-break img { width: 100%; height: 78svh; object-fit: cover; }
.portrait-break p {
  position: absolute;
  left: var(--pad);
  bottom: 24px;
  margin: 0;
  color: #f6f1e8;
  font-family: var(--serif);
  font-size: 28px;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.kicker { margin: 0 0 10px; letter-spacing: 0.2em; text-transform: uppercase; font-size: 11px; color: var(--muted); }
h2 { margin: 0; font-family: var(--serif); font-weight: 400; font-size: clamp(36px, 9vw, 64px); line-height: 0.96; letter-spacing: -0.02em; white-space: pre-line; }
.lede, .split p, .letter p { max-width: 34em; color: var(--muted); }
.now, .letter, .watch, .go, .voice, .split > div, .album-head, .story-head { padding: 56px var(--pad); }
.story-head { padding-bottom: 12px; }

#story, #now, #voice, #watch, #go, #who, #path, #about, #platforms { scroll-margin-top: 92px; }
.chap { border-top: 1px solid var(--line); break-inside: avoid; }
.chap-copy { padding: 48px var(--pad) 28px; }
.chap-year {
  margin: 0 0 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--muted);
}
.chap blockquote {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: clamp(26px, 6.4vw, 40px);
  line-height: 1.18;
  font-weight: 400;
}
.chap blockquote:empty { display: none; }
.chap h3 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
}
.chap-copy > p { margin: 0; max-width: 34em; color: var(--muted); }
.chap .orig {
  margin: 0 0 16px;
  max-width: 38em;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.45;
}
.chap figure { margin: 0 var(--pad) 28px; position: relative; overflow: hidden; border-radius: 18px; }
.chap video.host-film { width: 100%; height: 52svh; object-fit: cover; background: #1a1612; }
.chap img {
  width: 100%;
  height: 52svh;
  object-fit: cover;
  background: #1a1612;
}
.chap figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  color: #f6f1e8;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 11px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}
.chap-pair-imgs { display: grid; gap: 10px; padding: 0 var(--pad) 28px; }
.chap-pair-imgs figure { margin: 0; }
.chap-pair-imgs img, .chap-pair-imgs video.host-film { height: 42svh; border-radius: 18px; }

.stats strong { font-size: clamp(34px, 8vw, 56px); letter-spacing: -0.03em; }

.yard-feature { margin: 0 auto; position: relative; max-width: 760px; }
.yard-feature img { width: 100%; height: auto; display: block; }
.yard-feature figcaption {
  position: absolute;
  left: var(--pad);
  bottom: 16px;
  color: #f6f1e8;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 12px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}
.who { padding: 48px var(--pad) 20px; display: grid; gap: 22px; }
.who-list { list-style: none; margin: 18px 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.who-list li { margin: 0; padding: 12px 14px; border: 1px solid var(--line); background: #fffdf8; border-radius: 14px; font-family: var(--serif); font-size: 18px; }
.who-list li:first-child { border-top: 2px solid var(--red); }
.sub-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  min-height: 44px;
  padding: 12px 18px;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
  border-radius: 999px;
}
.sub-btn .ext { width: 12px; height: 12px; margin-left: 2px; }
.sub-btn .ext::before { border-color: currentColor; }
.sub-btn .ext::after { border-color: #f3efe7; }
.namecard {
  display: grid;
  gap: 18px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(157, 28, 43, 0.08), transparent 42px),
    #fffdf8;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 22px 48px rgba(22, 19, 15, 0.07);
}
.namecard-head { display: grid; grid-template-columns: 92px 1fr; gap: 14px; align-items: center; }
.namecard-face {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 18%;
  border: 3px solid #fffdf8;
  box-shadow: 0 0 0 1px var(--line);
}
.namecard h3 { margin: 2px 0 6px; font-family: var(--serif); font-weight: 460; font-size: clamp(26px, 6vw, 32px); letter-spacing: -0.02em; line-height: 1; }
.namecard-kicker { margin: 0 0 4px; letter-spacing: 0.16em; text-transform: uppercase; font-size: 11px; color: var(--red); }
.namecard p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.4; }
.namecard-links { display: grid; gap: 8px; }
.namecard-links a {
  position: relative;
  display: grid;
  gap: 3px;
  min-height: 76px;
  padding: 14px 40px 14px 16px;
  text-decoration: none;
  background: var(--paper);
  border-radius: 16px;
  border: 1px solid var(--line);
}
.namecard-links .card-arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  margin: 0;
  transform: translateY(-50%);
}
.namecard-links small { letter-spacing: 0.16em; text-transform: uppercase; font-size: 11px; color: var(--red); }
.namecard-links strong { font-size: 16px; letter-spacing: -0.02em; overflow-wrap: anywhere; }
.namecard-links em { font-style: normal; color: var(--muted); font-size: 13px; }
.motion-row { display: grid; gap: 10px; padding: 18px var(--pad) 8px; }
.motion-film { width: 100%; height: 38svh; object-fit: cover; border-radius: 18px; background: #1a1612; }
.who, .chap, .namecard { animation: rise 0.6s ease both; }
@keyframes rise { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .who, .chap, .namecard { animation: none; }
  .go-card, .plat-grid a, .films a, .namecard-links a, .sub-btn, .text-link, .map-open, .card-arrow, .ext, .go-arrow { transition: none; }
}

.path { padding: 28px var(--pad) 12px; }
.path-map { margin: 18px 0; }
.path-map img, .path-map video { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; object-position: center 42%; border-radius: 4px; background: #1a1612; }
.stops { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.stops li { margin: 0; padding: 12px 12px 10px; background: #fffdf8; border: 1px solid var(--line); border-radius: 14px; }
.stops b { display: block; font-size: 11px; letter-spacing: 0.12em; color: var(--red); font-weight: 540; min-height: 1.2em; }
.stops span { font-family: var(--serif); font-size: 20px; }

.hold { padding: 48px var(--pad); background: #efe8dc; }
.hold-rule { width: 100%; height: 72px; object-fit: cover; object-position: center; margin: 0 0 22px; }
.hold p { max-width: 38em; }

.map-card { margin-top: 28px; background: #fff; border: 1px solid var(--line); overflow: hidden; border-radius: 18px; }
.map-card iframe { width: 100%; height: 280px; border: 0; filter: grayscale(1) contrast(0.92); }
.map-meta { display: flex; justify-content: space-between; gap: 12px; align-items: center; padding: 12px 14px; flex-wrap: wrap; }
.map-meta > div { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.map-meta strong { font-weight: 540; }
.map-meta span { color: var(--muted); font-size: 13px; }
.map-open {
  flex: none;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fffdf8;
  font-size: 13px;
  font-weight: 540;
  text-decoration: none;
  white-space: nowrap;
}

.split img, .split .host-film { width: 100%; height: 70svh; object-fit: cover; object-position: center 20%; background: #1a1612; }

.cards { display: grid; gap: 10px; margin-top: 28px; }
.cards article { padding: 22px 20px 18px; background: #fffdf8; border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 12px 28px rgba(22, 19, 15, 0.04); }
.cards p { margin: 0; font-family: var(--serif); font-size: 26px; line-height: 1.2; }
.cards span { display: block; margin-top: 14px; letter-spacing: 0.14em; text-transform: uppercase; font-size: 11px; color: var(--muted); }

.letter { background: #efe8dc; }
.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 2px;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  font-weight: 540;
}

.pair { display: grid; gap: 8px; padding: 8px; background: var(--paper-2); }
.pair figure { margin: 0; position: relative; }
.pair img { width: 100%; height: 72svh; object-fit: cover; }
.pair figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  color: #f6f1e8;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 11px;
}

.films { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px; }
.films a { position: relative; display: block; text-decoration: none; border-radius: 16px; border: 1px solid transparent; }
.films img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: 12px; }
.films span { display: block; margin-top: 8px; }
.film-play {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(22, 19, 15, 0.72);
  color: #f6f1e8;
  display: grid;
  place-items: center;
  pointer-events: none;
}
.film-play::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 2px;
  border-style: solid;
  border-width: 6px 0 6px 10px;
  border-color: transparent transparent transparent currentColor;
}

.channel { margin-top: 22px; display: flex; align-items: center; gap: 14px; min-height: 76px; padding: 14px 16px; text-decoration: none; border: 1px solid var(--line); background: #fffdf8; border-radius: 18px; }
.channel img { width: 52px; height: 52px; object-fit: cover; border-radius: 50%; }
.channel em { display: block; color: var(--muted); font-style: normal; font-size: 13px; }
.channel-go { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; font-style: normal; font-size: 13px; letter-spacing: 0.06em; }
.channel-go .ext { width: 13px; height: 13px; }

.go-grid { display: grid; gap: 12px; margin-top: 28px; }
.go-card {
  position: relative;
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr) 28px;
  gap: 14px;
  align-items: center;
  min-height: 132px;
  padding: 12px;
  text-decoration: none;
  color: var(--ink);
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(22, 19, 15, 0.04);
  overflow: hidden;
}
.go-visual {
  width: 108px;
  height: 108px;
  object-fit: cover;
  border-radius: 12px;
  background: var(--paper-2);
}
.go-body { min-width: 0; padding-right: 4px; }
.go-grid small { display: block; letter-spacing: 0.16em; text-transform: uppercase; font-size: 10px; color: var(--muted); }
.go-grid strong { display: block; margin-top: 4px; font-family: var(--serif); font-size: clamp(22px, 5.6vw, 28px); font-weight: 460; line-height: 1.08; letter-spacing: -0.02em; overflow-wrap: anywhere; }
.go-grid strong.go-handle { font-size: clamp(17px, 4.4vw, 24px); letter-spacing: -0.03em; overflow-wrap: normal; }
.go-grid em { display: block; margin-top: 4px; font-style: normal; color: var(--muted); font-size: 14px; line-height: 1.35; }
.go-open {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  color: var(--red);
  font-size: 13px;
  font-weight: 540;
  letter-spacing: 0.04em;
}
.go-arrow {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--paper);
  position: relative;
  flex: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}
.go-arrow::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 9px;
  width: 8px;
  height: 8px;
  border-top: 1.6px solid var(--ink);
  border-right: 1.6px solid var(--ink);
  transform: rotate(45deg);
}
.go-ext::after {
  content: "";
  position: absolute;
  right: 5px;
  top: 5px;
  width: 5px;
  height: 5px;
  border-top: 1.4px solid var(--red);
  border-right: 1.4px solid var(--red);
}
.go-main {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.go-main small, .go-main em { color: rgba(243, 239, 231, 0.68); }
.go-main .go-handle { font-size: clamp(18px, 4.2vw, 22px); font-weight: 400; }
.go-main .go-open, .go-main .go-cta { color: var(--paper); }
.go-cta {
  display: inline-flex;
  align-items: center;
  margin-top: 12px;
  min-height: 36px;
  padding: 8px 14px;
  border: 1px solid rgba(243, 239, 231, 0.4);
  border-radius: 999px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
  font-style: normal;
}
@media (min-width: 860px) {
  .go-main .go-cta { margin-top: 14px; }
}
.go-main .go-arrow { background: transparent; border-color: rgba(243, 239, 231, 0.35); }
.go-main .go-arrow::before { border-color: var(--paper); }
.go-main .go-ext::after { border-color: #f3efe7; }
.go-hold {
  cursor: default;
  background: #efe8dc;
  box-shadow: none;
}
.go-hold strong { color: var(--muted); }
.card-arrow, .ext {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 6px;
  vertical-align: -2px;
  position: relative;
  transition: transform 180ms ease;
}
.card-arrow::before, .ext::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 3px;
  width: 7px;
  height: 7px;
  border-top: 1.6px solid currentColor;
  border-right: 1.6px solid currentColor;
  transform: rotate(45deg);
}
.ext::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 5px;
  height: 5px;
  border-top: 1.4px solid var(--red);
  border-right: 1.4px solid var(--red);
}
.site-foot {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 28px var(--pad) 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}
.foot-brand { display: flex; gap: 10px; align-items: center; }
.foot-brand p, .mail-hold { margin: 0; }
.foot-social { display: flex; gap: 10px; }
.foot-social a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: #fffdf8;
}
.foot-social svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.foot-social a:hover, .foot-social a:focus-visible { background: var(--ink); color: var(--paper); }
.foot-acts { display: flex; flex-wrap: wrap; gap: 12px 18px; align-items: center; }
.coffee {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--red);
  border-radius: 999px;
  background: transparent;
  color: var(--red);
  font: inherit;
  letter-spacing: 0.04em;
  cursor: pointer;
}
.coffee:hover, .coffee:focus-visible { background: var(--red); color: #fffdf8; }
.coffee small { font-size: 11px; letter-spacing: 0; color: inherit; }
.mail-hold { letter-spacing: 0.04em; }

.album-head { padding-top: 28px; padding-bottom: 12px; }
.album-head .lede { max-width: 36em; }
.pile {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 72px;
  grid-auto-flow: dense;
  gap: 4px;
  padding: 0 var(--pad) 48px;
}
.pile figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #1a1612;
}
.pile .mid,
.pile .tall,
.pile .wide,
.pile .big { grid-column: span 3; grid-row: span 3; }
.pile .tall { grid-row: span 4; }
.pile img,
.pile video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #1a1612;
}
.pile video { opacity: 0; transition: opacity 0.35s ease; }
.pile video.is-playing { opacity: 1; }
.pile video::-webkit-media-controls-start-playback-button,
video.host-film::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
}
.pile span {
  position: absolute;
  z-index: 1;
  left: 8px;
  bottom: 8px;
  color: #f6f1e8;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55);
  pointer-events: none;
}

@media (min-width: 860px) {
  :root { --pad: 48px; }
  .menu { display: none; }
  .bar { flex-wrap: nowrap; padding: 14px var(--pad); }
  .langs { display: flex; order: 3; margin: 0 0 0 auto; }
  .bar nav {
    display: flex;
    order: 0;
    flex: 0 1 auto;
    flex-direction: row;
    gap: 16px;
    padding: 0;
    border: 0;
  }
  .bar nav a {
    font-family: var(--sans);
    font-size: 13px;
    letter-spacing: 0.04em;
    color: var(--muted);
    padding: 0;
    border: 0;
  }
  .bar nav a.nav-more { display: none; }
  .bar nav a.on { color: var(--ink); }
  .hero { height: 100svh; min-height: 100svh; }
  .hero-copy { left: 8vw; bottom: 8vh; max-width: 680px; }
  .hero-dots { left: auto; right: 8vw; bottom: calc(8vh + 70px); }
  .hero-photo { object-position: var(--pos-d, center 72%); }
  .stats { grid-template-columns: repeat(3, 1fr); }
  .stats article + article { border-left: 1px solid var(--line); }
  .split { display: grid; grid-template-columns: 1.1fr 0.9fr; }
  .split img { height: 100%; min-height: 640px; }
  .pair { grid-template-columns: 1.1fr 0.9fr; }
  .pair img { height: 78vh; }
  .cards { grid-template-columns: 1fr 1fr; }
  .films { grid-template-columns: repeat(3, 1fr); }
  .films a:nth-child(n+4) { grid-column: span 1; }
  .about, .platforms { max-width: 1180px; margin-left: auto; margin-right: auto; }
  .about-grid, .plat-grid { grid-template-columns: 1fr 1fr 1fr; }
  .site-foot {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
  .foot-social { justify-content: center; }
  .foot-acts { justify-content: flex-end; }
  .go-grid { grid-template-columns: 1.15fr 1fr 1fr; align-items: stretch; }
  .go-card { grid-template-columns: 1fr 28px; grid-template-rows: 132px 1fr; align-items: start; min-height: 0; height: 100%; }
  .go-visual { width: 100%; height: 132px; grid-column: 1 / -1; }
  .go-body { padding: 4px 4px 2px; }
  .go-arrow { align-self: end; margin-bottom: 4px; }
  .go-main { grid-row: span 2; height: 100%; }
  .go-main .go-visual { height: 196px; }
  .go-main .go-body { align-self: end; }
  .pile { grid-template-columns: repeat(12, 1fr); grid-auto-rows: 88px; gap: 6px; }
  .pile .mid,
  .pile .tall,
  .pile .wide,
  .pile .big { grid-column: span 3; grid-row: span 3; }
  .pile .tall { grid-row: span 4; }
  .now, .route, .watch, .go, .voice, .letter, .album-head, .story-head, .who, .path, .hold, .motion-row, .yard-feature { max-width: 1180px; margin-left: auto; margin-right: auto; }
  .yard-feature { max-width: 920px; }
  .who { grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr); align-items: start; gap: 28px; padding-top: 72px; }
  .namecard { padding: 22px; min-width: 0; }
  .namecard-links { grid-template-columns: 1fr 1fr; }
  .namecard-links strong { overflow-wrap: anywhere; }
  .motion-row { grid-template-columns: 1.35fr 0.65fr; }
  .motion-main { height: 46svh; }
  .stops { grid-template-columns: repeat(5, 1fr); }
  .chap { display: grid; grid-template-columns: 0.9fr 1.1fr; align-items: stretch; gap: 8px; padding: 28px 0; }
  .chap:nth-of-type(even) .chap-copy { order: 2; }
  .chap figure { margin: 12px var(--pad) 12px 0; }
  .chap:nth-of-type(even) figure { margin: 12px 0 12px var(--pad); }
  .chap img, .chap video.host-film { height: 100%; min-height: 460px; }
  .chap-pair { grid-template-columns: 0.78fr 1.22fr; }
  .chap-pair-imgs { grid-template-columns: 1fr 1fr; padding: 12px var(--pad) 12px 0; align-content: stretch; }
  .chap:nth-of-type(even) .chap-pair-imgs { padding: 12px 0 12px var(--pad); }
  .chap-pair-imgs img, .chap-pair-imgs video.host-film { height: 100%; min-height: 420px; }
}
