/* The Usual Suspects — site stylesheet
 * DARK BIKER THEME
 * Black leather, oxidized steel, faded denim, brass.
 * The five-piece that plays VFWs, Legion halls, bars, and biker rides.
 */

:root {
  /* ── Core surfaces ───────────────────────────────────────── */
  --bg: #0a0a0c;             /* deep black, like wet asphalt */
  --bg-warm: #131316;        /* leather black */
  --bg-card: #1a1a1f;        /* saddle leather */
  --bg-elev: #20202a;        /* lifted card / chrome highlight */
  --ink: #ece6d6;            /* aged paper / cream stitch */
  --ink-soft: #b9b3a3;       /* worn denim */
  --muted: #75716a;          /* tarnished steel */

  /* ── Lines, borders, accents ─────────────────────────────── */
  --line: #2b2b32;           /* seam line */
  --line-strong: #3a3a44;
  --brass: #c8a14a;          /* brass hardware */
  --brass-bright: #e8c468;
  --brass-dark: #8a6a26;
  --red: #b62a2a;            /* brake-light red */
  --red-glow: #d83a3a;
  --denim: #4a6b8a;          /* faded denim accent */
  --rust: #7a3a1a;           /* rust accent */

  /* ── Effects ─────────────────────────────────────────────── */
  --shadow-card: 0 2px 8px rgba(0,0,0,0.6), 0 0 0 1px rgba(200,161,74,0.06);
  --shadow-deep: 0 8px 32px rgba(0,0,0,0.8);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  background-image:
    /* very subtle leather grain via radial dots */
    radial-gradient(circle at 1px 1px, rgba(200,161,74,0.025) 1px, transparent 0);
  background-size: 4px 4px;
  background-attachment: fixed;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink);
}
h1 { font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1.05; }
h2 {
  font-size: clamp(1.85rem, 3.2vw, 2.6rem);
  line-height: 1.15;
  margin-bottom: 0.5em;
  text-shadow: 0 1px 0 rgba(0,0,0,0.5);
}
h3 {
  font-size: 1.3rem;
  line-height: 1.25;
  margin-bottom: 0.4em;
}

/* All section headings get a subtle brass underline */
h2::after {
  content: '';
  display: block;
  width: 64px;
  height: 2px;
  background: linear-gradient(90deg, var(--brass), transparent);
  margin-top: 0.6em;
}

.eyebrow {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1rem;
}

p { margin-bottom: 1em; }
a {
  color: var(--brass-bright);
  text-decoration: none;
  transition: color 0.15s;
}
a:hover {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--brass);
}

.section {
  padding: 5rem 0;
  border-top: 1px solid var(--line);
}
.section-alt {
  background: var(--bg-warm);
  background-image:
    /* denim weave texture */
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,0.012) 0px,
      rgba(255,255,255,0.012) 1px,
      transparent 1px,
      transparent 3px
    );
}

.section-lede {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 720px;
  margin-bottom: 2.5rem;
}

/* ─── SITE NAV ───────────────────────────────────────────────── */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 12, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}
.site-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}
.site-nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brass-bright);
  letter-spacing: -0.01em;
  text-decoration: none;
}
.site-nav-brand:hover {
  color: var(--ink);
  text-decoration: none;
}
.site-nav-list {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav-list a {
  color: var(--ink-soft);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  transition: color 0.15s;
  text-decoration: none;
}
.site-nav-list a:hover {
  color: var(--brass-bright);
  text-decoration: none;
}
.site-nav-cta {
  padding: 0.45rem 1rem;
  border: 1px solid var(--brass);
  border-radius: 3px;
  color: var(--brass-bright) !important;
  background: rgba(200, 161, 74, 0.08);
}
.site-nav-cta:hover {
  background: var(--brass);
  color: var(--bg) !important;
}
.site-nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-strong);
  color: var(--ink);
  padding: 0.4rem 0.8rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 3px;
}
@media (max-width: 760px) {
  .site-nav-toggle { display: block; }
  .site-nav-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(10, 10, 12, 0.98);
    padding: 0.5rem 1rem 1rem;
    border-bottom: 1px solid var(--line);
  }
  .site-nav-list.open { display: flex; }
  .site-nav-list li {
    border-bottom: 1px solid var(--line);
  }
  .site-nav-list li:last-child { border-bottom: none; }
  .site-nav-list a {
    display: block;
    padding: 0.75rem 0;
  }
  .site-nav-cta {
    margin-top: 0.5rem;
    text-align: center;
  }
}

/* ─── HERO ───────────────────────────────────────────────────── */

.hero {
  background:
    radial-gradient(ellipse at top, rgba(200,161,74,0.06) 0%, transparent 60%),
    var(--bg);
  padding: 3.5rem 0 5rem;
  border-bottom: 1px solid var(--line-strong);
  position: relative;
}
.hero::before {
  /* faint horizontal seam across hero */
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brass) 50%, transparent);
  opacity: 0.4;
}

.logo-wrap {
  text-align: center;
  margin-bottom: 2.5rem;
}

.logo-img {
  display: none; /* shown by site.js once it confirms the file loaded */
  max-width: 480px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: 6px;
  filter: drop-shadow(0 6px 24px rgba(0,0,0,0.6));
}

.logo-fallback {
  display: inline-block;
}
.logo-mark {
  display: none;
}

/* Hero pitch block */
.hero-pitch {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.hero-h {
  font-size: clamp(1.65rem, 3vw, 2.3rem);
  margin-bottom: 1rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 500;
  font-style: italic;
  color: var(--ink-soft);
}
.hero-h::before, .hero-h::after {
  content: '·';
  display: inline-block;
  margin: 0 0.6em;
  color: var(--brass-dark);
  font-style: normal;
  font-weight: 700;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--ink-soft);
  margin-bottom: 2rem;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-upcoming {
  margin-top: 1.75rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}
.hero-upcoming strong {
  color: var(--brass-bright);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
}
.upcoming-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px rgba(74, 222, 128, 0.6);
  margin-right: 0.5rem;
  vertical-align: middle;
  animation: upcoming-pulse 2s ease-in-out infinite;
}
@keyframes upcoming-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.btn {
  display: inline-block;
  padding: 0.95rem 1.85rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
  border-width: 2px;
  border-style: solid;
}
.btn-primary {
  background: var(--brass);
  color: var(--bg);
  border-color: var(--brass);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.4), 0 4px 12px rgba(200,161,74,0.2);
}
.btn-primary:hover {
  background: var(--brass-bright);
  border-color: var(--brass-bright);
  color: var(--bg);
  text-decoration: none;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.4), 0 4px 20px rgba(200,161,74,0.4);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink-soft);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
  text-decoration: none;
}

/* ─── SETLIST ────────────────────────────────────────────────── */

.setlist {
  background: var(--bg-card);
  background-image:
    /* paper-aged texture for setlist */
    radial-gradient(circle at 20% 30%, rgba(200,161,74,0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(74,107,138,0.04) 0%, transparent 50%);
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  padding: 2rem;
  box-shadow: var(--shadow-card);
  position: relative;
}
/* corner brass rivets */
.setlist::before,
.setlist::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--brass-bright) 0%, var(--brass-dark) 70%);
  box-shadow: 0 1px 2px rgba(0,0,0,0.6);
}
.setlist::before { top: 12px; left: 12px; }
.setlist::after { top: 12px; right: 12px; }

.section-alt .setlist {
  background: var(--bg);
  border-color: var(--line-strong);
}

.setlist-note {
  font-style: italic;
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}
.setlist-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.setlist-list li {
  display: grid;
  grid-template-columns: 50px 1fr 1fr;
  gap: 1rem;
  align-items: baseline;
  padding: 0.85rem 0.5rem;
  border-bottom: 1px solid var(--line);
}
.setlist-list li:last-child { border-bottom: none; }
.set-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: var(--brass-dark);
  font-weight: 700;
  letter-spacing: 0.05em;
}
.set-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
}
.set-artist {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  color: var(--ink-soft);
  text-align: right;
}

@media (max-width: 600px) {
  .setlist-list li { grid-template-columns: 40px 1fr; }
  .set-artist { grid-column: 2; text-align: left; font-size: 0.72rem; }
}

/* ─── SECTION DIVIDERS (brass rivets) ─────────────────────── */

/* Add a subtle brass "rivet row" between every section
   to break the uniform spacing and give the eye punctuation. */
.section + .section::before,
.section + .section-alt::before,
.section-alt + .section::before,
.section-alt + .section-alt::before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong) 20%, var(--line-strong) 80%, transparent);
  margin-top: -1px;
  position: relative;
}

/* ─── LISTEN (audio samples) ────────────────────────────────── */

.audio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0 1.5rem;
}
.audio-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: border-color 0.2s, transform 0.2s;
}
.audio-card:hover {
  border-color: var(--brass-dark);
  transform: translateY(-2px);
}
.audio-card-head {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.audio-genre {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
}
.audio-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
}
.audio-player {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.audio-card audio {
  width: 100%;
  filter: sepia(20%) hue-rotate(-10deg);
}
.audio-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 1.5rem 1rem;
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0px,
      transparent 4px,
      rgba(200, 161, 74, 0.025) 4px,
      rgba(200, 161, 74, 0.025) 5px
    ),
    rgba(255, 255, 255, 0.02);
  border: 1px dashed var(--brass-dark);
  border-radius: 4px;
  text-align: center;
  width: 100%;
  position: relative;
  transition: border-color 0.2s, background 0.2s;
}
.audio-card:hover .audio-empty {
  border-color: var(--brass);
}
.audio-empty-icon {
  font-size: 1.6rem;
  color: var(--brass);
  line-height: 1;
  opacity: 0.6;
}
.audio-empty p {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--ink-soft);
  font-style: italic;
}
.audio-empty-sub {
  font-size: 0.72rem !important;
  font-family: 'JetBrains Mono', monospace !important;
  font-style: normal !important;
  color: var(--muted) !important;
  letter-spacing: 0.04em;
}
.audio-empty code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  padding: 0.1rem 0.45rem;
  background: rgba(200, 161, 74, 0.08);
  border: 1px solid var(--brass-dark);
  border-radius: 3px;
  color: var(--brass-bright);
}
.audio-footnote {
  font-size: 0.88rem;
  color: var(--ink-soft);
  text-align: center;
  margin-top: 1.5rem;
}

/* ─── UPCOMING SHOWS ────────────────────────────────────────── */

.shows-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0 1.5rem;
}
.show-card {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 1.5rem;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-left: 3px solid var(--brass);
  border-radius: 4px;
  padding: 1.25rem 1.5rem;
  transition: border-color 0.2s;
}
.show-card:hover {
  border-left-color: var(--brass-bright);
}
.show-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 0.75rem;
  background: rgba(200, 161, 74, 0.08);
  border: 1px solid var(--brass-dark);
  border-radius: 4px;
  text-align: center;
  line-height: 1.1;
}
.show-month {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--brass);
  margin-top: 0.25rem;
}
.show-day {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0.1rem 0;
}
.show-year {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  color: var(--muted);
  letter-spacing: 0.1em;
}
.show-info {
  min-width: 0;
}
.show-venue {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 0.25rem;
}
.show-venue-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--brass);
  text-transform: uppercase;
  margin-left: 0.4rem;
  vertical-align: middle;
}
.show-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin: 0 0 0.4rem;
  letter-spacing: 0.02em;
}
.show-detail {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin: 0;
}
.show-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 0.35rem 0.65rem;
  border-radius: 3px;
  text-transform: uppercase;
  white-space: nowrap;
}
.show-badge-open {
  background: rgba(200, 161, 74, 0.12);
  color: var(--brass-bright);
  border: 1px solid var(--brass-dark);
}
.show-card-past {
  opacity: 0.5;
  border-left-color: var(--muted);
}
.show-card-past .show-day { color: var(--muted); }
.show-card-placeholder {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-left-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.015);
}
.show-card-placeholder .show-info { flex: 1; }
.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.78rem;
}
@media (max-width: 600px) {
  .show-card {
    grid-template-columns: 90px 1fr;
    gap: 1rem;
  }
  .show-badge { grid-column: 1 / -1; justify-self: start; }
  .show-card-placeholder { flex-direction: column; align-items: flex-start; }
}

/* ─── REVIEWS (DORMANT — section removed 2026-07-01, re-enable later) ───
   Rules below stay uncommented so the styles are ready to go when real
   testimonials arrive. They don't fire because there's no matching HTML.
   To re-enable: restore the <section id="reviews"> in index.html and the
   section will pick up these styles automatically. */

/* ─── SECTION COMING SOON ───────────────────────────────────── */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0 1.5rem;
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 1.75rem 1.5rem 1.25rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.review-quote-mark {
  position: absolute;
  top: -0.25rem;
  left: 0.75rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  color: var(--brass-dark);
  opacity: 0.4;
  pointer-events: none;
}
.review-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  line-height: 1.4;
  color: var(--ink);
  font-style: italic;
  margin: 0;
  position: relative;
  z-index: 1;
}
.review-cite {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
  margin-top: auto;
}
.review-cite cite {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 600;
  color: var(--ink);
  font-size: 0.92rem;
}
.review-context {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}
.review-card-placeholder {
  opacity: 0.55;
  border-style: dashed;
}
.review-card-placeholder .review-quote {
  color: var(--muted);
}
.reviews-footnote {
  font-size: 0.88rem;
  color: var(--ink-soft);
  text-align: center;
  margin-top: 1.5rem;
}

/* ─── SECTION COMING SOON ───────────────────────────────────── */

.section-coming-soon {
  position: relative;
}
.section-coming-soon::before {
  content: 'COMING SOON';
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--brass-dark);
  border: 1px solid var(--brass-dark);
  padding: 0.25rem 0.5rem;
  border-radius: 3px;
  background: rgba(200, 161, 74, 0.04);
}

/* ─── REQUEST / BOOKING FORM ────────────────────────────────── */

.request-form {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 2rem;
  margin: 2rem 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-field-full { width: 100%; }
.form-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brass);
}
.form-field input,
.form-field select,
.form-field textarea {
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: 3px;
  padding: 0.65rem 0.85rem;
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.15s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--brass);
  box-shadow: 0 0 0 2px rgba(200, 161, 74, 0.18);
}
.form-field textarea {
  resize: vertical;
  min-height: 80px;
  font-family: 'Inter', sans-serif;
}
.form-intro {
  margin: 0 0 0.5rem 0;
  padding: 0 0 1rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.form-intro strong {
  color: var(--brass-bright);
  font-weight: 600;
}
.form-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}
.form-fineprint {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0;
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .request-form { padding: 1.25rem; }
}

/* ─── CONTACT DIVIDER ───────────────────────────────────────── */

.contact-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0 1.5rem;
  color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.contact-divider::before,
.contact-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}
.contact-divider span { flex-shrink: 0; }

/* ─── VIDEO ─────────────────────────────────────────────────── */

.video-wrap {
  margin: 2rem 0 1.5rem;
}
.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-deep);
}
.video-frame::before {
  /* brass corner brackets — visible enough to read as intentional, soft enough not to compete */
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  box-shadow:
    inset 16px 16px 0 -14px var(--brass-bright),
    inset -16px 16px 0 -14px var(--brass-bright),
    inset 16px -16px 0 -14px var(--brass-bright),
    inset -16px -16px 0 -14px var(--brass-bright);
  opacity: 0.85;
}
.video-frame::after {
  /* subtle inner highlight ring so the frame has depth, not just a flat border */
  content: '';
  position: absolute;
  inset: 6px;
  pointer-events: none;
  z-index: 1;
  border: 1px solid rgba(200, 161, 74, 0.15);
  border-radius: 2px;
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-credit {
  font-size: 0.9rem;
  color: var(--ink-soft);
  text-align: center;
}

/* ─── PODCAST EMBED ─────────────────────────────────────────── */

.podcast-embed {
  margin: 2rem 0 1.5rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-deep);
  border: 1px solid var(--line-strong);
  position: relative;
}
.podcast-embed::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  box-shadow:
    inset 12px 12px 0 -11px var(--brass),
    inset -12px 12px 0 -11px var(--brass),
    inset 12px -12px 0 -11px var(--brass),
    inset -12px -12px 0 -11px var(--brass);
  opacity: 0.5;
}
.podcast-embed iframe {
  display: block;
  width: 100%;
  height: 232px;
  border: 0;
}

/* ─── BAND ──────────────────────────────────────────────────── */

.band-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.band-card {
  background: var(--bg-card);
  background-image:
    repeating-linear-gradient(
      135deg,
      rgba(255,255,255,0.015) 0px,
      rgba(255,255,255,0.015) 2px,
      transparent 2px,
      transparent 6px
    );
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.15s, border-color 0.15s;
}
.band-card:hover {
  transform: translateY(-2px);
  border-color: var(--brass-dark);
}
.section-alt .band-card { background: var(--bg); }

.band-ph,
.band-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  background:
    radial-gradient(circle at 30% 30%, var(--bg-elev) 0%, var(--bg) 100%);
  border-radius: 3px;
  margin-bottom: 1rem;
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  position: relative;
  overflow: hidden;
  object-fit: cover;
}
.band-photo {
  display: block;
}
/* stamped-leather feel for band photo placeholders */
.band-ph::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      45deg,
      transparent 0px,
      transparent 8px,
      rgba(200,161,74,0.025) 8px,
      rgba(200,161,74,0.025) 9px
    );
}
.band-ph::before {
  content: attr(aria-label);
  text-align: center;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}
.band-role {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 0.75rem;
  font-weight: 700;
}
.band-blurb {
  font-size: 0.95rem;
  color: var(--ink-soft);
}

/* ─── VENUES ─────────────────────────────────────────────────── */

.venues-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.venue-card,
.venue-card-placeholder {
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
}
.venue-card {
  border-left: 3px solid var(--brass);
}
.venue-card-placeholder {
  border-style: dashed;
  background: transparent;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--muted);
  font-style: italic;
}
.venue-card p {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin: 0;
}
.venue-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--brass);
  text-transform: uppercase;
  margin-left: 0.3rem;
}

/* ─── CTA / BOOKING ─────────────────────────────────────────── */

.section-cta {
  background:
    linear-gradient(180deg, var(--bg-warm) 0%, var(--bg) 100%);
  color: var(--ink);
  border-top: 1px solid var(--line-strong);
  position: relative;
  border-bottom: 1px solid var(--line-strong);
}
.section-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brass), transparent);
  opacity: 0.5;
}
.section-cta h2 { color: var(--ink); }
.section-cta h2::after { background: linear-gradient(90deg, var(--brass), transparent); }
.section-cta .eyebrow { color: var(--brass); }
.section-cta p { color: var(--ink-soft); }
.section-cta a { color: var(--brass-bright); text-decoration: underline; text-underline-offset: 3px; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--line-strong);
  border-left: 3px solid var(--brass);
  border-radius: 4px;
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
}
.contact-label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 0.75rem;
  font-weight: 700;
}
.contact-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.75rem;
}
.contact-line {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 0.4rem;
}
.contact-note {
  font-size: 0.95rem;
  color: var(--ink-soft);
  max-width: 720px;
  margin-bottom: 2rem;
}

.social-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.social-link {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.7rem 1.4rem;
  border: 1px solid var(--brass);
  border-radius: 3px;
  color: var(--brass-bright);
  text-decoration: none;
  transition: all 0.15s;
  background: rgba(200,161,74,0.04);
}
.social-link:hover {
  background: var(--brass);
  color: var(--bg);
  text-decoration: none;
  border-color: var(--brass-bright);
}
.social-link--disabled {
  border-style: dashed;
  color: var(--muted);
  cursor: not-allowed;
  background: transparent;
}
.social-link--disabled:hover {
  background: transparent;
  color: var(--muted);
  border-color: var(--brass);
}

/* ─── FOOTER ─────────────────────────────────────────────────── */

.site-footer {
  margin-top: 0;
  padding: 3rem 0;
  background: var(--bg);
  border-top: 1px solid var(--line-strong);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-align: center;
  color: var(--muted);
}
.footer-fine {
  margin-top: 0.5rem;
  color: var(--ink-soft);
}

/* ─── MOBILE ─────────────────────────────────────────────────── */

@media (max-width: 768px) {
  .container { padding: 0 1rem; }
  .hero { padding: 2rem 0 3rem; }
  .section { padding: 3rem 0; }
  .band-grid,
  .venues-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .hero-cta { flex-direction: column; }
}

/* ─── COMPACT SETLIST (footer) ───────────────────────────────── */

.setlist-compact-label {
  font-size: 0.78rem;
  color: var(--muted);
  font-style: italic;
  margin: 0 0 0.5rem;
}
.setlist-compact {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.25rem;
  font-size: 0.78rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.setlist-compact li {
  white-space: nowrap;
}
.setlist-compact li span {
  color: var(--muted);
  margin-left: 0.35rem;
}
@media (max-width: 600px) {
  .setlist-compact { font-size: 0.72rem; gap: 0.2rem 1rem; }
}