/* ── Variables ───────────────────────────────────────────────────────────── */
:root {
  --bg-primary:    #0e0c08;
  --bg-secondary:  #171410;
  --bg-card:       #1e1b11;
  --bg-alt:        #141209;
  --text-primary:  #e8dcc8;
  --text-muted:    #8a7d68;
  --accent-orange: #e8621a;
  --accent-green:  #b8d400;
  --accent-red:    #cc2200;
  --border-color:  #2e2a1a;
  --border-bright: #3d3820;

  --font-logo:    'Permanent Marker', cursive;
  --font-heading: 'Oswald', sans-serif;
  --font-special: 'Special Elite', cursive;
  --font-body:    'Lato', sans-serif;

  --container:    1160px;
  --radius:       2px;
  --transition:   0.25s ease;
}

/* ── Reset ───────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: var(--accent-orange); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-green); }
ul  { list-style: none; }

/* ── Noise texture utility ───────────────────────────────────────────────── */
.noise {
  position: relative;
}
.noise::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}

/* ── Container ───────────────────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Scanlines ───────────────────────────────────────────────────────────── */
.scanlines {
  position: relative;
}
.scanlines::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.07) 2px,
    rgba(0, 0, 0, 0.07) 4px
  );
  pointer-events: none;
  z-index: 1;
}

/* ── Typography ──────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.15;
  color: var(--text-primary);
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.8em 2em;
  border: 2px solid transparent;
  cursor: pointer;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--accent-orange);
  color: #fff;
  border-color: var(--accent-orange);
}
.btn--primary:hover {
  background: transparent;
  color: var(--accent-orange);
}

.btn--outline {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border-bright);
}
.btn--outline:hover {
  border-color: var(--accent-orange);
  color: var(--accent-orange);
}

.btn--green {
  background: var(--accent-green);
  color: #0e0c08;
  border-color: var(--accent-green);
  font-weight: 900;
}
.btn--green:hover {
  background: transparent;
  color: var(--accent-green);
}

/* ── Section layout ──────────────────────────────────────────────────────── */
.section {
  padding: 5rem 0;
  position: relative;
}
.section--dark {
  background-color: var(--bg-secondary);
}
.section--alt {
  background-color: var(--bg-alt);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5em;
  color: var(--accent-orange);
  margin-bottom: 0.75rem;
  border: 1px solid var(--accent-orange);
  padding: 0.2em 0.8em;
}
.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--text-primary);
  margin-top: 0.5rem;
}
.section-header::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-orange);
  margin: 1rem auto 0;
}
.section-footer {
  text-align: center;
  margin-top: 3rem;
}

/* ─────────────────────────────────────────────────────────────────────────── */
/* HEADER                                                                      */
/* ─────────────────────────────────────────────────────────────────────────── */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(14, 12, 8, 0.97);
  padding: 0.75rem 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-logo {
  font-family: var(--font-logo);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: var(--text-primary);
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.site-logo:hover { color: var(--accent-orange); }

.site-logo img {
  max-height: 60px;
  width: auto;
}

/* Nav */
.site-nav { display: flex; align-items: center; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-menu a {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.5rem 0.85rem;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.nav-menu a:hover,
.nav-menu .current-menu-item > a,
.nav-menu .current_page_item > a {
  color: var(--text-primary);
  border-bottom-color: var(--accent-orange);
}
.nav-book-btn {
  margin-left: 0.75rem;
}
.nav-book-btn a {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-orange);
  border: 2px solid var(--accent-orange);
  padding: 0.4em 1.2em;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.nav-book-btn a:hover {
  background: var(--accent-orange);
  color: #fff;
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle__bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all var(--transition);
  transform-origin: center;
}
.nav-toggle.is-open .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open .nav-toggle__bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.is-open .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--bg-card);
    border-left: 1px solid var(--border-color);
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    transition: right var(--transition);
    z-index: 200;
  }
  .site-nav.is-open { right: 0; }
  .nav-menu { flex-direction: column; align-items: flex-start; gap: 0.5rem; width: 100%; }
  .nav-menu a { font-size: 1.1rem; padding: 0.6rem 0; }
  .nav-book-btn { margin-left: 0; margin-top: 1.5rem; width: 100%; }
  .nav-book-btn a { display: block; text-align: center; }
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 150;
  }
  .nav-overlay.is-visible { display: block; }
}

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

.site-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.1) 0%,
      rgba(14, 12, 8, 0.85) 100%
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(0, 0, 0, 0.06) 2px,
      rgba(0, 0, 0, 0.06) 4px
    ),
    radial-gradient(ellipse at 30% 40%, rgba(60, 30, 5, 0.6) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 60%, rgba(20, 35, 5, 0.4) 0%, transparent 60%),
    #0e0c08;
}

/* When a featured image is set on the front page post */
.site-hero.has-bg-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 2rem 1.5rem;
  max-width: 860px;
  margin: 0 auto;
  animation: heroFadeIn 1.2s ease both;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-family: var(--font-special);
  font-size: 0.95rem;
  color: var(--accent-orange);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  animation-delay: 0.2s;
}

.hero-title {
  font-family: var(--font-logo);
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 400;
  line-height: 0.95;
  color: var(--text-primary);
  text-shadow:
    4px 4px 0 rgba(0,0,0,0.5),
    0 0 80px rgba(232, 98, 26, 0.15);
  margin-bottom: 1.5rem;
}

.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  color: var(--accent-orange);
  opacity: 0.7;
}
.hero-divider::before,
.hero-divider::after {
  content: '';
  height: 1px;
  width: 80px;
  background: linear-gradient(to right, transparent, var(--accent-orange));
}
.hero-divider::after {
  background: linear-gradient(to left, transparent, var(--accent-orange));
}

.hero-subtitle {
  font-family: var(--font-special);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: var(--text-muted);
  letter-spacing: 0.06em;
  margin-bottom: 2.5rem;
  line-height: 1.5;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}
.hero-scroll__arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--accent-orange);
  border-bottom: 2px solid var(--accent-orange);
  transform: rotate(45deg);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ─────────────────────────────────────────────────────────────────────────── */
/* ABOUT PREVIEW                                                               */
/* ─────────────────────────────────────────────────────────────────────────── */

.about-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-preview-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}
.about-preview-text p strong {
  color: var(--text-primary);
  font-weight: 700;
}
.about-preview-image {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-preview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(25%) contrast(1.1) saturate(0.85);
}
.about-preview-image .placeholder-text {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
}

@media (max-width: 768px) {
  .about-preview-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-preview-image { order: -1; }
}

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

.show-list { display: flex; flex-direction: column; gap: 0.75rem; }

.show-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--accent-orange);
  transition: border-left-color var(--transition), transform var(--transition);
}
.show-item:hover {
  border-left-color: var(--accent-green);
  transform: translateX(4px);
}

.show-date {
  text-align: center;
  line-height: 1;
}
.show-date__month {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-orange);
  margin-bottom: 0.2rem;
}
.show-date__day {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-primary);
}

.show-info__venue {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}
.show-info__meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}
.show-info__meta span::before {
  content: '·';
  margin-right: 0.5rem;
  opacity: 0.4;
}
.show-info__meta span:first-child::before { display: none; }

.show-action { flex-shrink: 0; }

.show-item--past { opacity: 0.55; border-left-color: var(--border-bright); }
.show-item--past:hover { transform: none; border-left-color: var(--border-bright); }

.shows-empty {
  text-align: center;
  padding: 3rem;
  background: var(--bg-card);
  border: 1px dashed var(--border-color);
  color: var(--text-muted);
  font-family: var(--font-special);
  font-size: 1.1rem;
}

@media (max-width: 600px) {
  .show-item {
    grid-template-columns: 60px 1fr;
    grid-template-rows: auto auto;
  }
  .show-action {
    grid-column: 2;
    justify-self: start;
  }
}

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

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  max-width: 860px;
  margin: 0 auto;
}
.video-wrapper iframe,
.video-wrapper video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--text-muted);
  text-align: center;
  padding: 2rem;
}
.video-placeholder__icon {
  width: 60px;
  height: 60px;
  border: 2px solid var(--border-bright);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-placeholder__icon svg { fill: var(--text-muted); }
.video-placeholder p {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ─────────────────────────────────────────────────────────────────────────── */
/* GALLERY                                                                     */
/* ─────────────────────────────────────────────────────────────────────────── */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 4px;
}
.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--bg-card);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(20%) contrast(1.1) saturate(0.8);
  transition: transform 0.45s ease, filter 0.45s ease;
  display: block;
}
.gallery-item:hover img {
  transform: scale(1.06);
  filter: sepia(0%) contrast(1.05) saturate(1);
}
.gallery-item--empty {
  background: var(--bg-card);
  border: 1px dashed var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* Lightbox */
.lbs-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 500;
  align-items: center;
  justify-content: center;
}
.lbs-lightbox.is-open { display: flex; }
.lbs-lightbox__img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border: 1px solid var(--border-color);
}
.lbs-lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  transition: color var(--transition);
}
.lbs-lightbox__close:hover { color: var(--text-primary); }

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

.section-cta {
  background:
    linear-gradient(135deg, rgba(60, 30, 5, 0.4) 0%, transparent 60%),
    var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  text-align: center;
  padding: 6rem 0;
}
.section-cta h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 1rem;
}
.section-cta p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

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

.members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2.5rem 1.5rem;
}

.member-card {
  display: flex;
  flex-direction: column;
  position: relative;
}
.member-card:nth-child(odd)  { --tilt: -1.2deg; }
.member-card:nth-child(even) { --tilt: 1deg; }

.member-card__photo-wrap {
  background: #1c1a12;
  padding: 0.75rem;
  padding-bottom: 3rem;
  box-shadow: 4px 4px 16px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04);
  transform: rotate(var(--tilt));
  transition: transform var(--transition), box-shadow var(--transition);
  flex: 1;
}
.member-card:hover .member-card__photo-wrap {
  transform: rotate(0deg) scale(1.02);
  box-shadow: 8px 8px 28px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.08);
}
.member-card__photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: sepia(20%) contrast(1.1) saturate(0.8);
  display: block;
}
.member-card__photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.member-card__info {
  margin-top: 1rem;
  padding: 0 0.5rem;
}
.member-card__name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.15rem;
}
.member-card__instrument {
  font-family: var(--font-special);
  font-size: 0.85rem;
  color: var(--accent-orange);
}

.member-bio {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─────────────────────────────────────────────────────────────────────────── */
/* CONTACT FORM                                                                */
/* ─────────────────────────────────────────────────────────────────────────── */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}
.contact-info p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.contact-detail__label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-orange);
}
.contact-detail__value {
  color: var(--text-primary);
  font-size: 1rem;
}

.lbs-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field label {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-field label .required { color: var(--accent-orange); margin-left: 0.2rem; }

.form-field input,
.form-field select,
.form-field textarea {
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  transition: border-color var(--transition);
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent-orange);
}
.form-field textarea { resize: vertical; min-height: 130px; }
.form-field select {
  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 fill='%238a7d68' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-message {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-family: var(--font-heading);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.form-message--success {
  background: rgba(184, 212, 0, 0.1);
  border: 1px solid var(--accent-green);
  color: var(--accent-green);
}
.form-message--error {
  background: rgba(204, 34, 0, 0.1);
  border: 1px solid var(--accent-red);
  color: #ff6b50;
}

@media (max-width: 768px) {
  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
}

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

.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border-color);
  padding: 3rem 0 2rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: start;
  margin-bottom: 2.5rem;
}
.footer-brand .site-logo { font-size: 1.5rem; }
.footer-brand p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 0.4rem;
}
.footer-nav-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.5rem;
  justify-content: center;
}
.footer-nav-menu a {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-nav-menu a:hover { color: var(--accent-orange); }
.footer-social { display: flex; gap: 0.75rem; align-items: center; }
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border-bright);
  border-radius: 50%;
  color: var(--text-muted);
  transition: all var(--transition);
}
.footer-social a:hover {
  border-color: var(--accent-orange);
  color: var(--accent-orange);
}
.footer-social svg { width: 16px; height: 16px; fill: currentColor; }
.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.footer-tagline {
  font-family: var(--font-special);
  font-size: 0.8rem;
  color: var(--text-muted);
  opacity: 0.6;
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-social { justify-content: center; }
  .footer-nav-menu { justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ─────────────────────────────────────────────────────────────────────────── */
/* PAGE HERO (inner pages)                                                     */
/* ─────────────────────────────────────────────────────────────────────────── */

.page-hero {
  padding: 9rem 0 4rem;
  background:
    linear-gradient(to bottom, rgba(14,12,8,0.3) 0%, var(--bg-primary) 100%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(0, 0, 0, 0.05) 2px,
      rgba(0, 0, 0, 0.05) 4px
    ),
    var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
  position: relative;
}
.page-hero__eyebrow {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent-orange);
  margin-bottom: 0.75rem;
  border: 1px solid var(--accent-orange);
  display: inline-block;
  padding: 0.2em 0.8em;
}
.page-hero__title {
  font-size: clamp(2rem, 6vw, 4rem);
  color: var(--text-primary);
  margin-bottom: 1rem;
}
.page-hero__subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 560px;
}

/* ─────────────────────────────────────────────────────────────────────────── */
/* SHOWS PAGE — past/upcoming tabs                                             */
/* ─────────────────────────────────────────────────────────────────────────── */

.shows-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--border-color);
}
.shows-tab-btn {
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  margin-bottom: -1px;
  transition: all var(--transition);
}
.shows-tab-btn.is-active,
.shows-tab-btn:hover {
  color: var(--text-primary);
  border-bottom-color: var(--accent-orange);
}
.shows-tab-panel { display: none; }
.shows-tab-panel.is-active { display: block; }

/* ─────────────────────────────────────────────────────────────────────────── */
/* MEDIA PAGE                                                                  */
/* ─────────────────────────────────────────────────────────────────────────── */

.media-grid { display: flex; flex-direction: column; gap: 4rem; }
.media-section-title {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-primary);
}
.media-section-title span {
  color: var(--accent-orange);
}

.playlist-embed {
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  overflow: hidden;
}

/* ─────────────────────────────────────────────────────────────────────────── */
/* GENERIC PAGE CONTENT                                                        */
/* ─────────────────────────────────────────────────────────────────────────── */

.page-content {
  max-width: 760px;
  margin: 0 auto;
}
.entry-content h2, .entry-content h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.entry-content p  { margin-bottom: 1.25rem; color: var(--text-muted); }
.entry-content ul { padding-left: 1.5rem; list-style: disc; margin-bottom: 1.25rem; }
.entry-content ul li { color: var(--text-muted); margin-bottom: 0.4rem; }

/* ─────────────────────────────────────────────────────────────────────────── */
/* 404                                                                         */
/* ─────────────────────────────────────────────────────────────────────────── */

.error-404 {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
}
.error-404__number {
  font-family: var(--font-logo);
  font-size: clamp(5rem, 20vw, 12rem);
  line-height: 1;
  color: var(--accent-orange);
  opacity: 0.2;
  margin-bottom: 1rem;
}
.error-404__title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}
.error-404__text {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

/* ─────────────────────────────────────────────────────────────────────────── */
/* UTILITIES                                                                   */
/* ─────────────────────────────────────────────────────────────────────────── */

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

/* Fade-in animation for sections */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
