/* =========================================================
   Gage Saylor and the Creekside Boys — stylesheet
   Clean minimal artist site. White canvas, strong type,
   photography-forward.
   ========================================================= */

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  color: #0f0f0f;
  background: #ffffff;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid #0f0f0f;
  outline-offset: 3px;
}
h1, h2, h3 { font-family: 'Fraunces', Georgia, serif; font-weight: 600; letter-spacing: -0.01em; line-height: 1.1; margin: 0 0 0.4em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.25rem; line-height: 1.3; }
p { margin: 0 0 1em; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #666;
  margin: 0 0 0.8em;
}

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.1s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn-primary { background: #0f0f0f; color: #fff; }
.btn-primary:hover { background: #2b2b2b; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: inherit; border-color: currentColor; }
.btn-ghost:hover { background: #0f0f0f; color: #fff; border-color: #0f0f0f; }
.btn-sm { padding: 9px 18px; font-size: 0.78rem; }

.badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: #f1f1f1;
  color: #666;
}

/* ---------- Header / nav ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(0);
  transition: background 0.25s ease, backdrop-filter 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
  color: #fff;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(180%) blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
  color: #0f0f0f;
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}
.brand {
  display: flex;
  align-items: center;
  line-height: 1;
}
.brand-logo {
  display: block;
  height: clamp(28px, 4.5vw, 38px);
  width: auto;
  max-width: 60vw;
}
/* When the header goes white on scroll, dark the cream logo for contrast. */
.site-header.is-scrolled .brand-logo {
  filter: brightness(0.15);
}
/* Legacy text-based brand (kept for any future text variant) */
.brand-mark {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}
.brand-sub {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.85;
}
.nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2.2vw, 28px);
}
.nav a {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
}
.nav a:not(.nav-cta)::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -6px;
  height: 1px; background: currentColor; transform: scaleX(0);
  transform-origin: left; transition: transform 0.2s ease;
}
.nav a:not(.nav-cta):hover::after { transform: scaleX(1); }
.nav-cta {
  padding: 9px 18px;
  border: 1px solid currentColor;
  border-radius: 999px;
}
.nav-cta:hover { background: currentColor; color: #fff; }
.site-header.is-scrolled .nav-cta:hover { color: #fff; }
.nav-toggle {
  display: none;
  background: none; border: 0; padding: 10px; cursor: pointer;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: currentColor;
  margin: 5px 0; transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero-image {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 100%),
    radial-gradient(circle at 30% 40%, #3a4a3f 0%, #1a201d 60%, #0a0d0b 100%);
  /* TODO: swap for real hero image:
     background-image: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 100%), url('assets/hero.jpg');
     background-size: cover; background-position: center; */
  transform: scale(1.02);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(80px, 14vh, 140px);
  padding-top: 110px;
  text-align: center;
}
.hero-video {
  margin: 0 auto clamp(32px, 5vh, 56px);
  max-width: 780px;
}
.hero-video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  background: #000;
}
.hero-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.hero-content .eyebrow { color: rgba(255,255,255,0.8); }
.hero-title {
  margin: 0 0 clamp(24px, 4vh, 44px);
  padding: 0;
  line-height: 0;
}
.hero-logo {
  display: block;
  width: min(90%, 860px);
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 2px 30px rgba(0, 0, 0, 0.35));
}
/* Bio pull-quote at the top of the hero */
.hero-bio {
  max-width: 780px;
  margin: 0 auto clamp(28px, 4vh, 48px);
  text-align: center;
  color: rgba(255, 255, 255, 0.92);
}
.hero-bio-text {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(0.98rem, 1.4vw, 1.18rem);
  line-height: 1.55;
  margin: 0 0 0.9em;
  padding: 0;            /* override base blockquote padding-left */
  border-left: 0;        /* override base blockquote border-left */
  text-shadow: 0 1px 20px rgba(0, 0, 0, 0.35);
}
.hero-bio-text strong {
  font-style: normal;
  font-weight: 600;
}
.hero-bio-attribution {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}
/* Upcoming album block (between bio and logo wordmark) */
.hero-album {
  text-align: center;
  /* big bottom gap so the band logo wordmark gets ~3 lines of breathing room below "IN MISERY WE TRUST" */
  margin: 28px auto clamp(72px, 9vh, 120px);
}
.hero-album-eyebrow {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  letter-spacing: 0.04em;
  text-transform: none;
  line-height: 1.2;
  color: #EEDEC1;
  margin: 0 0 8px;
}
.hero-album-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3.6vw, 2.4rem);
  letter-spacing: 0.02em;
  line-height: 1.1;
  color: #EEDEC1;
  margin: 0;
}
/* Spotify / Apple Music link row under the album title */
.hero-album-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero-album-links a {
  color: #EEDEC1;
  text-decoration: none;
  border-bottom: 1px solid rgba(238, 222, 193, 0.45);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.hero-album-links a:hover,
.hero-album-links a:focus-visible {
  color: #fff;
  border-bottom-color: #fff;
}
.hero-album-links-sep {
  color: #EEDEC1;
  opacity: 0.55;
}
/* HYMNAL title under the "New Single Out Now" eyebrow */
.hero-single-title {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: 0.02em;
  margin: 0.1em 0 0.9em;
  color: #fff;
}
.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.hero-cta .btn { min-width: 220px; }
.hero-cta .btn-ghost { color: #fff; }
.hero-cta .btn-ghost:hover { background: #fff; color: #0f0f0f; border-color: #fff; }

/* Hero outro: band logo + socials + booking, replaces the old HYMNAL CTA cluster */
.hero-outro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  margin-top: clamp(48px, 7vh, 90px);
}
.hero-outro-logo {
  display: block;
  width: clamp(160px, 20vw, 220px);
  height: auto;
  border-radius: 50%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
}
.hero-outro-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}
.hero-outro-social a {
  color: #fff;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.85;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.hero-outro-social a:hover,
.hero-outro-social a:focus-visible { opacity: 1; }
.hero-outro-booking {
  text-align: center;
  margin-top: 4px;
  color: #fff;
  /* Account for the fixed site-header so the in-page Contact nav anchor lands above the eyebrow, not behind the header. */
  scroll-margin-top: 100px;
}
.hero-outro-booking .eyebrow {
  color: rgba(255,255,255,0.65);
  margin-bottom: 10px;
}
.hero-outro-booking-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 4px;
  color: #fff;
}
.hero-outro-booking-company {
  font-size: 0.98rem;
  color: rgba(255,255,255,0.75);
  margin: 0 0 8px;
}
.hero-outro-booking-email {
  font-size: 1rem;
  margin: 0;
  color: #fff;
}
.hero-outro-booking-email a {
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.5);
  text-decoration: none;
  padding-bottom: 1px;
  transition: border-color 0.2s ease;
}
.hero-outro-booking-email a:hover { border-bottom-color: #fff; }
.hero-outro-cta {
  min-width: 200px;
  color: #fff;
  margin-top: 4px;
}
.hero-outro-cta:hover { background: #fff; color: #0f0f0f; border-color: #fff; }
.hero-scroll {
  position: absolute;
  bottom: 24px; left: 50%; transform: translateX(-50%);
  z-index: 3; color: #fff; font-size: 1.4rem;
  animation: nudge 2.4s ease-in-out infinite;
  opacity: 0.8;
}
@keyframes nudge { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 6px); } }

/* ---------- Sections ---------- */
.section {
  padding: clamp(72px, 10vw, 140px) 0;
}
.section-alt { background: #f7f5f2; }

/* ---------- Request A Show page ---------- */
.page-request-show { background: #faf8f3; }
/* Request page header — warm dark brown for readability on the cream page bg.
   Override both default and is-scrolled states so scroll position doesn't change colors. */
.page-request-show .site-header,
.page-request-show .site-header.is-scrolled {
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
  color: #3d2818;
}
/* Darken the cream wordmark SVG into the same brown range. brightness(0.28) maps
   #EEDEC1 to roughly #423e37 — a dark warm brown that reads as the same family as the nav text. */
.page-request-show .site-header .brand-logo,
.page-request-show .site-header.is-scrolled .brand-logo {
  filter: brightness(0.28) saturate(1.2);
}
.page-request-show .nav a { color: #3d2818; }
.page-request-show .nav-cta {
  border-color: #3d2818;
  color: #3d2818;
  background: transparent;
}
.page-request-show .nav-cta:hover {
  background: #3d2818;
  color: #faf8f3;
  border-color: #3d2818;
}
.page-request-show .nav a:not(.nav-cta)::after { background: #3d2818; }
.page-request-show .nav-toggle span { background: #3d2818; }
.request-page {
  padding-top: clamp(120px, 14vw, 180px);
  padding-bottom: clamp(80px, 10vw, 140px);
  min-height: 100vh;
}
.request-container { max-width: 640px; }
.request-head { text-align: center; margin-bottom: clamp(32px, 5vw, 56px); }
.request-head .eyebrow { color: #888; margin-bottom: 12px; }
.request-logo {
  display: block;
  width: clamp(160px, 20vw, 220px);
  height: auto;
  border-radius: 50%;
  margin: 0 auto clamp(20px, 3vw, 32px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.18);
}
.request-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin: 0 0 8px;
}
.request-subtitle {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  color: #0f0f0f;
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.05;
}
.request-lede {
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  color: #444;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.6;
}
.request-form {
  display: grid;
  gap: 22px;
}
/* When JS sets form.hidden=true after submit, beat .request-form's display:grid. */
.request-form[hidden] { display: none; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-field {
  display: grid;
  gap: 8px;
}
.form-label {
  font-size: 0.92rem;
  font-weight: 500;
  color: #1a1a1a;
  letter-spacing: 0.01em;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
}
.form-req { color: #b34a3a; font-weight: 500; }
.form-hint {
  font-weight: 400;
  font-size: 0.82rem;
  color: #777;
  font-style: italic;
}
.form-field input,
.form-field textarea {
  font-family: inherit;
  font-size: 1rem;
  color: #0f0f0f;
  background: #fff;
  border: 1px solid #d8d4cb;
  border-radius: 6px;
  padding: 12px 14px;
  width: 100%;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #0f0f0f;
  box-shadow: 0 0 0 3px rgba(15, 15, 15, 0.08);
}
.form-field textarea {
  resize: vertical;
  min-height: 100px;
}
.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-submit-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
}
.form-submit { min-width: 220px; }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.form-status {
  margin: 0;
  font-size: 0.92rem;
  min-height: 1.2em;
  text-align: center;
}
.form-status[data-kind="error"] { color: #b34a3a; }
.request-thanks {
  text-align: center;
  padding: clamp(40px, 6vw, 60px) 0;
}
.request-thanks-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  margin-bottom: clamp(32px, 5vw, 56px);
}
.request-thanks-social a {
  color: #3d2818;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}
.request-thanks-social a:hover,
.request-thanks-social a:focus-visible { opacity: 1; }
.request-thanks-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin: 0 0 16px;
}
.request-thanks-body {
  color: #444;
  max-width: 480px;
  margin: 0 auto 28px;
  line-height: 1.6;
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}
.section-head {
  max-width: 720px;
  margin: 0 auto clamp(40px, 6vw, 70px);
  text-align: center;
}
.section-head h2 { margin-bottom: 0.3em; }
.section-sub { color: #666; font-size: 1.05rem; }

/* ---------- Music ---------- */
.music-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}
.release-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  align-items: center;
}
.release-cover img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
  object-fit: cover;
}
.release-meta { color: #666; margin-bottom: 1.4em; }
.stream-links { display: flex; flex-wrap: wrap; gap: 10px; }
.stream-link {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid #e2e0dc;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.stream-link:hover { background: #0f0f0f; color: #fff; border-color: #0f0f0f; }

.embed-card {
  background: #f7f5f2;
  border-radius: 12px;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.embed-placeholder {
  text-align: center; color: #888; padding: 24px;
}
.embed-placeholder .small { font-size: 0.85rem; margin-top: 6px; }

/* ---------- Video ---------- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.video-card h3 { margin-top: 16px; margin-bottom: 4px; }
.video-card .meta { color: #666; font-size: 0.9rem; margin: 0; }
.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #0f0f0f;
  border-radius: 8px;
  overflow: hidden;
}
.video-frame iframe { width: 100%; height: 100%; border: 0; }
.video-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: #fff; letter-spacing: 0.2em; font-size: 0.85rem; text-transform: uppercase;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.0) 100%),
    repeating-linear-gradient(45deg, #1a1a1a 0, #1a1a1a 10px, #222 10px, #222 20px);
}
.video-placeholder::before {
  content: '▶';
  position: absolute;
  font-size: 2.2rem;
  opacity: 0.4;
}
.video-placeholder span {
  position: relative;
  margin-top: 56px;
}

/* ---------- Tour ---------- */
.tour-map-wrap {
  margin: 0 0 40px;
}
.tour-map {
  width: 100%;
  height: 460px;
  border: 1px solid #eceae6;
  border-radius: 4px;
  overflow: hidden;
  background: #f7f6f3;
}
.tour-map-caption {
  margin: 12px 0 0;
  color: #888;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-align: center;
}
/* Pins: black pill with a date label, optional +N badge for multi-shows */
.leaflet-marker-icon.tour-pin {
  background: transparent;
  border: 0;
}
.tour-pin .tour-pin-inner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 26px;
  padding: 0 10px;
  background: #0f0f0f;
  color: #fff;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.18);
  white-space: nowrap;
  transition: transform 0.15s ease;
}
.tour-pin:hover .tour-pin-inner {
  transform: translateY(-1px);
}
.tour-pin .tour-pin-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  background: #fff;
  color: #0f0f0f;
  border: 1px solid #0f0f0f;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 16px;
  text-align: center;
  display: inline-block;
}
/* Leaflet popup tuned to the site type system */
.leaflet-popup-content-wrapper {
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.leaflet-popup-content {
  margin: 14px 16px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.92rem;
  line-height: 1.4;
  color: #0f0f0f;
}
.tour-pop-venue {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 2px;
  line-height: 1.2;
}
.tour-pop-city {
  margin: 0 0 8px;
  color: #666;
  font-size: 0.82rem;
}
.tour-pop-dates {
  list-style: none;
  margin: 0 0 8px;
  padding: 0;
  font-size: 0.86rem;
  color: #0f0f0f;
}
.tour-pop-dates li {
  padding: 3px 0;
  border-top: 1px solid #eceae6;
}
.tour-pop-dates li:first-child { border-top: 0; }
.tour-pop-dates em {
  color: #888;
  font-style: normal;
}
.tour-pop-tag {
  display: inline-block;
  background: #0f0f0f;
  color: #fff;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 1px 6px;
  border-radius: 2px;
  margin-left: 4px;
  vertical-align: middle;
}
.tour-pop-link {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0f0f0f;
  border-bottom: 1px solid #0f0f0f;
  padding-bottom: 1px;
}

@media (max-width: 720px) {
  .tour-map { height: 360px; }
}

.tour-list {
  list-style: none;
  margin: 0; padding: 0;
  border-top: 1px solid #eceae6;
}
.tour-row {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid #eceae6;
  transition: background 0.2s;
}
.tour-row:hover { background: #fafaf8; }
.tour-date { display: flex; flex-direction: column; align-items: flex-start; }
.tour-month {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: #666;
  text-transform: uppercase;
}
.tour-day {
  font-family: 'Fraunces', serif;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1;
}
.tour-venue h3 { margin: 0 0 2px; font-size: 1.15rem; }
.tour-venue p { margin: 0; color: #666; }
.tour-row.sold-out .tour-venue,
.tour-row.sold-out .tour-date { opacity: 0.55; }
.tour-footer { margin-top: 30px; color: #666; text-align: center; }
.tour-footer a { border-bottom: 1px solid currentColor; }

.tour-booking {
  margin: clamp(40px, 6vw, 70px) auto 0;
  max-width: 520px;
  text-align: center;
  padding: 28px 24px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  background: #fafafa;
}
.tour-booking .eyebrow { color: #666; margin-bottom: 10px; }
.tour-booking-name {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 4px;
}
.tour-booking-company {
  font-size: 0.98rem;
  color: #333;
  margin: 0 0 8px;
}
.tour-booking-email {
  font-size: 1rem;
  margin: 0;
}
.tour-booking-email a {
  border-bottom: 1px solid currentColor;
}

.tour-loading,
.tour-empty {
  padding: 28px 0;
  text-align: center;
  color: #888;
  font-size: 0.95rem;
  list-style: none;
}
.tour-updated {
  margin-top: 20px;
  text-align: center;
  color: #999;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.tour-note {
  margin: 4px 0 0;
  color: #888;
  font-size: 0.88rem;
}
.tour-tickets-pending {
  color: #999;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.tag {
  display: inline-block;
  margin-left: 8px;
  padding: 3px 9px;
  border-radius: 999px;
  background: #f1f1f1;
  color: #555;
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  vertical-align: middle;
  position: relative;
  top: -2px;
}
.tag-festival { background: #0f0f0f; color: #fff; }

/* ---------- Bio ---------- */
.bio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.bio-photo-placeholder {
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.12) 0%, rgba(0,0,0,0.35) 100%),
    radial-gradient(circle at 30% 30%, #8b7d6b 0%, #3f382f 70%, #1d1a16 100%);
  box-shadow: 0 20px 60px rgba(0,0,0,0.14);
}
.bio-copy h2 { margin-bottom: 0.5em; }
.bio-copy .lede {
  font-family: 'Fraunces', serif;
  font-size: 1.35rem;
  line-height: 1.4;
  font-weight: 400;
  color: #2b2b2b;
  margin-bottom: 1.2em;
}

/* ---------- Press ---------- */
.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}
.press-tile {
  display: block;
  background: #fff;
  border: 1px solid #eceae6;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.press-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  border-color: #0f0f0f;
}
.press-thumb {
  aspect-ratio: 1 / 1;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  letter-spacing: 0.2em;
  font-size: 0.9rem;
}
.ph-photo {
  background:
    radial-gradient(circle at 40% 40%, #6b6157 0%, #2b2622 70%, #1a1714 100%);
}
.ph-logo { background: #0f0f0f; }
.ph-bio { background: #4a4236; }
.press-meta { padding: 16px 18px 20px; }
.press-meta h3 { font-size: 1rem; margin: 0 0 4px; font-family: 'Inter', sans-serif; font-weight: 600; }
.press-meta p { margin: 0; color: #666; font-size: 0.85rem; }
.press-quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 36px;
  max-width: 900px;
  margin: 0 auto;
}
blockquote {
  margin: 0;
  padding: 0 0 0 20px;
  border-left: 2px solid #0f0f0f;
}
blockquote p {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.5;
  margin: 0 0 10px;
}
blockquote cite {
  font-style: normal;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: #666;
  text-transform: uppercase;
}

/* ---------- Merch ---------- */
.merch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}
.merch-item {
  display: block;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #eceae6;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.merch-item:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(0,0,0,0.08); }
.merch-thumb {
  aspect-ratio: 1 / 1;
  display: flex; align-items: center; justify-content: center;
  background: #f0ede8;
  color: #8a8274;
  letter-spacing: 0.22em;
  font-size: 0.9rem;
  text-transform: uppercase;
}
.merch-item h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  margin: 16px 18px 4px;
}
.merch-item .price {
  margin: 0 18px 18px;
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
}
.merch-footer { text-align: center; }

.merch-coming-soon {
  text-align: center;
  padding: clamp(40px, 6vw, 72px) 24px;
  border: 1px solid #eceae6;
  border-radius: 12px;
  background: #fff;
  max-width: 640px;
  margin: 0 auto;
}
.merch-coming-soon-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 0.2em;
}
.merch-coming-soon-sub {
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #666;
  margin: 0;
}

/* ---------- Newsletter ---------- */
.newsletter {
  background: #0f0f0f;
  color: #fff;
  padding: clamp(60px, 8vw, 110px) 0;
}
.newsletter h2 { color: #fff; }
.newsletter .eyebrow { color: rgba(255,255,255,0.6); }
.newsletter p { color: rgba(255,255,255,0.75); }
.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
}
.newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  position: relative;
}
.newsletter-form input {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  padding: 14px 18px;
  border-radius: 999px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s, background 0.2s;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form input:focus {
  outline: none;
  border-color: #fff;
  background: rgba(255,255,255,0.05);
}
.newsletter-form .btn-primary { background: #fff; color: #0f0f0f; }
.newsletter-form .btn-primary:hover { background: #f3f3f3; color: #0f0f0f; }
.form-msg {
  grid-column: 1 / -1;
  min-height: 1.2em;
  margin: 4px 0 0;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
}
.form-msg.is-error { color: #ff9aa2; }
.form-msg.is-success { color: #b9e3b6; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}
.contact-card {
  padding: 32px 28px;
  background: #f7f5f2;
  border-radius: 12px;
}
.contact-card h3 { font-size: 1.2rem; margin-bottom: 6px; font-family: 'Fraunces', serif; }
.contact-card p { margin: 0 0 6px; color: #444; }
.contact-card a {
  border-bottom: 1px solid currentColor;
  transition: opacity 0.2s;
}
.contact-card a:hover { opacity: 0.7; }
.contact-card-general {
  grid-column: span 2;
  background: #0f0f0f;
  color: #fff;
}
.contact-card-general h3 { color: #fff; }
.contact-card-general .eyebrow { color: rgba(255,255,255,0.6); }
.contact-form {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}
.contact-form input,
.contact-form textarea {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  resize: vertical;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,0.5); }
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none; border-color: #fff;
}
.contact-form .btn-primary {
  background: #fff; color: #0f0f0f; justify-self: start;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #0f0f0f;
  color: rgba(255,255,255,0.8);
  padding: 60px 0 40px;
}
/* Slim variant — used since logo+socials moved into the hero-outro 2026-05-08 */
.site-footer-slim { padding: 24px 0; }
.site-footer-slim .footer-inner { gap: 0; }
.footer-inner {
  display: grid;
  gap: 28px;
  align-items: center;
  text-align: center;
}
.footer-brand .brand-mark { color: #fff; font-size: 1.4rem; }
.footer-brand .brand-sub { color: rgba(255,255,255,0.6); }
.footer-logo {
  display: block;
  height: clamp(36px, 5vw, 52px);
  width: auto;
  margin: 0 auto;
}
.footer-logo-circle {
  display: block;
  width: clamp(160px, 20vw, 220px);
  height: auto;
  margin: 0 auto;
  border-radius: 50%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}
.social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.social a {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.social a:hover { opacity: 1; }
.copyright {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .music-grid, .bio-grid, .newsletter-inner { grid-template-columns: 1fr; }
  .release-card { grid-template-columns: 140px 1fr; gap: 20px; }
  .contact-card-general { grid-column: auto; }
}

@media (max-width: 720px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: #fff;
    color: #0f0f0f;
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px 28px;
    gap: 4px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    border-top: 1px solid #eceae6;
  }
  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav a {
    padding: 14px 4px;
    border-bottom: 1px solid #f2f0ec;
  }
  .nav a:last-child { border-bottom: 0; }
  .nav-cta { border: 0; background: #0f0f0f; color: #fff; text-align: center; margin-top: 8px; }

  .tour-row { grid-template-columns: 80px 1fr; gap: 16px; }
  .tour-action { grid-column: 1 / -1; justify-self: start; }
  .tour-day { font-size: 1.7rem; }

  .release-card { grid-template-columns: 1fr; text-align: left; }
  .release-cover { max-width: 260px; }

  .newsletter-form { grid-template-columns: 1fr; }
}
