@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Rubik+Dirt&family=Special+Elite&display=swap");

:root {
  --ink: #030303;
  --coal: #090807;
  --panel: rgba(18, 15, 13, 0.86);
  --panel-strong: rgba(8, 7, 6, 0.94);
  --paper: #f2eadc;
  --paper-soft: #cbbfae;
  --muted: #948777;
  --blood: #b81720;
  --blood-hot: #e23a3f;
  --rust: #7d3325;
  --gold: #c9a64f;
  --line: rgba(242, 234, 220, 0.16);
  --line-strong: rgba(242, 234, 220, 0.3);
  --shadow: 0 26px 72px rgba(0, 0, 0, 0.62);
  --display: "Rubik Dirt", "Bebas Neue", Impact, sans-serif;
  --condensed: "Bebas Neue", Impact, sans-serif;
  --typewriter: "Special Elite", Georgia, serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--ink);
  color: var(--paper);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  min-width: 0;
  min-height: 100%;
  margin: 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(184, 23, 32, 0.22), transparent 28rem),
    linear-gradient(180deg, rgba(52, 21, 18, 0.2), transparent 34rem),
    var(--ink);
  color: var(--paper);
  font-family: var(--body);
  letter-spacing: 0;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 39px 39px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.84), transparent 88%);
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--blood-hot);
  outline-offset: 3px;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

button,
input {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 10px 14px;
  background: var(--paper);
  color: var(--ink);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-shell {
  width: 100%;
  min-height: 100vh;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(150px, auto) minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  width: 100%;
  padding: 14px clamp(14px, 4vw, 54px);
  border-bottom: 1px solid var(--line);
  background: rgba(3, 3, 3, 0.88);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-grid;
  gap: 2px;
  text-decoration: none;
  min-width: 0;
}

.brand strong {
  font-family: var(--display);
  font-size: 34px;
  line-height: 0.9;
  letter-spacing: 0;
}

.brand span {
  color: var(--muted);
  font-family: var(--typewriter);
  font-size: 11px;
}

.nav-links {
  display: flex;
  gap: 6px;
  justify-content: center;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: thin;
}

.nav-links a,
.utility-link,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--paper);
  font-family: var(--condensed);
  font-size: 18px;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links a[aria-current="page"],
.utility-link,
.button.primary {
  border-color: rgba(226, 58, 63, 0.72);
  background: linear-gradient(180deg, rgba(184, 23, 32, 0.92), rgba(84, 9, 12, 0.94));
  box-shadow: 0 16px 38px rgba(184, 23, 32, 0.22);
}

.nav-links a:hover,
.utility-link:hover,
.button:hover {
  border-color: var(--line-strong);
  transform: translateY(-1px);
}

.site-main {
  min-width: 0;
}

.container {
  width: min(100% - 28px, 1180px);
  margin-inline: auto;
}

.hero {
  position: relative;
  min-height: clamp(500px, 70svh, 760px);
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(3, 3, 3, 0.92) 0%, rgba(3, 3, 3, 0.72) 34%, rgba(3, 3, 3, 0.24) 68%, rgba(3, 3, 3, 0.74) 100%),
    var(--hero-image, linear-gradient(135deg, #190809, #030303));
  background-position: center center, var(--hero-position, center center);
  background-size: cover, var(--hero-size, cover);
  background-repeat: no-repeat;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  content: "";
  background: linear-gradient(180deg, transparent, var(--ink));
  pointer-events: none;
}

.hero.hero-contain {
  background-position: center, var(--hero-position, center center);
  background-size: cover, contain;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 28px, 1180px);
  margin-inline: auto;
  padding: clamp(92px, 13vh, 140px) 0 clamp(54px, 9vh, 90px);
}

.hero-copy {
  width: min(100%, 760px);
}

.hero-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 16px;
}

.hero-social-links a,
.social-links a,
.footer-actions > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 13px;
  border: 1px solid rgba(226, 58, 63, 0.58);
  border-radius: 6px;
  background: rgba(3, 3, 3, 0.72);
  color: var(--paper);
  font-family: var(--condensed);
  font-size: 18px;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-social-links a:hover,
.social-links a:hover,
.footer-actions > a:hover {
  border-color: var(--blood-hot);
  background: rgba(184, 23, 32, 0.72);
  transform: translateY(-1px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: var(--blood-hot);
  font-family: var(--typewriter);
  font-size: 13px;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 1px;
  content: "";
  background: var(--blood-hot);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--paper);
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

h1 {
  max-width: 14ch;
  font-size: 88px;
  line-height: 0.86;
  text-wrap: balance;
}

h2 {
  font-size: 70px;
  line-height: 0.9;
  text-wrap: balance;
}

h3 {
  font-size: 38px;
  line-height: 0.95;
  text-wrap: balance;
}

p {
  margin: 0;
}

.lead,
.section-copy,
.body-copy {
  max-width: 720px;
  color: var(--paper-soft);
  font-family: var(--typewriter);
  font-size: 20px;
  line-height: 1.55;
}

.lead + .lead,
.section-copy + .section-copy,
.body-copy + .body-copy {
  margin-top: 12px;
}

.hero .lead {
  margin-top: 18px;
}

.editorial-hero {
  min-height: auto;
}

.editorial-hero .hero-inner {
  padding-top: clamp(54px, 7vh, 78px);
  padding-bottom: clamp(48px, 6vh, 68px);
}

.editorial-hero h1 {
  font-size: 72px;
}

.editorial-hero .lead {
  font-size: 18px;
  line-height: 1.45;
}

.small-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.thread-sequence-nav {
  display: grid;
  grid-template-columns: 46px minmax(126px, auto) 46px;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 12px;
}

.thread-sequence-arrow {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(226, 58, 63, 0.68);
  border-radius: 6px;
  background: rgba(3, 3, 3, 0.78);
  color: var(--paper);
  text-decoration: none;
  transition: border-color 150ms ease, background-color 150ms ease, transform 150ms ease;
}

.thread-sequence-arrow span {
  font-family: Arial, sans-serif;
  font-size: 30px;
  line-height: 1;
}

.thread-sequence-arrow:hover,
.thread-sequence-arrow:focus-visible {
  border-color: var(--blood-hot);
  background: rgba(184, 23, 32, 0.78);
  transform: translateY(-1px);
}

.thread-sequence-position {
  display: grid;
  place-items: center;
  min-height: 46px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(3, 3, 3, 0.78);
  color: var(--paper-soft);
  font-family: var(--typewriter);
  font-size: 12px;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.thread-sequence-section {
  border-top: 1px solid var(--line);
}

.thread-sequence-nav.is-footer {
  margin: 0 auto;
}

.button {
  min-width: 132px;
  cursor: pointer;
}

.button[disabled],
.button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.58;
  transform: none;
}

.section {
  padding: clamp(46px, 7vw, 92px) 0;
}

.section.compact {
  padding-top: clamp(28px, 4vw, 54px);
}

.hero + .section.compact {
  padding-top: 18px;
}

.section-header {
  display: grid;
  gap: 12px;
  margin-bottom: clamp(18px, 4vw, 34px);
}

.grid {
  display: grid;
  gap: 14px;
}

.entry-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 190px), 1fr));
}

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

.card-grid,
.product-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
}

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

.five-grid h3,
.thread-grid h3 {
  font-size: 34px;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(18px, 4vw, 34px);
  align-items: stretch;
}

.two-column.flip {
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
}

.evidence-card,
.thread-card,
.product-card,
.tier-card,
.panel {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(184, 23, 32, 0.16), transparent 38%),
    linear-gradient(180deg, rgba(20, 17, 15, 0.92), rgba(5, 5, 4, 0.9));
  box-shadow: var(--shadow);
}

.evidence-card,
.thread-card,
.tier-card,
.panel {
  padding: clamp(18px, 3vw, 28px);
}

.card-label,
.card-number,
.status,
.price {
  color: var(--blood-hot);
  font-family: var(--condensed);
  font-size: 18px;
  line-height: 1;
  text-transform: uppercase;
}

.card-number {
  color: var(--gold);
}

.draft-placeholder {
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  margin-top: 12px;
  padding: 7px 10px;
  border: 1px dashed rgba(242, 234, 220, 0.28);
  border-radius: 6px;
  background: rgba(242, 234, 220, 0.045);
  color: var(--paper-soft);
  font-family: var(--typewriter);
  font-size: 15px;
  line-height: 1.35;
}

.entry-card {
  min-height: 170px;
  display: grid;
  align-content: space-between;
}

.featured-card {
  grid-column: span 2;
}

.question-copy {
  margin: 12px 0 0;
  color: var(--gold);
  font-family: var(--typewriter);
  font-size: 15px;
  line-height: 1.45;
}

.product-tags {
  margin-top: 10px;
}

.pass-history-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
}

.pass-history-card {
  display: grid;
  align-content: start;
  gap: 14px;
}

.pass-history-media {
  aspect-ratio: 3 / 5;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #000;
}

.pass-history-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.preview-section {
  align-items: center;
}

.book-overview-layout,
.documentary-overview-layout {
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  align-items: start;
}

.book-overview-layout .image-panel,
.documentary-overview-layout .image-panel {
  margin: 0;
}

.book-long-copy,
.book-connection-copy,
.documentary-long-copy {
  display: grid;
  gap: 14px;
}

.book-connection-copy.with-media {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.52fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: stretch;
}

.book-connection-text {
  display: grid;
  gap: 14px;
  align-content: start;
}

.book-connection-media {
  min-height: clamp(420px, 38vw, 680px);
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #000;
}

.book-connection-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.book-connection-grid {
  grid-template-columns: 1fr;
}

.book-closing-statement,
.documentary-closing-statement {
  color: var(--paper);
}

body[data-page="soundtrack"] .hero {
  background:
    linear-gradient(90deg, rgba(3, 3, 3, 0.96) 0%, rgba(3, 3, 3, 0.82) 35%, rgba(3, 3, 3, 0.16) 70%, rgba(3, 3, 3, 0.28) 100%),
    var(--hero-image, #030303);
  background-position: center, var(--hero-position, right center);
  background-size: cover, var(--hero-size, auto 100%);
}

body[data-page="soundtrack"] .hero h1 {
  max-width: 10ch;
}

.soundtrack-origin-layout,
.soundtrack-collaboration-layout,
.soundtrack-final-layout {
  display: grid;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.soundtrack-origin-layout {
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
}

.soundtrack-cover {
  position: sticky;
  top: 22px;
  aspect-ratio: 1;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(242, 234, 220, 0.2);
  border-radius: 6px;
  background: #000;
  box-shadow: var(--shadow);
}

.soundtrack-cover img,
.soundtrack-promo-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.soundtrack-prose,
.soundtrack-join,
.soundtrack-spotify-copy {
  display: grid;
  gap: 14px;
}

.soundtrack-collaboration-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(8, 89, 102, 0.12), transparent 48%),
    rgba(18, 8, 8, 0.78);
}

.soundtrack-collaboration-layout {
  grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1.26fr);
}

.soundtrack-collaboration-heading {
  position: sticky;
  top: 22px;
}

.soundtrack-final-layout {
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1.22fr);
}

.soundtrack-join {
  align-content: start;
}

.soundtrack-spotify {
  display: grid;
  gap: 22px;
}

.soundtrack-promo-card {
  display: block;
  aspect-ratio: 1200 / 630;
  overflow: hidden;
  border: 1px solid rgba(29, 185, 84, 0.48);
  border-radius: 6px;
  background: #121212;
  box-shadow: var(--shadow);
  transition: border-color 160ms ease, transform 160ms ease;
}

.soundtrack-promo-card:hover {
  border-color: #1ed760;
  transform: translateY(-2px);
}

.soundtrack-spotify-copy {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}

.soundtrack-spotify-copy .eyebrow,
.soundtrack-spotify-copy h3,
.soundtrack-spotify-copy .body-copy {
  grid-column: 1;
}

.soundtrack-spotify-copy .cta-row {
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: end;
  margin-top: 0;
}

.image-panel {
  position: relative;
  min-height: clamp(280px, 44vw, 540px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(184, 23, 32, 0.18), transparent),
    rgba(11, 10, 9, 0.92);
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: var(--image-position, center center);
}

.image-panel figcaption {
  position: absolute;
  inset: auto 12px 12px;
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(3, 3, 3, 0.72);
  color: var(--paper-soft);
  font-family: var(--typewriter);
  font-size: 12px;
}

.image-panel.contain img {
  object-fit: contain;
  padding: clamp(16px, 3vw, 34px);
}

.thread-map-frame {
  position: relative;
  aspect-ratio: 1357 / 754;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #050505;
  box-shadow: var(--shadow);
}

.thread-map-frame > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.thread-map-photo-overlays {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.thread-map-photo {
  position: absolute;
  left: var(--photo-left);
  top: var(--photo-top);
  width: var(--photo-width);
  height: var(--photo-height);
  border: 1px solid rgba(24, 18, 14, 0.86);
  border-radius: 2px;
  object-fit: cover;
  object-position: var(--photo-position, center center);
  filter: saturate(0.78) sepia(0.12) contrast(1.08) brightness(0.86);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.62), inset 0 0 0 1px rgba(242, 234, 220, 0.12);
}

.thread-map-hotspots {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.thread-map-hotspot {
  position: absolute;
  left: var(--hotspot-left);
  top: var(--hotspot-top);
  width: var(--hotspot-width);
  height: var(--hotspot-height);
  border: 1px solid transparent;
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
  transition: border-color 150ms ease, background-color 150ms ease, box-shadow 150ms ease;
}

.thread-map-hotspot:hover,
.thread-map-hotspot:focus-visible {
  border-color: rgba(226, 58, 63, 0.95);
  background: rgba(184, 23, 32, 0.18);
  box-shadow: inset 0 0 28px rgba(184, 23, 32, 0.28), 0 0 0 2px rgba(3, 3, 3, 0.82);
}

.thread-map-hotspot:focus-visible {
  outline-offset: -4px;
}

.image-slot {
  min-height: inherit;
  display: grid;
  place-items: center;
  padding: 18px;
  color: var(--muted);
  font-family: var(--condensed);
  font-size: 64px;
  line-height: 0.9;
  text-align: center;
  text-transform: uppercase;
}

.featured-drop {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 22px;
  align-items: stretch;
}

.media-embed {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #000;
}

.media-embed iframe {
  display: block;
  width: 100%;
  border: 0;
}

.media-embed-youtube {
  aspect-ratio: 16 / 9;
}

.media-embed-youtube iframe {
  height: 100%;
}

.media-embed-instagram {
  position: relative;
  width: min(100%, 540px);
  margin-inline: auto;
  overflow: hidden;
  border: 0;
  background: transparent;
}

.media-embed-instagram iframe {
  width: 100%;
  height: clamp(560px, 65vw, 760px);
  border-radius: 6px;
  background: #fff;
}

.community-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
}

.community-card-media {
  aspect-ratio: 16 / 9;
  margin-bottom: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #000;
}

.community-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.entry-card:has(.media-embed) {
  grid-column: span 2;
}

.entry-card .media-embed {
  margin-bottom: 16px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.tag {
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--paper-soft);
  font-family: var(--typewriter);
  font-size: 12px;
}

.store-notice {
  margin-top: -20px;
}

.checkout-note {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  gap: 16px;
  align-items: end;
}

.checkout-email {
  display: grid;
  gap: 8px;
}

.checkout-email span {
  color: var(--paper);
  font-family: var(--condensed);
  font-size: 18px;
  text-transform: uppercase;
}

.checkout-email input,
.pass-form input,
.lookup-form input {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.64);
  color: var(--paper);
}

.checkout-status {
  min-height: 22px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.checkout-status[data-tone="ready"] {
  color: #9bd894;
}

.checkout-status[data-tone="error"] {
  color: #ffb8b8;
}

.product-card {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 14px;
  padding: 14px;
}

.product-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-media.is-contain {
  background: #050505;
}

.product-media.is-contain img {
  object-fit: contain;
  padding: 10px;
}

.product-media .image-slot {
  width: 100%;
  height: 100%;
  min-height: 100%;
  font-size: 48px;
}

.product-title {
  margin-top: 8px;
  font-family: var(--display);
  font-size: 42px;
  line-height: 0.9;
  text-transform: uppercase;
  white-space: pre-line;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: balance;
}

.product-grid-featured {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 56px;
}

.product-card.is-featured {
  border-color: rgba(198, 151, 50, 0.58);
  background: linear-gradient(180deg, rgba(73, 20, 20, 0.42), rgba(7, 7, 7, 0.98) 48%);
}

.product-card.is-featured .product-media {
  aspect-ratio: 16 / 11;
  background: #f2f2f0;
}

.product-card.is-featured .product-media.is-contain img {
  padding: 0;
}

.product-card.is-featured .product-title {
  max-width: 18ch;
}

.store-catalog-header {
  padding-top: 8px;
  margin-bottom: 24px;
  border-top: 1px solid var(--line);
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.price {
  color: var(--gold);
  font-size: 24px;
}

.tier-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
}

.tier-card {
  display: grid;
  gap: 14px;
}

.tier-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #050505;
}

.tier-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tier-card h3 {
  font-size: 44px;
}

.benefit-list {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 18px;
  color: var(--paper-soft);
  font-family: var(--typewriter);
  font-size: 13px;
  line-height: 1.45;
}

.pass-artwork-slot {
  min-height: 420px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #050505;
  box-shadow: var(--shadow);
}

.pass-artwork-slot img {
  width: 100%;
  height: 100%;
  max-height: 680px;
  object-fit: contain;
}

.pass-artwork-slot .image-slot {
  min-height: 420px;
}

.sample-wallet,
.sample-card {
  display: grid;
  gap: 14px;
}

.sample-card-art {
  width: 100%;
  height: min(60vh, 560px);
  min-height: 320px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #050505;
}

.identity-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.48);
}

.identity-strip span {
  color: var(--muted);
  font-family: var(--typewriter);
  font-size: 12px;
}

.pass-form {
  display: grid;
  gap: 12px;
}

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

.field {
  display: grid;
  gap: 7px;
}

.field span {
  color: var(--paper);
  font-family: var(--condensed);
  font-size: 18px;
  text-transform: uppercase;
}

.notice {
  display: none;
  margin-top: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--paper-soft);
}

.notice.active {
  display: block;
}

.notice.error {
  border-color: rgba(226, 58, 63, 0.7);
  color: #ffb8b8;
}

.state-message {
  min-height: 120px;
  display: grid;
  place-items: center;
  padding: 18px;
  border: 1px dashed var(--line-strong);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--paper-soft);
  font-family: var(--typewriter);
  font-size: 15px;
  line-height: 1.45;
  text-align: center;
}

.error-state {
  border-color: rgba(226, 58, 63, 0.7);
  color: #ffb8b8;
}

.pass-card-public {
  display: grid;
  gap: 18px;
}

.pass-id {
  font-family: var(--display);
  font-size: 72px;
  line-height: 0.85;
  color: var(--paper);
  overflow-wrap: anywhere;
}

.meta-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.meta-list div {
  min-width: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.34);
}

.meta-list span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.meta-list strong {
  display: block;
  color: var(--paper);
  overflow-wrap: anywhere;
}

.qr-box {
  display: grid;
  gap: 10px;
  justify-items: start;
}

.qr-box img {
  width: 164px;
  height: 164px;
  padding: 8px;
  border-radius: 6px;
  background: var(--paper);
}

.board-layout {
  align-items: start;
}

.cross-placeholder {
  border-style: dashed;
  background:
    linear-gradient(135deg, rgba(201, 166, 79, 0.1), transparent),
    rgba(9, 8, 7, 0.82);
}

.site-footer {
  padding: 46px 0 88px;
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: 24px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-content: start;
}

.footer-actions .social-links {
  display: contents;
}

.disclaimer {
  margin-top: 20px;
  padding: 14px;
  border-left: 3px solid var(--blood);
  background: rgba(255, 255, 255, 0.035);
  color: var(--paper-soft);
  font-size: 14px;
  line-height: 1.45;
}

.mobile-bottom-nav {
  display: none;
}

@media (max-width: 1080px) {
  .brand strong {
    font-size: 30px;
  }

  h1 {
    font-size: 72px;
  }

  h2 {
    font-size: 58px;
  }

  h3 {
    font-size: 34px;
  }

  .lead,
  .section-copy,
  .body-copy {
    font-size: 18px;
  }

  .editorial-hero h1 {
    font-size: 64px;
  }

  .site-nav {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    grid-column: 1 / -1;
    justify-content: start;
    overflow-x: auto;
    padding-bottom: 3px;
  }

  .two-column,
  .two-column.flip,
  .featured-drop,
  .checkout-note,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .book-connection-copy.with-media {
    grid-template-columns: 1fr;
  }

  .soundtrack-origin-layout,
  .soundtrack-collaboration-layout,
  .soundtrack-final-layout {
    grid-template-columns: 1fr;
  }

  .soundtrack-cover {
    position: static;
    width: min(100%, 660px);
  }

  .soundtrack-collaboration-heading {
    position: static;
  }

  .book-connection-media {
    min-height: 520px;
  }

  .featured-card {
    grid-column: span 1;
  }

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

@media (max-width: 760px) {
  .product-grid-featured {
    grid-template-columns: 1fr;
    margin-bottom: 40px;
  }

  .product-card.is-featured .product-media {
    aspect-ratio: 4 / 5;
  }
  .site-nav {
    position: relative;
    padding: 12px 14px;
  }

  .brand span {
    display: none;
  }

  .nav-links {
    display: none;
  }

  .utility-link {
    min-width: auto;
  }

  .hero {
    min-height: auto;
    align-items: start;
    background:
      linear-gradient(180deg, rgba(3, 3, 3, 0.18) 0%, rgba(3, 3, 3, 0.72) 48%, rgba(3, 3, 3, 0.98) 100%),
      var(--hero-image, linear-gradient(135deg, #190809, #030303));
    background-position: center center, var(--hero-mobile-position, center top);
    background-size: cover, var(--hero-mobile-size, var(--hero-size, cover));
  }

  .hero.hero-contain {
    background-position: center, var(--hero-mobile-position, center top);
    background-size: cover, contain;
  }

  body[data-page="soundtrack"] .hero {
    min-height: 620px;
    background:
      linear-gradient(180deg, rgba(3, 3, 3, 0.08) 0%, rgba(3, 3, 3, 0.42) 42%, rgba(3, 3, 3, 0.98) 82%),
      var(--hero-image, #030303);
    background-position: center, var(--hero-mobile-position, center top);
    background-size: cover, var(--hero-mobile-size, cover);
  }

  body[data-page="soundtrack"] .hero-inner {
    align-self: end;
    padding-top: 300px;
  }

  body[data-page="soundtrack"] .hero h1 {
    font-size: 48px;
  }

  .hero-inner {
    width: min(100% - 24px, 640px);
    padding: 128px 0 42px;
  }

  .editorial-hero .hero-inner {
    padding: 72px 0 42px;
  }

  .editorial-hero h1 {
    font-size: 44px;
  }

  .editorial-hero .lead {
    font-size: 15px;
  }

  h1 {
    max-width: 12ch;
    font-size: 56px;
  }

  body[data-page="checkout-success"] h1 {
    max-width: none;
    font-size: 44px;
    overflow-wrap: normal;
    text-wrap: wrap;
  }

  h2 {
    font-size: 48px;
  }

  body[data-page="checkout-success"] h2 {
    font-size: 38px;
    overflow-wrap: normal;
    text-wrap: wrap;
  }

  .lead,
  .section-copy,
  .body-copy {
    font-size: 16px;
  }

  .cta-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .soundtrack-spotify-copy {
    grid-template-columns: 1fr;
  }

  .soundtrack-spotify-copy .cta-row {
    grid-column: 1;
    grid-row: auto;
    margin-top: 8px;
  }

  .soundtrack-origin-section,
  .soundtrack-collaboration-band,
  .soundtrack-final-section {
    padding-block: 54px;
  }

  .thread-sequence-nav {
    grid-template-columns: 48px minmax(112px, 1fr) 48px;
    width: min(100%, 280px);
    margin-top: 14px;
  }

  .thread-sequence-arrow {
    width: 48px;
    height: 48px;
  }

  .button {
    width: 100%;
  }

  .form-grid,
  .meta-list {
    grid-template-columns: 1fr;
  }

  .image-panel {
    min-height: 260px;
  }

  .image-panel img {
    object-position: var(--image-mobile-position, var(--image-position, center center));
  }

  .product-title {
    font-size: 38px;
  }

  .five-grid,
  .thread-grid {
    grid-template-columns: 1fr;
  }

  .entry-card:has(.media-embed) {
    grid-column: span 1;
  }

  .mobile-bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    grid-auto-rows: minmax(44px, auto);
    padding-bottom: env(safe-area-inset-bottom);
    border-top: 1px solid var(--line);
    background: rgba(3, 3, 3, 0.94);
    backdrop-filter: blur(16px);
  }

  .mobile-bottom-nav a {
    display: grid;
    place-items: center;
    width: auto;
    min-width: 0;
    min-height: 38px;
    padding: 7px 4px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    color: var(--paper-soft);
    font-family: var(--condensed);
    font-size: 11px;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    white-space: normal;
  }

  .site-shell {
    padding-bottom: calc(96px + env(safe-area-inset-bottom));
  }

  .mobile-bottom-nav a[aria-current="page"] {
    color: var(--paper);
    background: rgba(184, 23, 32, 0.24);
  }
}

@media (min-width: 1500px) {
  .container,
  .hero-inner {
    width: min(100% - 72px, 1320px);
  }
}
