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

:root {
  --black: #080808;
  --black-soft: #0e0e0e;
  --white: #f0ece3;
  --white-dim: rgba(240, 236, 227, 0.7);
  --red: #c8321a;
  --red-hover: #d8411f;
  --red-glow: rgba(200, 50, 26, 0.22);
  --red-muted: rgba(200, 50, 26, 0.12);
  --gray: #111111;
  --gray-mid: #2a2a2a;
  --gray-light: #3a3a3a;
  --muted: #666;
  --muted-lt: #888;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Archivo', sans-serif;
  --font-heavy: 'Archivo Black', sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in: cubic-bezier(0.55, 0, 1, 0.45);
  --nav-h: 72px
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h)
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9000;
  opacity: 0.25
}

@media (hover:hover) and (pointer:fine) {

  body.custom-cursor-enabled,
  body.custom-cursor-enabled a,
  body.custom-cursor-enabled button {
    cursor: none
  }
}

@media (hover:none),
(pointer:coarse) {
  .cursor {
    display: none !important
  }
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  margin: -4px 0 0 -4px;
  background: var(--red);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  will-change: transform;
  transform: translate3d(-100vw,-100vw,0);
  transition: width 0.15s var(--ease), height 0.15s var(--ease), opacity 0.15s;
}

.cursor.big {
  width: 36px;
  height: 36px;
  margin: -18px 0 0 -18px;
}

.cursor.hidden {
  opacity: 0
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes heroBreath {
  from {
    transform: scale(1)
  }

  to {
    transform: scale(1.05)
  }
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top
  }

  50% {
    transform: scaleY(1);
    transform-origin: top
  }

  51% {
    transform: scaleY(1);
    transform-origin: bottom
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom
  }
}

@keyframes eyebrowPulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.4
  }
}

#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  padding: 0 3.5rem;
  background: linear-gradient(to bottom, rgba(8, 8, 8, 0.9) 0%, transparent 100%);
  transition: background 0.4s, backdrop-filter 0.4s, height 0.3s
}

#nav.scrolled {
  background: rgba(8, 8, 8, 0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  height: 62px
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0
}

.nav-logo img {
  height: 70px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.7));
  transition: height 0.3s var(--ease)
}

#nav.scrolled .nav-logo img {
  height: 56px
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center
}

.nav-links a {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
  position: relative
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--red);
  transition: width 0.25s var(--ease)
}

.nav-links a:hover {
  color: var(--white)
}

.nav-links a:hover::after {
  width: 100%
}

.nav-links a.active {
  color: var(--white)
}

.nav-links a.active::after {
  width: 100%;
  background: var(--red)
}

.nav-links a.nav-cta.active::after {
  display: none
}

.nav-links a.nav-cta {
  background: var(--red);
  color: var(--white);
  padding: 0.45rem 1.1rem;
  letter-spacing: 0.15em;
  transition: background 0.2s, transform 0.2s
}

.nav-links a.nav-cta::after {
  display: none
}

.nav-links a.nav-cta:hover {
  background: var(--red-hover);
  color: var(--white);
  transform: translateY(-1px)
}

#menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  padding: 8px;
  z-index: 220
}

#menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center
}

#menu-toggle.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg)
}

#menu-toggle.open span:nth-child(2) {
  opacity: 0
}

#menu-toggle.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg)
}

.nav-overlay {
  position: fixed;
  inset: var(--nav-h) 0 0;
  z-index: 190;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s var(--ease), visibility 0.25s var(--ease)
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto
}

body.nav-open {
  overflow: hidden
}

section {
  padding: 7rem 4rem
}

.section-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.7rem
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--red);
  flex-shrink: 0
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 0.92;
  letter-spacing: 0.01em;
  color: var(--white);
  margin-bottom: 2.5rem
}

.section-title span {
  color: var(--red)
}

svg use {
  fill: currentColor;
  stroke: currentColor
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  transition: all 0.22s var(--ease);
  white-space: nowrap
}

.btn-large {
  padding: 1.1rem 2.8rem;
  font-size: 0.75rem
}

.btn-sm {
  padding: 0.65rem 1.5rem;
  font-size: 0.65rem
}

.btn-primary {
  background: var(--red);
  color: var(--white)
}

.btn-primary:hover {
  background: var(--red-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(200, 50, 26, 0.38);
  color: var(--white)
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2)
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.03)
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.1)
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25)
}

#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 6rem 4rem 6rem;
  overflow: hidden
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 8, 8, 0.88) 0%, rgba(8, 8, 8, 0.6) 22%, rgba(8, 8, 8, 0.15) 55%, rgba(8, 8, 8, 0.25) 100%), linear-gradient(to top, rgba(8, 8, 8, 1) 0%, rgba(8, 8, 8, 0.45) 20%, rgba(8, 8, 8, 0.05) 50%, transparent 100%), radial-gradient(ellipse at 68% 46%, rgba(200, 50, 26, 0.22) 0%, transparent 50%), url("../img/desktop-band.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  will-change: transform
}

.hero-scanlines {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 58px, rgba(255, 255, 255, 0.008) 58px, rgba(255, 255, 255, 0.008) 59px);
  pointer-events: none;
  z-index: 1
}

.hero-vignette {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 45%;
  background: linear-gradient(to top, var(--black) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.4rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.1s var(--ease) forwards
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: eyebrowPulse 2s 1s infinite
}

.hero-nepali {
  font-size: clamp(0.9rem, 1.4vw, 1.1rem);
  color: rgba(200, 50, 26, 0.8);
  letter-spacing: 0.12em;
  margin-bottom: 0.5rem;
  margin-top: 1.2rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.55s var(--ease) forwards
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 9vw, 9.5rem);
  line-height: 0.86;
  letter-spacing: -0.01em;
  color: var(--white);
  text-shadow: 0 24px 80px rgba(0, 0, 0, 0.95);
  margin-bottom: 0.1em
}

.hero-title-line1 {
  display: block;
  opacity: 0;
  animation: fadeUp 0.75s 0.28s var(--ease) forwards
}

.hero-title-line2 {
  display: block;
  color: var(--red);
  opacity: 0;
  animation: fadeUp 0.75s 0.42s var(--ease) forwards
}

.hero-tagline {
  margin-top: 1.8rem;
  font-family: var(--font-heavy);
  font-size: clamp(0.9rem, 1.3vw, 1.1rem);
  color: var(--white-dim);
  letter-spacing: 0.1em;
  font-style: italic;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.9);
  opacity: 0;
  animation: fadeUp 0.7s 0.6s var(--ease) forwards
}

.hero-cta {
  margin-top: 2.8rem;
  display: flex;
  gap: 1.6rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.7s 0.8s var(--ease) forwards
}

/* Hero booking focus: make the event-booking action the clear primary conversion */
.hero-book-cta {
  position: relative;
  isolation: isolate;
  padding: 1.12rem 3rem;
  font-size: 0.82rem;
  letter-spacing: 0.26em;
  box-shadow: 0 14px 44px rgba(200, 50, 26, 0.42);
}

.hero-book-cta::after {
  content: '';
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(200, 50, 26, 0.42);
  opacity: 0.75;
  z-index: -1;
  transition: inset 0.22s var(--ease), opacity 0.22s var(--ease);
}

.hero-book-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 68px rgba(200, 50, 26, 0.55);
}

.hero-book-cta:hover::after {
  inset: -11px;
  opacity: 1;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 3rem;
  right: 4rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  opacity: 0;
  animation: fadeIn 1s 1.4s forwards
}

.scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, transparent, var(--muted));
  animation: scrollLine 2.2s 1.4s ease-in-out infinite
}

.hero-scroll-indicator span {
  font-size: 0.55rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--muted);
  writing-mode: vertical-rl
}

#stats-strip {
  background: var(--red);
  padding: 0;
  overflow: hidden;
  position: relative
}

#stats-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, transparent 60%);
  pointer-events: none
}

.stats-inner {
  display: flex;
  align-items: stretch;
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: none
}

.stats-inner::-webkit-scrollbar {
  display: none
}

.stat-item {
  flex: 1;
  min-width: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.2rem 1.5rem;
  text-align: center;
  position: relative
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1;
  color: var(--white);
  display: inline
}

.stat-plus,
.stat-suffix {
  font-family: var(--font-heavy);
  font-size: 1.1rem;
  color: rgba(240, 236, 227, 0.7);
  vertical-align: super
}

.stat-genre {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--white);
  line-height: 1;
  letter-spacing: 0.04em
}

.stat-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(240, 236, 227, 0.65);
  margin-top: 0.4rem
}

.stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 1.5rem 0;
  flex-shrink: 0
}

#performance {
  background: var(--gray);
  position: relative;
  overflow: hidden
}

#performance::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--red) 50%, transparent 100%);
  opacity: 0.4
}

.perf-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap
}

.perf-header {
  flex-shrink: 0
}

.perf-header .section-title {
  margin-bottom: 0
}

.perf-panel {
  animation: perfFadeIn 0.35s var(--ease) both
}

@keyframes perfFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.perf-featured {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 5rem;
  align-items: center
}

.perf-video-wrap {
  position: relative
}

.video-frame-accent {
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(200, 50, 26, 0.2);
  pointer-events: none;
  z-index: 0
}

.video-frame-accent::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  width: 28px;
  height: 28px;
  border-top: 2px solid var(--red);
  border-left: 2px solid var(--red)
}

.video-frame-accent::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: -4px;
  width: 28px;
  height: 28px;
  border-bottom: 2px solid var(--red);
  border-right: 2px solid var(--red)
}

.music-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--black);
  overflow: hidden;
  z-index: 1
}

.music-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none
}

.perf-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.2rem
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: eyebrowPulse 2s infinite
}

.perf-track-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  line-height: 0.9;
  color: var(--white);
  margin-bottom: 1.2rem
}

.perf-track-title em {
  font-style: normal;
  color: var(--red)
}

.perf-track-desc {
  color: var(--muted-lt);
  font-size: 0.98rem;
  line-height: 1.8;
  margin-bottom: 1.8rem;
  max-width: 320px
}

.perf-meta {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  border-top: 1px solid var(--gray-mid);
  padding-top: 1.2rem;
  margin-bottom: 2rem
}

.perf-meta-row {
  display: flex;
  align-items: center;
  gap: 1rem
}

.meta-label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  min-width: 48px
}

.meta-val {
  font-family: var(--font-heavy);
  font-size: 0.88rem;
  color: var(--white)
}

.perf-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap
}

#about {
  background: var(--black);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: center
}

.about-img-col {
  position: relative
}

.about-img-frame {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--gray-mid)
}

.about-img-frame::before {
  content: '';
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--red-muted);
  z-index: -1
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.06);
  transition: transform 0.7s var(--ease)
}

.about-img-frame:hover .about-img {
  transform: scale(1.04)
}

.about-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200, 50, 26, 0.2) 0%, transparent 50%);
  mix-blend-mode: multiply
}

.about-since-badge {
  position: absolute;
  bottom: 1.8rem;
  left: 1.8rem;
  background: var(--red);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 0.42rem 0.85rem;
  z-index: 2
}

.about-statement {
  font-family: var(--font-heavy);
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  color: var(--white);
  line-height: 1.55;
  margin-bottom: 1.5rem
}

.about-body {
  color: var(--muted-lt);
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 2.5rem
}

.about-pillars {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap
}

.pillar {
  display: flex;
  align-items: center;
  gap: 0.6rem
}

.pillar-icon {
  color: var(--red);
  font-size: 0.7rem;
  line-height: 1
}

.pillar-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-lt)
}

#team {
  background: var(--gray)
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.8rem
}

.team-card {
  display: flex;
  flex-direction: column;
  position: relative
}

.team-photo {
  aspect-ratio: 3/4;
  background: var(--gray-mid);
  overflow: hidden;
  position: relative;
  margin-bottom: 1.2rem
}

.team-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(200, 50, 26, 0.5) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.35s;
  z-index: 1
}

.team-card:hover .team-photo-overlay {
  opacity: 1
}

.team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(12%) contrast(1.05);
  transition: transform 0.5s var(--ease), filter 0.35s
}

.team-card:hover .team-img {
  transform: scale(1.05);
  filter: grayscale(0%) contrast(1.08)
}

.team-meta {
  flex: 1
}

.team-number {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  color: var(--red);
  margin-bottom: 0.3rem
}

.team-name {
  font-family: var(--font-heavy);
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 0.22rem;
  line-height: 1.3
}

.team-role {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.8rem
}

.team-bio {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.75
}

#shows {
  background: var(--gray);
  position: relative
}

.shows-body {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start
}

.shows-category-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray-mid)
}

.shows-empty-state {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 2.5rem;
  border: 1px solid var(--gray-mid);
  position: relative
}

.shows-empty-state::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--red)
}

.shows-empty-icon {
  font-size: 1.8rem;
  color: var(--red);
  opacity: 0.5;
  margin-bottom: 0.5rem
}

.shows-empty-state p {
  font-family: var(--font-heavy);
  font-size: 1rem;
  color: var(--white)
}

.shows-empty-sub {
  font-family: var(--font-body) !important;
  font-size: 0.85rem !important;
  color: var(--muted) !important;
  margin-bottom: 1rem !important;
  font-weight: 400 !important
}

.past-shows-list {
  display: flex;
  flex-direction: column;
  gap: 0
}

.past-show {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--gray-mid);
  transition: background 0.2s
}

.past-show:last-child {
  border-bottom: none
}

.past-show:hover {
  padding-left: 0.5rem
}

.past-show-date {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--red);
  letter-spacing: 0.08em;
  min-width: 48px;
  flex-shrink: 0
}

.past-show-info {
  flex: 1
}

.past-show-name {
  font-family: var(--font-heavy);
  font-size: 0.92rem;
  color: var(--white);
  margin-bottom: 0.2rem
}

.past-show-location {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.05em
}

.past-show-tag {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid var(--red-muted);
  padding: 0.28rem 0.65rem;
  flex-shrink: 0
}

#booking-cta {
  position: relative;
  padding: 10rem 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center
}

.cta-bg-layer {
  position: absolute;
  inset: 0;
  background: url("../img/desktop-booking-cta.jpg");
  background-size: cover;
  background-position: center;
  filter: brightness(0.12) saturate(0.5);
  z-index: 0
}

.cta-red-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(200, 50, 26, 0.22) 0%, transparent 68%);
  z-index: 1
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 720px
}

.cta-eyebrow {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 1.5rem
}

.cta-eyebrow::before,
.cta-eyebrow::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--red)
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 8rem);
  line-height: 0.88;
  color: var(--white);
  text-shadow: 0 8px 48px rgba(0, 0, 0, 0.85);
  margin-bottom: 1.5rem
}

.cta-body {
  color: var(--white-dim);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 2.5rem
}

.cta-tags {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.8rem
}

.cta-tags span {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-lt);
  border: 1px solid var(--gray-mid);
  padding: 0.35rem 0.9rem
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap
}

#contact {
  background: var(--gray);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: start
}

.contact-intro {
  color: var(--muted-lt);
  line-height: 1.85;
  font-size: 0.98rem;
  margin-bottom: 2.5rem
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 2.5rem
}

.contact-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--gray-mid);
  text-decoration: none;
  color: inherit;
  transition: padding-left 0.2s var(--ease)
}

.contact-detail-row:hover {
  padding-left: 0.5rem
}

.contact-detail-icon {
  width: 32px;
  height: 32px;
  background: var(--red-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  flex-shrink: 0;
  margin-top: 2px
}

.contact-detail-label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.25rem
}

.contact-detail-val {
  font-family: var(--font-heavy);
  font-size: 0.92rem;
  color: var(--white)
}

.contact-note {
  color: var(--muted);
  font-size: 0.75rem;
  font-family: var(--font-body);
  font-weight: 400
}

.contact-socials {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap
}

.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  border: 1px solid var(--gray-mid);
  padding: 0.5rem 1rem;
  transition: color 0.2s, border-color 0.2s, background 0.2s
}

.social-pill:hover {
  color: var(--white);
  border-color: var(--red);
  background: var(--red-muted)
}

.contact-form-wrapper {
  display: flex;
  flex-direction: column;
}

.contact-form-header {
  margin-bottom: 2rem;
}

.contact-form-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 0.92;
  letter-spacing: 0.01em;
  color: var(--white);
  margin-top: 0.5rem;
}

.contact-form-title span {
  color: var(--red);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  align-items: end;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem
}

.form-group label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted)
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--gray-mid);
  color: var(--white);
  padding: 0.9rem 1rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  resize: none;
  height: 3.2rem;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  line-height: 1;
  box-sizing: border-box;
}

.form-group textarea {
  height: auto;
  resize: vertical;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23666'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-group input[type="date"] {
  color-scheme: dark;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted)
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  background: rgba(0, 0, 0, 0.6)
}

.form-group select option {
  background: var(--gray)
}

.form-submit-btn {
  align-self: flex-start
}

.form-success-msg {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  color: #5cb85c
}

.form-error-msg {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  color: var(--red)
}

footer {
  background: var(--black);
  padding: 2.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--gray-mid)
}

.footer-logo img {
  height: 70px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.5))
}

.footer-socials {
  display: flex;
  gap: 0.75rem
}

.footer-social {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--gray-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s, background 0.2s
}

.footer-social:hover {
  color: var(--white);
  border-color: var(--red);
  background: var(--red-muted)
}

.footer-top-btn:hover {
  color: var(--white)
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease)
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0)
}

@media (max-width:1100px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem
  }

  .perf-featured {
    gap: 3.5rem
  }

  #about {
    gap: 4.5rem
  }
}

@media (max-width:900px) {
  :root {
    --nav-h: 62px
  }

  #nav {
    padding: 0 1.8rem
  }

  #nav .nav-logo img {
    height: 46px
  }

  #menu-toggle {
    display: flex
  }

  .nav-links {
    display: flex;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s var(--ease);
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(8, 8, 8, 0.99);
    border-top: 1px solid var(--gray-mid);
    border-bottom: 1px solid var(--gray-mid);
    padding: 0.5rem 0;
    align-items: flex-start
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0)
  }

  .nav-links li {
    width: 100%
  }

  .nav-links a {
    display: block;
    padding: 0.9rem 2rem;
    font-size: 0.75rem
  }

  .nav-links a.nav-cta {
    margin: 0.75rem 1.8rem;
    text-align: center;
    display: block;
    padding: 0.7rem 1.5rem
  }

  section {
    padding: 5rem 2.2rem
  }

  #hero {
    padding: 5.5rem 2.2rem 5rem;
    min-height: 92vh
  }

  .hero-bg {
    background: linear-gradient(to bottom, rgba(8, 8, 8, 0.2) 0%, rgba(8, 8, 8, 0.45) 40%, rgba(8, 8, 8, 0.98) 100%), radial-gradient(ellipse at center, rgba(200, 50, 26, 0.12) 0%, transparent 60%), url("../img/mobile-band.jpg");
    background-size: cover;
    background-position: center 20%;
    background-repeat: no-repeat;
    animation: none
  }

  .hero-title {
    font-size: clamp(4rem, 14vw, 6.5rem)
  }

  .hero-content {
    max-width: 100%
  }

  .hero-scroll-indicator {
    display: none
  }

  .perf-featured,
  #about,
  #contact {
    grid-template-columns: 1fr;
    gap: 3rem
  }

  .perf-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem
  }

  .shows-body {
    grid-template-columns: 1fr;
    gap: 3rem
  }

  #booking-cta {
    padding: 8rem 2.2rem
  }

  .cta-title {
    font-size: clamp(3.2rem, 12vw, 5.5rem)
  }

  footer {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    padding: 2.5rem 2.2rem
  }

  .form-row {
    grid-template-columns: 1fr
  }

  .stats-inner {
    justify-content: flex-start
  }

  .stat-item {
    min-width: 120px;
    padding: 1.8rem 1rem
  }
}

@media (max-width:560px) {
  :root {
    --nav-h: 56px
  }

  #nav {
    padding: 0 1.1rem
  }

  section {
    padding: 4.2rem 1.2rem
  }

  #hero {
    min-height: 100svh;
    padding: 5rem 1.2rem 4rem
  }

  .hero-title {
    font-size: clamp(3.4rem, 17vw, 5.2rem)
  }

  .hero-tagline {
    font-size: 0.88rem
  }

  .hero-cta {
    flex-direction: column
  }

  .hero-cta .btn {
    width: 100%;
    justify-content: center
  }

  .hero-book-cta {
    order: -2;
    padding: 1.15rem 1.5rem;
  }

  .team-grid {
    grid-template-columns: 1fr
  }

  .perf-track-title {
    font-size: clamp(2.5rem, 14vw, 4rem)
  }

  .about-pillars {
    gap: 1.2rem
  }

  #booking-cta {
    padding: 6.5rem 1.2rem
  }

  .cta-title {
    font-size: clamp(3rem, 15vw, 5rem)
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center
  }

  .cta-buttons .btn {
    width: 100%;
    justify-content: center
  }

  footer {
    padding: 2rem 1.2rem
  }
}

[hidden] {
  display: none !important;
}

.nav-links.open {
  z-index: 210
}

.form-submit-btn:disabled {
  opacity: 0.65;
  pointer-events: none
}

@media (prefers-reduced-motion:reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important
  }

  .hero-bg {
    animation: none !important
  }
}

.perf-panel+.perf-panel {
  margin-top: 6rem;
  padding-top: 6rem;
  border-top: 1px solid var(--gray-mid)
}

.perf-featured {
  width: 100%
}

@media (max-width:900px) {
  .perf-panel+.perf-panel {
    margin-top: 4rem;
    padding-top: 4rem
  }
}

@media (prefers-reduced-motion:no-preference) {
  .hero-bg {
    animation: heroBreath 20s ease-in-out 3 alternate
  }
}

@supports (content-visibility:auto) {
  section:not(#hero) {
    content-visibility: auto;
    contain-intrinsic-size: 900px
  }
}

/* =========================================================
   Gallery mobile optimization
   - Fixes nth-child specificity conflicts from desktop grid
   - Uses a clean 2-column layout on tablets
   - Switches to a swipeable scroll-snap gallery on phones
   ========================================================= */
@media (max-width:900px) {
  #gallery {
    overflow: hidden
  }

}

@media (max-width:560px) {
  #gallery {
    padding-inline: 0
  }

}

/* Booking CTA responsive background images */
@media (max-width:900px) {
  .cta-bg-layer {
    background-image: url("../img/mobile-booking-cta.jpg");
    background-position: center center
  }
}

@media (max-width:560px) {
  .cta-bg-layer {
    background-position: center top
  }
}

/* ── WhatsApp Floating Action Button ── */
.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 8000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  border-radius: 50%;
  width: 54px;
  height: 54px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s;
}

.whatsapp-fab:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
}

/* Security/UX helpers for the contact form */
.is-hidden {
  display: none !important;
}

.whatsapp-green {
  color: #25D366 !important;
}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  overflow: hidden !important;
  pointer-events: none !important;
}

.h-captcha {
  min-height: 78px;
}

/* =========================================================
 Band member profile modal — premium cinematic glass UI
========================================================= */
.team-card {
  isolation: isolate
}

.team-photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--gray-mid);
  border: 0;
  border-radius: 0;
  overflow: hidden;
  position: relative;
  margin-bottom: 1.2rem;
  padding: 0;
  display: block;
  cursor: pointer;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .035);
  transition: transform .32s var(--ease), box-shadow .32s var(--ease), filter .32s var(--ease)
}

.team-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(200, 50, 26, 0);
  z-index: 2;
  pointer-events: none;
  transition: border-color .32s var(--ease), inset .32s var(--ease)
}

.team-card:hover .team-photo,
.team-photo:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 22px 58px rgba(0, 0, 0, .48), 0 0 34px rgba(200, 50, 26, .18)
}

.team-card:hover .team-photo::after,
.team-photo:focus-visible::after {
  inset: 8px;
  border-color: rgba(200, 50, 26, .65)
}

.team-view-profile {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  z-index: 3;
  transform: translate(-50%, 10px) scale(.96);
  opacity: 0;
  color: var(--white);
  background: rgba(8, 8, 8, .68);
  border: 1px solid rgba(255, 255, 255, .16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: .48rem .85rem;
  font-size: .56rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: opacity .3s var(--ease), transform .3s var(--ease), border-color .3s var(--ease)
}

.team-card:hover .team-view-profile,
.team-photo:focus-visible .team-view-profile {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
  border-color: rgba(200, 50, 26, .55)
}

.member-modal {
  position: fixed;
  inset: 0;
  z-index: 9400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 3vw, 2rem);
  opacity: 1;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0s linear .34s
}

.member-modal.open {
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s
}

.member-modal-backdrop {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(ellipse at 50% 45%, rgba(200, 50, 26, .16), transparent 48%), rgba(4, 4, 4, .78);
  backdrop-filter: blur(18px) saturate(.9);
  -webkit-backdrop-filter: blur(18px) saturate(.9);
  will-change: opacity, backdrop-filter;
  transform: translateZ(0);
  transition: opacity .2s var(--ease)
}

.member-modal.open .member-modal-backdrop {
  opacity: 1
}

.member-modal-card {
  position: relative;
  z-index: 1;
  width: min(880px, 100%);
  display: grid;
  grid-template-columns: minmax(260px, .92fr) 1.08fr;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(22, 22, 22, .86), rgba(8, 8, 8, .78));
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 34px 120px rgba(0, 0, 0, .88), 0 0 0 1px rgba(200, 50, 26, .08), inset 0 1px 0 rgba(255, 255, 255, .08);
  transform: translateY(18px) scale(.94);
  opacity: 0;
  transition: transform .38s var(--ease), opacity .34s var(--ease)
}

.member-modal.open .member-modal-card {
  transform: translateY(0) scale(1);
  opacity: 1
}

.member-modal-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, .1), transparent 24%, transparent 72%, rgba(200, 50, 26, .12));
  pointer-events: none
}

.member-modal-media {
  position: relative;
  min-height: 520px;
  background: var(--gray-mid);
  overflow: hidden
}

.member-modal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.08) saturate(.95);
  transform: scale(1.02)
}

.member-modal-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 8, 8, .7), transparent 42%), radial-gradient(ellipse at 70% 20%, rgba(200, 50, 26, .28), transparent 44%);
  mix-blend-mode: screen;
  opacity: .62
}

.member-modal-content {
  position: relative;
  padding: clamp(2rem, 4vw, 3.2rem);
  display: flex;
  flex-direction: column;
  justify-content: center
}

.member-modal-eyebrow {
  color: var(--red);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .42em;
  text-transform: uppercase;
  margin-bottom: 1rem
}

.member-modal-name {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: .88;
  color: var(--white);
  margin-bottom: .8rem;
  text-wrap: balance
}

.member-modal-role {
  display: inline-flex;
  align-self: flex-start;
  color: var(--red);
  border: 1px solid rgba(200, 50, 26, .3);
  background: rgba(200, 50, 26, .1);
  padding: .42rem .72rem;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  margin-bottom: 1.8rem
}

.member-modal-info {
  display: grid;
  gap: .72rem
}

.member-info-row {
  display: flex;
  align-items: center;
  gap: .9rem;
  color: inherit;
  text-decoration: none;
  background: rgba(255, 255, 255, .045);
  border: 1px solid rgba(255, 255, 255, .08);
  padding: .9rem 1rem;
  transition: transform .22s var(--ease), border-color .22s var(--ease), background .22s var(--ease)
}

a.member-info-row:hover {
  transform: translateX(4px);
  border-color: rgba(200, 50, 26, .5);
  background: rgba(200, 50, 26, .09)
}

.member-info-icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 36px;
  color: var(--red);
  background: rgba(200, 50, 26, .12);
  border: 1px solid rgba(200, 50, 26, .2)
}

.member-info-label {
  display: block;
  color: var(--muted-lt);
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
  margin-bottom: .2rem
}

.member-info-row strong {
  display: block;
  color: var(--white);
  font-size: .9rem;
  line-height: 1.45;
  word-break: break-word
}

.member-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(8, 8, 8, .68);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .22s var(--ease), background .22s var(--ease), border-color .22s var(--ease)
}

.member-modal-close:hover {
  transform: rotate(90deg) scale(1.04);
  background: var(--red);
  border-color: var(--red)
}

body.member-modal-open {
  overflow: hidden
}

body.member-modal-open .whatsapp-fab {
  opacity: 0;
  pointer-events: none
}

@media (max-width:760px) {
  .member-modal {
    padding: .9rem;
    align-items: flex-end
  }

  .member-modal-card {
    grid-template-columns: 1fr;
    width: 100%;
    max-height: calc(100svh - 1.8rem);
    overflow-y: auto
  }

  .member-modal-media {
    min-height: 0;
    height: min(48vh, 410px)
  }

  .member-modal-content {
    padding: 1.5rem
  }

  .member-modal-name {
    font-size: clamp(2.8rem, 14vw, 4.2rem)
  }

  .member-modal-role {
    margin-bottom: 1.1rem
  }

  .member-info-row {
    padding: .78rem
  }

  .member-info-icon {
    width: 32px;
    height: 32px;
    flex-basis: 32px
  }

  .team-view-profile {
    opacity: 1;
    transform: translate(-50%, 0) scale(1)
  }
}

@media (prefers-reduced-motion:reduce) {

  .member-modal,
  .member-modal-card,
  .team-photo,
  .team-view-profile {
    transition-duration: .01ms !important
  }
}

/* =========================================================
 Team card detail cue — clean desktop hover + mobile tap hint
========================================================= */
.team-view-profile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 34px;
}

.team-view-profile svg {
  flex: 0 0 auto;
  opacity: 0.9;
}

.team-view-profile .mobile-label {
  display: none;
}

@media (max-width: 760px) {
  .team-view-profile .desktop-label {
    display: none;
  }

  .team-view-profile .mobile-label {
    display: inline;
  }
}

/* =========================================================
 Team card detail cue — subtle always-visible desktop hint
========================================================= */
@media (hover: hover) and (pointer: fine) and (min-width: 761px) {
  .team-view-profile {
    opacity: 0.78;
    transform: translate(-50%, 0) scale(1);
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(8, 8, 8, 0.56);
  }

  .team-card:hover .team-view-profile,
  .team-photo:focus-visible .team-view-profile {
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
    border-color: rgba(200, 50, 26, 0.58);
    background: rgba(8, 8, 8, 0.76);
  }
}

/* Expand icon visibility fix for team detail cue */
.team-view-profile .team-view-icon {
  display: block;
  width: 14px;
  height: 14px;
  color: currentColor;
  stroke: currentColor;
  fill: none;
  flex: 0 0 14px;
  opacity: 1;
}

.team-view-profile .team-view-icon path {
  fill: none;
  stroke: currentColor;
}

/* Member modal cursor fix: keep the custom pointer visible on profile popups */
body.member-modal-open .cursor {
  opacity: 1;
  z-index: 9999;
}

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

/* =========================================================
 Team popup close fix — prevent the opener card from staying highlighted
 while the pointer/focus is still sitting over it after modal close.
========================================================= */
.team-card.suppress-hover .team-photo,
.team-card.suppress-hover:hover .team-photo,
.team-card.suppress-hover .team-photo:focus,
.team-card.suppress-hover .team-photo:focus-visible {
  outline: none !important;
  transform: none !important;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .035) !important;
}

.team-card.suppress-hover .team-photo::after,
.team-card.suppress-hover:hover .team-photo::after,
.team-card.suppress-hover .team-photo:focus::after,
.team-card.suppress-hover .team-photo:focus-visible::after {
  inset: 0 !important;
  border-color: rgba(200, 50, 26, 0) !important;
}

.team-card.suppress-hover:hover .team-photo-overlay,
.team-card.suppress-hover .team-photo:focus .team-photo-overlay,
.team-card.suppress-hover .team-photo:focus-visible .team-photo-overlay {
  opacity: 0 !important;
}

.team-card.suppress-hover:hover .team-img,
.team-card.suppress-hover .team-photo:focus .team-img,
.team-card.suppress-hover .team-photo:focus-visible .team-img {
  transform: none !important;
  filter: grayscale(12%) contrast(1.05) !important;
}

.team-card.suppress-hover:hover .team-view-profile,
.team-card.suppress-hover .team-photo:focus .team-view-profile,
.team-card.suppress-hover .team-photo:focus-visible .team-view-profile {
  opacity: 0.78 !important;
  transform: translate(-50%, 0) scale(1) !important;
  border-color: rgba(255, 255, 255, .14) !important;
  background: rgba(8, 8, 8, .56) !important;
}

/* Manager badge for Rushant Bisunke — SVG icon version */
.team-role-row {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
  margin-bottom: 0.8rem;
}

.team-role-row .team-role {
  margin-bottom: 0;
}

.team-manager-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.38rem;
  min-height: 1.45rem;
  padding: 0.28rem 0.62rem 0.28rem 0.5rem;
  border: 1px solid rgba(200, 50, 26, 0.58);
  background: linear-gradient(135deg, rgba(200, 50, 26, 0.22), rgba(200, 50, 26, 0.08));
  color: var(--white);
  box-shadow: 0 8px 24px rgba(200, 50, 26, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  vertical-align: middle;
}

.team-manager-badge-icon {
  width: 0.78rem;
  height: 0.78rem;
  flex: 0 0 0.78rem;
  display: block;
  color: var(--red);
  filter: drop-shadow(0 0 7px rgba(200, 50, 26, 0.45));
  transform: translateY(-0.01rem);
}

.team-manager-badge-icon path {
  fill: currentColor;
  stroke: none;
}

.team-manager-badge span {
  display: inline-block;
  line-height: 1;
  transform: translateY(0.01rem);
}

/* =========================================================
 Multipage consistency pass — site-matched pages
========================================================= */
main {
  min-height: 60vh
}

.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--black);
  padding: calc(var(--nav-h) + 5.5rem) 4rem 4.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, .055)
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 8, 8, .92), rgba(8, 8, 8, .72) 35%, rgba(8, 8, 8, .88)), radial-gradient(ellipse at 75% 25%, rgba(200, 50, 26, .2), transparent 46%), url("../img/desktop-band.jpg");
  background-size: cover;
  background-position: center;
  filter: saturate(.72) contrast(1.05);
  z-index: -2
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 58px, rgba(255, 255, 255, .008) 58px, rgba(255, 255, 255, .008) 59px);
  pointer-events: none;
  z-index: -1
}

.page-hero-content {
  max-width: 760px
}

.page-hero .section-title {
  margin-bottom: 1.2rem
}

.page-hero p {
  max-width: 650px;
  color: var(--muted-lt);
  font-size: 1rem;
  line-height: 1.85
}

.page-hero+section {
  position: relative
}

body:not([data-page="home"]) #performance,
body:not([data-page="home"]) #about,
body:not([data-page="home"]) #team,
body:not([data-page="home"]) #shows,
body:not([data-page="home"]) #contact {
  padding-top: 5.5rem
}

body[data-page="music"] #performance,
body[data-page="artists"] #team,
body[data-page="contact"] #contact,
body[data-page="shows"] #shows {
  border-top: 1px solid rgba(200, 50, 26, .18)
}

body[data-page="about"] #booking-cta,
body[data-page="shows"] #booking-cta {
  margin-top: 0
}

.nav-links a[data-page-link].active {
  color: var(--white)
}

.nav-links a[data-page-link].active::after {
  width: 100%;
  background: var(--red)
}

/* Event album gallery — matched to website */
#event-gallery.event-gallery-page {
  background: var(--black);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  padding: calc(var(--nav-h) + 5rem) 4rem 6rem
}

#event-gallery.event-gallery-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 75% 18%, rgba(200, 50, 26, .16), transparent 42%), linear-gradient(to bottom, rgba(255, 255, 255, .018), transparent 35%);
  pointer-events: none
}

.event-gallery-heading {
  position: relative;
  z-index: 1
}

.event-gallery-heading {
  max-width: 760px;
  margin-bottom: 3rem
}

.event-gallery-heading .section-title {
  margin-bottom: 1rem
}

.event-gallery-heading p {
  color: var(--muted-lt);
  line-height: 1.85;
  max-width: 560px;
  font-size: .98rem
}

.event-album-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem
}

.event-album-card {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, .055);
  border-radius: 0;
  padding: 0;
  background: var(--gray);
  color: var(--white);
  cursor: pointer;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
  text-align: left;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .18);
  transition: transform .28s var(--ease), border-color .28s var(--ease), box-shadow .28s var(--ease), background .28s var(--ease)
}

.event-album-card:hover,
.event-album-card:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(200, 50, 26, .58);
  background: #151515;
  box-shadow: 0 24px 64px rgba(0, 0, 0, .48), 0 0 34px rgba(200, 50, 26, .13)
}

.event-album-media {
  display: block;
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--gray-mid)
}

.event-album-media::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(200, 50, 26, 0);
  z-index: 2;
  pointer-events: none;
  transition: inset .28s var(--ease), border-color .28s var(--ease)
}

.event-album-card:hover .event-album-media::after,
.event-album-card:focus-visible .event-album-media::after {
  inset: 8px;
  border-color: rgba(200, 50, 26, .62)
}

.event-album-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(.82) saturate(.92) contrast(1.05);
  transition: transform .55s var(--ease), filter .35s var(--ease)
}

.event-album-card:hover .event-album-media img,
.event-album-card:focus-visible .event-album-media img {
  transform: scale(1.06);
  filter: brightness(1) saturate(1.08) contrast(1.08)
}

.event-album-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 1rem;
  background: linear-gradient(to top, rgba(200, 50, 26, .48), transparent 55%);
  opacity: 0;
  transition: opacity .28s var(--ease)
}

.event-album-card:hover .event-album-overlay,
.event-album-card:focus-visible .event-album-overlay {
  opacity: 1
}

.event-album-open {
  color: var(--white);
  background: rgba(8, 8, 8, .7);
  border: 1px solid rgba(255, 255, 255, .14);
  padding: .48rem .75rem;
  font-size: .56rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  backdrop-filter: blur(10px)
}

.event-album-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1rem 1.05rem;
  min-height: 78px;
  border-top: 1px solid rgba(255, 255, 255, .035)
}

.event-album-caption span {
  min-width: 0
}

.event-album-caption strong {
  display: block;
  font-family: var(--font-heavy);
  font-size: .9rem;
  line-height: 1.28;
  color: var(--white);
  margin-bottom: .28rem
}

.event-album-caption small {
  display: block;
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--red);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.event-album-caption em {
  font-style: normal;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 34px;
  color: var(--red);
  background: rgba(200, 50, 26, .1);
  border: 1px solid rgba(200, 50, 26, .22);
  font-family: var(--font-heavy);
  font-size: .74rem
}

.event-album-dialog,
.event-photo-viewer {
  position: fixed;
  inset: 0;
  z-index: 9400;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .28s var(--ease), visibility .28s var(--ease);
  background: radial-gradient(ellipse at 50% 45%, rgba(200, 50, 26, .13), transparent 48%), rgba(4, 4, 4, .86);
  backdrop-filter: blur(18px) saturate(.9);
  -webkit-backdrop-filter: blur(18px) saturate(.9)
}

.event-album-dialog.open,
.event-photo-viewer.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto
}

body.album-open {
  overflow: hidden
}

.event-album-dialog {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem
}

.event-album-panel {
  position: relative;
  width: min(1120px, calc(100vw - 2rem));
  max-height: calc(100svh - 2rem);
  overflow: auto;
  margin: 0;
  padding: clamp(1.3rem, 3vw, 2.6rem);
  background: linear-gradient(135deg, rgba(22, 22, 22, .94), rgba(8, 8, 8, .9));
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 34px 120px rgba(0, 0, 0, .88), inset 0 1px 0 rgba(255, 255, 255, .06)
}

.event-album-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, .08), transparent 25%, transparent 72%, rgba(200, 50, 26, .10));
  pointer-events: none
}

.event-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(8, 8, 8, .68);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .22s var(--ease), background .22s var(--ease), border-color .22s var(--ease)
}

.event-photo-close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 9700;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(8, 8, 8, .68);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .22s var(--ease), background .22s var(--ease), border-color .22s var(--ease)
}

.event-modal-close:hover,
.event-photo-close:hover {
  transform: rotate(90deg) scale(1.04);
  background: var(--red);
  border-color: var(--red)
}

.event-album-panel-header,
.event-album-photo-grid {
  position: relative;
  z-index: 1
}

.event-album-panel-header {
  margin-bottom: 1.8rem;
  padding-right: 3rem
}

.event-album-panel-header h2 {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 7vw, 6.4rem);
  line-height: .88;
  color: var(--white);
  margin-bottom: .75rem
}

.event-album-panel-header p:not(.member-modal-eyebrow) {
  color: var(--red);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase
}

.event-album-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .8rem
}

.event-album-photo {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, .06);
  padding: 0;
  background: var(--gray-mid);
  aspect-ratio: 16/10;
  cursor: pointer;
  overflow: hidden
}

.event-album-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(.86) saturate(.92);
  transition: transform .38s var(--ease), filter .3s var(--ease)
}

.event-album-photo:hover img,
.event-album-photo:focus-visible img {
  transform: scale(1.06);
  filter: brightness(1.06) saturate(1.08)
}

.event-photo-viewer {
  z-index: 9600;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 5rem
}

.event-photo-stage {
  margin: 0;
  width: 100%;
  max-width: 1180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem
}

.event-photo-stage img {
  max-width: 100%;
  max-height: 76vh;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: 0 40px 120px rgba(0, 0, 0, .85), 0 0 0 1px rgba(200, 50, 26, .08)
}

.event-photo-stage figcaption {
  display: flex;
  justify-content: space-between;
  width: min(100%, 1180px);
  gap: 1rem;
  color: var(--white);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase
}

.event-photo-stage figcaption span:last-child {
  color: var(--muted-lt)
}

.event-photo-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 56px;
  height: 80px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(14, 14, 14, .75);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .22s, border-color .22s, transform .22s var(--ease)
}

.event-photo-nav:hover {
  background: var(--red);
  border-color: var(--red)
}

.event-photo-prev {
  left: clamp(.6rem, 2vw, 2rem)
}

.event-photo-next {
  right: clamp(.6rem, 2vw, 2rem)
}

.event-photo-prev:hover {
  transform: translateY(-50%) translateX(-2px)
}

.event-photo-next:hover {
  transform: translateY(-50%) translateX(2px)
}

@media(max-width:1100px) {
  .event-album-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr))
  }
}

@media(max-width:900px) {
  .page-hero {
    padding: calc(var(--nav-h) + 4rem) 2.2rem 3.8rem
  }

  .page-hero-bg {
    background-image: linear-gradient(to bottom, rgba(8, 8, 8, .72), rgba(8, 8, 8, .95)), radial-gradient(ellipse at 60% 25%, rgba(200, 50, 26, .18), transparent 50%), url("../img/mobile-band.jpg")
  }

  #event-gallery.event-gallery-page {
    padding: calc(var(--nav-h) + 4rem) 2.2rem 5rem
  }

  .event-album-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .event-album-photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }
}

@media(max-width:560px) {
  .page-hero {
    padding: calc(var(--nav-h) + 3.2rem) 1.2rem 3.2rem
  }

  .page-hero p {
    font-size: .92rem
  }

  #event-gallery.event-gallery-page {
    padding: calc(var(--nav-h) + 3rem) 1.2rem 4rem
  }

  .event-album-grid {
    grid-template-columns: 1fr;
    gap: 1rem
  }

  .event-album-caption {
    min-height: 70px
  }

  .event-album-photo-grid {
    grid-template-columns: 1fr
  }

  .event-photo-viewer {
    padding: 5rem 1rem 6rem
  }

  .event-photo-nav {
    top: auto;
    bottom: 1.2rem;
    transform: none;
    width: 52px;
    height: 52px;
    border-radius: 50%
  }

  .event-photo-prev,
  .event-photo-prev:hover {
    left: 1.2rem;
    transform: none
  }

  .event-photo-next,
  .event-photo-next:hover {
    right: 1.2rem;
    transform: none
  }

  .event-photo-stage figcaption {
    font-size: .56rem;
    line-height: 1.4
  }
}

/* =========================================================
 FINAL FIX: Gallery-style heroes for Music / About / Band / Shows / Book
 - Includes the Band page too
 - Removes the red bottom divider/border
========================================================= */
body[data-page="music"] .page-hero,
body[data-page="about"] .page-hero,
body[data-page="artists"] .page-hero,
body[data-page="shows"] .page-hero,
body[data-page="contact"] .page-hero {
  background: var(--black) !important;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: clamp(420px, 58vh, 620px);
  display: flex;
  align-items: flex-end;
  padding: calc(var(--nav-h) + 5rem) 4rem 5.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.055) !important;
}

body[data-page="music"] .page-hero-bg,
body[data-page="about"] .page-hero-bg,
body[data-page="artists"] .page-hero-bg,
body[data-page="shows"] .page-hero-bg,
body[data-page="contact"] .page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse at 75% 18%, rgba(200, 50, 26, 0.16), transparent 42%),
    radial-gradient(ellipse at 16% 82%, rgba(200, 50, 26, 0.07), transparent 44%),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.018), transparent 38%),
    var(--black) !important;
  background-size: cover;
  background-position: center;
  filter: none !important;
}

body[data-page="music"] .page-hero::before,
body[data-page="about"] .page-hero::before,
body[data-page="artists"] .page-hero::before,
body[data-page="shows"] .page-hero::before,
body[data-page="contact"] .page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 58px, rgba(255, 255, 255, 0.008) 58px, rgba(255, 255, 255, 0.008) 59px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.022), transparent 32%, transparent 68%, rgba(200, 50, 26, 0.045));
}

body[data-page="music"] .page-hero::after,
body[data-page="about"] .page-hero::after,
body[data-page="artists"] .page-hero::after,
body[data-page="shows"] .page-hero::after,
body[data-page="contact"] .page-hero::after {
  content: none !important;
  display: none !important;
  background: none !important;
}

body[data-page="music"] #performance,
body[data-page="artists"] #team,
body[data-page="contact"] #contact,
body[data-page="shows"] #shows {
  border-top: 1px solid rgba(255, 255, 255, 0.055) !important;
}

body[data-page="music"] .page-hero-content,
body[data-page="about"] .page-hero-content,
body[data-page="artists"] .page-hero-content,
body[data-page="shows"] .page-hero-content,
body[data-page="contact"] .page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

body[data-page="music"] .page-hero .section-title,
body[data-page="about"] .page-hero .section-title,
body[data-page="artists"] .page-hero .section-title,
body[data-page="shows"] .page-hero .section-title,
body[data-page="contact"] .page-hero .section-title {
  margin-bottom: 1rem;
  text-shadow: 0 20px 70px rgba(0, 0, 0, 0.85);
}

body[data-page="music"] .page-hero p,
body[data-page="about"] .page-hero p,
body[data-page="artists"] .page-hero p,
body[data-page="shows"] .page-hero p,
body[data-page="contact"] .page-hero p {
  color: var(--muted-lt);
  max-width: 620px;
  font-size: 1rem;
  line-height: 1.85;
}

.section-no-duplicate-heading {
  padding-top: 4.5rem !important;
}

@media (max-width: 900px) {

  body[data-page="music"] .page-hero,
  body[data-page="about"] .page-hero,
  body[data-page="artists"] .page-hero,
  body[data-page="shows"] .page-hero,
  body[data-page="contact"] .page-hero {
    min-height: 380px;
    padding: calc(var(--nav-h) + 4rem) 2.2rem 4.2rem;
  }

  .section-no-duplicate-heading {
    padding-top: 3.5rem !important;
  }
}

@media (max-width: 560px) {

  body[data-page="music"] .page-hero,
  body[data-page="about"] .page-hero,
  body[data-page="artists"] .page-hero,
  body[data-page="shows"] .page-hero,
  body[data-page="contact"] .page-hero {
    min-height: 340px;
    padding: calc(var(--nav-h) + 3.2rem) 1.2rem 3.4rem;
  }

  body[data-page="music"] .page-hero p,
  body[data-page="about"] .page-hero p,
  body[data-page="artists"] .page-hero p,
  body[data-page="shows"] .page-hero p,
  body[data-page="contact"] .page-hero p {
    font-size: 0.92rem;
  }

  .section-no-duplicate-heading {
    padding-top: 3rem !important;
  }
}

/* =========================================================
 Footer — centered Contacts layout
========================================================= */
.site-footer {
  position: relative;
  overflow: hidden;
  background: #020202;
  border-top: 1px solid rgba(255, 255, 255, 0.055);
  padding: 4.2rem 3.4rem 2rem;
  min-height: 340px;
  display: flex;
  flex-direction: column;
}

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 18% 18%, rgba(200, 50, 26, 0.07), transparent 34%),
    radial-gradient(ellipse at 78% 10%, rgba(200, 50, 26, 0.05), transparent 34%),
    repeating-linear-gradient(0deg, transparent, transparent 58px, rgba(255, 255, 255, 0.005) 58px, rgba(255, 255, 255, 0.005) 59px);
  opacity: 0.86;
}

.footer-main,
.footer-bottom {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1210px;
  margin-inline: auto;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
  padding-bottom: 3.2rem;
}

.footer-brand {
  justify-self: start;
  min-height: 72px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.footer-logo img {
  height: 70px;
  width: auto;
  max-width: 165px;
  object-fit: contain;
  filter: drop-shadow(0 8px 22px rgba(0, 0, 0, 0.75));
}

.footer-contact {
  justify-self: center;
  text-align: left;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-contact h2,
.footer-social-block h2 {
  font-family: var(--font-heavy);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--muted-lt);
  margin-bottom: 1rem;
}

.footer-contact p {
  margin: 0;
  color: var(--white-dim);
  font-size: 0.82rem;
  line-height: 1.65;
}

.footer-contact span {
  color: var(--muted-lt);
}

.footer-contact a,
.footer-contact strong {
  color: var(--red-hover);
  font-weight: 700;
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--white);
}

.footer-social-block {
  justify-self: end;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-social {
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: color 0.2s var(--ease), transform 0.2s var(--ease), filter 0.2s var(--ease);
}

.footer-social:hover {
  color: var(--red-hover);
  background: transparent;
  transform: translateY(-2px);
  filter: drop-shadow(0 0 10px rgba(200, 50, 26, 0.24));
}

.footer-social-whatsapp:hover {
  color: #25D366;
  filter: drop-shadow(0 0 10px rgba(37, 211, 102, 0.22));
}

.footer-bottom {
  margin-top: auto;
  border-top: 1px solid rgba(240, 236, 227, 0.42);
  padding-top: 1.45rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  column-gap: 1.5rem;
  row-gap: 0.75rem;
}

.footer-bottom p,
.footer-links a {
  color: var(--white-dim);
  font-size: 0.7rem;
  line-height: 1.6;
  text-decoration: none;
  margin: 0;
}

.footer-bottom span,
.footer-credit span {
  color: var(--red-hover);
}

.footer-bottom>p:first-child {
  justify-self: start;
  text-align: left;
}

.footer-credit {
  justify-self: center;
  text-align: center;
  white-space: nowrap;
}

.footer-credit a {
  color: var(--red-hover);
  text-decoration: none;
  font-weight: inherit;
}

.footer-credit a:hover {
  color: var(--white);
}

.footer-links {
  justify-self: end;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.3rem;
  flex-wrap: wrap;
  text-align: right;
}

.footer-links a {
  transition: color 0.2s var(--ease);
  white-space: nowrap;
}

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

@media (max-width: 900px) {
  .site-footer {
    padding: 3.4rem 2.2rem 2rem;
    min-height: auto;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 2.8rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
    min-height: auto;
  }

  .footer-contact {
    justify-self: start;
    min-width: 0;
  }

  .footer-social-block {
    justify-self: start;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 0.75rem;
  }

  .footer-bottom>p:first-child,
  .footer-credit,
  .footer-links {
    justify-self: center;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .site-footer {
    padding: 3rem 1.2rem 1.8rem;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 2.4rem;
  }

  .footer-brand,
  .footer-contact,
  .footer-social-block {
    text-align: left;
  }

  .footer-logo img {
    height: 60px;
    max-width: 145px;
  }

  .footer-bottom {
    padding-top: 1.25rem;
  }

  .footer-links {
    gap: 1rem;
  }
}

/* =========================================================
 Home CTA alignment + clickability polish
========================================================= */
.perf-info,
.about-text-col {
  position: relative;
  z-index: 3;
}

.perf-actions {
  align-items: center;
  margin-top: 0.25rem;
  position: relative;
  z-index: 4;
}

.perf-actions .btn,
.perf-actions .perf-secondary-btn {
  min-width: 172px;
  justify-content: center;
}

@media (max-width: 560px) {

  .perf-actions,
  .perf-actions .btn,
  }

/* =========================================================
 Home About CTA — compact replacement for full homepage about section
========================================================= */
.home-about-cta {
  position: relative;
  overflow: hidden;
  background: var(--black);
  padding: 6.5rem 4rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, .055)
}

.home-about-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 50% 20%, rgba(200, 50, 26, .14), transparent 45%), repeating-linear-gradient(0deg, transparent, transparent 58px, rgba(255, 255, 255, .006) 58px, rgba(255, 255, 255, .006) 59px)
}

.home-about-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto
}

.home-about-cta .section-label {
  justify-content: center
}

.home-about-cta .section-label::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--red);
  flex-shrink: 0
}

.home-about-cta .section-title {
  margin-bottom: 1.2rem
}

.home-about-cta p {
  color: var(--muted-lt);
  font-size: 1rem;
  line-height: 1.85;
  max-width: 620px;
  margin: 0 auto 2.2rem
}

@media(max-width:900px) {
  .home-about-cta {
    padding: 5rem 2.2rem
  }
}

@media(max-width:560px) {
  .home-about-cta {
    padding: 4.2rem 1.2rem
  }

  .home-about-cta .btn {
    width: 100%;
    justify-content: center
  }
}

/* =========================================================
 Homepage complete fix: Why Book Us + Recent Stages + Gallery Preview
========================================================= */
.home-proof {
  position: relative;
  overflow: hidden;
  background: var(--gray);
  padding: 6.5rem 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.055);
}

.home-proof::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 76% 18%, rgba(200, 50, 26, 0.13), transparent 42%),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.018), transparent 38%),
    repeating-linear-gradient(0deg, transparent, transparent 58px, rgba(255, 255, 255, 0.006) 58px, rgba(255, 255, 255, 0.006) 59px);
}

.home-proof-header,
.home-proof-grid,
.home-stages-copy,
.home-stage-list,
.home-gallery-preview-header,
.home-gallery-preview-grid,
.home-gallery-preview-action {
  position: relative;
  z-index: 1;
}

.home-proof-header {
  max-width: 760px;
  margin-bottom: 3rem;
}

.home-proof-header .section-title,
.home-stages-copy .section-title,
.home-gallery-preview-header .section-title {
  margin-bottom: 1rem;
}

.home-proof-header p,
.home-gallery-preview-header p {
  color: var(--muted-lt);
  font-size: 1rem;
  line-height: 1.85;
  max-width: 650px;
}

.home-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.home-proof-card {
  position: relative;
  min-height: 252px;
  padding: 1.45rem 1.35rem 1.5rem;
  background: var(--black-soft);
  border: 1px solid rgba(255, 255, 255, 0.055);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.home-proof-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(200, 50, 26, 0.20), transparent 62%);
  opacity: 0;
  transition: opacity 0.28s var(--ease);
  z-index: -1;
}

.home-proof-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(200, 50, 26, 0);
  pointer-events: none;
  transition: inset 0.28s var(--ease), border-color 0.28s var(--ease);
}

.home-proof-card:hover {
  transform: translateY(-5px);
  border-color: rgba(200, 50, 26, 0.58);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.48), 0 0 34px rgba(200, 50, 26, 0.13);
}

.home-proof-card:hover::before {
  opacity: 1;
}

.home-proof-card:hover::after {
  inset: 8px;
  border-color: rgba(200, 50, 26, 0.62);
}

.home-proof-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 2rem;
  color: var(--red);
  background: rgba(200, 50, 26, 0.1);
  border: 1px solid rgba(200, 50, 26, 0.22);
  font-family: var(--font-heavy);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.home-proof-card h3 {
  position: relative;
  z-index: 1;
  font-family: var(--font-heavy);
  font-size: 0.92rem;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 0.85rem;
}

.home-proof-card p {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.75;
}

.home-stages {
  position: relative;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 5rem;
  align-items: start;
  background: var(--black);
  padding: 6.5rem 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.055);
}

.home-stages::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 18% 20%, rgba(200, 50, 26, 0.10), transparent 38%);
}

.home-stages-copy p {
  color: var(--muted-lt);
  line-height: 1.85;
  margin-bottom: 2rem;
  max-width: 420px;
}

.home-stage-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--gray-mid);
}

.home-stage-item {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 1.3rem;
  align-items: center;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--gray-mid);
  color: inherit;
  text-decoration: none;
  transition: padding-left 0.22s var(--ease);
}

.home-stage-item:hover {
  padding-left: 0.55rem;
}

.home-stage-item span {
  font-family: var(--font-display);
  color: var(--red);
  letter-spacing: 0.12em;
}

.home-stage-item strong {
  font-family: var(--font-heavy);
  color: var(--white);
  font-size: 0.95rem;
  line-height: 1.35;
}

.home-stage-item em {
  font-style: normal;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: right;
}

.home-gallery-preview {
  position: relative;
  overflow: hidden;
  background: var(--gray);
  padding: 6.5rem 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.055);
}

.home-gallery-preview::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 24% 12%, rgba(200, 50, 26, 0.11), transparent 38%),
    radial-gradient(ellipse at 84% 76%, rgba(200, 50, 26, 0.08), transparent 44%),
    repeating-linear-gradient(0deg, transparent, transparent 58px, rgba(255, 255, 255, 0.006) 58px, rgba(255, 255, 255, 0.006) 59px);
}

.home-gallery-preview-header {
  max-width: 760px;
  margin-bottom: 3rem;
}

.home-gallery-preview-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.875fr 0.875fr;
  gap: 0.8rem;
  min-height: 390px;
}

.home-gallery-preview-item {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--gray-mid);
  border: 1px solid rgba(255, 255, 255, 0.055);
  color: var(--white);
  text-decoration: none;
  isolation: isolate;
}

.home-gallery-preview-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(200, 50, 26, 0);
  z-index: 2;
  pointer-events: none;
  transition: inset 0.28s var(--ease), border-color 0.28s var(--ease);
}

.home-gallery-preview-item:hover::after,
.home-gallery-preview-item:focus-visible::after {
  inset: 8px;
  border-color: rgba(200, 50, 26, 0.62);
}

.home-gallery-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.82) saturate(0.92) contrast(1.05);
  transition: transform 0.55s var(--ease), filter 0.35s var(--ease);
}

.home-gallery-preview-item:hover img,
.home-gallery-preview-item:focus-visible img {
  transform: scale(1.06);
  filter: brightness(1) saturate(1.08) contrast(1.08);
}

.home-gallery-preview-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.35rem;
  padding: 1.2rem;
  background: linear-gradient(to top, rgba(8, 8, 8, 0.86), rgba(200, 50, 26, 0.26) 44%, transparent 72%);
}

.home-gallery-preview-overlay strong {
  font-family: var(--font-heavy);
  font-size: 0.92rem;
  color: var(--white);
  line-height: 1.35;
}

.home-gallery-preview-overlay em {
  font-style: normal;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--red);
}

.home-gallery-preview-action {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

@media (max-width: 1100px) {
  .home-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {

  .home-proof,
  .home-stages,
  .home-gallery-preview {
    padding: 5rem 2.2rem;
  }

  .home-stages {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .home-gallery-preview-grid {
    grid-template-columns: 1fr 1fr;
    min-height: auto;
  }

  .home-gallery-preview-main {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 9;
  }

  .home-gallery-preview-item:not(.home-gallery-preview-main) {
    aspect-ratio: 1 / 1;
  }
}

@media (max-width: 560px) {

  .home-proof,
  .home-stages,
  .home-gallery-preview {
    padding: 4.2rem 1.2rem;
  }

  .home-proof-grid {
    grid-template-columns: 1fr;
  }

  .home-proof-card {
    min-height: 0;
  }

  .home-stage-item {
    grid-template-columns: 38px 1fr;
    gap: 0.9rem;
  }

  .home-stage-item em {
    grid-column: 2;
    text-align: left;
  }

  .home-stages-copy .btn,
  .home-gallery-preview-action .btn {
    width: 100%;
    justify-content: center;
  }

  .home-gallery-preview-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(82vw, 1fr);
    grid-template-columns: none;
    gap: 0.85rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 1rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .home-gallery-preview-grid::-webkit-scrollbar {
    display: none;
  }

  .home-gallery-preview-main,
  .home-gallery-preview-item,
  .home-gallery-preview-item:not(.home-gallery-preview-main) {
    grid-column: auto;
    aspect-ratio: 4 / 5;
    scroll-snap-align: center;
  }
}