/* ==========================================================================
   Club Copy — listening plate (hero)
   Record object on steel. Liner-notes type, not a flyer lockup.
   Title stays mixed-case. Specs live in Plex/Lucida. No slogan copy.
   ========================================================================== */

body.home-zine .hero.plate-hero {
  --hero-ink: #111111;
  --ticker-h: 32px;
  position: relative;
  isolation: isolate;
  min-height: 0;
  display: block;
  padding: 0;
  overflow: hidden;
  color: var(--hero-ink);
  background:
    radial-gradient(ellipse 56% 42% at 36% 46%, rgba(255,255,255,.92), transparent 62%),
    linear-gradient(180deg, #eeeeec 0%, #d8d8d6 42%, #cfcfcd 100%);
}

.plate-hero .hero-stage {
  position: relative;
  z-index: 1;
  width: min(1080px, calc(100% - 40px));
  min-height: 0;
  margin: 0 auto;
  padding: calc(var(--nav-h) + var(--safe-t) + 32px) 0 calc(36px + var(--ticker-h, 32px));
  display: block;
  text-align: left;
}

.listen-plate {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas:
    "lockup"
    "sleeve"
    "copy";
  gap: 22px;
  max-width: 420px;
  margin: 0 auto;
  align-items: stretch;
}

body.home-zine .hero.plate-hero .listen-plate .hero-lockup {
  grid-area: lockup;
  width: auto;
  max-width: none;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.listen-plate .listen-sleeve {
  grid-area: sleeve;
  width: 100%;
  max-width: 400px;
  justify-self: center;
}

.listen-plate-copy {
  grid-area: copy;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}

.listen-plate-lcd {
  padding: 10px 12px 11px;
  border-radius: 3px;
  background: linear-gradient(180deg, #d2d2ce 0%, #b8b8b4 100%);
  border: 1px solid rgba(40, 40, 40, .22);
  box-shadow: inset 0 1px 2px rgba(40, 50, 60, .28);
  font-family: var(--ui);
  color: var(--lcd-ink, #1a1a1a);
}

.listen-plate-cat,
.listen-plate-status {
  margin: 0;
}

.listen-plate-cat {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .04em;
  text-transform: none;
  color: rgba(26, 26, 26, .62);
}

.listen-plate-status {
  margin-top: 3px;
  font-family: var(--ui);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.4;
  text-transform: none;
}

.listen-plate-status a {
  text-decoration: underline;
  text-underline-offset: 2px;
  color: inherit;
}

.listen-plate-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

/* Type: mixed-case lockup — Oswald for the title only, Archivo for the artist,
   Plex for the kicker. Zine gothic uppercase is locked out in club-copy-os. */
body.home-zine .hero.plate-hero .hero-lockup-kicker {
  margin: 0 0 14px;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: none;
  color: rgba(17, 17, 17, .5);
}

body.home-zine .hero.plate-hero .hero-lockup-artist,
body.home-zine .hero.plate-hero .hero-lockup-artist a {
  margin: 0 0 6px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(14px, 1.6vw, 16px);
  letter-spacing: .01em;
  line-height: 1.2;
  text-transform: none;
  text-decoration: none;
  color: rgba(17, 17, 17, .72);
}

body.home-zine .hero.plate-hero .hero-lockup-title {
  margin: 0;
  font-family: Oswald, var(--display), sans-serif;
  font-weight: 500;
  font-size: clamp(40px, 6.4vw, 64px);
  letter-spacing: -.03em;
  line-height: .92;
  text-transform: none;
}

body.home-zine .hero.plate-hero .hero-lockup-title a {
  color: var(--hero-ink);
  text-decoration: none;
  text-transform: none;
}

body.home-zine .hero.plate-hero .hero-lockup-aside {
  display: block;
  font-weight: 500;
  font-size: .78em;
  letter-spacing: -.024em;
  margin-top: .02em;
}

@media (hover: hover) {
  body.home-zine .hero.plate-hero .hero-lockup-artist a:hover {
    color: var(--hero-ink);
  }
  body.home-zine .hero.plate-hero .hero-lockup-title a:hover {
    opacity: .72;
  }
}

body.home-zine .hero.plate-hero .hero-ground {
  position: absolute;
  left: 0;
  right: 0;
  bottom: var(--ticker-h, 32px);
  height: 40%;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(196, 196, 192, .35) 100%);
}

body.home-zine .hero.plate-hero .hero-ticker {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 3;
  height: var(--ticker-h);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: stretch;
  border-top: 1px solid rgba(255, 255, 255, .55);
  background:
    linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.12)),
    #c8c8c4;
}

body.home-zine .hero.plate-hero .hero-ticker-bug {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px 0 18px;
  border-right: 1px solid rgba(40, 40, 40, .12);
  background: transparent;
}

body.home-zine .hero.plate-hero .hero-ticker-bug .status-chip {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: none;
  padding: 0;
  background: transparent;
  color: #1a1a1a;
}

body.home-zine .hero.plate-hero .hero-ticker-viewport {
  overflow: hidden;
  display: flex;
  align-items: center;
}

body.home-zine .hero.plate-hero .hero-ticker-track {
  display: flex;
  width: max-content;
  animation: heroTicker 42s linear infinite;
}

body.home-zine .hero.plate-hero .hero-ticker-copy a,
body.home-zine .hero.plate-hero .hero-ticker-copy span {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .04em;
  text-transform: none;
  color: #1a1a1a;
  text-decoration: none;
  white-space: nowrap;
  padding: 0 18px;
}

body.home-zine .hero.plate-hero .hero-ticker-dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(40, 40, 40, .28);
  padding: 0 !important;
}

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

@media (min-width: 860px) {
  .plate-hero .hero-stage {
    padding-top: calc(var(--nav-h) + var(--safe-t) + 40px);
    padding-bottom: calc(44px + var(--ticker-h, 32px));
  }
  .listen-plate {
    max-width: 960px;
    grid-template-columns: minmax(280px, 440px) minmax(260px, 1fr);
    grid-template-areas:
      "sleeve lockup"
      "sleeve copy";
    column-gap: 64px;
    row-gap: 20px;
    align-items: center;
  }
  .listen-plate .listen-sleeve {
    justify-self: stretch;
    max-width: none;
  }
  .listen-plate .hero-lockup {
    align-self: end;
  }
  .listen-plate-copy {
    align-self: start;
  }
  .listen-plate-lcd {
    max-width: 320px;
  }
  body.home-zine .hero.plate-hero .hero-lockup-title {
    font-size: clamp(44px, 5.4vw, 64px);
  }
}

@media (max-width: 859px) {
  .plate-hero .hero-stage {
    width: min(1180px, calc(100% - 28px));
    padding-top: calc(var(--nav-h) + var(--safe-t) + 20px);
    padding-bottom: calc(22px + var(--ticker-h, 32px) + 56px);
  }
  body.home-zine .hero.plate-hero .hero-ticker {
    bottom: 56px;
  }
  .listen-plate-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .listen-plate-actions .btn-fill {
    grid-column: 1 / -1;
  }
  .listen-plate-actions a.btn-text {
    grid-column: 1 / -1;
    height: auto;
    min-height: 0;
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .listen-plate .listen-sleeve.is-live::after {
    animation: none;
  }
  body.home-zine .hero.plate-hero .hero-ticker-track {
    animation: none;
  }
}
