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

html {
  scroll-behavior: smooth;
}

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

[id] {
  scroll-margin-top: 5rem;
}

:root {
  --ink: #0a0a0a;
  --paper: #f5f0e8;
  --red: #c0392b;
  --red-dark: #8b2018;
  --muted: #6b6560;
  --border: rgba(10,10,10,0.15);
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--paper);
  color: var(--ink);
  min-height: 100vh;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

/* SITE HEADER (inner pages) */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ink);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 1rem 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-header .site-logo {
  height: clamp(48px, 10vw, 72px);
}

.site-nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.site-nav a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: white;
}

.site-nav button.nav-cta {
  font-family: inherit;
}

/* HERO (home) */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 5vw 6vh;
  background: var(--ink);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 60px,
      rgba(255,255,255,0.025) 60px,
      rgba(255,255,255,0.025) 61px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 60px,
      rgba(255,255,255,0.025) 60px,
      rgba(255,255,255,0.025) 61px
    );
}

.hero-accent {
  position: absolute;
  top: 0; right: 0;
  width: 40%;
  height: 100%;
  background: var(--red);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
  opacity: 0.12;
}

.hero-tag {
  position: absolute;
  top: 2.5rem;
  left: 5vw;
  display: flex;
  align-items: center;
}

.hero-tag a {
  display: block;
  line-height: 0;
  text-decoration: none;
}

.site-logo {
  display: block;
  height: clamp(119px, 25.2vw, 162px);
  width: auto;
}

.nav-links {
  position: absolute;
  top: 2.5rem;
  right: 5vw;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: white; }

.nav-links button.nav-cta {
  font-family: inherit;
}

.nav-cta {
  background: var(--red) !important;
  color: white !important;
  padding: 8px 18px;
  font-size: 12px !important;
  border: none;
  cursor: pointer;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 14vw, 160px);
  line-height: 0.9;
  color: white;
  position: relative;
  z-index: 1;
  letter-spacing: 0.02em;
}

.hero-headline span {
  color: var(--red);
  display: block;
}

.hero-sub {
  margin-top: 2.5rem;
  max-width: 480px;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
  position: relative;
  z-index: 1;
}

.hero-actions {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--red);
  color: white;
  border: none;
  padding: 16px 36px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}

.btn-primary:hover { background: var(--red-dark); }

.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 15px 36px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}

.btn-ghost:hover {
  color: white;
  border-color: rgba(255,255,255,0.5);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border);
  padding: 14px 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}

.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  right: 5vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.hero-scroll span {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.6); }
}

/* PAGE HERO (inner pages) */
.page-hero {
  padding: 4rem 5vw 3rem;
  background: var(--ink);
  color: white;
}

.page-hero--compact {
  padding: 3rem 5vw 2.5rem;
}

.breadcrumb {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--red);
}

.page-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 8vw, 88px);
  letter-spacing: 0.04em;
  line-height: 0.95;
}

.page-lead {
  margin-top: 1rem;
  max-width: 560px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
}

/* TICKER */
.ticker {
  background: var(--red);
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-inner {
  display: inline-flex;
  gap: 0;
  animation: ticker 28s linear infinite;
}

.ticker-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.1em;
  color: white;
  padding: 0 3rem;
  display: inline-block;
}

.ticker-sep {
  color: rgba(255,255,255,0.4);
  padding: 0 0.5rem;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* SECTIONS */
.section {
  padding: 6rem 5vw;
}

.section--tight {
  padding: 4rem 5vw;
}

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.5rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  letter-spacing: 0.05em;
  color: var(--ink);
}

.section-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
}

.section-note {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 640px;
  line-height: 1.6;
}

/* SHOWS */
.shows-grid {
  display: grid;
  gap: 0;
}

.show-row {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: background 0.15s;
  cursor: pointer;
}

.show-row:hover { background: rgba(10,10,10,0.03); }
.show-row:hover .show-venue { color: var(--red); }

.show-row--past {
  opacity: 0.55;
}

.show-row--past:hover {
  opacity: 0.75;
}

.show-date {
  text-align: center;
}

.show-month {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.show-day {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  line-height: 1;
  color: var(--ink);
}

.show-band {
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 3px;
}

.show-venue {
  font-size: 13px;
  color: var(--muted);
  transition: color 0.2s;
}

.show-tags {
  display: flex;
  gap: 6px;
  margin-top: 6px;
  flex-wrap: wrap;
}

.tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border: 1px solid var(--border);
  color: var(--muted);
}

.show-time {
  font-size: 13px;
  color: var(--muted);
  white-space: nowrap;
}

/* BANDS GRID */
.bands-section {
  padding: 6rem 5vw;
  background: var(--ink);
}

.bands-section .section-title { color: white; }
.bands-section .section-link { color: var(--red); }
.bands-section .section-header { border-color: rgba(255,255,255,0.1); }

.bands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
}

.band-card {
  background: var(--ink);
  padding: 2rem 1.5rem;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  display: block;
}

.band-card:hover { background: #1a1a1a; }

button.band-card {
  font: inherit;
  color: inherit;
  border: none;
  width: 100%;
  text-align: left;
}

button.band-card.band-card--cta {
  text-align: center;
}

.band-initial {
  width: 48px;
  height: 48px;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  color: white;
  margin-bottom: 1rem;
}

.band-name {
  font-size: 15px;
  font-weight: 500;
  color: white;
  margin-bottom: 4px;
}

.band-genre {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
}

/* BAND DETAIL */
.band-hero {
  padding: 4rem 5vw 3rem;
  background: var(--ink);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem 3rem;
  align-items: start;
}

.band-hero__initial {
  width: clamp(72px, 12vw, 120px);
  height: clamp(72px, 12vw, 120px);
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 8vw, 64px);
  color: white;
}

.band-hero__name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 10vw, 96px);
  letter-spacing: 0.04em;
  line-height: 0.95;
  color: white;
}

.band-hero__tagline {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 0.5rem;
}

.band-hero__genres {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 1.25rem;
}

.band-hero__genres .tag {
  border-color: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.6);
}

.band-detail {
  padding: 4rem 5vw 6rem;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 4rem;
  align-items: start;
}

.band-bio {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 2.5rem;
}

.band-bio p + p {
  margin-top: 1rem;
}

.band-bio a {
  color: var(--red);
  text-decoration: none;
}

.band-bio a:hover {
  text-decoration: underline;
}

.subsection-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.06em;
  margin-bottom: 1.5rem;
  color: var(--ink);
}

.band-sidebar {
  position: sticky;
  top: 6rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sidebar-card {
  border: 1px solid var(--border);
  padding: 1.75rem;
}

.sidebar-card h3 {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}

.sidebar-card a {
  color: var(--ink);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  word-break: break-word;
}

.sidebar-card a:hover {
  color: var(--red);
}

.sidebar-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

.sidebar-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sidebar-actions .btn-primary,
.sidebar-actions .btn-outline {
  width: 100%;
  text-align: center;
}

.social-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-links a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  color: var(--ink);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.social-links a:hover {
  border-color: var(--red);
  color: var(--red);
  background: rgba(192, 57, 43, 0.06);
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.highlight-card {
  background: rgba(192, 57, 43, 0.08);
  border: 1px solid rgba(192, 57, 43, 0.25);
  padding: 1.75rem;
  margin-top: 2rem;
}

.highlight-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.highlight-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 1rem;
}

/* VENUES */
.venues-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.venue-card {
  background: var(--paper);
  padding: 2rem 1.75rem;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s;
}

.venue-card:hover {
  background: rgba(10,10,10,0.03);
}

.venue-card:hover .venue-name {
  color: var(--red);
}

.venue-name {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 0.35rem;
  transition: color 0.2s;
}

.venue-city {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.venue-shows {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

/* PRO SECTION */
.pro-section {
  padding: 6rem 5vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.pro-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}

.pro-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.pro-body {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 2.5rem;
}

.pro-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 2.5rem;
}

.pro-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--ink);
}

.pro-check {
  width: 20px;
  height: 20px;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pro-check svg {
  width: 12px;
  height: 12px;
  stroke: white;
  stroke-width: 2.5;
  fill: none;
}

.pricing-card {
  border: 1px solid var(--border);
  padding: 3rem;
  position: relative;
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 2rem;
  background: var(--red);
  color: white;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
}

.pricing-tier {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.pricing-price sup {
  font-family: 'DM Sans', sans-serif;
  font-size: 24px;
  font-weight: 300;
  vertical-align: top;
  margin-top: 12px;
  display: inline-block;
}

.pricing-period {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 2rem;
}

.pricing-divider {
  height: 1px;
  background: var(--border);
  margin: 2rem 0;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 2rem;
}

.pricing-features li {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}

.pricing-features li::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--red);
  flex-shrink: 0;
}

/* SUBMIT SECTION */
.submit-section {
  padding: 6rem 5vw;
  background: var(--ink);
  text-align: center;
}

.submit-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.5rem;
}

.submit-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 8vw, 100px);
  line-height: 1;
  color: white;
  margin-bottom: 1.5rem;
}

.submit-body {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  max-width: 480px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

/* MODALS */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(12px, 3vw, 28px);
}

.modal[hidden] {
  display: none !important;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
}

.modal-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  max-height: min(92vh, 880px);
  display: flex;
  flex-direction: column;
  background: linear-gradient(165deg, #161616 0%, #080808 48%, #0c0c0c 100%);
  border: 1px solid rgba(192, 57, 43, 0.4);
  border-radius: 6px;
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    0 1px 0 rgba(255, 255, 255, 0.05) inset;
  overflow: hidden;
  animation: modalEnter 0.38s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.modal-dialog--wide {
  width: min(100%, 560px);
}

@keyframes modalEnter {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .modal-dialog { animation: none; }
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 1.35rem 1.15rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  flex-shrink: 0;
}

.modal-kicker {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.4rem;
}

.modal-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(30px, 6vw, 42px);
  letter-spacing: 0.07em;
  line-height: 0.95;
  color: #fff;
}

.modal-close {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.modal-close:hover {
  border-color: rgba(192, 57, 43, 0.65);
  color: var(--red);
  background: rgba(192, 57, 43, 0.12);
}

.modal-close svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.modal-frame {
  flex: 1;
  min-height: 0;
  overflow: auto;
  padding: 1rem 1.25rem 1.35rem;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, transparent 40%),
    #050505;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #4a2f2c var(--ink);
}

.modal-frame iframe {
  display: block;
  width: 100%;
  min-height: 480px;
  border: none;
  border-radius: 8px;
  background: #fff;
}

/* FOOTER */
.footer {
  padding: 2rem 5vw;
  background: #050505;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
}

.footer-logo-img {
  display: block;
  height: clamp(72px, 18vw, 108px);
  width: auto;
  opacity: 0.75;
}

.footer-text {
  font-size: 12px;
  color: rgba(255,255,255,0.2);
}

.footer-nav {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
}

.footer-nav a:hover {
  color: white;
}

@media (max-width: 900px) {
  .band-detail {
    grid-template-columns: 1fr;
  }

  .band-sidebar {
    position: static;
  }
}

@media (max-width: 680px) {
  .nav-links,
  .site-nav { display: none; }

  .pro-section { grid-template-columns: 1fr; gap: 3rem; }
  .show-row { grid-template-columns: 70px 1fr; }
  .show-time { display: none; }

  .hero {
    justify-content: flex-start;
    padding: 2.5rem 5vw 6vh;
  }

  .hero-tag {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: 100%;
    justify-content: center;
    margin-bottom: 2rem;
  }

  .hero-tag a {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .hero-tag .site-logo {
    width: 77vw;
    height: auto;
  }

  .hero-eyebrow {
    margin-top: auto;
  }

  .site-header .site-logo {
    width: auto;
    height: clamp(48px, 14vw, 72px);
  }

  .band-hero {
    grid-template-columns: 1fr;
  }
}
