/* ============================================================
   GOONBATE™ — experimental test build
   thesis: the site IS the packaging — a used tub of it. paper
   spec-sheet + ink rules + goonbate red, viewed through a screen
   with grease, hairs and stains on it. the filth is authored:
   every smear is hand-placed, nothing is random.
   ============================================================ */

@font-face {
  font-family: 'GB Display';
  src: url('../fonts/anton-400.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'GB Mono';
  src: url('../fonts/plexmono-400.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'GB Mono';
  src: url('../fonts/plexmono-500.woff2') format('woff2');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: 'GB Mono';
  src: url('../fonts/plexmono-italic-400.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

:root {
  /* palette — lifted off the tub: label bone, ink, lid red, print blue */
  --paper: #ece7dd;
  --paper-hi: #f6f3ec;
  --ink: #16130f;
  --ink-soft: rgba(22, 19, 15, 0.62);
  --red: #e01309;
  --red-deep: #a80d06;
  --yellow: #ffe600;
  --blue: #1a4fae;
  --rule: rgba(22, 19, 15, 0.85);

  --display: 'GB Display', 'Arial Narrow', 'Helvetica Neue', sans-serif;
  --mono: 'GB Mono', 'SF Mono', Menlo, monospace;
  --body: 'Helvetica Neue', Helvetica, Arial, sans-serif;

  /* frame margin — one source of truth, like the label margins */
  --frame: clamp(1rem, 3vw, 2.75rem);

  /* the house blur, carried over from the promo material — a printed
     softness on display type only, never on reading text */
  --blur-display: 0.4px;
  --blur-fine: 0.2px;

  --ease-snap: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 160ms;
  --dur-slow: 700ms;

  /* the one permitted radius: the label badge geometry */
  --radius-badge: 1.1em;
}

::selection { background: var(--red); color: var(--paper); }

/* ============ preloader — shake before use ============ */
html.preloading { overflow: hidden; }

.preloader {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 500ms var(--ease-snap);
}
.preloader--done { opacity: 0; pointer-events: none; }

.pre-wrap {
  position: relative;
  width: min(46vw, 250px);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pre-bottle {
  height: 62%;
  width: auto;
  filter: drop-shadow(0 6px 10px rgba(22, 19, 15, 0.22));
}

.pre-ring {
  position: absolute;
  inset: 0;
  color: var(--red);
  filter: blur(var(--blur-fine));
  animation: preSpin 1.1s linear infinite;
}
@keyframes preSpin {
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .pre-ring { animation: none; }
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }
html, body { overflow-x: clip; }
html.gate-open { overflow: hidden; }

body {
  background:
    radial-gradient(42% 30% at 78% 12%, rgba(148, 118, 52, 0.05), transparent 70%),
    radial-gradient(30% 22% at 12% 58%, rgba(120, 92, 40, 0.06), transparent 70%),
    radial-gradient(26% 18% at 60% 86%, rgba(96, 76, 34, 0.05), transparent 70%),
    var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

/* print grain over everything — one fixed layer, multiply, whisper-level */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  opacity: 0.07;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)'/%3E%3C/svg%3E");
}

.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;
}

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

a { color: inherit; }

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

/* ============ the scrawl mark (logo as mask, recolorable) ============ */
.site-brand-mark,
.hero-scrawl,
.footer-mark {
  display: block;
  -webkit-mask: url('../images/logo.png') no-repeat center / contain;
  mask: url('../images/logo.png') no-repeat center / contain;
  background: var(--ink);
}

/* ============ age gate — the seal on the tub ============ */
html.age-ok .age-gate { display: none; }

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--frame) * 0.75);
  transition: opacity 420ms var(--ease-snap);
}
html.age-leaving .age-gate { opacity: 0; }

.age-gate-frame {
  width: 100%;
  height: 100%;
  border: 1px solid var(--rule);
  outline: 1px solid var(--rule);
  outline-offset: 5px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.25rem, 4vw, 3.5rem);
}

.age-gate-stamp {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
}

.age-gate-title {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(1.9rem, 6.4vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: 0.005em;
  max-width: 18ch;
  filter: blur(var(--blur-display));
}

.age-gate-actions {
  display: flex;
  align-items: flex-end;
  gap: clamp(1.5rem, 5vw, 4rem);
}

.age-gate-yes {
  font-family: var(--display);
  font-size: clamp(5rem, 17vw, 13rem);
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--red);
  border: none;
  border-radius: 0.22em;
  padding: 0.05em 0.42em 0.14em;
  cursor: pointer;
  filter: blur(var(--blur-fine));
  transition: background var(--dur-fast) ease, transform var(--dur-fast) var(--ease-snap);
}
.age-gate-yes:hover { background: var(--ink); }
.age-gate-yes:active { transform: scale(0.97); }

.age-gate-no {
  font-family: var(--mono);
  font-size: 13px;
  background: none;
  border: none;
  color: var(--ink-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  padding: 0.5rem 0;
}
.age-gate-no:hover { color: var(--red); }

.age-gate-fine {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
}

/* ============ ticker — the offer strip ============ */
.ticker {
  background: var(--red);
  color: var(--paper);
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: tickerMove 24s linear infinite;
}
.tk {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 7px 0;
}
.tk b { font-weight: 500; background: var(--yellow); color: var(--ink); padding: 2px 6px; }
.tk-cta { color: var(--paper); text-decoration: underline; text-underline-offset: 3px; }
.tk-cta:hover { background: var(--paper); color: var(--red); text-decoration: none; }

@keyframes tickerMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ header ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 var(--frame);
  height: 56px;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}

.site-brand { flex: none; }
.site-brand-mark {
  width: 118px;
  aspect-ratio: 1715 / 510;
  transition: background var(--dur-fast) ease;
}
.site-brand:hover .site-brand-mark { background: var(--red); }

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.25rem, 1.5vw, 1rem);
}

.nav-link {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-decoration: none;
  padding: 5px 8px;
  transition: background var(--dur-fast) ease, color var(--dur-fast) ease;
}
.nav-link:hover { background: var(--ink); color: var(--paper); }

.nav-cta {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: var(--ink);
  background: var(--yellow);
  border-radius: var(--radius-badge);
  padding: 7px 14px 8px;
  transition: background var(--dur-fast) ease, color var(--dur-fast) ease;
}
.nav-cta:hover { background: var(--red); color: var(--paper); }

/* ============ hero — packshot plate + editorial stack ============ */
.hero {
  position: relative;
  padding: clamp(1.25rem, 3vw, 3rem) var(--frame) clamp(3rem, 6vh, 4.5rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  align-items: center;
  gap: 0;
}

.hero-left {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3.5vh, 3rem);
  padding-right: 0;
}

.hero-title {
  display: flex;
  flex-direction: column;
  gap: clamp(0.9rem, 2.5vh, 1.8rem);
  font-weight: 400;
}

/* the scrawl deliberately trespasses onto the black plate */
.hero-scrawl {
  width: calc(100% + clamp(3rem, 9vw, 9rem));
  aspect-ratio: 1715 / 510;
  background: var(--red);
  transform: rotate(-3deg);
  filter: drop-shadow(0 0 0.6px rgba(224, 19, 9, 0.6));
  /* the copy lives in the aria-label; the pixels come from the mask */
  font-size: 0;
  color: transparent;
}

.hero-cta-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
/* someone already pressed this with a greasy thumb */
.hero-cta-row::after {
  content: '';
  position: absolute;
  left: 3rem;
  top: -2.2rem;
  width: 78px;
  height: 99px;
  background: url('../images/print.svg') no-repeat center / contain;
  opacity: 0.4;
  transform: rotate(-28deg);
  filter: blur(0.4px);
  pointer-events: none;
}

.btn-label {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--ink);
  background: var(--yellow);
  border-radius: var(--radius-badge);
  padding: 0.5em 1em 0.62em;
  transition: background var(--dur-fast) ease, color var(--dur-fast) ease, transform var(--dur-fast) var(--ease-snap);
}
.btn-label:hover { background: var(--red); color: var(--paper); }
.btn-label:active { transform: scale(0.97); }

.hero-fine {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  max-width: 16ch;
}

/* the product sits ON the page — no photo box, just the object */
.hero-plate {
  position: relative;
  height: clamp(420px, 82vh, 880px);
}

.plate-stamp {
  position: absolute;
  z-index: 3;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  pointer-events: none;
}
.plate-stamp--bl { bottom: 12px; left: 14px; }
.plate-stamp--br { bottom: 12px; right: 14px; text-align: right; color: var(--red); }

.stage {
  position: absolute;
  inset: 0;
  z-index: 1;
  cursor: grab;
}
.stage canvas {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  touch-action: pan-y;
}
.stage canvas.dragging { cursor: grabbing; }

.stage-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 600ms ease;
}
.stage.live .stage-poster { opacity: 0; }

/* the knocked-over bottle, dumped on the paper next to the pitch */
.bottle-flat {
  display: block;
  width: min(100%, 370px);
  margin: 2rem 0 0 -0.75rem;
  transform: rotate(-2deg);
  pointer-events: none;
}

.scrollcue {
  position: absolute;
  left: var(--frame);
  bottom: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 4px 0;
  transition: opacity 300ms ease;
}
.scrollcue:hover { color: var(--red); }
.scrollcue--gone { opacity: 0; pointer-events: none; }
.scrollcue-arr {
  display: inline-block;
  animation: cueBob 1.6s ease-in-out infinite;
}
@keyframes cueBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

/* highlighter swipe — the label yellow */
mark {
  background: linear-gradient(100deg, transparent 0.5%, rgba(255, 230, 0, 0.62) 3%, rgba(255, 230, 0, 0.55) 95%, transparent 99%);
  color: inherit;
  padding: 0.05em 0.2em;
  margin: 0 -0.05em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

/* underlined with a pube */
.u-pube { position: relative; white-space: normal; }
.u-pube::after {
  content: '';
  position: absolute;
  left: -0.2em;
  right: -0.3em;
  bottom: -0.55em;
  height: 0.75em;
  background: url('../images/pube-line.svg') no-repeat center / 100% 100%;
  pointer-events: none;
}

/* ============ section chrome ============ */
.section {
  border-top: 1px solid var(--rule);
  padding: 0 var(--frame) clamp(3rem, 8vh, 6rem);
}

.section-head {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: clamp(1.5rem, 4vh, 3rem) 0 clamp(1.25rem, 3vh, 2.25rem);
}

.section-num {
  font-family: var(--mono);
  font-size: clamp(0.8rem, 1.4vw, 1rem);
  font-weight: 500;
  color: var(--red);
  letter-spacing: 0.08em;
}

.section-title {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(2.6rem, 7.5vw, 7rem);
  line-height: 0.95;
  letter-spacing: 0.005em;
  color: var(--red);
  filter: blur(var(--blur-display));
}

.section-count {
  font-family: var(--mono);
  font-size: clamp(0.8rem, 1.4vw, 1rem);
  color: var(--ink-soft);
  margin-left: auto;
}

/* mask reveal for titles — once, on entry */
.reveal {
  clip-path: inset(0 0 100% 0);
  transform: translateY(0.18em);
  transition: clip-path var(--dur-slow) var(--ease-snap), transform var(--dur-slow) var(--ease-snap);
}
.reveal.in {
  clip-path: inset(0 0 0 0);
  transform: translateY(0);
}

/* ============ about ============ */
.about { position: relative; }
/* the tub was stood on this page — grease ring left behind */
.about::before {
  content: '';
  position: absolute;
  left: 24%;
  top: 11rem;
  width: clamp(220px, 22vw, 340px);
  aspect-ratio: 1 / 0.92;
  border-radius: 50%;
  border: 7px solid rgba(122, 96, 44, 0.13);
  border-top-width: 5px;
  filter: blur(1.4px);
  transform: rotate(-4deg);
  pointer-events: none;
}
.about-body {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 3.5fr) minmax(0, 8.5fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 38ch;
  position: sticky;
  top: calc(56px + 2rem);
}
.about-text p { font-size: clamp(0.95rem, 1.3vw, 1.1rem); }
.about-text p + p { border-top: 1px solid rgba(22, 19, 15, 0.25); padding-top: 1.25rem; }

.btn-outline {
  align-self: flex-start;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--rule);
  border-radius: var(--radius-badge);
  padding: 9px 16px 10px;
  margin-top: 0.5rem;
  transition: background var(--dur-fast) ease, color var(--dur-fast) ease, border-color var(--dur-fast) ease;
}
.btn-outline { background: var(--yellow); border-color: var(--rule); }
.btn-outline:hover { background: var(--red); border-color: var(--red); color: var(--paper); }

/* contact sheet — three shots pinned at odd heights, printed mono until touched */
.about-shots {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 2.5rem);
}

.shot {
  position: relative;
  border: 1px solid var(--rule);
  background: var(--paper-hi);
  padding: 10px 10px 8px;
  align-self: start;
}
.shot--a { grid-column: 1 / -1; transform: rotate(-0.4deg); }
.shot--b { transform: rotate(0.6deg); }
.shot--c { transform: rotate(-0.5deg) translateY(1rem); }

.shot img { width: 100%; }

.shot-num {
  position: absolute;
  top: -0.7rem;
  left: -0.5rem;
  z-index: 2;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--paper);
  background: var(--red);
  padding: 3px 7px;
}

.shot figcaption {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  padding-top: 8px;
  line-height: 1.5;
}

/* ============ categories marquee ============ */
.band--categories {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--paper-hi);
  overflow: hidden;
  padding: clamp(1rem, 3vh, 2rem) 0;
}
.cat-track {
  display: flex;
  width: max-content;
  animation: tickerMove 46s linear infinite;
}
.cat-unit {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(2.8rem, 8vw, 7.5rem);
  line-height: 1;
  color: var(--red);
  white-space: nowrap;
  filter: blur(var(--blur-display));
}
.cat-unit i {
  font-style: normal;
  color: var(--ink);
  font-size: 0.5em;
  vertical-align: 0.32em;
}

/* ============ pavs ============ */
.pav-body {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.pav-text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 40ch;
}
.pav-text p { font-size: clamp(0.95rem, 1.3vw, 1.1rem); }
.pav-text p + p { border-top: 1px solid rgba(22, 19, 15, 0.25); padding-top: 1.25rem; }
.pav-player {
  border: 1px solid var(--rule);
  background: var(--paper-hi);
  padding: 10px 10px 8px;
  transform: rotate(0.4deg);
}
.pav-frame { background: #0a0908; }
.pav-player figcaption {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  padding-top: 8px;
}

/* ============ cult perks strip ============ */
.perks { padding-bottom: clamp(2.5rem, 6vh, 4.5rem); }
.section-head--slim { padding-bottom: clamp(1rem, 2.5vh, 1.75rem); }
.perks-title {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(1.5rem, 3.2vw, 2.6rem);
  line-height: 1;
  color: var(--red);
  filter: blur(var(--blur-fine));
}
.perk-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 3vw, 2.5rem);
}
.perk {
  display: block;
  border: 1px solid var(--rule);
  background: var(--paper-hi);
  text-decoration: none;
  transition: transform var(--dur-fast) var(--ease-snap), box-shadow var(--dur-fast) var(--ease-snap);
}
.perk:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 var(--red);
}
.perk-art {
  width: 100%;
  border-bottom: 1px solid var(--rule);
}
.perk p {
  padding: 1rem 1.2rem 1.2rem;
  font-size: 15px;
  max-width: 52ch;
}

/* ============ previews — the index ============ */
.previews { padding-bottom: 0; position: relative; }

.gindex {
  list-style: none;
  border-top: 1px solid var(--rule);
  margin: 0 calc(var(--frame) * -1);
}

.shelf-sub {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  padding: 1.5rem var(--frame) 0.6rem;
  border-bottom: 1px solid var(--rule);
}

.irow { border-bottom: 1px solid var(--rule); }

.irow-btn {
  display: grid;
  width: 100%;
  grid-template-columns: 3.2rem 2.4rem minmax(0, 1fr) auto auto 7.5rem;
  grid-template-areas:
    'num play title dur int tier'
    'num play desc  dur int tier';
  align-items: center;
  column-gap: clamp(0.75rem, 2vw, 2rem);
  padding: 0.9rem var(--frame);
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  color: var(--ink);
  transition: background var(--dur-fast) ease, color var(--dur-fast) ease;
}

.irow--soon .irow-btn { cursor: default; }

.irow-num {
  grid-area: num;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-soft);
}

.irow-play {
  grid-area: play;
  font-size: 11px;
  color: var(--red);
  border: 1px solid currentColor;
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 2px;
}

.irow-title {
  grid-area: title;
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(1.3rem, 2.6vw, 2.1rem);
  line-height: 1.05;
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.irow-desc {
  grid-area: desc;
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 62ch;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 350ms var(--ease-snap), opacity 350ms ease, padding 350ms ease;
}

.irow-dur {
  grid-area: dur;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-soft);
  min-width: 5.5ch;
  text-align: right;
}

.irow-int {
  grid-area: int;
  display: inline-flex;
  gap: 3px;
}
.irow-int i {
  width: 7px;
  height: 12px;
  background: var(--red);
}
.irow-int i.off { background: none; box-shadow: inset 0 0 0 1px rgba(22, 19, 15, 0.35); }

.irow-tier {
  grid-area: tier;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-align: right;
}

.irow-soon {
  grid-area: tier;
  justify-self: end;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid var(--red);
  padding: 4px 8px;
  transform: rotate(-2deg);
}

/* hover: hard inversion */
@media (hover: hover) {
  .irow:not(.irow--soon):not(.irow--on):hover .irow-btn { background: var(--ink); color: var(--paper); }
  .irow:not(.irow--soon):not(.irow--on):hover .irow-num { color: var(--red); }
  .irow:not(.irow--soon):not(.irow--on):hover .irow-dur { color: rgba(236, 231, 221, 0.6); }
  .irow:not(.irow--soon):not(.irow--on):hover .irow-desc { color: rgba(236, 231, 221, 0.6); }
  .irow:not(.irow--soon):not(.irow--on):hover .irow-tier { color: var(--paper); }
  .irow:not(.irow--soon):not(.irow--on):hover .irow-int i.off { box-shadow: inset 0 0 0 1px rgba(236, 231, 221, 0.4); }
}

/* playing: red field, open dossier */
.irow--on .irow-btn,
.irow--on:hover .irow-btn {
  background: var(--red);
  color: var(--paper);
}
.irow--on .irow-num,
.irow--on:hover .irow-num { color: var(--paper); }
.irow--on .irow-play { color: var(--paper); }
.irow--on .irow-dur,
.irow--on:hover .irow-dur,
.irow--on .irow-desc,
.irow--on:hover .irow-desc { color: rgba(236, 231, 221, 0.85); }
.irow--on .irow-tier,
.irow--on:hover .irow-tier { color: var(--paper); }
.irow--on .irow-int i { background: var(--paper); }
.irow--on .irow-int i.off { background: none; box-shadow: inset 0 0 0 1px rgba(236, 231, 221, 0.5); }
.irow--on .irow-desc { max-height: 12em; opacity: 1; padding-top: 0.7rem; padding-bottom: 0.3rem; }
.irow--on .irow-btn { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.irow--on .irow-title { font-size: clamp(1.7rem, 3.2vw, 2.6rem); }
.irow--on .irow-dur { font-size: 16px; font-weight: 500; }
.irow--on .irow-tier { font-size: 12px; }

/* play glyph ⇄ eq bars */
.irow-play .eq { display: none; align-items: flex-end; gap: 2px; height: 12px; }
.irow-play .eq i { width: 3px; background: currentColor; animation: eqBounce 0.9s ease-in-out infinite; }
.irow-play .eq i:nth-child(1) { height: 60%; animation-delay: 0s; }
.irow-play .eq i:nth-child(2) { height: 100%; animation-delay: 0.15s; }
.irow-play .eq i:nth-child(3) { height: 45%; animation-delay: 0.3s; }
.irow--on.irow--playing .irow-play .eq { display: inline-flex; }
.irow--on.irow--playing .irow-play .glyph { display: none; }
@keyframes eqBounce {
  0%, 100% { transform: scaleY(0.5); }
  50% { transform: scaleY(1); }
}

/* cursor-chasing cover peek (fine pointers only) */
.peek {
  position: fixed;
  z-index: 60;
  top: 0;
  left: 0;
  width: 168px;
  height: 168px;
  pointer-events: none;
  opacity: 0;
  transform: translate(-200px, -200px);
  transition: opacity 200ms ease;
  border: 1px solid var(--rule);
  box-shadow: 8px 8px 0 var(--red);
  background: var(--ink);
}
.peek.on { opacity: 1; }
.peek img { width: 100%; height: 100%; object-fit: cover; }
@media (hover: none), (max-width: 1023px) {
  .peek { display: none; }
}

/* ============ the mess ============ */
.jizz {
  position: absolute;
  pointer-events: none;
  z-index: 9;
}
.jizz--band {
  right: 2%;
  bottom: -4%;
  width: clamp(260px, 32vw, 520px);
  transform: rotate(-9deg);
}
.previews::after {
  content: '';
  position: absolute;
  right: 8%;
  top: 2.5rem;
  width: 64px;
  height: 82px;
  background: url('../images/print.svg') no-repeat center / contain;
  opacity: 0.32;
  transform: rotate(14deg);
  pointer-events: none;
}
.jizz--previews {
  left: 24%;
  top: 0.5rem;
  width: clamp(200px, 24vw, 380px);
  transform: rotate(-6deg);
}
.jizz--footer {
  right: 5%;
  top: 4%;
  width: clamp(150px, 17vw, 280px);
  transform: rotate(21deg);
}

/* ============ get worse band ============ */
.band--cta {
  position: relative;
  border-top: 1px solid var(--rule);
  padding: clamp(1rem, 4vh, 3rem) var(--frame) clamp(2rem, 5vh, 3.5rem);
}
.band-link {
  display: block;
  text-align: center;
  text-decoration: none;
  padding: clamp(2rem, 8vh, 5rem) 0 clamp(1rem, 4vh, 2.5rem);
}
.worse-type {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(3.4rem, 12.5vw, 12rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: var(--red);
  filter: blur(clamp(1.5px, 0.35vw, 4px));
  transition: filter 450ms var(--ease-snap);
}
/* it only comes into focus when you commit */
.band-link:hover .worse-type,
.band-link:focus-visible .worse-type { filter: blur(0); }
.corner-pic {
  position: absolute;
  right: -2%;
  bottom: -4%;
  width: clamp(300px, 30vw, 520px);
  transform: rotate(-8deg);
  filter: drop-shadow(-8px -6px 14px rgba(0, 0, 0, 0.45));
  z-index: 8;
}

.footer-lockup {
  width: min(58vw, 660px);
  margin-bottom: clamp(2rem, 5vh, 3.5rem);
}

/* ============ footer — back of pack ============ */
.page-footer {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
  border-top: 1px solid var(--rule);
  padding: clamp(2.5rem, 7vh, 5rem) var(--frame) clamp(1.5rem, 4vh, 2.5rem);
  /* keep clear of the fixed dock */
  padding-bottom: calc(clamp(1.5rem, 4vh, 2.5rem) + 72px);
}

.footer-mark {
  width: min(100%, 900px);
  aspect-ratio: 1715 / 510;
  background: var(--red);
  margin-top: clamp(2.5rem, 7vh, 5rem);
}

.footer-doors {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(236, 231, 221, 0.3);
}
.footer-doors a {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  text-decoration: none;
  color: var(--paper);
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(236, 231, 221, 0.3);
  transition: padding-left var(--dur-fast) var(--ease-snap), background var(--dur-fast) ease;
}
.footer-doors a:hover { padding-left: 1.25rem; background: rgba(236, 231, 221, 0.04); }
.door-num {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--red);
  letter-spacing: 0.1em;
  min-width: 2ch;
}
.door-mark { display: block; width: auto; }
.door-mark--cult { height: clamp(40px, 5vw, 62px); }
.door-mark--store { height: clamp(24px, 3vw, 38px); }
.door-mark--ring { height: clamp(44px, 5.5vw, 66px); }
.door-mark--vault {
  height: clamp(18px, 2.2vw, 28px);
  aspect-ratio: 1330 / 153;
  -webkit-mask: url('../images/doors/mark-vault.png') no-repeat left center / contain;
  mask: url('../images/doors/mark-vault.png') no-repeat left center / contain;
  background: var(--paper);
}
.footer-doors a:hover .door-mark--vault { background: var(--red); }
.footer-doors a:hover .door-mark--cult,
.footer-doors a:hover .door-mark--store,
.footer-doors a:hover .door-mark--ring { filter: drop-shadow(0 0 6px rgba(224, 19, 9, 0.35)); }
.footer-x svg { height: 34px; fill: currentColor; }
.footer-x:hover svg { fill: var(--red); }

.footer-base {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: clamp(2rem, 6vh, 3.5rem);
}

.footer-barcode {
  width: 110px;
  height: 40px;
  flex: none;
  background:
    repeating-linear-gradient(90deg,
      var(--paper) 0 2px, transparent 2px 5px,
      var(--paper) 5px 6px, transparent 6px 11px,
      var(--paper) 11px 14px, transparent 14px 16px,
      var(--paper) 16px 17px, transparent 17px 22px);
}

.footer-legal {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: rgba(236, 231, 221, 0.55);
}

.footer-fine {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-left: auto;
}

/* ============ nowbar — the sampling dock ============ */
.nowbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  height: 64px;
  padding: 0 var(--frame);
  background: var(--ink);
  color: var(--paper);
  border-top: 2px solid var(--red);
  transform: translateY(105%);
  transition: transform 350ms var(--ease-snap);
}
.nowbar--on { transform: translateY(0); }

.now-art {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border: 1px solid rgba(236, 231, 221, 0.3);
  flex: none;
}

.now-toggle {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: none;
  border: 1px solid var(--paper);
  color: var(--paper);
  font-size: 12px;
  cursor: pointer;
  transition: background var(--dur-fast) ease, color var(--dur-fast) ease;
}
.now-toggle:hover { background: var(--red); border-color: var(--red); }

.now-mid {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.now-title {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 0.03em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.now-scrub {
  position: relative;
  height: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.now-scrub::before {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: rgba(236, 231, 221, 0.25);
}
.now-fill {
  position: relative;
  display: block;
  height: 4px;
  width: 0;
  background: var(--red);
}

.now-time {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(236, 231, 221, 0.6);
  flex: none;
}

.now-close {
  flex: none;
  background: none;
  border: none;
  color: var(--paper);
  font-size: 20px;
  cursor: pointer;
  padding: 4px 8px;
}
.now-close:hover { color: var(--red); }


/* ============ screen filth — the glass you're viewing through ============ */
.screen-filth {
  position: fixed;
  inset: 0;
  z-index: 110;
  pointer-events: none;
}

/* grease smears: they genuinely blur what scrolls under them */
.smear {
  position: absolute;
  background: radial-gradient(closest-side, rgba(133, 104, 48, 0.05), rgba(133, 104, 48, 0.02) 55%, transparent 78%);
  -webkit-backdrop-filter: blur(1.7px) saturate(1.08);
  backdrop-filter: blur(1.7px) saturate(1.08);
}
.smear--a {
  left: 2%;
  top: 74%;
  width: 15vw;
  height: 14vh;
  border-radius: 46% 54% 58% 42% / 52% 44% 56% 48%;
  transform: rotate(-19deg);
  -webkit-backdrop-filter: blur(0.9px) saturate(1.06);
  backdrop-filter: blur(0.9px) saturate(1.06);
}
.smear--b {
  right: 3%;
  top: 52%;
  width: 17vw;
  height: 26vh;
  border-radius: 55% 45% 42% 58% / 46% 57% 43% 54%;
  transform: rotate(23deg);
}
.smear--thumb {
  left: 41%;
  bottom: 7%;
  width: 7vw;
  height: 10vh;
  border-radius: 52% 48% 55% 45%;
  transform: rotate(-31deg);
  -webkit-backdrop-filter: blur(2.4px) saturate(1.1);
  backdrop-filter: blur(2.4px) saturate(1.1);
}

/* hairs stuck to the glass — hand-drawn, hand-placed */
.hair {
  position: absolute;
  color: rgba(48, 40, 26, 0.42);
  overflow: visible;
}
.hair path { filter: drop-shadow(0.5px 0.7px 0.4px rgba(255, 255, 255, 0.5)); }
.hair--a { width: 210px; right: 9%; top: 14%; transform: rotate(12deg); }
.hair--b { width: 150px; left: 3.5%; bottom: 22%; transform: rotate(-8deg); }
.hair--c { width: 200px; right: 22%; bottom: 4%; transform: rotate(-3deg); }

/* crumbs / dust */
.crumbs {
  position: absolute;
  left: 0; top: 0;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: transparent;
  box-shadow:
    18vw 22vh 0 0.2px rgba(60, 50, 30, 0.30),
    64vw 12vh 0 -0.5px rgba(60, 50, 30, 0.26),
    83vw 38vh 0 0.4px rgba(60, 50, 30, 0.22),
    31vw 66vh 0 -0.6px rgba(60, 50, 30, 0.30),
    52vw 84vh 0 0 rgba(60, 50, 30, 0.24),
    9vw 45vh 0 -0.4px rgba(60, 50, 30, 0.20),
    91vw 74vh 0 0.3px rgba(60, 50, 30, 0.28),
    74vw 55vh 0 -0.7px rgba(60, 50, 30, 0.18);
}

@media (max-width: 767px) {
  /* less clutter, less GPU on phones */
  .smear--b, .hair--b, .hair--c { display: none; }
  .jizz--previews { display: none; }
  .jizz--band { width: 60vw; }
  .bottle-flat { margin-left: 0; width: min(100%, 300px); }
  .irow--on .irow-desc { max-height: 16em; }
  .smear--a { width: 48vw; height: 14vh; }
}

/* ============ responsive ============ */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .hero-left { padding-top: 1rem; }
  .hero-scrawl { width: min(78vw, 520px); }
  .hero-plate { height: clamp(380px, 62vh, 640px); }
  .about-body { grid-template-columns: 1fr; }
  .about-text { position: static; max-width: 52ch; }
  .irow-btn { grid-template-columns: 2.6rem 2.2rem minmax(0, 1fr) auto 6.5rem; grid-template-areas: 'num play title dur tier' 'num play desc dur tier'; }
  .irow-int { display: none; }
}

@media (max-width: 767px) {
  body { font-size: 14px; }
  .site-header { height: 50px; }
  .site-brand-mark { width: 96px; }
  .nav-link:not([href='#previews']) { display: none; }
  .hero { padding-bottom: 3.5rem; }
  .hero-scrawl { width: 88vw; transform: rotate(-2deg); }
  .hero-cta-row { flex-direction: column; align-items: flex-start; gap: 0.9rem; }
  .hero-fine { max-width: none; }
  .hero-plate { height: 58vh; margin: 0 calc(var(--frame) * -1); border-left: none; border-right: none; }
  /* the knocked-over bottle, dumped on the paper next to the pitch */
.bottle-flat {
  display: block;
  width: min(100%, 370px);
  margin: 2rem 0 0 -0.75rem;
  transform: rotate(-2deg);
  pointer-events: none;
}

.scrollcue { bottom: 0.5rem; }
  .about-shots { grid-template-columns: 1fr; }
  .perk-grid { grid-template-columns: 1fr; }
  .pav-body { grid-template-columns: 1fr; }
  .pav-text { max-width: 52ch; }
  .shot--a, .shot--b, .shot--c { transform: none; }
  .irow-btn {
    grid-template-columns: 2.2rem minmax(0, 1fr) auto;
    grid-template-areas: 'play title dur' 'play desc dur';
    padding: 0.8rem var(--frame);
  }
  .irow-num, .irow-tier { display: none; }
  .irow-soon { display: block; grid-area: dur; }
  .irow--soon .irow-dur { display: none; }
  .irow-title { white-space: normal; font-size: 1.15rem; line-height: 1.1; }
  .irow-play { width: 1.7rem; height: 1.7rem; }
  .band-sign { margin-top: -0.5rem; }
  .footer-base { gap: 1rem; }
  .corner-pic {
  position: absolute;
  right: -2%;
  bottom: -4%;
  width: clamp(300px, 30vw, 520px);
  transform: rotate(-8deg);
  filter: drop-shadow(-8px -6px 14px rgba(0, 0, 0, 0.45));
  z-index: 8;
}

.footer-lockup { width: 88vw; }
  .footer-fine { margin-left: 0; }
  .nowbar { gap: 0.6rem; height: 58px; }
  .now-art { display: none; }
  .page-footer { padding-bottom: calc(1.5rem + 66px); }
}

/* ============ reduced motion ============ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker-track, .cat-track { animation: none; }
  .scrollcue-arr { animation: none; }
  .reveal { clip-path: none; transform: none; transition: none; }
  .peek { display: none; }
  .irow-play .eq i { animation: none; }
  .band-link:hover img { transform: none; }
  * { transition-duration: 0.01ms !important; }
}

/* ============ Sale mega-banner ============ */
/* the ticker's big brother: a printed red bulletin wedged between header
   and hero — spec-sheet rows, rubber stamps, misregistered ink. removes
   itself (via JS) the second the sale dies. */
.sale-mega {
  position: relative;
  background: var(--red);
  color: var(--paper);
  border-bottom: 2px solid var(--rule);
  overflow: hidden;
}
/* corner registration marks, like the plate stamps */
.sale-mega::before,
.sale-mega::after {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  border: 1.5px solid rgba(236, 231, 221, 0.55);
  pointer-events: none;
}
.sale-mega::before { top: 40px; left: 10px; border-right: 0; border-bottom: 0; }
.sale-mega::after { bottom: 10px; right: 10px; border-left: 0; border-top: 0; }

.sale-microline {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  opacity: 0.75;
  padding: 6px var(--frame) 5px;
  border-bottom: 1px solid rgba(236, 231, 221, 0.35);
}

.sale-mega-inner {
  padding: clamp(1.1rem, 2.6vw, 2.2rem) var(--frame) clamp(1.3rem, 3vw, 2.6rem);
}

.sale-mega-title {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(2.1rem, 6vw, 5.4rem);
  line-height: 0.93;
  letter-spacing: 0.01em;
  filter: blur(var(--blur-display));
  margin: 0;
}
.sale-mega-title em { font-style: normal; color: var(--yellow); }
.sale-title-dot { color: var(--yellow); }

/* the clock plate: giant misregistered print, stamp slapped over the corner */
.sale-clock-plate {
  position: relative;
  margin-top: clamp(0.4rem, 1.2vw, 1rem);
  padding-right: clamp(3rem, 9vw, 9rem); /* room for the stamp */
}
.sale-clock {
  font-family: var(--display);
  font-size: clamp(3.4rem, 16vw, 17rem);
  line-height: 0.92;
  margin: 0;
  filter: blur(var(--blur-display));
  font-kerning: none;
  /* off-register second pass of ink */
  text-shadow: 0.022em 0.018em 0 var(--red-deep), -0.014em -0.01em 0 rgba(26, 79, 174, 0.55);
}
.sale-clock .cd { display: inline-block; width: 0.56em; text-align: center; }
.sale-clock .cc { display: inline-block; width: 0.3em; text-align: center; transform: translateY(-0.06em); }
.sale-clock-note {
  position: absolute;
  left: 0.15em;
  bottom: -1.1em;
  font-family: var(--mono);
  font-size: clamp(10px, 1.2vw, 14px);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.7;
}
.sale-stamp-tonight {
  position: absolute;
  top: 2%;
  right: clamp(0.2rem, 2.5vw, 3rem);
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 3rem);
  line-height: 0.92;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  color: var(--yellow);
  /* official-stamp double ring: heavy outer band, thin inner rule */
  border: 0.13em solid var(--yellow);
  border-radius: 0.14em;
  box-shadow: inset 0 0 0 0.05em var(--red), inset 0 0 0 0.085em var(--yellow);
  padding: 0.62em 0.68em 0.66em;
  transform: rotate(-8deg);
  filter: blur(0.3px);
  /* worn ink: turbulence-speckled alpha, same family as the body grain */
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='s'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.16' numOctaves='4' seed='7'/%3E%3CfeColorMatrix type='luminanceToAlpha'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='linear' slope='10' intercept='-0.35'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='160' height='160' fill='%23fff' filter='url(%23s)'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='s'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.16' numOctaves='4' seed='7'/%3E%3CfeColorMatrix type='luminanceToAlpha'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='linear' slope='10' intercept='-0.35'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='160' height='160' fill='%23fff' filter='url(%23s)'/%3E%3C/svg%3E");
}

/* spec-sheet: five ruled rows, dotted leaders, hard inversion on hover */
.sale-sheet {
  margin-top: clamp(1.6rem, 3.4vw, 3rem);
  border-top: 1px solid rgba(236, 231, 221, 0.5);
}
.srow {
  display: flex;
  align-items: baseline;
  gap: clamp(0.5rem, 1.4vw, 1.1rem);
  text-decoration: none;
  color: inherit;
  padding: clamp(0.45rem, 1vw, 0.7rem) 4px;
  border-bottom: 1px solid rgba(236, 231, 221, 0.5);
  transition: background var(--dur-fast) ease, color var(--dur-fast) ease;
}
.srow-num {
  font-family: var(--mono);
  font-size: clamp(11px, 1.2vw, 14px);
  letter-spacing: 0.08em;
  opacity: 0.7;
  min-width: 2.6em;
}
.srow-name {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(1.5rem, 3.1vw, 2.7rem);
  line-height: 1.02;
  letter-spacing: 0.01em;
  white-space: nowrap;
  filter: blur(var(--blur-fine));
}
.srow-pick {
  display: inline-block;
  font-family: var(--mono);
  font-style: normal;
  font-size: clamp(9px, 1vw, 12px);
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--yellow);
  border: 1px solid var(--yellow);
  padding: 3px 7px;
  margin-left: 0.9em;
  transform: rotate(-3deg) translateY(-0.25em);
  vertical-align: middle;
}
.srow-lead {
  flex: 1 1 auto;
  min-width: 1.5em;
  border-bottom: 2px dotted rgba(236, 231, 221, 0.55);
  transform: translateY(-0.3em);
}
.srow-was {
  font-family: var(--mono);
  font-size: clamp(13px, 1.5vw, 18px);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: var(--yellow);
  opacity: 0.75;
}
.srow-now {
  font-family: var(--display);
  font-size: clamp(1.7rem, 3.1vw, 2.7rem);
  line-height: 1;
  color: var(--yellow);
  filter: blur(var(--blur-fine));
  min-width: 2.2em;
  text-align: right;
}
.srow-go {
  font-family: var(--mono);
  font-size: clamp(10px, 1.1vw, 13px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity var(--dur-fast) ease, transform var(--dur-fast) var(--ease-snap);
}
@media (hover: hover) {
  .srow:hover { background: var(--paper); color: var(--ink); }
  .srow:hover .srow-num { color: var(--red); opacity: 1; }
  .srow:hover .srow-lead { border-color: rgba(22, 19, 15, 0.5); }
  .srow:hover .srow-was { text-decoration-color: var(--red); }
  .srow:hover .srow-now { color: var(--red); }
  .srow:hover .srow-pick { color: var(--red); border-color: var(--red); }
  .srow:hover .srow-go { opacity: 1; transform: none; color: var(--red); }
}
@media (hover: none) {
  .srow-go { opacity: 0.8; transform: none; }
}

.srow-flat {
  font-family: var(--mono);
  font-size: clamp(10px, 1.1vw, 13px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.55;
}
.srow-now--flat { color: var(--paper); opacity: 0.8; }
.srow:hover .srow-now--flat { color: var(--ink); }
/* the offer rows carry the ink; flat rows sit quiet */
.srow--deal .srow-name { color: var(--paper); }

.sale-base {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 2em;
  margin-top: 0.9em;
}
.sale-fine {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.75;
  margin: 0;
  max-width: 60ch;
}
.sale-batch {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.55;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .sale-clock-plate { padding-right: 0; }
  .sale-clock { font-size: 19vw; }
  .sale-stamp-tonight { top: -16%; right: 0; font-size: 6.4vw; }
  .srow { flex-wrap: wrap; }
  .srow-go { display: none; }
  .sale-batch { display: none; }
}
