/* ==========================================================================
   David Jellema — site styles
   Two worlds: the after-hours club (dark) and the record sleeve / booking
   sheet (kraft paper). Every color comes from the tokens below.
   ========================================================================== */

:root {
  /* Club */
  --night: #17110f;
  --night-2: #211816;
  --night-line: #3b2d27;
  --paper: #ece2cc;
  --nickel: #aaa196;

  /* Sleeve & booking sheet */
  --kraft: #cfb68c;
  --kraft-deep: #b99c6c;
  --sheet: #ebe0c7;
  --ink: #1c1411;
  --ink-soft: #57432f;

  /* Accents */
  --brass: #cfa650;
  --oxblood: #8c2b26;
  --oxblood-hi: #a5352e;
  --on-oxblood: #f7ecd6;

  /* Type */
  --f-display: "Big Shoulders Display", "Oswald", "Arial Narrow", Impact, sans-serif;
  --f-body: "Libre Caslon Text", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --f-type: "Courier Prime", "Courier New", ui-monospace, monospace;

  --t-xs: 0.75rem;
  --t-sm: 0.875rem;
  --t-base: 1.0625rem;
  --t-lg: 1.25rem;
  --t-xl: 1.6rem;
  --t-2xl: clamp(2.5rem, 5.2vw, 3.9rem);
  --t-hero: clamp(4.2rem, 13vw, 10.5rem);

  --gutter: clamp(16px, 4vw, 44px);
  --maxw: 1180px;
  --header-h: 68px;
}

/* ---------- Base ---------- */

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

html {
  color-scheme: dark;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--night);
  color: var(--paper);
  font-family: var(--f-body);
  font-size: var(--t-base);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

h1, h2, h3 { margin: 0; text-wrap: balance; }

p { margin: 0; }

:focus-visible {
  outline: 3px solid var(--brass);
  outline-offset: 3px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: 12px; top: -100px;
  z-index: 100;
  background: var(--brass);
  color: var(--night);
  padding: 10px 16px;
  font-family: var(--f-type);
  font-weight: 700;
}
.skip-link:focus { top: 12px; }

.wrap {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ---------- Shared type pieces ---------- */

.kicker {
  font-family: var(--f-type);
  font-size: var(--t-sm);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
}

.section-title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: var(--t-2xl);
  line-height: 0.95;
  letter-spacing: 0.005em;
  text-transform: uppercase;
}

.section-head {
  display: grid;
  gap: 12px;
  margin-bottom: clamp(32px, 4vw, 52px);
  max-width: 44rem;
}

.section-head p {
  color: var(--nickel);
  max-width: 60ch;
}

.section { padding-block: clamp(64px, 9vw, 120px); }

.section--raised { background: var(--night-2); }

/* Paper sections: the album sleeve and the booking sheet */
.section--kraft,
.section--sheet {
  color-scheme: light;
  color: var(--ink);
}
.section--kraft {
  background-color: var(--kraft);
  background-image:
    repeating-linear-gradient(93deg, rgba(90, 60, 30, 0.05) 0 1px, transparent 1px 7px),
    repeating-linear-gradient(-2deg, rgba(255, 245, 220, 0.07) 0 2px, transparent 2px 11px);
}
.section--sheet { background: var(--sheet); }

.section--kraft .kicker,
.section--sheet .kicker { color: var(--oxblood); }

.section--kraft .section-head p,
.section--sheet .section-head p { color: var(--ink-soft); }

.section--kraft :focus-visible,
.section--sheet :focus-visible { outline-color: var(--oxblood); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  padding: 0.95em 1.5em;
  border: 2px solid transparent;
  font-family: var(--f-type);
  font-size: var(--t-sm);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.18s, color 0.18s, border-color 0.18s;
}

.btn--primary {
  background: var(--oxblood);
  border-color: var(--oxblood);
  color: var(--on-oxblood);
}
.btn--primary:hover { background: var(--oxblood-hi); border-color: var(--oxblood-hi); }

.btn--ghost {
  background: transparent;
  border-color: var(--brass);
  color: var(--brass);
}
.btn--ghost:hover { background: var(--brass); color: var(--night); }

.btn--ink {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn--ink:hover { background: var(--ink); color: var(--sheet); }

.btn--small { padding: 0.7em 1.1em; font-size: var(--t-xs); }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(23, 17, 15, 0.9);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--night-line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: var(--header-h);
}

.wordmark {
  display: flex;
  align-items: baseline;
  gap: 0.35em;
  text-decoration: none;
  line-height: 1;
}
.wordmark-first {
  font-family: var(--f-body);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--brass);
}
.wordmark-last {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1.55rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--paper);
}

.site-nav { display: flex; align-items: center; gap: 28px; }

.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-family: var(--f-type);
  font-size: var(--t-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--nickel);
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--paper); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--night-line);
  color: var(--paper);
  font-family: var(--f-type);
  font-size: var(--t-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 12px;
  cursor: pointer;
}

/* ---------- Hero ---------- */

.hero { padding-block: clamp(40px, 6vw, 84px) clamp(48px, 6vw, 80px); }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.8fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: end;
}

.hero-copy { display: grid; gap: 28px; }

.hero-title { line-height: 1; }
.hero-first {
  display: block;
  font-family: var(--f-body);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  color: var(--brass);
  margin-bottom: -0.05em;
  padding-left: 0.08em;
}
.hero-last {
  display: block;
  font-family: var(--f-display);
  font-weight: 900;
  font-size: var(--t-hero);
  line-height: 0.84;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--paper);
}

.hero-lede {
  font-size: var(--t-lg);
  line-height: 1.55;
  max-width: 36ch;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin: 8px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--night-line);
}
.hero-facts div { display: grid; gap: 4px; }
.hero-facts dt {
  font-family: var(--f-type);
  font-size: var(--t-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--nickel);
}
.hero-facts dd {
  margin: 0;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: var(--t-xl);
  line-height: 1.1;
  text-transform: uppercase;
}

/* Cabinet-card photo */
.cabinet {
  margin: 0;
  background: var(--sheet);
  padding: 12px 12px 0;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.7);
}
.cabinet img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  filter: grayscale(1) contrast(1.06);
}
.cabinet figcaption {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 2px 12px;
  font-family: var(--f-type);
  font-size: var(--t-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* "Heard with" strip */
.heard {
  border-block: 1px solid var(--night-line);
  padding-block: 20px;
}
.heard-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 22px;
}
.heard-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 0;
  list-style: none;
  margin: 0;
  padding: 0;
}
.heard-list li {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: var(--t-lg);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--nickel);
}
.heard-list li:not(:last-child)::after {
  content: "·";
  margin-inline: 0.6em;
  color: var(--brass);
}

/* Press quote */
.press {
  margin: 12px 0 0;
  padding-left: 20px;
  border-left: 2px solid var(--brass);
  display: grid;
  gap: 8px;
}
.press p {
  font-size: var(--t-xl);
  font-style: italic;
  line-height: 1.35;
  color: var(--paper);
  max-width: 34ch;
}
.press footer {
  font-family: var(--f-type);
  font-size: var(--t-sm);
  color: var(--nickel);
}
.press a { color: var(--brass); }

/* ---------- Listen: the record player ---------- */

.listen-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: center;
}

.record-wrap {
  position: relative;
  width: min(100%, 440px);
  margin-inline: auto;
  aspect-ratio: 1;
}

/* Light falling on the shellac: fixed, so it doesn't turn with the disc */
.record-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
  background: conic-gradient(
    from 20deg,
    transparent 0deg,
    rgba(255, 240, 210, 0.1) 25deg,
    transparent 55deg,
    transparent 180deg,
    rgba(255, 240, 210, 0.07) 205deg,
    transparent 235deg
  );
}

.record {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 0 31%, rgba(0, 0, 0, 0.5) 31.4%, transparent 33%),
    repeating-radial-gradient(circle, #0f0c0b 0 1.5px, #1d1917 1.5px 3px);
  box-shadow:
    0 0 0 6px #0c0a09,
    0 34px 60px -24px rgba(0, 0, 0, 0.9);
  animation: spin 1.8s linear infinite; /* 33⅓ rpm */
  animation-play-state: paused;
}
.record.is-spinning { animation-play-state: running; }

@keyframes spin { to { transform: rotate(360deg); } }

.record-label {
  position: absolute;
  inset: 31%;
  border-radius: 50%;
  background: var(--oxblood);
  box-shadow: inset 0 0 0 5px rgba(207, 166, 80, 0.55), inset 0 0 0 7px var(--oxblood);
  display: grid;
  place-content: center;
  gap: 4px;
  padding: 14%;
  text-align: center;
  color: var(--on-oxblood);
}
.record-label::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 9px; height: 9px;
  margin: -4.5px 0 0 -4.5px;
  border-radius: 50%;
  background: var(--night);
}
.label-mark {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(0.8rem, 1.6vw, 1rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass);
}
.label-title {
  font-family: var(--f-body);
  font-style: italic;
  font-size: clamp(0.62rem, 1.2vw, 0.78rem);
  line-height: 1.25;
  margin-top: 14px; /* clear the spindle hole */
}
.label-band {
  font-family: var(--f-type);
  font-size: clamp(0.5rem, 0.9vw, 0.6rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.8;
}

.tracklist {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--night-line);
}

.track {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 18px 8px;
  background: none;
  border: 0;
  border-bottom: 1px solid var(--night-line);
  color: var(--paper);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.15s;
}
.track:hover { background: rgba(236, 226, 204, 0.04); }

.track-icon {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border: 1.5px solid var(--night-line);
  border-radius: 50%;
  color: var(--brass);
  transition: border-color 0.15s;
}
.track:hover .track-icon { border-color: var(--brass); }
.track-icon svg { width: 14px; height: 14px; fill: currentColor; }
.track .icon-pause { display: none; }
.track.is-playing .icon-play { display: none; }
.track.is-playing .icon-pause { display: block; }

.track-text { display: grid; gap: 2px; min-width: 0; }
.track-title { font-size: var(--t-lg); line-height: 1.3; }
.track-band {
  font-family: var(--f-type);
  font-size: var(--t-sm);
  color: var(--nickel);
}
.track-time {
  font-family: var(--f-type);
  font-size: var(--t-sm);
  font-variant-numeric: tabular-nums;
  color: var(--nickel);
}
.track[aria-pressed="true"] .track-title { color: var(--brass); }
.track[aria-pressed="true"] .track-icon { border-color: var(--brass); }

.transport {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  margin-top: 26px;
}

.play-toggle {
  display: grid;
  place-items: center;
  width: 54px; height: 54px;
  border: 0;
  border-radius: 50%;
  background: var(--brass);
  color: var(--night);
  cursor: pointer;
}
.play-toggle svg { width: 18px; height: 18px; fill: currentColor; }
.play-toggle .icon-pause { display: none; }
.play-toggle.is-playing .icon-play { display: none; }
.play-toggle.is-playing .icon-pause { display: block; }

.progress {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  margin: 0;
  border-radius: 2px;
  background: linear-gradient(to right, var(--brass) var(--pct, 0%), var(--night-line) var(--pct, 0%));
  cursor: pointer;
}
.progress::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--paper);
  border: 0;
}
.progress::-moz-range-thumb {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--paper);
  border: 0;
}

.clock {
  font-family: var(--f-type);
  font-size: var(--t-sm);
  font-variant-numeric: tabular-nums;
  color: var(--nickel);
  white-space: nowrap;
}

.listen-note {
  margin-top: 18px;
  font-size: var(--t-sm);
  color: var(--nickel);
}
.listen-note a { color: var(--brass); }

/* ---------- Watch ---------- */

.watch-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr);
  gap: clamp(24px, 3vw, 40px);
  align-items: start;
}

.video-stage {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}
.video-stage iframe,
.video-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-poster {
  padding: 0;
  background: #000;
  cursor: pointer;
}
.video-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.video-poster:hover img { opacity: 1; }
.play-badge {
  position: absolute;
  left: 50%; top: 50%;
  display: grid;
  place-items: center;
  width: 78px; height: 78px;
  margin: -39px 0 0 -39px;
  border-radius: 50%;
  background: var(--oxblood);
  color: var(--on-oxblood);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s;
}
.video-poster:hover .play-badge { transform: scale(1.06); }
.play-badge svg { width: 26px; height: 26px; margin-left: 4px; fill: currentColor; }

.video-caption { display: grid; gap: 4px; margin-top: 16px; }
.video-caption-title { font-size: var(--t-lg); }
.video-caption-meta {
  font-family: var(--f-type);
  font-size: var(--t-sm);
  color: var(--nickel);
}

.video-list {
  display: grid;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.video-item {
  display: grid;
  grid-template-columns: 124px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  width: 100%;
  padding: 8px;
  background: none;
  border: 1px solid transparent;
  color: var(--paper);
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.video-item:hover { background: rgba(236, 226, 204, 0.05); }
.video-item[aria-current="true"] { border-color: var(--night-line); background: rgba(236, 226, 204, 0.05); }
.video-item img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.video-item-text { display: grid; gap: 2px; }
.video-item-title { font-size: var(--t-sm); line-height: 1.35; }
.video-item-meta {
  font-family: var(--f-type);
  font-size: var(--t-xs);
  color: var(--nickel);
}
.video-item[aria-current="true"] .video-item-meta::before {
  content: "Now showing · ";
  color: var(--brass);
}

.watch-more { margin-top: 20px; }

/* ---------- Records & merch ---------- */

.album {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: start;
}

/* Cover with the disc peeking out of the sleeve */
.sleeve {
  position: relative;
  margin-right: 12%;
}
.sleeve::before {
  content: "";
  position: absolute;
  top: 3%; bottom: 3%;
  right: -12%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, var(--oxblood) 0 15%, transparent 15.5%),
    repeating-radial-gradient(circle, #14100f 0 1.5px, #221c1a 1.5px 3px);
  transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.sleeve:hover::before { transform: translateX(6%); }
.sleeve img {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  box-shadow: 0 26px 50px -18px rgba(40, 20, 10, 0.65);
}

.album-info { display: grid; gap: 22px; }
.album-info p { max-width: 60ch; }

.album-tracks {
  columns: 2;
  column-gap: 32px;
  margin: 0;
  padding: 18px 0 0;
  border-top: 1.5px solid var(--ink);
  list-style: none;
  counter-reset: trk;
  font-family: var(--f-type);
  font-size: var(--t-sm);
}
.album-tracks li {
  display: flex;
  gap: 8px;
  break-inside: avoid;
  padding-block: 3px;
  counter-increment: trk;
}
.album-tracks li::before {
  content: counter(trk, decimal-leading-zero);
  color: var(--oxblood);
}
.album-tracks .t { flex: 1; }
.album-tracks .d { font-variant-numeric: tabular-nums; color: var(--ink-soft); }

.album-credits {
  font-size: var(--t-sm);
  color: var(--ink-soft);
}

.album-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.bandcamp-player {
  width: 100%;
  height: 120px;
  border: 0;
  display: block;
}

.more,
.credits {
  margin-top: clamp(56px, 7vw, 88px);
  padding-top: 28px;
  border-top: 1.5px solid var(--ink);
}
.more h3,
.merch h3,
.credits h2 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: var(--t-xl);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.more-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px 24px;
  margin-bottom: 28px;
}
.more-head h3 { margin-bottom: 0; }

/* Record shelf: covers with the disc sliding out of the sleeve on hover */
.shelf {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 190px), 1fr));
  gap: 44px 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.shelf--strip { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.rec { display: grid; gap: 5px; align-content: start; }

.rec-cover {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1;
  margin-bottom: 10px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}
.rec-cover::before {
  content: "";
  position: absolute;
  inset: 3%;
  border-radius: 50%;
  background:
    radial-gradient(circle, var(--oxblood) 0 15%, transparent 15.5%),
    repeating-radial-gradient(circle, #14100f 0 1.5px, #221c1a 1.5px 3px);
  transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.rec-cover:hover::before,
.rec-cover:focus-visible::before { transform: translateX(14%); }
.rec-cover img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 16px 30px -14px rgba(40, 20, 10, 0.6);
}
.rec-badge {
  position: absolute;
  left: 10px; bottom: 10px;
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--oxblood);
  color: var(--on-oxblood);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}
.rec-badge svg { width: 14px; height: 14px; margin-left: 2px; fill: currentColor; }

.rec-tag {
  font-family: var(--f-type);
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--oxblood);
}
.rec-title { font-style: italic; font-size: var(--t-lg); line-height: 1.25; }
.rec-band {
  font-family: var(--f-type);
  font-size: var(--t-sm);
  color: var(--ink);
}
.rec-meta {
  font-family: var(--f-type);
  font-size: var(--t-xs);
  color: var(--ink-soft);
}
.rec-link {
  justify-self: start;
  margin-top: 4px;
  font-size: var(--t-sm);
  color: var(--oxblood);
}

/* Instrument filter */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}
.chip {
  padding: 0.6em 1em;
  background: transparent;
  border: 1.5px solid var(--ink);
  color: var(--ink);
  font-family: var(--f-type);
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}
.chip:hover { background: rgba(28, 20, 17, 0.08); }
.chip[aria-pressed="true"] { background: var(--ink); color: var(--kraft); }
.chip-count {
  margin-left: 0.5em;
  font-weight: 400;
  font-variant-numeric: tabular-nums;
  opacity: 0.75;
}

/* Other credits */
.credits p { color: var(--ink-soft); max-width: 60ch; margin-bottom: 20px; }
.table-scroll { overflow-x: auto; }
.credits-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
}
.credits-table th {
  padding: 0 14px 10px 0;
  border-bottom: 1.5px solid var(--ink);
  font-family: var(--f-type);
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: left;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.credits-table td {
  padding: 12px 14px 12px 0;
  border-bottom: 1px solid rgba(28, 20, 17, 0.22);
  vertical-align: baseline;
}
.credits-table .yr {
  font-family: var(--f-type);
  font-variant-numeric: tabular-nums;
}
.credits-table .ttl { font-style: italic; }
.credits-table .ins { font-family: var(--f-type); font-size: var(--t-sm); }
.credits-table a { color: var(--oxblood); font-size: var(--t-sm); }

/* Bandcamp preview dialog */
.listen-dialog {
  width: min(560px, calc(100% - 32px));
  max-height: calc(100vh - 32px);
  padding: 0;
  border: 0;
  background: var(--sheet);
  color: var(--ink);
  color-scheme: light;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}
.listen-dialog::backdrop { background: rgba(12, 8, 7, 0.72); }
.listen-dialog :focus-visible { outline-color: var(--oxblood); }
.dialog-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 20px 14px;
  border-bottom: 3px double var(--ink);
}
.dialog-title { font-style: italic; font-size: var(--t-xl); line-height: 1.2; }
.dialog-band {
  margin-top: 4px;
  font-family: var(--f-type);
  font-size: var(--t-sm);
  color: var(--ink-soft);
}
.dialog-close {
  flex: none;
  width: 40px; height: 40px;
  border: 1.5px solid var(--ink);
  background: none;
  color: var(--ink);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}
.dialog-body { display: grid; gap: 16px; padding: 16px 20px 20px; }
.dialog-body iframe { display: block; width: 100%; border: 0; }

/* Records page closing call to action */
.cta-band {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px 40px;
}
.cta-band .section-head { margin-bottom: 0; }

.nav-links a[aria-current="page"] { color: var(--paper); }

/* Merch grid (fills in as items are added) */
.merch {
  margin-top: clamp(56px, 7vw, 88px);
  padding-top: 28px;
  border-top: 1.5px solid var(--ink);
}
.merch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 28px;
}
.merch-item { display: grid; gap: 10px; align-content: start; }
.merch-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--kraft-deep);
}
.merch-name { font-size: var(--t-lg); }
.merch-price {
  font-family: var(--f-type);
  font-variant-numeric: tabular-nums;
  color: var(--ink-soft);
}

/* ---------- Shows & bands ---------- */

.shows-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: start;
}

.subhead {
  font-family: var(--f-type);
  font-size: var(--t-sm);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--nickel);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--night-line);
}

.gig-list { list-style: none; margin: 0; padding: 0; }
.gig {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 20px;
  padding-block: 18px;
  border-bottom: 1px solid var(--night-line);
}
.gig-date {
  display: grid;
  justify-items: center;
  align-content: start;
  line-height: 1;
}
.gig-month {
  font-family: var(--f-type);
  font-size: var(--t-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass);
}
.gig-day {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 2.3rem;
  font-variant-numeric: tabular-nums;
}
.gig-body { display: grid; gap: 3px; }
.gig-band { font-size: var(--t-lg); line-height: 1.3; }
.gig-where {
  font-family: var(--f-type);
  font-size: var(--t-sm);
  color: var(--nickel);
}
.gig-body a { color: var(--brass); font-size: var(--t-sm); }

.gig-empty {
  padding-block: 22px;
  border-bottom: 1px solid var(--night-line);
  color: var(--nickel);
  max-width: 48ch;
}
.gig-empty a { color: var(--brass); }

.band-list {
  columns: 2;
  column-gap: 28px;
  list-style: none;
  margin: 0;
  padding: 14px 0 0;
}
.band-list li {
  break-inside: avoid;
  padding-block: 5px;
  line-height: 1.35;
}
.band-list .band-note {
  display: block;
  font-family: var(--f-type);
  font-size: var(--t-xs);
  color: var(--nickel);
}

/* ---------- About ---------- */

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: start;
}

.about-photo {
  margin: 0;
  position: sticky;
  top: calc(var(--header-h) + 24px);
}
.about-photo img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  filter: grayscale(1) contrast(1.04);
}

.about-text { display: grid; gap: 20px; }
.about-text p { max-width: 62ch; }
.about-text .pull {
  font-size: var(--t-xl);
  line-height: 1.4;
  font-style: italic;
  color: var(--paper);
  max-width: 30ch;
}

.spec {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 28px;
  margin: 12px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--night-line);
}
.spec div { display: grid; gap: 4px; }
.spec dt {
  font-family: var(--f-type);
  font-size: var(--t-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass);
}
.spec dd { margin: 0; font-size: var(--t-sm); color: var(--nickel); }

.filmstrip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: clamp(48px, 6vw, 72px);
}
.filmstrip img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
  transition: filter 0.4s;
}
.filmstrip img:hover { filter: none; }

/* ---------- Booking sheet ---------- */

.book-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: start;
}

.book-intro { display: grid; gap: 20px; }
.book-intro p { max-width: 42ch; }

.book-kinds {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
  font-family: var(--f-type);
  font-size: var(--t-sm);
}
.book-kinds li::before { content: "— "; color: var(--oxblood); }

.book-direct {
  padding-top: 18px;
  border-top: 1.5px solid var(--ink);
  font-size: var(--t-sm);
  color: var(--ink-soft);
}
.book-direct a { color: var(--oxblood); }

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 28px;
  padding: clamp(24px, 4vw, 44px);
  background: #f4ecda;
  box-shadow: 0 1px 0 var(--kraft-deep), 0 24px 50px -30px rgba(60, 35, 15, 0.45);
}

.form-title {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 3px double var(--ink);
}
.form-title h3 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: var(--t-xl);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.form-title span {
  font-family: var(--f-type);
  font-size: var(--t-xs);
  color: var(--ink-soft);
}

.field { display: grid; gap: 6px; }
.field--full { grid-column: 1 / -1; }

.field label {
  font-family: var(--f-type);
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.field .req { color: var(--oxblood); }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 8px 2px;
  background: transparent;
  border: 0;
  border-bottom: 1.5px solid var(--ink);
  border-radius: 0;
  color: var(--ink);
  font-family: var(--f-body);
  font-size: var(--t-base);
  line-height: 1.4;
}
.field textarea {
  min-height: 132px;
  resize: vertical;
  border: 1.5px solid var(--ink);
  padding: 10px 12px;
}
.field select {
  -webkit-appearance: none;
  appearance: none;
  padding-right: 28px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%231c1411' stroke-width='1.8'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  cursor: pointer;
}
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--oxblood); }
.field input::placeholder,
.field textarea::placeholder { color: #8e7a63; }

.hp { position: absolute; left: -9999px; }

.form-foot {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
}

.form-status {
  font-size: var(--t-sm);
  flex: 1 1 240px;
}
.form-status.is-success { color: #2f5a2a; }
.form-status.is-error { color: var(--oxblood); }

/* ---------- Footer ---------- */

.site-footer {
  padding-block: 56px 40px;
  border-top: 1px solid var(--night-line);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 28px;
}
.footer-tag {
  margin-top: 10px;
  font-family: var(--f-type);
  font-size: var(--t-sm);
  color: var(--nickel);
}
.social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.social a {
  font-family: var(--f-type);
  font-size: var(--t-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brass);
  text-decoration: none;
}
.social a:hover { text-decoration: underline; text-underline-offset: 4px; }
.footer-small {
  margin-top: 36px;
  font-family: var(--f-type);
  font-size: var(--t-xs);
  color: var(--nickel);
}

/* ---------- Responsive ---------- */

@media (max-width: 960px) {
  .shelf--strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 880px) {
  .nav-toggle { display: inline-block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    padding: 8px var(--gutter) 16px;
    background: var(--night);
    border-bottom: 1px solid var(--night-line);
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { display: block; padding-block: 12px; font-size: var(--t-base); }
  .site-nav .btn { display: none; }

  .hero-grid,
  .listen-grid,
  .watch-grid,
  .album,
  .shows-grid,
  .about-grid,
  .book-grid { grid-template-columns: minmax(0, 1fr); }

  .hero-photo { max-width: 340px; }
  .about-photo { position: static; max-width: 340px; }
  .sleeve { max-width: 420px; }
  .filmstrip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
  .hero-facts { grid-template-columns: minmax(0, 1fr); gap: 14px; }
  .hero-facts dd { font-size: var(--t-lg); }
  .album-tracks,
  .band-list { columns: 1; }
  .spec,
  .booking-form { grid-template-columns: minmax(0, 1fr); }
  .video-item { grid-template-columns: 104px minmax(0, 1fr); }
  .form-title { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .record { animation: none; }
  .sleeve::before,
  .rec-cover::before,
  .filmstrip img { transition: none; }
}
