:root {
  --ink: #f4f2ef;
  --muted: rgba(244,242,239,.72);
  --accent: #29b178;
  --dark: #0b0504;
}

* { box-sizing: border-box; }
html { min-height: 100%; background: var(--dark); }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: transparent;
  font-family: "Source Code Pro", monospace;
  font-weight: 300;
  overflow-x: hidden;
}

/* Fixed background, now in front of the html background and behind page content. */
.page-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(0,0,0,.16), rgba(0,0,0,.20)),
    url("assets/home-bg.webp");
  background-size: cover;
  background-position: 50% 48%;
  background-repeat: no-repeat;
  pointer-events: none;
}
.page-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 52% 45%, transparent 20%, rgba(0,0,0,.22) 100%);
}

.site-header,
.home-main,
.site-footer {
  position: relative;
  z-index: 1;
}

a { color: inherit; }
.site-header {
  width: min(1020px, calc(100% - 40px));
  margin: 0 auto;
  padding-top: 42px;
  text-align: center;
}
.site-title {
  display: inline-block;
  margin-bottom: 20px;
  color: rgba(0,0,0,.68);
  text-decoration: none;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 29px;
  white-space: nowrap;
}
.site-nav a {
  color: rgba(255,255,255,.87);
  text-decoration: none;
  font-size: 12px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  transition: color .18s ease, opacity .18s ease;
}
.site-nav a:hover,
.site-nav a:focus-visible { color: #fff; }
.site-nav a.active { color: #fff; }
.menu-toggle { display: none; }

.home-main {
  width: min(1120px, calc(100% - 48px));
  margin: 112px auto 0;
  padding-bottom: 55px;
}
.video-wrap { width: 100%; text-align: center; }
.video-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  background: #000;
  box-shadow: 0 0 0 1px rgba(0,0,0,.3);
}
.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Custom poster button: loads the embedded YouTube player in-place. */
.video-local-fallback {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  overflow: hidden;
  background: #111;
  cursor: pointer;
  appearance: none;
}
.video-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.video-local-fallback::before,
.video-local-fallback::after {
  content: none;
}
.play-button {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  width: 76px;
  height: 54px;
  transform: translate(-50%, -50%);
  border-radius: 15px;
  display: grid;
  place-items: center;
  padding-left: 5px;
  color: #fff;
  background: #ff0033;
  font: 700 25px/1 Arial, sans-serif;
  box-shadow: 0 4px 18px rgba(0,0,0,.25);
}
.watch-label {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: 18px;
  padding: 8px 11px;
  border-radius: 18px;
  background: rgba(0,0,0,.55);
  color: #fff;
  font-size: 10px;
  letter-spacing: 1px;
}

.listen-button {
  display: inline-block;
  margin-top: 42px;
  padding: 13px 23px 12px;
  border: 1px solid rgba(255,255,255,.48);
  color: rgba(255,255,255,.93);
  text-decoration: none;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.listen-button:hover,
.listen-button:focus-visible {
  background: var(--accent);
  border-color: var(--accent);
  color: #050505;
}

.site-footer {
  padding: 18px 24px 42px;
  text-align: center;
}
.socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 20px;
}
.socials a {
  color: rgba(255,255,255,.8);
  font-size: 10px;
  letter-spacing: 1.6px;
  text-decoration: none;
}
.socials a:hover { color: var(--accent); }

@media (max-width: 820px) {
  .site-header { padding-top: 22px; width: calc(100% - 28px); }
  .site-title { margin-bottom: 12px; }
  .menu-toggle {
    display: inline-block;
    border: 0;
    background: transparent;
    color: white;
    font: 400 12px/1 "Source Code Pro", monospace;
    letter-spacing: 2px;
    padding: 8px 10px;
  }
  .site-nav {
    display: none;
    flex-direction: column;
    gap: 14px;
    padding: 18px 0 4px;
  }
  .site-nav.open { display: flex; }
  .home-main { width: calc(100% - 28px); margin-top: 48px; }
  .listen-button { margin-top: 28px; }
  .page-bg { background-position: 58% 50%; }
}

@media (max-width: 520px) {
  .home-main { margin-top: 34px; }
  .video-frame { aspect-ratio: 16 / 9; }
  .site-footer { padding-bottom: 28px; }
  .socials { gap: 10px 14px; }
  .play-button { width: 64px; height: 46px; border-radius: 13px; font-size: 21px; }
  .watch-label { right: 10px; bottom: 10px; }
}

/* MUSIC */
.music-page {
  background: var(--dark);
}
.site-header-solid {
  position: absolute;
  z-index: 20;
  left: 50%;
  transform: translateX(-50%);
}
.site-title-light { color: rgba(255,255,255,.12); }
.music-main { position: relative; z-index: 1; }
.release {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  padding: 145px 24px 90px;
  background-image: var(--release-bg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.release::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(4,2,2,.28);
}
.release-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,4,3,.36), rgba(7,4,3,.12) 45%, rgba(7,4,3,.28)),
    linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.18));
  backdrop-filter: saturate(.92);
}
.release-inner {
  position: relative;
  z-index: 2;
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 360px) 1fr;
  gap: 62px;
  align-items: start;
}
.release-info { min-width: 0; }
.release-cover {
  display: block;
  width: min(100%, 340px);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  box-shadow: 0 12px 36px rgba(0,0,0,.25);
}
.release-info h1,
.release-info h2 {
  margin: 25px 0 4px;
  font-family: "Abel", "Arial Narrow", sans-serif;
  font-size: 34px;
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}
.release-info h2 span { font-size: .72em; opacity: .78; }
.release-by {
  margin: 0 0 24px;
  color: rgba(255,255,255,.7);
  font-size: 12px;
}
.provider-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 23px;
}
.provider-buttons a,
.video-link,
.back-top {
  display: inline-block;
  border: 1px solid rgba(255,255,255,.45);
  color: rgba(255,255,255,.94);
  text-decoration: none;
  padding: 9px 11px 8px;
  font-size: 9px;
  line-height: 1;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  transition: background .16s ease, border-color .16s ease, color .16s ease;
}
.provider-buttons a:hover,
.video-link:hover,
.back-top:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: #07100b;
}
.video-link { margin-bottom: 20px; }
.release-credits {
  max-width: 355px;
  margin: 0;
  color: rgba(255,255,255,.74);
  font-size: 10px;
  line-height: 1.8;
}
.tracklist {
  list-style: none;
  counter-reset: track;
  padding: 12px 0 0;
  margin: 0;
  width: 100%;
  align-self: center;
}
.tracklist li {
  counter-increment: track;
  position: relative;
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 64px;
  padding: 7px 2px;
  border-bottom: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.88);
  font-size: 12px;
  letter-spacing: .2px;
}
.tracklist li::before {
  content: counter(track, decimal-leading-zero);
  color: rgba(255,255,255,.36);
  font-size: 9px;
}
.tracklist time {
  color: rgba(255,255,255,.48);
  font-size: 10px;
}
.single-track { margin-top: 105px; }
.music-footer {
  position: relative;
  z-index: 3;
  background: var(--dark);
  padding-top: 34px;
}
.back-top { margin-bottom: 28px; }

@media (max-width: 820px) {
  .site-header-solid { position: relative; left: auto; transform: none; }
  .music-main { margin-top: 16px; }
  .release {
    min-height: 0;
    padding: 58px 20px 68px;
    background-attachment: scroll;
  }
  .release-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .release-cover { width: min(74vw, 360px); }
  .release-info h1,
  .release-info h2 { font-size: 30px; }
  .tracklist { padding-top: 0; }
  .single-track { margin-top: 0; }
  .tracklist li { min-height: 54px; }
}

@media (max-width: 520px) {
  .release { padding: 42px 16px 52px; }
  .release-cover { width: min(82vw, 340px); }
  .release-info h1,
  .release-info h2 { font-size: 27px; }
  .provider-buttons { gap: 6px; }
  .provider-buttons a { padding: 9px 8px 8px; font-size: 8px; }
}

/* ===== SHARED INNER PAGES ===== */
.standard-page { background: var(--dark); }
.standard-main {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}
.standard-page .site-header-solid,
.standard-page .overlay-header {
  position: absolute;
  top: 0;
  z-index: 40;
  left: 50%;
  transform: translateX(-50%);
}
.overlay-header .site-nav a { text-shadow: 0 1px 8px rgba(0,0,0,.45); }
.page-kicker,
.standard-main > h1,
.press-main > h1 {
  margin: 0 0 52px;
  padding-top: 152px;
  text-align: center;
  font-family: "Abel", "Arial Narrow", sans-serif;
  font-weight: 400;
  font-size: 44px;
  letter-spacing: 5px;
  text-transform: uppercase;
}
.outline-button {
  display: inline-block;
  border: 1px solid rgba(255,255,255,.42);
  padding: 12px 16px 11px;
  color: rgba(255,255,255,.92);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-decoration: none;
}
.outline-button:hover { background: var(--accent); border-color: var(--accent); color: #06110c; }
.center-action { text-align: center; margin: 42px 0 20px; }
.hero-banner {
  position: relative;
  height: 565px;
  display: grid;
  place-items: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}
.hero-banner .hero-shade { position: absolute; inset: 0; background: rgba(0,0,0,.13); }
.hero-banner h1 {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #fff;
  font-family: "Abel", "Arial Narrow", sans-serif;
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
}
.standard-page .site-footer { position: relative; background: var(--dark); padding-top: 34px; }

/* ===== MEDIA ===== */
.media-main { width: min(1180px, calc(100% - 56px)); padding-bottom: 56px; }
.media-heading { width: 100%; margin: 0 auto 34px; text-align: center; }
.media-heading .page-kicker { margin-bottom: 8px; }
.media-heading p { margin: 0; color: rgba(255,255,255,.46); font-size: 10px; letter-spacing: 2.1px; }
.media-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 50px 34px; width: 100%; margin: 0 auto; }
.media-card { min-width: 0; }
.media-card h2 { margin: 14px 2px 0; font-family: "Abel","Arial Narrow",sans-serif; font-size: 21px; line-height: 1.2; font-weight: 400; letter-spacing: 1.35px; text-transform: uppercase; text-align: left; }
.video-embed { position: relative; width: 100%; aspect-ratio: 16/9; background: #000; overflow: hidden; box-shadow: 0 12px 35px rgba(0,0,0,.22); }
.video-embed iframe { width: 100%; height: 100%; border: 0; display: block; }
.video-poster-button { position: absolute; inset: 0; width: 100%; height: 100%; padding: 0; border: 0; background: #000; cursor: pointer; overflow: hidden; }
.video-poster-button img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .25s ease; }
.video-poster-button::after { content:""; position:absolute; inset:0; background:rgba(0,0,0,.10); transition:background .2s ease; }
.video-poster-button .play-button { z-index:2; }
.video-poster-button:hover img,.video-poster-button:focus-visible img { transform:scale(1.015); }
.video-poster-button:hover::after,.video-poster-button:focus-visible::after { background:rgba(0,0,0,.20); }
@media (max-width:820px) { .media-main { width:min(700px,calc(100% - 28px)); } .media-grid { grid-template-columns:1fr; gap:42px; } .media-card h2 { font-size:20px; } }

/* ===== NEWS ===== */
.news-main { padding: 150px 0 40px; }
.news-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 54px;
}
.news-heading-row h1 {
  margin: 0;
  font-family: "Abel", "Arial Narrow", sans-serif;
  font-size: 36px;
  font-weight: 400;
  letter-spacing: 2px;
}
.x-link { color: var(--accent); text-decoration: none; font-size: 10px; letter-spacing: 1.5px; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 58px 36px; }
.news-card { min-width: 0; }
.news-image { width: 100%; aspect-ratio: 1 / 1; background: #130a08; overflow: hidden; margin-bottom: 16px; }
.news-image img { width: 100%; height: 100%; display: block; object-fit: cover; }
.news-card time { color: rgba(255,255,255,.42); font-size: 9px; letter-spacing: .8px; }
.news-card h2 {
  margin: 12px 0 0;
  font-family: "Abel", "Arial Narrow", sans-serif;
  font-size: 29px;
  line-height: 1.15;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.news-excerpt { color: rgba(255,255,255,.7); font-size: 11px; line-height: 1.7; }

/* ===== LIVE ===== */
.live-hero { background-image: url("assets/pages/live-hero.webp"); background-position: center 44%; filter: grayscale(1); }
.live-content { padding: 72px 0 38px; }
.section-intro { max-width: 760px; margin: 0 auto 28px; text-align: center; }
.section-intro h2 {
  margin: 0 0 12px;
  font-family: "Abel", "Arial Narrow", sans-serif;
  font-size: 25px;
  font-weight: 400;
  letter-spacing: 2px;
}
.section-intro p { margin: 0; color: rgba(255,255,255,.58); font-size: 10px; line-height: 1.7; }
.bandsintown-wrap { width: min(900px, 100%); min-height: 170px; margin: 0 auto; }
.bandsintown-wrap a { color: var(--accent); }

/* ===== MERCH ===== */
.merch-hero { background-image: url("assets/pages/merch-hero.webp"); background-position: center 45%; }
.merch-content { padding: 72px 0 36px; }
.merch-filters { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px 24px; margin-bottom: 26px; }
.merch-filters button {
  appearance: none;
  border: 0;
  padding: 4px 0;
  background: none;
  color: rgba(255,255,255,.72);
  font: 400 11px/1 "Source Code Pro", monospace;
  letter-spacing: 1.5px;
  cursor: pointer;
}
.merch-filters button:hover,
.merch-filters button.active { color: var(--accent); }
.merch-note { margin: 0 0 40px; color: rgba(255,255,255,.42); text-align: center; font-size: 9px; letter-spacing: .5px; }
.merch-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 44px 28px; }
.merch-card[hidden] { display: none !important; }
.merch-image { width: 100%; aspect-ratio: 1 / 1; display: grid; place-items: center; background: #080403; overflow: hidden; }
.merch-image img { width: 100%; height: 100%; object-fit: contain; display: block; }
.merch-card h2 {
  margin: 20px 0 10px;
  font-size: 17px;
  line-height: 1.45;
  font-weight: 300;
  text-align: center;
}
.merch-description { min-height: 34px; margin: 0 0 7px; color: rgba(255,255,255,.55); font-size: 9px; line-height: 1.6; text-align: center; }
.merch-price { margin: 0; text-align: center; color: rgba(255,255,255,.9); font-size: 15px; }
.merch-empty { padding: 55px 0; color: rgba(255,255,255,.48); text-align: center; font-size: 11px; }

/* ===== BIO ===== */
.bio-main { padding: 150px 0 35px; }
.bio-copy { width: min(680px, 100%); margin: 0 auto 76px; text-align: center; }
.bio-copy h1 {
  margin: 0 0 34px;
  font-family: "Abel", "Arial Narrow", sans-serif;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 2px;
}
.bio-copy > p { margin: 0 auto; font-size: 11px; line-height: 2; }
.members { margin-top: 44px; }
.members p { margin: 0 0 9px; font-size: 11px; }
.bio-image { margin: 0; width: 100%; }
.bio-image img { width: 100%; height: auto; display: block; }

/* ===== PRESS ===== */
.press-main { padding-bottom: 36px; }
.press-main > h1 { margin-bottom: 38px; }
.press-hero { width: min(760px, 100%); margin: 0 auto 60px; }
.press-hero img { width: 100%; display: block; image-rendering: auto; }
.press-section { width: min(900px, 100%); margin: 0 auto; }
.press-section > h2,
.press-archive h2 {
  font-family: "Abel", "Arial Narrow", sans-serif;
  font-size: 25px;
  font-weight: 400;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}
.press-section > h2 { text-align: center; margin: 0 0 26px; }
.press-album-section { margin-top: 70px; }
.reviews-list { border-top: 1px solid rgba(255,255,255,.13); }
.review-card { border-bottom: 1px solid rgba(255,255,255,.13); }
.review-card summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  padding: 18px 2px;
  color: rgba(255,255,255,.9);
  font-size: 11px;
  letter-spacing: 1.4px;
}
.review-card summary::-webkit-details-marker { display: none; }
.review-plus { color: var(--accent); font-size: 18px; transition: transform .16s ease; }
.review-card[open] .review-plus { transform: rotate(45deg); }
.review-body { padding: 0 2px 28px; color: rgba(255,255,255,.73); font-size: 11px; line-height: 1.85; }
.review-body p { margin: 0 0 14px; }
.review-source { display: inline-block; margin-top: 5px; color: var(--accent); font-size: 9px; letter-spacing: 1px; text-decoration: none; }
.press-archive { width: min(900px, 100%); margin: 76px auto 0; display: grid; gap: 70px; }
.press-archive article img { width: 100%; display: block; margin-bottom: 22px; }
.press-archive article h2 { margin: 0 0 15px; }
.press-archive article p { color: rgba(255,255,255,.67); font-size: 11px; line-height: 1.8; }

/* ===== CONTACT ===== */
.contact-hero { background-image: url("assets/pages/contact-hero.webp"); background-position: center 46%; }
.contact-content { padding: 88px 0 42px; }
.contact-form { width: min(720px, 100%); margin: 0 auto; }
.contact-form label,
.contact-form legend { color: rgba(255,255,255,.78); font-size: 10px; line-height: 1.4; }
.contact-form label > span { color: rgba(255,255,255,.48); font-size: 9px; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  margin: 7px 0 25px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 0;
  background: #fff;
  color: #111;
  padding: 12px 13px;
  font: 400 13px/1.3 "Source Code Pro", monospace;
}
.contact-form textarea { resize: vertical; min-height: 170px; }
.name-fields { border: 0; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.name-fields legend { grid-column: 1 / -1; margin-bottom: 3px; }
.contact-form button {
  border: 1px solid rgba(255,255,255,.5);
  background: transparent;
  color: #fff;
  padding: 12px 18px;
  font: 400 10px/1 "Source Code Pro", monospace;
  letter-spacing: 1.5px;
  cursor: pointer;
}
.contact-form button:hover { background: var(--accent); border-color: var(--accent); color: #06110c; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }

@media (max-width: 900px) {
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .merch-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .standard-page .site-header-solid,
  .standard-page .overlay-header { position: relative; left: auto; transform: none; }
  .overlay-header { position: absolute !important; left: 50% !important; transform: translateX(-50%) !important; }
  .standard-main { width: calc(100% - 30px); }
  .page-kicker,
  .standard-main > h1,
  .press-main > h1 { padding-top: 58px; margin-bottom: 35px; }
  .media-item { margin-bottom: 50px; }
  .media-item h2 { font-size: 25px; }
  .news-main { padding-top: 58px; }
  .hero-banner { height: 430px; }
  .live-hero { background-position: center 36%; }
  .bio-main { padding-top: 58px; }
}

@media (max-width: 580px) {
  .news-heading-row { align-items: flex-start; flex-direction: column; margin-bottom: 34px; }
  .news-grid { grid-template-columns: 1fr; gap: 44px; }
  .news-card h2 { font-size: 27px; }
  .hero-banner { height: 380px; }
  .hero-banner h1 { font-size: 58px; }
  .merch-grid { grid-template-columns: 1fr; gap: 46px; }
  .merch-card { width: min(390px, 100%); margin: 0 auto; }
  .merch-description { min-height: 0; }
  .bio-copy { margin-bottom: 48px; }
  .name-fields { grid-template-columns: 1fr; gap: 0; }
  .contact-content { padding-top: 58px; }
  .review-card summary { padding: 16px 0; }
}

/* HOME refinements — matched to the archived Squarespace home page. */
.home-page .page-bg {
  background-image: url("assets/home-bg.webp");
  background-position: 50% 48%;
}

/* Strong black veil at the top, progressively clearing toward the bottom. */
.home-page .page-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,.86) 0%,
    rgba(0,0,0,.76) 14%,
    rgba(0,0,0,.58) 30%,
    rgba(0,0,0,.34) 50%,
    rgba(0,0,0,.16) 72%,
    rgba(0,0,0,.05) 100%
  );
}
.home-page .page-bg::after {
  z-index: 2;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,.13) 0%,
    rgba(0,0,0,0) 25%,
    rgba(0,0,0,0) 75%,
    rgba(0,0,0,.10) 100%
  );
}

.home-page .site-header {
  padding-top: 72px;
}

/* Smaller video block than the first build. */
.home-page .home-main {
  width: min(760px, calc(100% - 48px));
  margin-top: 112px;
  padding-bottom: 42px;
}
.home-page .video-frame {
  width: 100%;
}
.home-page .listen-button {
  margin-top: 34px;
}
.home-page .home-footer {
  padding-top: 8px;
  padding-bottom: 32px;
}

/* Compact, uniform white social icons. */
.home-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.home-socials a {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  display: grid;
  place-items: center;
  color: #fff;
  text-decoration: none;
  opacity: .88;
  transition: opacity .18s ease, transform .18s ease;
}
.home-socials a:hover,
.home-socials a:focus-visible {
  opacity: 1;
  transform: translateY(-1px);
}
.home-socials svg {
  width: 32px !important;
  height: 32px !important;
  max-width: 32px;
  max-height: 32px;
  display: block;
  color: #fff;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.home-socials svg [fill="currentColor"] {
  fill: currentColor;
  stroke: none;
}
.home-socials .icon-spotify path { stroke: #0b0504; fill: none; }
.home-socials .icon-applemusic path { fill: currentColor; stroke: none; }
.home-socials .icon-deezer path,
.home-socials .icon-bandcamp path,
.home-socials .icon-facebook path,
.home-socials .icon-x path { fill: currentColor; stroke: none; }

@media (max-width: 820px) {
  .home-page .site-header { padding-top: 28px; }
  .home-page .home-main {
    width: min(700px, calc(100% - 28px));
    margin-top: 48px;
  }
  .home-socials { gap: 14px; }
  .home-socials a,
  .home-socials svg {
    width: 28px !important;
    height: 28px !important;
    flex-basis: 28px;
  }
}

/* Platform name tooltip on HOME social/music icons */
.home-socials a {
  position: relative;
}
.home-socials a::after {
  content: attr(aria-label);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  transform: translate(-50%, 4px);
  padding: 6px 8px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.88);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .14s ease, transform .14s ease;
  z-index: 20;
}
.home-socials a::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: calc(100% + 5px);
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: rgba(0, 0, 0, 0.88);
  opacity: 0;
  pointer-events: none;
  transition: opacity .14s ease;
  z-index: 20;
}
.home-socials a:hover::after,
.home-socials a:focus-visible::after,
.home-socials a:hover::before,
.home-socials a:focus-visible::before {
  opacity: 1;
}
.home-socials a:hover::after,
.home-socials a:focus-visible::after {
  transform: translate(-50%, 0);
}

/* ===== MUSIC INLINE TRACK PLAYERS ===== */
.tracklist li[data-audio-src] {
  cursor: default;
  padding-bottom: 11px;
}
.track-title-button {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-align: left;
  cursor: pointer;
}
.track-title-button:hover .track-name,
.track-title-button:focus-visible .track-name,
.tracklist li.is-playing .track-name {
  color: #fff;
}
.track-title-button:focus-visible {
  outline: 1px solid rgba(255,255,255,.55);
  outline-offset: 4px;
}
.track-play-icon {
  width: 15px;
  flex: 0 0 15px;
  color: rgba(255,255,255,.6);
  font-size: 8px;
  line-height: 1;
  text-align: center;
  transform: translateY(-.5px);
}
.tracklist li.is-playing .track-play-icon { color: var(--accent); }
.track-progress {
  position: absolute;
  left: 40px;
  right: 2px;
  bottom: 3px;
  height: 2px;
  overflow: hidden;
  background: rgba(255,255,255,.12);
  opacity: 0;
  transition: opacity .18s ease;
}
.track-progress-fill {
  display: block;
  width: 0%;
  height: 100%;
  background: var(--accent);
}
.tracklist li.is-active .track-progress { opacity: 1; }
.tracklist li.is-active time { color: rgba(255,255,255,.75); }

@media (max-width: 820px) {
  .track-title-button { padding: 10px 0; }
  .track-progress { left: 40px; }
}

/* Platform icon footers on every page */
.standard-page .site-footer .home-socials { margin-top: 18px; }


/* NEWS v15 — complete 47-post archive */
.news-page .news-main { width: min(1180px, calc(100% - 56px)); }
.news-page .news-heading-row { margin-bottom: 46px; }
.news-page .news-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 52px 30px; }
.news-card { position: relative; cursor: pointer; outline: none; }
.news-card-button { display:block; width:100%; padding:0; border:0; background:none; color:inherit; text-align:left; cursor:pointer; font:inherit; }
.news-card .news-image { position:relative; margin-bottom:15px; background:#100807; transition: transform .22s ease, opacity .22s ease; }
.news-card .news-image::after { content:'VIEW'; position:absolute; inset:auto 12px 10px auto; padding:5px 7px; background:rgba(0,0,0,.72); color:#fff; font:10px/1 'Source Code Pro', monospace; letter-spacing:1px; opacity:0; transform:translateY(4px); transition:.18s ease; }
.news-card-button:hover .news-image, .news-card-button:focus-visible .news-image { transform:translateY(-2px); opacity:.9; }
.news-card-button:hover .news-image::after, .news-card-button:focus-visible .news-image::after { opacity:1; transform:none; }
.news-card.no-image { min-height:180px; border-top:1px solid rgba(255,255,255,.15); padding-top:18px; }
.news-card h2 { margin-top:8px; }
.news-card .news-excerpt { margin-top:10px; }
.news-card .news-location { margin-top:8px; color:rgba(255,255,255,.45); font:10px/1.4 'Source Code Pro', monospace; letter-spacing:.4px; }
.news-card .news-media-badge { position:absolute; top:10px; left:10px; z-index:2; background:rgba(0,0,0,.75); color:#fff; padding:5px 7px; font:9px/1 'Source Code Pro',monospace; letter-spacing:1px; }

.news-modal[hidden] { display:none; }
.news-modal { position:fixed; inset:0; z-index:9999; display:grid; place-items:center; padding:32px; }
.news-modal-backdrop { position:absolute; inset:0; background:rgba(0,0,0,.9); backdrop-filter:blur(5px); }
.news-modal-panel { position:relative; width:min(980px, 100%); max-height:calc(100vh - 64px); overflow:auto; background:#0b0706; border:1px solid rgba(255,255,255,.14); box-shadow:0 22px 80px rgba(0,0,0,.7); }
.news-modal-close { position:sticky; top:14px; z-index:3; float:right; margin:14px 14px 0 0; width:38px; height:38px; border:1px solid rgba(255,255,255,.35); border-radius:50%; background:rgba(0,0,0,.7); color:#fff; font:28px/32px Arial,sans-serif; cursor:pointer; }
.news-modal-content { padding:66px 64px 34px; clear:both; }
.news-modal-content time { display:block; color:rgba(255,255,255,.46); font:10px/1.4 'Source Code Pro',monospace; letter-spacing:1px; margin-bottom:12px; text-transform:uppercase; }
.news-modal-content h2 { margin:0 0 28px; font-family:'Abel',sans-serif; font-size:clamp(34px,5vw,62px); line-height:.96; font-weight:400; text-transform:uppercase; }
.news-modal-location { color:rgba(255,255,255,.55); font:11px/1.5 'Source Code Pro',monospace; margin:-16px 0 28px; }
.news-body-block { margin:0 0 30px; }
.news-body-html { max-width:760px; color:rgba(255,255,255,.82); font:14px/1.8 'Source Code Pro',monospace; }
.news-body-html p { margin:0 0 1.15em; }
.news-body-html a { color:#fff; text-decoration:underline; text-underline-offset:3px; }
.news-body-image img { display:block; max-width:100%; width:auto; height:auto; margin:0 auto; }
.news-body-gallery { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:16px; }
.news-body-gallery img { width:100%; height:auto; display:block; }
.news-body-video { position:relative; aspect-ratio:16/9; background:#000; }
.news-body-video iframe { position:absolute; inset:0; width:100%; height:100%; border:0; }
.news-modal-nav { display:flex; justify-content:space-between; gap:16px; padding:22px 64px 34px; border-top:1px solid rgba(255,255,255,.1); }
.news-modal-nav button { border:0; background:none; color:rgba(255,255,255,.75); font:11px/1 'Source Code Pro',monospace; letter-spacing:1px; cursor:pointer; padding:8px 0; }
.news-modal-nav button:hover { color:#fff; }
body.news-modal-open { overflow:hidden; }

@media (max-width: 900px) {
  .news-page .news-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media (max-width: 640px) {
  .news-page .news-main { width:min(100% - 28px, 1180px); }
  .news-page .news-grid { grid-template-columns:1fr; gap:40px; }
  .news-modal { padding:0; }
  .news-modal-panel { width:100%; height:100vh; max-height:none; border:0; }
  .news-modal-content { padding:58px 20px 28px; }
  .news-modal-nav { padding:20px; }
  .news-body-gallery { grid-template-columns:1fr; }
}

/* NEWS v16 — compact editorial archive */
.news-page .news-main {
  width: min(940px, calc(100% - 56px));
  padding-bottom: 80px;
}
.news-page .news-heading-row {
  margin-bottom: 54px;
}
.news-page .news-heading-row h1 {
  font-size: clamp(38px, 5vw, 62px);
}
.news-page .news-grid {
  display: block;
}
.news-year {
  margin: 62px 0 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.44);
  font: 300 12px/1 'Source Code Pro', monospace;
  letter-spacing: 2.4px;
}
.news-year:first-child { margin-top: 0; }
.news-card {
  min-height: 0;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.09);
  padding: 22px 0;
  cursor: default;
}
.news-card.no-image { min-height: 0; border-top: 0; padding-top: 22px; }
.news-card-button {
  display: grid;
  grid-template-columns: 108px minmax(220px, 300px) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}
.news-card.no-image .news-card-button {
  grid-template-columns: 108px minmax(0, 1fr);
}
.news-card.visual-only .news-card-button {
  grid-template-columns: 108px minmax(220px, 300px);
}
.news-date {
  padding-top: 2px;
}
.news-card time {
  display: block;
  color: rgba(255,255,255,.42);
  font: 300 9px/1.45 'Source Code Pro', monospace;
  letter-spacing: 1px;
  white-space: nowrap;
}
.news-card .news-image {
  width: 100%;
  aspect-ratio: auto;
  height: 190px;
  margin: 0;
  background: #0d0908;
  overflow: hidden;
  transition: opacity .2s ease;
}
.news-card .news-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.news-card .news-image::after {
  content: '';
  display: none;
}
.news-card-button:hover .news-image,
.news-card-button:focus-visible .news-image {
  transform: none;
  opacity: .78;
}
.news-card .news-media-badge {
  top: 8px;
  left: 8px;
  padding: 5px 6px;
  background: rgba(0,0,0,.7);
  font-size: 8px;
}
.news-copy {
  min-width: 0;
  padding-top: 0;
}
.news-card h2 {
  margin: 0 0 10px;
  font-family: 'Abel', sans-serif;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.02;
  font-weight: 400;
  text-transform: uppercase;
}
.news-card .news-excerpt {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin: 0;
  max-width: 44em;
  color: rgba(255,255,255,.66);
  font: 300 11px/1.65 'Source Code Pro', monospace;
}
.news-card .news-location {
  margin: 9px 0 0;
  color: rgba(255,255,255,.38);
  font-size: 9px;
}
.news-read-more {
  display: inline-block;
  margin-top: 14px;
  color: rgba(255,255,255,.48);
  font: 300 9px/1 'Source Code Pro', monospace;
  letter-spacing: 1.1px;
  transition: color .18s ease;
}
.news-card-button:hover .news-read-more,
.news-card-button:focus-visible .news-read-more { color: #fff; }
.news-card-button:focus-visible {
  outline: 1px solid rgba(255,255,255,.45);
  outline-offset: 8px;
}
.news-more-wrap {
  display: flex;
  justify-content: center;
  padding: 48px 0 10px;
}
.news-more-button {
  border: 1px solid rgba(255,255,255,.24);
  background: transparent;
  color: rgba(255,255,255,.72);
  padding: 13px 18px;
  font: 300 10px/1 'Source Code Pro', monospace;
  letter-spacing: 1.4px;
  cursor: pointer;
}
.news-more-button:hover,
.news-more-button:focus-visible {
  border-color: rgba(255,255,255,.6);
  color: #fff;
}
.news-more-button[hidden] { display: none; }

/* NEWS v16 modal: calmer article proportions */
.news-modal-panel { width: min(900px, 100%); }
.news-modal-content { padding: 60px 56px 34px; }
.news-modal-content h2 { font-size: clamp(32px, 4.5vw, 54px); margin-bottom: 24px; }
.news-modal-nav { padding-left: 56px; padding-right: 56px; }

@media (max-width: 760px) {
  .news-page .news-main { width: min(100% - 30px, 940px); }
  .news-page .news-heading-row { margin-bottom: 38px; }
  .news-year { margin-top: 48px; }
  .news-card { padding: 20px 0; }
  .news-card-button,
  .news-card.no-image .news-card-button,
  .news-card.visual-only .news-card-button {
    grid-template-columns: 1fr;
    gap: 11px;
  }
  .news-date { order: 0; }
  .news-card .news-image { order: 1; width: 100%; height: min(58vw, 280px); }
  .news-copy { order: 2; }
  .news-card h2 { font-size: 27px; }
  .news-card .news-excerpt { font-size: 10.5px; }
  .news-modal-content { padding: 56px 20px 28px; }
  .news-modal-nav { padding-left: 20px; padding-right: 20px; }
}

/* LIVE v17 — automatic upcoming dates + durable past-show archive */
.live-page .live-content {
  width: min(980px, calc(100% - 56px));
  padding: 72px 0 86px;
}
.live-section + .live-section {
  margin-top: 84px;
}
.live-section-head {
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.live-section-head h2 {
  margin: 0 0 7px;
  font-family: 'Abel', sans-serif;
  font-size: clamp(34px, 4.6vw, 54px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: .02em;
}
.live-section-head p {
  margin: 0;
  color: rgba(255,255,255,.42);
  font: 300 9px/1.5 'Source Code Pro', monospace;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.live-page .bandsintown-wrap {
  width: 100%;
  min-height: 116px;
  margin: 0;
}
.live-archive-note { opacity: .8; }
.past-shows {
  border-top: 0;
}
.past-show {
  display: grid;
  grid-template-columns: 145px minmax(220px, .9fr) minmax(260px, 1.35fr);
  gap: 28px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.past-show time {
  color: rgba(255,255,255,.46);
  font: 300 9px/1.25 'Source Code Pro', monospace;
  letter-spacing: 1.1px;
  white-space: nowrap;
}
.past-show time span {
  color: var(--accent);
}
.past-show-place strong {
  display: block;
  color: rgba(255,255,255,.92);
  font: 400 19px/1.05 'Abel', sans-serif;
  letter-spacing: .025em;
}
.past-show-place span {
  display: block;
  margin-top: 4px;
  color: rgba(255,255,255,.38);
  font: 300 9px/1.35 'Source Code Pro', monospace;
  letter-spacing: .6px;
}
.past-show-lineup {
  color: rgba(255,255,255,.60);
  font: 300 9px/1.55 'Source Code Pro', monospace;
  letter-spacing: .25px;
}
.past-show:hover .past-show-place strong {
  color: #fff;
}

@media (max-width: 760px) {
  .live-page .live-content {
    width: min(100% - 30px, 980px);
    padding-top: 56px;
  }
  .live-section + .live-section { margin-top: 64px; }
  .past-show {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 12px 18px;
    padding: 17px 0;
  }
  .past-show-lineup {
    grid-column: 2;
    margin-top: -4px;
  }
  .past-show-place strong { font-size: 18px; }
}


/* LIVE v18 — verified chronology + per-show archives */
.live-v18 { max-width: 1080px; }
.live-v18 .live-past { margin-top: 88px; }
.live-past-head { display:flex; align-items:flex-end; justify-content:space-between; gap:24px; border-bottom:1px solid rgba(255,255,255,.18); padding-bottom:18px; }
.live-past-head p { margin:0 0 4px; font-size:11px; letter-spacing:.11em; text-transform:uppercase; opacity:.6; }
.past-shows-v18 { margin-top:0; }
.past-year-group { margin-top:54px; }
.past-year { margin:0 0 10px; padding-bottom:8px; border-bottom:1px solid rgba(255,255,255,.12); font:400 13px/1 'Source Code Pro',monospace; letter-spacing:.16em; color:#29b178; }
.past-show-v18 { display:grid; grid-template-columns:92px minmax(230px,1.15fr) minmax(260px,1.45fr) 104px; gap:22px; align-items:center; min-height:78px; padding:16px 0; border-bottom:1px solid rgba(255,255,255,.09); }
.past-show-v18 time { font-size:11px; letter-spacing:.08em; opacity:.72; }
.past-show-v18 time span { display:inline; font-size:20px; color:#f4f2ef; opacity:1; margin-right:4px; }
.past-show-v18 .past-show-place strong { font-size:17px; line-height:1.1; }
.past-show-v18 .past-show-place span { margin-top:4px; font-size:10px; }
.past-show-v18 .past-show-lineup { font-size:10px; line-height:1.55; letter-spacing:.08em; opacity:.62; }
.show-archive-link { justify-self:end; font:400 10px/1 'Source Code Pro',monospace; letter-spacing:.09em; color:#f4f2ef; text-decoration:none; white-space:nowrap; opacity:.75; transition:opacity .2s,color .2s; }
.show-archive-link:hover { color:#29b178; opacity:1; }
.show-archive-empty { width:104px; }
.date-tbc-group { margin-top:70px; opacity:.78; }
.past-show-tbc-date { font:400 18px/1 'Source Code Pro',monospace; opacity:.45; }

/* Individual LIVE archive pages */
.live-archive-page { background:#0b0504; color:#f4f2ef; }
.live-archive-main { width:min(980px,calc(100% - 48px)); margin:0 auto; padding:150px 0 88px; }
.archive-back a { font:400 10px/1 'Source Code Pro',monospace; letter-spacing:.12em; color:#f4f2ef; text-decoration:none; opacity:.65; }
.archive-back a:hover { color:#29b178; opacity:1; }
.archive-show-head { margin:56px 0 44px; max-width:820px; }
.archive-date { margin:0 0 12px; font:400 11px/1 'Source Code Pro',monospace; letter-spacing:.15em; color:#29b178; }
.archive-show-head h1 { margin:0; font:400 clamp(34px,5vw,64px)/.98 'Abel',sans-serif; letter-spacing:.015em; }
.archive-lineup { margin:20px 0 0; font:300 12px/1.7 'Source Code Pro',monospace; letter-spacing:.08em; opacity:.62; }
.archive-note { max-width:680px; margin:0 0 34px; font:300 12px/1.7 'Source Code Pro',monospace; opacity:.64; }
.archive-video { position:relative; width:100%; aspect-ratio:16/9; margin:0 0 44px; background:#000; }
.archive-video iframe { position:absolute; inset:0; width:100%; height:100%; border:0; }
.archive-gallery { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:18px; align-items:start; }
.archive-gallery.single { grid-template-columns:minmax(0,680px); }
.archive-gallery a { display:block; background:#130c0a; }
.archive-gallery img { display:block; width:100%; height:auto; max-height:760px; object-fit:contain; }
.archive-links { display:flex; flex-wrap:wrap; gap:12px; margin-top:34px; }
.archive-links a { border:1px solid rgba(255,255,255,.25); padding:11px 14px; font:400 10px/1 'Source Code Pro',monospace; letter-spacing:.09em; color:#f4f2ef; text-decoration:none; }
.archive-links a:hover { border-color:#29b178; color:#29b178; }
.archive-back-bottom { margin-top:64px; }
@media (max-width:760px) {
  .live-past-head { display:block; }
  .live-past-head p { margin-top:10px; }
  .past-year-group { margin-top:42px; }
  .past-show-v18 { grid-template-columns:66px 1fr; gap:8px 16px; padding:15px 0; }
  .past-show-v18 time { grid-row:1 / span 2; align-self:start; padding-top:2px; }
  .past-show-v18 time span { display:block; font-size:19px; margin:0 0 3px; }
  .past-show-v18 .past-show-lineup { grid-column:2; }
  .show-archive-link { grid-column:2; justify-self:start; margin-top:5px; }
  .show-archive-empty { display:none; }
  .past-show-tbc-date { grid-row:1 / span 2; }
  .live-archive-main { width:min(100% - 30px,980px); padding-top:124px; }
  .archive-show-head { margin-top:42px; }
  .archive-gallery { grid-template-columns:1fr; gap:12px; }
}

/* ===== PRESS v21: chronological list + translation ===== */
.press-chronological { margin-top: 0; }
.review-title { min-width: 0; }
.review-summary-meta { margin-left: auto; display: inline-flex; align-items: center; gap: 22px; flex: 0 0 auto; }
.review-date { color: rgba(255,255,255,.42); font-size: 9px; letter-spacing: 1.1px; white-space: nowrap; }
.review-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 8px; }
.review-actions .review-source { margin-top: 0; }
.review-translate { appearance: none; border: 0; border-bottom: 1px solid rgba(255,255,255,.28); background: transparent; color: rgba(255,255,255,.72); padding: 0 0 3px; font: inherit; font-size: 9px; line-height: 1.3; letter-spacing: 1px; cursor: pointer; }
.review-translate:hover, .review-translate:focus-visible { color: var(--accent); border-bottom-color: var(--accent); outline: none; }
.review-translation[hidden], .review-original[hidden] { display: none; }
@media (max-width: 700px) {
  .review-card summary { gap: 12px; }
  .review-summary-meta { gap: 14px; }
  .review-date { font-size: 8px; }
}

/* ===== GLOBAL TYPOGRAPHY v23 =====
   Page titles use BIO as the visual size reference.
   Descriptive/body copy is +2px for improved readability. */
.page-kicker,
.standard-main > h1,
.press-main > h1,
.hero-banner h1,
.news-page .news-heading-row h1,
.bio-copy h1 {
  font-size: 32px;
}

/* Descriptive copy across the site */
.release-by { font-size: 14px; }
.release-credits { font-size: 12px; }
.media-heading p { font-size: 12px; }
.news-card .news-excerpt { font-size: 13px; }
.news-modal-content time { font-size: 12px; }
.news-modal-location { font-size: 13px; }
.news-body-html { font-size: 16px; }
.section-intro p,
.live-section-head p { font-size: 11px; }
.merch-note { font-size: 11px; }
.merch-description { font-size: 11px; }
.merch-empty { font-size: 13px; }
.bio-copy > p { font-size: 13px; }
.members p { font-size: 13px; }
.review-body { font-size: 13px; }
.press-archive article p { font-size: 13px; }
.past-show-v18 .past-show-place span { font-size: 12px; }
.past-show-v18 .past-show-lineup { font-size: 12px; }
.live-past-head p { font-size: 13px; }
.archive-lineup,
.archive-note { font-size: 14px; }

@media (max-width: 760px) {
  .news-page .news-heading-row h1,
  .hero-banner h1,
  .page-kicker,
  .standard-main > h1,
  .press-main > h1,
  .bio-copy h1 {
    font-size: 32px;
  }
  .news-card .news-excerpt { font-size: 12.5px; }
}


/* ===== v24 refinements =====
   - shorter LIVE / MERCH hero banners with HOME-like dark top gradient
   - calmer NEWS card typography
   - smaller, centered LIVE section headings */

.live-hero,
.merch-hero {
  height: 430px;
}
.live-hero {
  background-position: center 35%;
}
.merch-hero {
  background-position: center 38%;
}
.live-hero .hero-shade,
.merch-hero .hero-shade {
  background: linear-gradient(
    180deg,
    rgba(0,0,0,.86) 0%,
    rgba(0,0,0,.78) 14%,
    rgba(0,0,0,.60) 30%,
    rgba(0,0,0,.40) 50%,
    rgba(0,0,0,.20) 72%,
    rgba(0,0,0,.08) 100%
  );
}

.news-card time {
  font: 300 10px/1.5 'Source Code Pro', monospace;
}
.news-card h2 {
  font-size: clamp(19px, 2.1vw, 24px);
  line-height: 1.14;
  letter-spacing: .03em;
  margin-bottom: 12px;
}
.news-card .news-excerpt {
  -webkit-line-clamp: 4;
  max-width: 46em;
  color: rgba(255,255,255,.74);
  font: 300 13px/1.78 'Source Code Pro', monospace;
}
.news-card .news-location {
  font-size: 11px;
  line-height: 1.55;
}

.live-section-head {
  max-width: none;
  margin: 0 0 26px;
  padding-bottom: 16px;
  text-align: center;
}
.live-section-head h2 {
  margin: 0;
  font-size: 32px;
  line-height: 1;
  letter-spacing: 2px;
}
.live-past-head {
  display: block;
  text-align: center;
}
.live-past-head p {
  margin: 10px 0 0;
  font-size: 11px;
  letter-spacing: .11em;
  text-align: center;
  opacity: .62;
}

@media (max-width: 760px) {
  .live-hero,
  .merch-hero {
    height: 320px;
  }
  .live-hero {
    background-position: center 30%;
  }
  .merch-hero {
    background-position: center 34%;
  }
  .news-card h2 {
    font-size: 22px;
  }
  .news-card .news-excerpt {
    font-size: 13px;
    line-height: 1.72;
  }
  .live-section-head h2 {
    font-size: 30px;
  }
}

/* ===== v25 refinements ===== */
/* NEWS page title centered consistently. */
.news-page .news-heading-row {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.news-page .news-heading-row h1 {
  width: 100%;
  text-align: center;
}

/* CONTACT hero matches the shorter LIVE / MERCH treatment. */
.contact-hero {
  height: 430px;
  background-position: center 42%;
}
.contact-hero .hero-shade {
  background: linear-gradient(
    180deg,
    rgba(0,0,0,.86) 0%,
    rgba(0,0,0,.78) 14%,
    rgba(0,0,0,.60) 30%,
    rgba(0,0,0,.40) 50%,
    rgba(0,0,0,.20) 72%,
    rgba(0,0,0,.08) 100%
  );
}

@media (max-width: 760px) {
  .news-page .news-heading-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .contact-hero {
    height: 320px;
    background-position: center 40%;
  }
}


/* ===== v26 NEWS corrections =====
   Venue correction + location copy matched to the readable excerpt size. */
.news-card .news-location {
  margin-top: 10px;
  color: rgba(255,255,255,.66);
  font: 300 13px/1.78 'Source Code Pro', monospace;
  letter-spacing: 0;
}
@media (max-width: 760px) {
  .news-card .news-location {
    font-size: 13px;
    line-height: 1.72;
  }
}


/* ===== v27 news thumbnails normalization =====
   all news thumbnails use the same landscape format */
.news-card-button {
  grid-template-columns: 108px 320px minmax(0, 1fr);
}
.news-card.visual-only .news-card-button {
  grid-template-columns: 108px 320px;
}
.news-card .news-image {
  width: 320px;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  min-height: 180px;
  background: #0d0908;
}
.news-card .news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
@media (max-width: 980px) {
  .news-card-button {
    grid-template-columns: 96px 280px minmax(0, 1fr);
    gap: 22px;
  }
  .news-card.visual-only .news-card-button {
    grid-template-columns: 96px 280px;
  }
  .news-card .news-image {
    width: 280px;
    min-height: 158px;
  }
}
@media (max-width: 760px) {
  .news-card .news-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    min-height: 0;
  }
}


/* ===== v28 alt accents only =====
   Based on V27, only applying two elements borrowed from ALT:
   1) page titles in green
   2) subtle editorial background on BIO / MERCH / NEWS / MEDIA / PRESS */

/* Page titles in green */
.page-kicker,
.standard-main > h1,
.press-main > h1,
.hero-banner h1,
.news-page .news-heading-row h1,
.bio-copy h1 {
  color: var(--accent);
}

/* ALT-inspired subtle backgrounds only on selected pages */
body.bio-page,
body.media-page,
body.news-page,
body.merch-page,
body.press-page {
  background:
    radial-gradient(circle at top right, rgba(16,64,56,.18), transparent 32%),
    radial-gradient(circle at 15% 20%, rgba(215,90,53,.10), transparent 24%),
    linear-gradient(180deg, #070606 0%, #050505 100%);
  background-attachment: fixed;
}

/* Keep section surfaces readable over the new background */
body.bio-page .standard-main,
body.media-page .standard-main,
body.news-page .standard-main,
body.merch-page .standard-main,
body.press-page .standard-main {
  position: relative;
  z-index: 1;
}

/* ===== v29 refinements =====
   - LIVE page title explicitly green
   - custom white play button on all video posters
   No other V28 layout/content changes. */
body.live-page .live-hero h1 {
  color: #29b178 !important;
}

.play-button {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  padding-left: 5px;
  color: #fff;
  background: rgba(0,0,0,.22);
  border: 2px solid rgba(255,255,255,.96);
  box-shadow: 0 4px 20px rgba(0,0,0,.30);
  font: 400 27px/1 Arial, sans-serif;
  transition: background .18s ease, transform .18s ease, border-color .18s ease;
}
.video-local-fallback:hover .play-button,
.video-local-fallback:focus-visible .play-button,
.video-poster-button:hover .play-button,
.video-poster-button:focus-visible .play-button {
  background: rgba(0,0,0,.48);
  border-color: #fff;
  transform: translate(-50%, -50%) scale(1.04);
}

@media (max-width: 520px) {
  .play-button {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    font-size: 22px;
    padding-left: 4px;
  }
}

/* ===== v30 Instagram NEWS test ===== */
.news-body-local-video {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  background: #000;
}
.news-body-local-video video {
  display: block;
  width: 100%;
  height: auto;
  max-height: 78vh;
  background: #000;
}

/* ===== v35 LIVE title color fix =====
   The grayscale filter used on .live-hero was also desaturating its LIVE heading.
   Keep only the hero image grayscale, while the heading stays accent green. */
body.live-page .live-hero {
  background-image: none !important;
  filter: none !important;
  isolation: isolate;
}
body.live-page .live-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("assets/pages/live-hero.webp") center 35% / cover no-repeat;
  filter: grayscale(1);
  pointer-events: none;
}
body.live-page .live-hero .hero-shade {
  z-index: 1;
}
body.live-page .live-hero h1 {
  z-index: 2;
  color: var(--accent) !important;
}
@media (max-width: 760px) {
  body.live-page .live-hero::before {
    background-position: center 30%;
  }
}

/* ===== v40 MOBILE REBUILD =====
   True mobile layout pass. Desktop rules above remain unchanged. */
@media (max-width: 820px) {
  html { -webkit-text-size-adjust: 100%; }
  body { min-width: 0; }

  /* Header / navigation */
  .site-header,
  .home-page .site-header,
  .site-header-solid,
  .standard-page .site-header-solid,
  .standard-page .overlay-header,
  .overlay-header {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: max(18px, env(safe-area-inset-top)) 18px 14px;
    left: auto !important;
    transform: none !important;
    text-align: center;
  }
  .site-title {
    display: block;
    width: max-content;
    max-width: 100%;
    margin: 0 auto 7px;
    font-size: 8px;
    letter-spacing: 2.5px;
  }
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 84px;
    min-height: 40px;
    padding: 10px 14px;
    border: 1px solid rgba(255,255,255,.24);
    background: rgba(0,0,0,.26);
    color: rgba(255,255,255,.94);
    font-size: 10px;
    line-height: 1;
    letter-spacing: 1.8px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
  .menu-toggle[aria-expanded="true"] { border-color: rgba(255,255,255,.52); }
  .site-nav {
    display: none;
    width: min(100%, 430px);
    margin: 10px auto 0;
    padding: 14px 12px 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    white-space: normal;
    background: rgba(6,4,4,.94);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 18px 50px rgba(0,0,0,.34);
    backdrop-filter: blur(12px);
  }
  .site-nav.open { display: flex; }
  .site-nav a {
    display: block;
    padding: 12px 8px;
    font-size: 11px;
    line-height: 1.15;
    letter-spacing: 2px;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .site-nav a:last-child { border-bottom: 0; }
  .site-nav a.active { color: var(--accent); }
  .home-page .site-header,
  .standard-page .overlay-header { position: absolute !important; z-index: 80; }
  .music-page .site-header-solid,
  .media-page .site-header-solid,
  .news-page .site-header-solid,
  .bio-page .site-header-solid,
  .press-page .site-header-solid { position: relative !important; z-index: 80; }

  /* Shared rhythm */
  .standard-main,
  .media-main,
  .news-page .news-main,
  .live-page .live-content,
  .live-archive-main {
    width: calc(100% - 32px);
  }
  .page-kicker,
  .standard-main > h1,
  .press-main > h1,
  .news-page .news-heading-row h1,
  .bio-copy h1,
  .hero-banner h1 {
    font-size: clamp(29px, 9vw, 36px);
    line-height: 1.02;
    letter-spacing: 2.4px;
  }
  .page-kicker,
  .standard-main > h1,
  .press-main > h1 { padding-top: 44px; margin-bottom: 30px; }
  .site-footer { padding: 22px 16px calc(26px + env(safe-area-inset-bottom)); }
  .home-socials { gap: 10px; }
  .home-socials a,
  .home-socials svg { width: 27px !important; height: 27px !important; flex-basis: 27px; }
  .home-socials a::after,
  .home-socials a::before { display: none; }

  /* HOME */
  .home-page .page-bg { background-position: 57% 50%; }
  .home-page .home-main {
    width: calc(100% - 28px);
    margin-top: 0;
    padding-top: 145px;
    padding-bottom: 24px;
  }
  .home-page .video-frame { box-shadow: 0 0 0 1px rgba(255,255,255,.06); }
  .home-page .listen-button { margin-top: 24px; padding: 12px 17px 11px; font-size: 10px; }

  /* MUSIC */
  .music-main { margin-top: 0; }
  .release {
    padding: 44px 16px 54px;
    align-items: start;
  }
  .release-inner { gap: 26px; }
  .release-info { text-align: left; }
  .release-cover { width: min(76vw, 310px); margin: 0 auto; }
  .release-info h1,
  .release-info h2 { margin-top: 20px; font-size: clamp(25px, 8vw, 30px); }
  .release-by { margin-bottom: 18px; font-size: 12px; }
  .provider-buttons { margin-bottom: 18px; gap: 7px; }
  .provider-buttons a,
  .video-link { min-height: 36px; display: inline-flex; align-items: center; }
  .release-credits { max-width: none; font-size: 11px; line-height: 1.65; }
  .tracklist li {
    grid-template-columns: 24px minmax(0,1fr) auto;
    gap: 8px;
    min-height: 52px;
    font-size: 11px;
  }
  .track-title-button { min-width: 0; gap: 7px; }
  .track-name { overflow-wrap: anywhere; }
  .track-progress { left: 32px; }

  /* MEDIA */
  .media-main { padding-bottom: 38px; }
  .media-heading { margin-bottom: 28px; }
  .media-heading .page-kicker { padding-top: 42px; }
  .media-heading p { padding: 0 8px; font-size: 10px; line-height: 1.6; letter-spacing: 1.4px; }
  .media-grid { grid-template-columns: 1fr; gap: 34px; }
  .media-card h2 { margin-top: 11px; font-size: 18px; line-height: 1.18; letter-spacing: 1px; }
  .video-embed { box-shadow: 0 8px 24px rgba(0,0,0,.22); }

  /* NEWS */
  .news-main { padding-top: 42px; }
  .news-page .news-heading-row { margin-bottom: 28px; }
  .news-year { margin-top: 40px; margin-bottom: 10px; font-size: 11px; }
  .news-card { padding: 18px 0 20px; }
  .news-card-button,
  .news-card.no-image .news-card-button,
  .news-card.visual-only .news-card-button {
    grid-template-columns: 1fr;
    gap: 9px;
  }
  .news-card time { font-size: 9px; }
  .news-card .news-image { width: 100%; aspect-ratio: 16/9; height: auto; min-height: 0; }
  .news-card h2 { margin: 2px 0 8px; font-size: clamp(20px, 6.4vw, 24px); line-height: 1.12; }
  .news-card .news-excerpt,
  .news-card .news-location { font-size: 12px; line-height: 1.62; }
  .news-read-more { margin-top: 11px; }
  .news-more-wrap { padding-top: 34px; }
  .news-modal-close {
    position: fixed;
    top: max(12px, env(safe-area-inset-top));
    right: 12px;
    margin: 0;
    width: 42px;
    height: 42px;
    z-index: 6;
  }
  .news-modal-panel { height: 100dvh; max-height: none; }
  .news-modal-content { padding: calc(72px + env(safe-area-inset-top)) 16px 26px; }
  .news-modal-content h2 { font-size: clamp(28px, 8.5vw, 38px); line-height: 1; }
  .news-body-html { font-size: 14px; line-height: 1.7; overflow-wrap: anywhere; }
  .news-body-gallery { grid-template-columns: 1fr; gap: 10px; }
  .news-body-local-video video { max-height: 70dvh; }
  .news-modal-nav { padding: 16px 16px calc(18px + env(safe-area-inset-bottom)); }

  /* HERO pages: LIVE / MERCH / CONTACT */
  .live-hero,
  .merch-hero,
  .contact-hero,
  .hero-banner {
    height: 270px;
    min-height: 270px;
  }
  .hero-banner { padding-top: 70px; }
  body.live-page .live-hero::before { background-position: center 30%; }
  .merch-hero { background-position: center 34%; }
  .contact-hero { background-position: center 40%; }

  /* LIVE */
  .live-page .live-content { padding: 46px 0 62px; }
  .live-section + .live-section,
  .live-v18 .live-past { margin-top: 58px; }
  .live-section-head { margin-bottom: 20px; padding-bottom: 13px; }
  .live-section-head h2 { font-size: 27px; letter-spacing: 1.4px; }
  .live-section-head p { font-size: 10px; line-height: 1.55; }
  .past-year-group { margin-top: 34px; }
  .past-year { font-size: 12px; }
  .past-show-v18 {
    display: grid;
    grid-template-columns: 58px minmax(0,1fr);
    gap: 7px 12px;
    min-height: 0;
    padding: 14px 0 16px;
    align-items: start;
  }
  .past-show-v18 time { grid-row: 1 / span 3; padding-top: 1px; font-size: 9px; }
  .past-show-v18 time span { display: block; font-size: 18px; line-height: 1; margin: 0 0 4px; }
  .past-show-v18 .past-show-place strong { font-size: 17px; }
  .past-show-v18 .past-show-place span { font-size: 10px; line-height: 1.35; }
  .past-show-v18 .past-show-lineup { grid-column: 2; font-size: 10.5px; line-height: 1.5; letter-spacing: .02em; }
  .show-archive-link { grid-column: 2; justify-self: start; margin-top: 3px; font-size: 9px; }

  /* MERCH */
  .merch-content { padding: 46px 0 34px; }
  .merch-filters { gap: 8px 18px; margin-bottom: 20px; }
  .merch-filters button { min-height: 32px; font-size: 10px; }
  .merch-note { margin-bottom: 28px; font-size: 10px; line-height: 1.55; }
  .merch-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 34px 14px; }
  .merch-card { width: 100%; }
  .merch-card h2 { margin-top: 13px; margin-bottom: 6px; font-size: 14px; line-height: 1.3; }
  .merch-description { min-height: 0; font-size: 10px; line-height: 1.5; }
  .merch-price { font-size: 13px; }

  /* BIO */
  .bio-main { padding-top: 42px; padding-bottom: 30px; }
  .bio-copy { width: min(100%, 660px); margin-bottom: 38px; padding: 0 2px; }
  .bio-copy h1 { margin-bottom: 24px; }
  .bio-copy > p,
  .members p { font-size: 12.5px; line-height: 1.75; }
  .members { margin-top: 32px; }
  .bio-image { margin-left: -16px; width: calc(100% + 32px); }

  /* PRESS */
  .press-main { padding-bottom: 30px; }
  .press-main > h1 { padding-top: 42px; margin-bottom: 28px; }
  .press-hero { margin-bottom: 40px; }
  .press-section > h2,
  .press-archive h2 { font-size: 21px; }
  .review-card summary {
    align-items: flex-start;
    gap: 10px;
    padding: 16px 0;
    font-size: 10px;
    line-height: 1.45;
    letter-spacing: .9px;
  }
  .review-title { overflow-wrap: anywhere; }
  .review-summary-meta { gap: 10px; padding-top: 1px; }
  .review-date { font-size: 8px; }
  .review-plus { flex: 0 0 auto; font-size: 16px; }
  .review-body { padding-bottom: 22px; font-size: 12px; line-height: 1.72; }
  .review-actions { gap: 12px; }
  .press-archive { margin-top: 52px; gap: 48px; }

  /* CONTACT */
  .contact-content { width: calc(100% - 32px); padding: 46px 0 32px; }
  .contact-form label,
  .contact-form legend { font-size: 10px; }
  .contact-form input,
  .contact-form textarea {
    margin-top: 7px;
    margin-bottom: 20px;
    min-height: 46px;
    padding: 12px;
    font-size: 16px; /* prevents iOS zoom */
  }
  .contact-form textarea { min-height: 150px; }
  .name-fields { grid-template-columns: 1fr; gap: 0; }
  .contact-form button { width: 100%; min-height: 46px; }
}

@media (max-width: 430px) {
  .merch-grid { grid-template-columns: 1fr; gap: 38px; }
  .merch-card { width: min(360px, 100%); margin: 0 auto; }
  .release-cover { width: min(84vw, 310px); }
}


/* ===== V40 MOBILE FIX — 2026-09-07 =====
   Final responsive hardening. Desktop rules remain untouched. */
@media (max-width: 820px) {
  html, body { width: 100%; max-width: 100%; overflow-x: hidden; }
  img, video, iframe, svg { max-width: 100%; }
  button, input, textarea, select { max-width: 100%; }

  /* Keep the mobile header compact and above page content. */
  .site-header,
  .home-page .site-header,
  .standard-page .site-header-solid,
  .standard-page .overlay-header {
    box-sizing: border-box;
    padding-left: 14px;
    padding-right: 14px;
  }
  .site-nav { max-height: calc(100dvh - 110px); overflow-y: auto; }
  body.mobile-menu-open { overflow: hidden; }

  /* Shared page widths / titles */
  .standard-main,
  .media-main,
  .news-page .news-main,
  .live-page .live-content,
  .merch-content,
  .bio-main,
  .press-main,
  .contact-content,
  .live-archive-main {
    width: calc(100% - 28px) !important;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }
  .page-kicker,
  .standard-main > h1,
  .press-main > h1,
  .news-page .news-heading-row h1,
  .bio-copy h1,
  .hero-banner h1 {
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  /* HOME */
  .home-page .home-main {
    width: calc(100% - 24px);
    padding-top: 128px;
  }
  .home-page .video-frame { width: 100%; aspect-ratio: 16 / 9; }
  .home-page .video-poster { object-fit: cover; }
  .home-page .listen-button { max-width: 100%; white-space: normal; text-align: center; }

  /* MUSIC */
  .release { padding-left: 14px; padding-right: 14px; }
  .release-inner { width: 100%; min-width: 0; }
  .release-info, .tracklist { min-width: 0; }
  .release-cover { max-width: 100%; height: auto; }
  .provider-buttons a, .video-link { white-space: normal; text-align: center; }
  .tracklist li { width: 100%; min-width: 0; }
  .track-title-button { width: 100%; text-align: left; overflow: hidden; }
  .track-name { white-space: normal; word-break: break-word; }
  .tracklist time { white-space: nowrap; }

  /* MEDIA */
  .media-grid { width: 100%; }
  .media-card { width: 100%; overflow: hidden; }
  .media-card h2 { overflow-wrap: anywhere; }
  .media-video, .video-embed { width: 100%; aspect-ratio: 16 / 9; }
  .video-poster-button img { object-fit: cover; }

  /* NEWS: one clear vertical flow, no desktop remnants. */
  .news-page .news-main { padding-top: 34px; }
  .news-page .news-heading-row { display: block; margin-bottom: 22px; }
  .news-page .news-grid { width: 100%; }
  .news-card,
  .news-card.no-image { width: 100%; padding: 17px 0 19px; }
  .news-card-button,
  .news-card.no-image .news-card-button,
  .news-card.visual-only .news-card-button {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 9px;
  }
  .news-date { order: 0; width: 100%; }
  .news-card .news-image { order: 1; width: 100% !important; height: auto !important; min-height: 0 !important; aspect-ratio: 16 / 9; }
  .news-card .news-image img { width: 100%; height: 100%; object-fit: cover; }
  .news-copy { order: 2; width: 100%; min-width: 0; }
  .news-card h2 { max-width: 100%; overflow-wrap: anywhere; }
  .news-card .news-excerpt,
  .news-card .news-location { max-width: 100%; overflow-wrap: anywhere; }
  .news-modal { padding: 0; }
  .news-modal-panel { width: 100vw; height: 100dvh; max-height: 100dvh; border: 0; }
  .news-modal-content { width: 100%; }
  .news-body-block, .news-body-html, .news-body-image, .news-body-gallery,
  .news-body-video, .news-body-local-video { max-width: 100%; }
  .news-body-html a { overflow-wrap: anywhere; word-break: break-word; }
  .news-modal-nav button { min-height: 42px; }

  /* HERO pages */
  .hero-banner,
  .live-hero,
  .merch-hero,
  .contact-hero {
    width: 100%;
    height: 250px;
    min-height: 250px;
  }
  .hero-banner h1 { width: calc(100% - 28px); text-align: center; }

  /* LIVE */
  .live-page .live-content { padding-top: 38px; }
  .bandsintown-wrap { width: 100%; overflow: hidden; }
  .past-shows-v18, .past-year-group { width: 100%; }
  .past-show-v18 {
    width: 100%;
    grid-template-columns: 52px minmax(0,1fr) !important;
    column-gap: 10px !important;
    row-gap: 5px !important;
  }
  .past-show-v18 time { min-width: 0; white-space: normal; }
  .past-show-v18 .past-show-place,
  .past-show-v18 .past-show-lineup,
  .show-archive-link { min-width: 0; overflow-wrap: anywhere; }
  .past-show-v18 .past-show-place strong { line-height: 1.12; }
  .show-archive-empty { display: none; }

  /* MERCH */
  .merch-grid { width: 100%; }
  .merch-card { min-width: 0; }
  .merch-image img { max-width: 100%; max-height: 100%; }
  .merch-card h2, .merch-description { overflow-wrap: anywhere; }

  /* BIO */
  .bio-copy { width: 100%; padding: 0; }
  .bio-copy > p, .members p { overflow-wrap: anywhere; }
  .bio-image { width: 100%; margin-left: 0; }
  .bio-image img { width: 100%; height: auto; }

  /* PRESS */
  .press-section, .reviews-list, .review-card, .press-archive { width: 100%; }
  .review-card summary { width: 100%; min-width: 0; }
  .review-title { flex: 1 1 auto; min-width: 0; overflow-wrap: anywhere; }
  .review-summary-meta { flex: 0 0 auto; }
  .review-body, .review-body p, .review-original, .review-translation { overflow-wrap: anywhere; }
  .review-body a { word-break: break-word; }

  /* CONTACT */
  .contact-form { width: 100%; }
  .name-fields { width: 100%; }
  .contact-form input, .contact-form textarea { box-sizing: border-box; }

  /* Footer */
  .site-footer { width: 100%; box-sizing: border-box; }
  .back-top { max-width: 100%; }
}

@media (max-width: 520px) {
  .site-header,
  .home-page .site-header,
  .standard-page .site-header-solid,
  .standard-page .overlay-header { padding-left: 10px; padding-right: 10px; }
  .site-nav { width: calc(100% - 4px); }
  .standard-main,
  .media-main,
  .news-page .news-main,
  .live-page .live-content,
  .merch-content,
  .bio-main,
  .press-main,
  .contact-content,
  .live-archive-main { width: calc(100% - 22px) !important; }

  .page-kicker,
  .standard-main > h1,
  .press-main > h1,
  .news-page .news-heading-row h1,
  .bio-copy h1,
  .hero-banner h1 { font-size: 29px; letter-spacing: 1.7px; }

  .home-page .home-main { width: calc(100% - 18px); padding-top: 120px; }
  .release { padding-left: 11px; padding-right: 11px; }
  .release-cover { width: min(88vw, 300px); }
  .provider-buttons { gap: 6px; }
  .provider-buttons a { font-size: 7.5px; letter-spacing: .8px; padding: 8px 7px; }
  .tracklist li { grid-template-columns: 21px minmax(0,1fr) auto; gap: 6px; }
  .tracklist time { font-size: 9px; }

  .media-card h2 { font-size: 17px; }
  .news-card h2 { font-size: 21px; }
  .news-card .news-excerpt, .news-card .news-location { font-size: 11.5px; }
  .news-modal-content { padding-left: 13px; padding-right: 13px; }
  .news-modal-nav { padding-left: 13px; padding-right: 13px; }

  .hero-banner, .live-hero, .merch-hero, .contact-hero { height: 230px; min-height: 230px; }
  .past-show-v18 { grid-template-columns: 48px minmax(0,1fr) !important; }
  .past-show-v18 time span { font-size: 17px; }
  .past-show-v18 .past-show-place strong { font-size: 16px; }
  .past-show-v18 .past-show-lineup { font-size: 10px; }

  .merch-grid { grid-template-columns: 1fr !important; gap: 34px; }
  .merch-card { width: min(360px,100%); margin: 0 auto; }
  .review-card summary { flex-direction: column; align-items: stretch; }
  .review-summary-meta { margin-left: 0; justify-content: space-between; width: 100%; }
  .review-plus { margin-left: auto; }
}
