/* Band site — layout inspired by a dark full-bleed photo background + full-width header art,
   alternating #212121 / #fff content sections. Original art & copy are not copied. */

:root {
  --page-black: #000;
  --section-dark: #212121;
  --section-dark-text: #fff;
  --section-light: #fff;
  --section-light-text: #212121;
  --muted: rgba(255, 255, 255, 0.75);
  --muted-on-light: #444;
  --accent-link: #fff;
  --site-max: 90%;
  --font-sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: var(--font-sans);
  --font-title: var(--font-sans);
  --font-body: var(--font-sans);
  --nav-pad: 0.6rem 1rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
  scroll-behavior: smooth;
  scroll-padding-top: 0.5rem;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #e6e6e6;
  background-color: #000;
  overflow-x: hidden;
}

a {
  color: var(--accent-link);
  text-decoration: underline;
  text-underline-offset: 2px;
}

a:hover {
  opacity: 0.9;
}

img,
video {
  max-width: 100%;
  height: auto;
}

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

/* --- Layout --- */
.site-wrap {
  width: min(100%, var(--site-max));
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: max(0.75rem, env(safe-area-inset-left, 0px));
  padding-right: max(0.75rem, env(safe-area-inset-right, 0px));
}

.site-wrap--header {
  padding: 0.6rem 0 0.25rem;
  position: relative;
  z-index: 3;
  min-height: 2.25rem;
  background: #000;
}

.site-wrap--narrow {
  max-width: 900px;
}

/* --- Top social row --- */
.social-bar {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  gap: 1.1rem;
  margin: 0;
  padding: 0;
  position: absolute;
  right: max(0.75rem, env(safe-area-inset-right, 0px));
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}

.social-bar__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: #fff;
  opacity: 0.9;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  transition: background-color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.social-bar__link:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-1px);
}

.social-bar__link:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/* Bottom-of-page variant: centered, in-flow under the footer line */
.social-bar--footer {
  position: static;
  transform: none;
  justify-content: center;
  margin: 0 auto 1.1rem;
}

.icon-s {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* --- Page header: fixed hero + spacer; JS parallax + fade on scroll --- */
.page-header {
  position: relative;
  z-index: 0;
  background: #000;
}

/* Reserves space so Contact starts below the banner (hero is position:fixed). */
.page-header::after {
  content: "";
  display: block;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  aspect-ratio: 2400 / 900;
  max-height: min(56vw, 720px);
  min-height: clamp(200px, 32vw, 420px);
  pointer-events: none;
}

.page-hero {
  line-height: 0;
  background: #0a0a0a;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
  /* True full-bleed banner regardless of surrounding container padding. */
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  aspect-ratio: 2400 / 900;
  max-height: min(56vw, 720px);
  min-height: clamp(200px, 32vw, 420px);
}

.page-hero picture {
  display: block;
  height: 100%;
}

.page-hero__img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  max-width: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  /* Nudge down on load so the top edge of the asset stays in view under cover crop. */
  transform: translateY(35px);
}

/* Below hero at load; scrolls over the banner while it lags upward (transparent intro). */
main {
  position: relative;
  z-index: 2;
  margin-top: 0;
  background: transparent;
}

.page-hero__copy-wrap {
  position: static;
  margin-top: clamp(1.25rem, 3vw, 2rem);
  padding: 0;
  line-height: 1.55;
}

/* Editorial bio panel: warm cream copy on a darkened card with a thin gilt border
   that echoes the gold-mat treatment used on the cover-art frames. */
.page-hero__copy {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  color: #f3ead4;
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.012em;
  text-align: justify;
  hyphens: auto;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.85);
  background:
    linear-gradient(180deg, rgba(20, 14, 6, 0.28), rgba(8, 5, 2, 0.4));
  border: 1px solid rgba(201, 165, 90, 0.42);
  border-radius: 0.4rem;
  padding: clamp(1rem, 2.2vw, 1.6rem) clamp(1.1rem, 2.6vw, 2rem);
  backdrop-filter: blur(3px) saturate(0.9);
  -webkit-backdrop-filter: blur(3px) saturate(0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 248, 220, 0.18),
    inset 0 0 0 1px rgba(0, 0, 0, 0.45),
    0 12px 32px rgba(0, 0, 0, 0.5);
}

/* Gilt drop-cap "J" */
.page-hero__copy::first-letter {
  font-family: var(--font-body);
  font-weight: 700;
  float: left;
  font-size: 3.4em;
  line-height: 0.92;
  padding: 0.04em 0.16em 0 0;
  margin: 0.05em 0.05em 0 0;
  color: #e7c88a;
  font-weight: 400;
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.85),
    0 0 14px rgba(201, 165, 90, 0.35);
}

/* Artist-name signature (the "ason Pratt" after the drop-cap "J") */
.page-hero__copy-name {
  font-family: var(--font-body);
  color: #e7c88a;
  font-weight: 600;
  letter-spacing: 0.015em;
  white-space: nowrap;
}

/* Highlighted credentials & milestones */
.page-hero__copy-mark {
  color: #f3e0b3;
  font-weight: 400;
  letter-spacing: 0.015em;
  background-image: linear-gradient(transparent 78%, rgba(201, 165, 90, 0.45) 78%, rgba(201, 165, 90, 0.45) 96%, transparent 96%);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding: 0 0.06em;
}

@media (prefers-reduced-motion: reduce) {
  .page-header::after {
    display: none;
  }

  .page-hero {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
  }

  .page-hero__img {
    height: 100%;
    object-position: center top;
    transform: translateY(35px);
  }
}

/* --- Header nav --- */
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  width: 100%;
}

.nav-toggle {
  display: none;
  position: absolute;
  right: max(0, env(safe-area-inset-right, 0px));
  top: 50%;
  transform: translateY(-50%);
  background: #212121;
  border: 1px solid #444;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 0.9rem;
  min-height: 2.75rem;
  min-width: 2.75rem;
  cursor: pointer;
  border-radius: 2px;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0.1);
}

.main-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.15rem 1rem;
  margin: 0;
  padding: 0;
}

.main-nav__link {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
  text-decoration: none;
  padding: var(--nav-pad);
  display: inline-block;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0.1);
}

.main-nav__link[aria-current="true"] {
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 700px) {
  /* Mobile: no top nav, menu toggle, or social row — hero starts at the top */
  .site-wrap--header {
    display: none;
  }
}

/* --- Band sections: on top of full-page background --- */
.band-section {
  padding: 2.5rem 0 3rem;
  position: relative;
}

.band-section--on-photo {
  text-align: center;
  background: transparent;
}

.band-section__content {
  margin-top: 0.5rem;
}

/* Contact block: no fill so top-banner stays visible behind while scrolling over it. */
.band-section--on-photo > .site-wrap--narrow {
  background: transparent;
}

.band-section--on-photo .band-intro {
  background: transparent;
}

.band-intro {
  margin: 0.5rem 0 0.25rem;
  color: #fff;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.9),
    0 2px 12px rgba(0, 0, 0, 0.75),
    0 0 24px rgba(0, 0, 0, 0.5);
}

.band-intro__name {
  font-family: var(--font-body);
  font-size: clamp(1.25rem, 4.5vw, 1.65rem);
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 0.35rem;
  color: #fff;
}

.band-intro__role,
.band-intro__tagline,
.band-intro__contact {
  font-family: var(--font-body);
  font-size: clamp(1rem, 3.8vw, 1.2rem);
  font-weight: 400;
  line-height: 1.35;
  margin: 0.15rem 0;
  color: #fff;
}

.band-intro__contact a {
  color: #fff;
  font-weight: 400;
  text-decoration: underline;
}

.band-section--light {
  background: rgba(255, 255, 255, 0.4);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: var(--section-light-text);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 2.5rem 0 3.5rem;
}

@media (max-width: 480px) {

  .band-section,
  .band-section--light {
    padding-top: 1.75rem;
    padding-bottom: 2.25rem;
  }

  .tour-dates__body.band-section--light {
    padding-top: 0.35rem;
    padding-bottom: 1rem;
  }
}

#main-content {
  scroll-margin-top: 0.5rem;
}

#home {
  scroll-margin-top: 0.5rem;
}

#live {
  scroll-margin-top: 0.5rem;
}

#audio-samples {
  scroll-margin-top: 0.5rem;
}

#contact {
  scroll-margin-top: 0.5rem;
}

#tour {
  scroll-margin-top: 0.5rem;
}

/* --- Typography --- */
.expand-panel-row {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem 1.25rem;
}

.expand-panel-row__thumb {
  margin: 0;
  flex-shrink: 0;
  align-self: center;
  width: clamp(7.25rem, 42vw, 11rem);
  max-width: 100%;
  line-height: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.2);
}

.band-section--light .expand-panel-row__thumb {
  border-color: rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.5);
}

.expand-panel-row__thumb img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
  aspect-ratio: 350 / 467;
  object-fit: cover;
}

/* Stacked thumb variant: two cover images aligned to the top of the row,
   separated by a visible gap, with each image carrying its own border. */
.expand-panel-row__thumb--stacked {
  align-self: flex-start;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  border: none;
  background: transparent;
}

.expand-panel-row__thumb:has(> img[src*="cover-art-"]) {
  border: none;
  background: transparent;
}

/* Portrait cover-art assets: gilt mat + beveled inner frame + pronounced drop shadow */
img[src$="cover-art-1.png"] {
  border-radius: 4px;
  box-shadow:
    inset 0 1px 0 rgba(255, 248, 220, 0.28),
    inset 0 0 0 1px rgba(210, 175, 95, 0.4),
    inset 0 0 0 5px rgba(18, 15, 12, 0.98),
    0 0 0 1px rgba(0, 0, 0, 0.72),
    0 0 0 2px rgba(184, 145, 70, 0.28),
    0 6px 14px rgba(0, 0, 0, 0.55),
    0 22px 56px rgba(0, 0, 0, 0.78),
    0 40px 90px rgba(0, 0, 0, 0.6);
}

.band-section--light img[src$="cover-art-1.png"] {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    inset 0 0 0 1px rgba(100, 80, 48, 0.22),
    inset 0 0 0 5px rgba(252, 250, 246, 0.96),
    0 0 0 1px rgba(72, 58, 36, 0.18),
    0 0 0 2px rgba(201, 165, 90, 0.38),
    0 6px 14px rgba(0, 0, 0, 0.28),
    0 20px 48px rgba(0, 0, 0, 0.42),
    0 36px 80px rgba(0, 0, 0, 0.32);
}

.expand-panel-row__content {
  flex: 1;
  min-width: 0;
}

.expand-panel-row__content>.show-list {
  margin-top: 0;
}

.audio-samples .expand-panel-row__content > .audio-list {
  margin-top: 0;
}

/* Hide cover art on mobile (everything below tablet portrait) */
@media (max-width: 767px) {

  img[src$="cover-art-1.png"],
  .expand-panel-row__thumb {
    display: none !important;
  }
}

@media (min-width: 640px) {

  .expand-panel-row--thumb-left,
  .expand-panel-row--thumb-right {
    flex-direction: row;
    align-items: flex-start;
    /* Same width as cover-art images (350×467); used to size live video grid height on desktop */
    --expand-cover-art-w: clamp(8rem, 20vw, 11rem);
  }

  .expand-panel-row--thumb-left .expand-panel-row__thumb,
  .expand-panel-row--thumb-right .expand-panel-row__thumb {
    width: var(--expand-cover-art-w);
  }

  .expand-panel-row--thumb-left .expand-panel-row__thumb--stacked,
  .expand-panel-row--thumb-right .expand-panel-row__thumb--stacked {
    width: clamp(11rem, 28vw, 14rem);
  }
}

.tour-dates__body.band-section--light {
  padding-top: 0.35rem;
  padding-bottom: 1.25rem;
}

#tour .headline-caps {
  margin-bottom: 0.35rem;
}

#tour-panel .show-list {
  width: 100%;
  margin-top: 0;
}

.headline-caps {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-align: center;
  margin: 2.5rem 0 1rem;
  color: inherit;
  overflow-wrap: break-word;
  hyphens: auto;
}

.headline-caps--collapsible {
  text-align: center;
}

.headline-caps__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.45rem 0.5rem;
  max-width: 100%;
  margin: 0;
  min-height: 2.75rem;
  padding: 0.35rem 0.5rem;
  font: inherit;
  text-transform: inherit;
  letter-spacing: inherit;
  text-align: center;
  color: inherit;
  background: none;
  border: none;
  border-radius: 0;
  cursor: pointer;
  box-sizing: border-box;
  transition: opacity 0.15s ease;
}

.headline-caps__toggle:hover {
  opacity: 0.88;
}

.headline-caps__toggle:focus-visible {
  outline: 2px solid #c4a0b8;
  outline-offset: 3px;
}

.headline-caps__icon {
  display: inline-block;
  font-size: 0.7em;
  line-height: 1;
  transition: transform 0.2s ease;
  opacity: 0.85;
  flex-shrink: 0;
}

.headline-caps__toggle[aria-expanded="false"] .headline-caps__icon {
  transform: rotate(-90deg);
}

.body-text {
  color: var(--muted);
  max-width: 65ch;
  margin: 0 0 1rem;
  font-weight: 400;
}

.band-section--light .body-text--on-light {
  color: var(--muted-on-light);
}

/* --- Audio sample list --- */
.audio-list__intro {
  text-align: center;
  max-width: 100%;
  margin-bottom: 0.5rem;
}

.audio-list__intro--tap {
  display: none;
}

@media (max-width: 767px) {
  .audio-list__intro--click {
    display: none;
  }

  .audio-list__intro--tap {
    display: inline;
  }
}

.audio-list {
  list-style: none;
  margin: 0.5rem auto 0;
  padding: 0;
  max-width: 48rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 2px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.2);
}

.audio-list__item {
  margin: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.audio-list__item:last-child {
  border-bottom: none;
}

.audio-list__btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  text-align: left;
  min-height: 2.75rem;
  padding: 0.65rem 0.9rem;
  font: inherit;
  font-size: 0.98rem;
  font-weight: 400;
  color: #f0f0f0;
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: 0;
  transition: background 0.15s ease;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0.08);
}

.audio-list__btn:hover,
.audio-list__btn:focus-visible {
  background: rgba(255, 255, 255, 0.07);
  outline: 2px solid rgba(200, 160, 255, 0.5);
  outline-offset: -2px;
}

.audio-list__btn.is-playing {
  background: rgba(90, 40, 120, 0.25);
}

.audio-list__text-block {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-width: 0;
  gap: 0.2rem;
  line-height: 1.35;
  text-align: left;
}

.audio-list__track {
  font-size: 0.98rem;
  font-weight: 400;
  color: #f5f0ff;
  word-wrap: break-word;
  max-width: 100%;
}

.audio-list__track--only {
  font-weight: 400;
  color: #f0f0f0;
}

.audio-list__artist {
  font-size: 0.85em;
  font-weight: 400;
  color: rgba(230, 220, 255, 0.75);
  word-wrap: break-word;
  max-width: 100%;
}

.audio-list__dancing-notes {
  display: none;
  flex: 0 0 auto;
  align-items: center;
  align-self: center;
  gap: 0.15em;
  margin-left: 0.25rem;
  color: #f0c8ff;
  font-size: 1.1rem;
  line-height: 1;
}

.audio-list__btn.is-playing .audio-list__dancing-notes {
  display: inline-flex;
}

.audio-list__dance-char {
  display: inline-block;
  transform-origin: 50% 100%;
}

.audio-list__btn.is-playing .audio-list__dance-char {
  animation: audio-note-dance 0.5s ease-in-out infinite;
}

.audio-list__dance-char:nth-child(1) {
  animation-delay: 0s;
}

.audio-list__dance-char:nth-child(2) {
  animation-delay: 0.1s;
}

.audio-list__dance-char:nth-child(3) {
  animation-delay: 0.2s;
}

@media (prefers-reduced-motion: reduce) {
  .audio-list__btn.is-playing .audio-list__dance-char {
    animation: none;
  }
}

@keyframes audio-note-dance {

  0%,
  100% {
    transform: translateY(0) rotate(-6deg) scale(1);
  }

  25% {
    transform: translateY(-4px) rotate(4deg) scale(1.1);
  }

  50% {
    transform: translateY(-1px) rotate(8deg) scale(1.05);
  }

  75% {
    transform: translateY(-5px) rotate(-3deg) scale(1.12);
  }
}

.audio-list__item--message {
  padding: 0.75rem 1rem;
}

.audio-list__empty-text {
  margin: 0;
  text-align: center;
}

.audio-list__err {
  text-align: center;
  color: #ffb4b4;
  margin-top: 0.75rem;
}

/* --- Embeds (video) --- */
.embed-block {
  width: 100%;
  max-width: 100%;
  margin: 0 auto 1.5rem;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.embed-block--video {
  position: relative;
  min-height: 0;
  aspect-ratio: 16 / 9;
  max-width: 100%;
  border: 1px solid #333;
  display: block;
  overflow: hidden;
}

.embed-block--video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-layout {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

/* Author `display: flex` wins over unqualified `[hidden]` in some browsers; force collapse. */
#video-links[hidden] {
  display: none !important;
}

#audio-samples-panel[hidden] {
  display: none !important;
}

#tour-panel[hidden] {
  display: none !important;
}

/* Single large player: appears above the thumbnail strip, pushes the row down */
.video-focus:empty,
.video-focus[hidden] {
  display: none;
}

.video-focus:not([hidden]) {
  display: block;
  width: 100%;
}

.embed-block--focus {
  max-width: 56rem;
  margin: 0 auto;
}

/* Four videos in one row; narrow viewports keep the same row with smaller cells. */
.video-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.4rem 0.35rem;
  align-items: start;
  justify-items: center;
}

@media (min-width: 768px) {
  /* Desktop: single row height matches cover-art column proportions (350×467 baseline). */
  #video-links .video-thumbs {
    --live-cover-h: calc(var(--expand-cover-art-w, clamp(8rem, 20vw, 11rem)) * 467 / 350);
    height: var(--live-cover-h);
    grid-template-rows: minmax(0, 1fr);
    align-items: stretch;
    justify-items: stretch;
  }

  #video-links .video-item {
    height: 100%;
    min-height: 0;
    align-items: stretch;
  }

  #video-links .video-thumb {
    flex: 1 1 auto;
    min-height: 0;
    height: auto;
    max-width: none;
  }

  #video-links .video-item__comment {
    flex-shrink: 0;
    max-height: 3.6em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-height: 1.2;
  }
}

.video-item {
  list-style: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  min-width: 0;
  width: 100%;
}

/* Compact 16:9 hit target (thumbnails, not full embeds) */
.video-thumb {
  position: relative;
  display: block;
  width: 100%;
  max-width: 8rem;
  max-width: 100%;
  height: 4.5rem;
  margin: 0;
  padding: 0;
  border: 1px solid #555;
  background: #111;
  cursor: pointer;
  overflow: hidden;
  line-height: 0;
  box-sizing: border-box;
  transition: outline 0.15s ease, border-color 0.15s ease;
}

.video-thumb:hover {
  border-color: #8a7a8a;
}

.video-thumb[aria-pressed="true"] {
  outline: 2px solid #c4a0b8;
  outline-offset: 2px;
  border-color: #c4a0b8;
}

.video-thumb__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.video-thumb__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  pointer-events: none;
}

.video-thumb__play::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 0.8rem solid rgba(255, 255, 255, 0.95);
  border-top: 0.5rem solid transparent;
  border-bottom: 0.5rem solid transparent;
  margin-left: 0.2rem;
}

.video-item__comment {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.35;
  text-align: center;
  color: #c8c4c0;
  font-weight: 400;
  max-width: 100%;
}

.video-item__fallback {
  margin: 0;
  text-align: center;
  font-size: 0.8rem;
}

.video-item__fallback a {
  color: #e8d8e0;
}

.video-row--message {
  grid-column: 1 / -1;
  color: #c8c4c0;
  font-size: 0.95rem;
  margin: 0;
  text-align: center;
}

/* --- Show list (light section) --- */
.band-section--light .show-list {
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.show-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  border: 1px solid #e0e0e0;
}

.show-list__header {
  display: none;
}

.show-list__month {
  padding: 0.55rem 0.85rem 0.2rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #444;
  background: rgba(0, 0, 0, 0.04);
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.show-list__header + .show-list__month {
  border-top: none;
}

.show-list__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  row-gap: 8px;
  column-gap: 0.4rem;
  padding: 0.65rem 0.85rem;
  align-items: start;
}

.show-list__date-cell,
.show-list__info {
  display: contents;
}

.show-list__date {
  grid-column: 1;
  grid-row: 1;
  text-align: center;
}

.show-list__note {
  grid-column: 1;
  grid-row: 2;
  text-align: center;
}

.show-list__venue,
.show-list__venue--link {
  grid-column: 2;
  grid-row: 1;
  text-align: center;
}

.show-list__meta {
  grid-column: 2;
  grid-row: 2;
  text-align: center;
}

.show-list__actions {
  grid-column: 3;
  grid-row: 1 / -1;
  justify-self: end;
  align-self: start;
  width: max-content;
  max-width: 100%;
  margin-left: auto;
}

.show-list__row + .show-list__row,
.show-list__month + .show-list__row {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

@media (min-width: 600px) {
  .show-list__header {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.65rem;
    padding: 0.45rem 0.85rem;
    align-items: center;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #555;
    background: rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .show-list__header-date {
    grid-column: 1;
    text-align: center;
  }

  .show-list__header-details {
    grid-column: 2;
    text-align: center;
  }

  .show-list__header-links {
    grid-column: 3;
    text-align: right;
  }
}

.show-list__date {
  display: block;
  font-family: var(--font-body);
  font-size: 0.86rem;
  letter-spacing: 0.02em;
  color: #4d1f42;
  line-height: 1.15;
}

.show-list__note {
  margin: -0.15rem 0 0;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.15;
  color: #5a3d52;
}

.show-list__venue {
  display: block;
  font-weight: 500;
  color: #111;
  overflow-wrap: anywhere;
  line-height: 1.15;
}

.show-list__venue--link {
  text-decoration: none;
}

.show-list__venue--link:hover,
.show-list__venue--link:focus-visible {
  color: #6b2d5c;
  text-decoration: underline;
}

.show-list__meta {
  margin-top: .1rem;
  color: #555;
  font-size: 0.88rem;
  overflow-wrap: anywhere;
  line-height: 1.15;
}

.show-list__info > span {
  display: block;
}

.show-list__actions {
  display: flex;
  gap: 0.1rem;
  flex-shrink: 0;
  margin: 0;
}

.show-list__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  color: #6b2d5c;
  border-radius: 4px;
  transition: color 0.15s ease, background 0.15s ease;
}

.show-list__action:hover,
.show-list__action:focus-visible {
  color: #111;
  background: rgba(107, 45, 92, 0.12);
}

.show-list__action-icon {
  width: 1.55rem;
  height: 1.55rem;
  fill: currentColor;
}

/* --- Utility pages --- */
.page-not-found {
  padding: 4rem 1rem;
  text-align: center;
}

.page-not-found__title {
  margin: 0 0 0.5rem;
}

.page-not-found__text {
  margin: 0 auto 1.5rem;
  max-width: 40ch;
}

/* --- Footer --- */
.site-footer {
  text-align: center;
  padding: 2rem 1rem 2.5rem;
  padding-bottom: max(2.5rem, env(safe-area-inset-bottom, 0px));
  color: #c8c8c8;
  font-size: 0.9rem;
  font-weight: 400;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.28);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
  overflow-wrap: break-word;
}

.site-footer a {
  color: #ccc;
}

.site-footer__line {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  overflow-wrap: anywhere;
}

.band-section--light a {
  color: #111;
  text-decoration: underline;
}

@media (max-width: 700px) {
  :root {
    --site-max: 100%;
  }

  .site-wrap {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  .page-header::after {
    max-height: none;
    min-height: clamp(180px, 42vw, 360px);
  }

  .page-hero {
    aspect-ratio: 2400 / 900;
    max-height: none;
    min-height: clamp(180px, 42vw, 360px);
    display: block;
  }

  .page-hero picture {
    height: 100%;
  }

  .page-hero__copy-wrap {
    position: static;
    padding: 0.65rem 0.5rem 0.85rem;
    background: transparent;
    text-align: center;
  }

  /* Mobile: framed bio card with a gilt left accent that ties to the cover-art frames. */
  .page-hero__copy {
    text-align: left;
    column-count: 1;
    font-size: clamp(0.82rem, 3.2vw, 0.95rem);
    line-height: 1.55;
    padding: 0.85rem 0.9rem 0.9rem 1rem;
    background: linear-gradient(180deg, rgba(20, 14, 6, 0.4), rgba(8, 5, 2, 0.48));
    border: 1px solid rgba(201, 165, 90, 0.28);
    border-left: 3px solid rgba(201, 165, 90, 0.7);
    border-radius: 0.3rem;
    hyphens: none;
  }

  .page-hero__copy::first-letter {
    font-size: 2.6em;
    padding: 0.02em 0.14em 0 0;
    margin: 0.02em 0.04em 0 0;
  }

  .page-hero__img {
    height: 100%;
    min-height: 100%;
    object-fit: contain;
    object-position: center top;
    transform: translateY(35px);
  }

  .social-bar {
    gap: 1.35rem;
    padding-top: 0.35rem;
    padding-bottom: 0.65rem;
  }

  .icon-s {
    width: 22px;
    height: 22px;
  }

  .video-thumbs {
    gap: 0.6rem 0.55rem;
  }

  .video-item__comment {
    font-size: 0.78rem;
  }

  .show-list__row {
    padding: 0.55rem 0.7rem;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 1rem;
  }

  .site-wrap {
    padding-left: max(0.6rem, env(safe-area-inset-left, 0px));
    padding-right: max(0.6rem, env(safe-area-inset-right, 0px));
  }

  .headline-caps {
    margin: 2rem 0 0.75rem;
    letter-spacing: 0.08em;
  }

  .headline-caps__toggle {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .audio-list__btn {
    padding: 0.6rem 0.7rem;
  }

  .audio-list__track {
    font-size: 0.95rem;
  }

  .video-item__comment {
    line-height: 1.25;
  }

  .site-footer {
    padding-top: 1.5rem;
  }
}
