/* ══════════════════════════════════════════════
   Loading Overlay
══════════════════════════════════════════════ */
.loading-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #0D0D0D;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  animation: overlayOut 0.4s ease-in 0.8s forwards;
}

@keyframes overlayOut {
  from { opacity: 1; visibility: visible; }
  to   { opacity: 0; visibility: hidden;  }
}

.loading-title {
  font-size: clamp(2rem, 8vw, 4rem);
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  text-shadow:
    0 0 8px rgba(139, 92, 246, 0.9),
    0 0 20px rgba(139, 92, 246, 0.7),
    0 0 45px rgba(139, 92, 246, 0.5),
    0 0 80px rgba(236, 72, 153, 0.35);
}

.loading-bar-track {
  width: min(280px, 70vw);
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
}

.loading-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #8B5CF6, #EC4899);
  border-radius: 2px;
  animation: barGrow 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes barGrow {
  from { width: 0%; }
  to   { width: 100%; }
}

/* Skip animation for reduced-motion users */
@media (prefers-reduced-motion: reduce) {
  .loading-overlay {
    animation-duration: 0.01ms;
    animation-delay: 0.01ms;
  }

  .loading-bar {
    animation: none;
    width: 100%;
  }

  .hero-gradient {
    animation: none;
  }

  .hero-title {
    animation: none;
  }

  .btn-book {
    animation: none;
  }

  .btn-spinner {
    animation: none;
  }
}

/* ══════════════════════════════════════════════
   Scroll Fade-up Animations
══════════════════════════════════════════════ */

/* Default: content fully visible (no-JS / before JS runs) */
/* .js-scroll is added to <html> by site.js only when motion is allowed */

.js-scroll .fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease var(--delay, 0s),
              transform 0.55s ease var(--delay, 0s);
}

.js-scroll .fade-up--visible {
  opacity: 1;
  transform: translateY(0);
}

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

:root {
  --purple: #8B5CF6;
  --pink: #EC4899;
  --bg: #0D0D0D;
  --surface: #1A1A1A;
  --text: #F3F3F3;
  --muted: #A0A0A0;
  --card-border: rgba(139, 92, 246, 0.35);
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Segoe UI', system-ui, sans-serif;
  min-height: 100vh;
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(13, 13, 13, 0.75);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(139, 92, 246, 0.15);
}

.nav-logo {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-decoration: none;
  background: linear-gradient(90deg, var(--purple), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

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

/* ── Hero Section ── */
.hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

/* Animated gradient layer */
.hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 30% 50%, rgba(139, 92, 246, 0.22) 0%, transparent 70%),
              radial-gradient(ellipse 60% 50% at 75% 40%, rgba(236, 72, 153, 0.18) 0%, transparent 65%);
  animation: driftGradient 12s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes driftGradient {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(3%, -4%) scale(1.04); }
  66%  { transform: translate(-4%, 3%) scale(0.97); }
  100% { transform: translate(2%, 5%) scale(1.03); }
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 1.5rem;
}

/* Neon glow heading */
.hero-title {
  font-size: clamp(3.5rem, 12vw, 9rem);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  text-shadow:
    0 0 8px rgba(139, 92, 246, 0.9),
    0 0 20px rgba(139, 92, 246, 0.7),
    0 0 45px rgba(139, 92, 246, 0.5),
    0 0 80px rgba(236, 72, 153, 0.35);
  animation: flicker 6s ease-in-out infinite;
}

@keyframes flicker {
  0%, 100% {
    text-shadow:
      0 0 8px rgba(139, 92, 246, 0.9),
      0 0 20px rgba(139, 92, 246, 0.7),
      0 0 45px rgba(139, 92, 246, 0.5),
      0 0 80px rgba(236, 72, 153, 0.35);
  }
  48% {
    text-shadow:
      0 0 6px rgba(139, 92, 246, 0.8),
      0 0 16px rgba(139, 92, 246, 0.6),
      0 0 38px rgba(139, 92, 246, 0.4),
      0 0 65px rgba(236, 72, 153, 0.28);
  }
  50% {
    text-shadow:
      0 0 10px rgba(139, 92, 246, 1),
      0 0 24px rgba(139, 92, 246, 0.85),
      0 0 55px rgba(139, 92, 246, 0.6),
      0 0 95px rgba(236, 72, 153, 0.45);
  }
  52% {
    text-shadow:
      0 0 8px rgba(139, 92, 246, 0.9),
      0 0 20px rgba(139, 92, 246, 0.7),
      0 0 45px rgba(139, 92, 246, 0.5),
      0 0 80px rgba(236, 72, 153, 0.35);
  }
}

.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: var(--muted);
  letter-spacing: 0.04em;
  max-width: 480px;
}

/* Book Now button */
.btn-book {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.85rem 2.4rem;
  border-radius: 3px;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.5), 0 0 22px rgba(236, 72, 153, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.85), 0 0 40px rgba(236, 72, 153, 0.55);
  }
}

.btn-book:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 0 28px rgba(139, 92, 246, 1), 0 0 50px rgba(236, 72, 153, 0.7);
  animation: none;
}

.btn-book:active {
  transform: translateY(0) scale(0.98);
}

/* ── Upcoming Gigs Section ── */
.featured-mix {
  max-width: 680px;
  margin: 0 auto;
  padding: 1rem 2rem 0.5rem;
}

.featured-mix-heading {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.75rem;
  padding-left: 0.25rem;
}

@media (max-width: 600px) {
  .featured-mix {
    padding: 2.5rem 1rem 0.5rem;
  }
}

.gigs {
  padding: 5rem 2rem 4rem;
  background: var(--bg);
}

.gigs-heading {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 2rem;
  padding-left: 0.25rem;
}

.gigs-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  padding-bottom: 1.25rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--purple) var(--surface);
}

.gigs-track::-webkit-scrollbar {
  height: 4px;
}

.gigs-track::-webkit-scrollbar-track {
  background: var(--surface);
  border-radius: 2px;
}

.gigs-track::-webkit-scrollbar-thumb {
  background: var(--purple);
  border-radius: 2px;
}

.gig-card {
  flex: 0 0 200px;
  scroll-snap-align: start;
  background: var(--surface);
  border: 1px solid var(--card-border);
  border-radius: 6px;
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

/* Hover effects — pointer devices only */
@media (hover: hover) {
  .gig-card:hover {
    border-color: var(--pink);
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 8px 24px rgba(236, 72, 153, 0.22);
  }
}

/* Tap feedback — touch devices */
.gig-card:active {
  transform: scale(0.97);
  border-color: var(--pink);
}

.gig-date {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pink);
}

.gig-venue {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}

.gig-type {
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .nav {
    padding: 0.85rem 1.25rem;
  }

  .nav-links {
    gap: 1.25rem;
  }

  .nav-links a {
    font-size: 0.8rem;
  }

  .gigs {
    padding: 4rem 1.25rem 3rem;
  }

  .gig-card {
    flex: 0 0 160px;
    padding: 1.25rem 1rem;
  }
}

/* ══════════════════════════════════════════════
   Mixes Page
══════════════════════════════════════════════ */
.mixes-page {
  max-width: 680px;
  margin: 0 auto;
  padding: 7rem 1.5rem 4rem;
}

.mixes-heading {
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  text-shadow:
    0 0 8px rgba(139, 92, 246, 0.9),
    0 0 22px rgba(139, 92, 246, 0.6);
  margin-bottom: 2.5rem;
}

/* ── Player card ── */
.player {
  background: var(--surface);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.player-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.03em;
  min-height: 1.6em;
}

/* ── Waveform canvas ── */
#waveform,
#featured-waveform {
  width: 100%;
  height: 72px;
  display: block;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.25);
}

/* ── Progress row ── */
.progress-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.time-display {
  font-size: 0.78rem;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
  min-width: 2.6rem;
  flex-shrink: 0;
}

/* ── Shared range input base ── */
.progress-input,
.volume-input {
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  border-radius: 2px;
  outline: none;
  cursor: pointer;
  border: none;
  background: linear-gradient(
    to right,
    var(--purple) 0%,
    var(--purple) var(--pct, 0%),
    rgba(255, 255, 255, 0.1) var(--pct, 0%),
    rgba(255, 255, 255, 0.1) 100%
  );
}

.progress-input {
  flex: 1;
}

/* WebKit thumb — progress */
.progress-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 6px rgba(139, 92, 246, 0.85);
  transition: transform 0.15s;
  cursor: grab;
}

.progress-input:active::-webkit-slider-thumb {
  cursor: grabbing;
  transform: scale(1.25);
}

/* Firefox thumb — progress */
.progress-input::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border: none;
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 6px rgba(139, 92, 246, 0.85);
  cursor: grab;
}

/* ── Transport controls ── */
.controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.btn-control {
  background: none;
  border: 1px solid var(--card-border);
  border-radius: 50%;
  color: var(--text);
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  line-height: 1;
  transition: border-color 0.2s, color 0.2s, box-shadow 0.2s;
}

.btn-control:hover {
  border-color: var(--purple);
  color: var(--purple);
  box-shadow: 0 0 10px rgba(139, 92, 246, 0.4);
}

.btn-control:active {
  transform: scale(0.92);
}

.btn-play {
  width: 58px;
  height: 58px;
  font-size: 1.15rem;
  border-color: var(--purple);
  color: var(--purple);
  box-shadow: 0 0 10px rgba(139, 92, 246, 0.3);
}

.btn-play:hover {
  background: rgba(139, 92, 246, 0.1);
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.65);
}

/* ── Volume row ── */
.volume-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.volume-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
}

.volume-input {
  flex: 1;
  background: linear-gradient(
    to right,
    var(--pink) 0%,
    var(--pink) var(--pct, 80%),
    rgba(255, 255, 255, 0.1) var(--pct, 80%),
    rgba(255, 255, 255, 0.1) 100%
  );
}

/* WebKit thumb — volume */
.volume-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 5px rgba(236, 72, 153, 0.75);
  cursor: grab;
}

.volume-input:active::-webkit-slider-thumb {
  cursor: grabbing;
}

/* Firefox thumb — volume */
.volume-input::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border: none;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 5px rgba(236, 72, 153, 0.75);
  cursor: grab;
}

/* ── Playlist ── */
.playlist-container {
  /* section wrapper */
}

.playlist-heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.85rem;
}

.playlist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.playlist-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1.1rem;
  border-radius: 6px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  user-select: none;
}

.playlist-item:hover {
  background: var(--surface);
  border-color: var(--card-border);
}

.playlist-item.active {
  background: rgba(236, 72, 153, 0.08);
  border-color: rgba(236, 72, 153, 0.45);
}

.playlist-number {
  font-size: 0.75rem;
  color: var(--muted);
  min-width: 1.1rem;
  flex-shrink: 0;
}

.playlist-item.active .playlist-number {
  color: var(--pink);
}

.playlist-name {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
}

.playlist-item.active .playlist-name {
  color: var(--pink);
  font-weight: 700;
}

/* ── Mixes responsive ── */
@media (max-width: 600px) {
  .mixes-page {
    padding: 6rem 1rem 3rem;
  }

  .player {
    padding: 1.5rem 1.1rem;
    gap: 1.2rem;
  }

  .controls {
    gap: 1rem;
  }

  .btn-play {
    width: 52px;
    height: 52px;
  }

  .btn-control {
    width: 40px;
    height: 40px;
  }

  .playlist-item {
    padding: 0.75rem 0.85rem;
  }
}

/* ══════════════════════════════════════════════
   Sticky Player
══════════════════════════════════════════════ */

/* Extra bottom padding so the playlist never hides behind the sticky bar */
.mixes-page {
  padding-bottom: 5.5rem;
}

/* Sentinel is invisible; only used as an IntersectionObserver target */
#player-sentinel {
  height: 1px;
  pointer-events: none;
  opacity: 0;
}

/* ── Outer container ── */
.player-sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 150;
  background: rgba(18, 18, 18, 0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(139, 92, 246, 0.3);
  padding: 0.7rem 1.5rem 0.75rem;
  transform: translateY(100%);
  transition: transform 0.25s ease;
}

.player-sticky--visible {
  transform: translateY(0);
}

/* ── Expanded panel (rendered above compact row) ── */
.sticky-expanded-panel {
  display: none;
  flex-direction: column;
  gap: 0.65rem;
  padding-bottom: 0.7rem;
  margin-bottom: 0.7rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.player-sticky--expanded .sticky-expanded-panel {
  display: flex;
}

.sticky-extra-controls {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* ── Compact row ── */
.sticky-compact {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Slightly smaller play button in the compact bar */
.sticky-compact .btn-play {
  width: 40px;
  height: 40px;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.sticky-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
  flex: 1;
}

.sticky-progress {
  flex: 2;
  min-width: 0;
}

/* ── Expand toggle button ── */
.sticky-expand-btn {
  background: none;
  border: 1px solid var(--card-border);
  border-radius: 50%;
  color: var(--muted);
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
  transition: border-color 0.2s, color 0.2s, transform 0.25s;
}

.sticky-expand-btn:hover {
  border-color: var(--purple);
  color: var(--purple);
}

/* Arrow rotates to ▼ when expanded */
.player-sticky--expanded .sticky-expand-btn {
  transform: rotate(180deg);
}

/* ── Sticky responsive ── */
@media (max-width: 600px) {
  .mixes-page {
    padding-bottom: 5.5rem;
  }

  .player-sticky {
    padding: 0.65rem 1rem 0.7rem;
  }

  .sticky-compact {
    gap: 0.5rem;
  }

  .sticky-title {
    font-size: 0.76rem;
  }
}

/* ══════════════════════════════════════════════
   Booking Page
══════════════════════════════════════════════ */
.booking-page {
  max-width: 640px;
  margin: 0 auto;
  padding: 7rem 1.5rem 4rem;
}

.booking-heading {
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  text-shadow:
    0 0 8px rgba(139, 92, 246, 0.9),
    0 0 22px rgba(139, 92, 246, 0.6);
  margin-bottom: 2rem;
}

/* ── Error banner (shown on failed fetch) ── */
.booking-error-banner {
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.45);
  border-radius: 6px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
}

.booking-error-banner p {
  font-size: 0.88rem;
  color: #f87171;
  line-height: 1.5;
}

/* ── Success message (replaces form card) ── */
.booking-success {
  background: rgba(139, 92, 246, 0.07);
  border: 1px solid rgba(139, 92, 246, 0.4);
  border-radius: 10px;
  padding: 3rem 2rem;
  text-align: center;
}

.success-title {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--purple);
  text-shadow: 0 0 14px rgba(139, 92, 246, 0.75);
  margin-bottom: 0.85rem;
}

.success-body {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── Form card ── */
.form-card {
  background: var(--surface);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 2.25rem 2rem;
}

#booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

/* ── Field group ── */
.field-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.field-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── Inputs, selects, textarea ── */
.field-input,
.field-select,
.field-textarea {
  width: 100%;
  background: #111;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  color-scheme: dark;
}

.field-input::placeholder,
.field-textarea::placeholder {
  color: rgba(160, 160, 160, 0.5);
}

.field-input:focus,
.field-select:focus,
.field-textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.2);
}

.field-input.input-invalid,
.field-select.input-invalid,
.field-textarea.input-invalid {
  border-color: var(--pink);
  box-shadow: 0 0 0 2px rgba(236, 72, 153, 0.15);
}

/* Select — custom dropdown arrow */
.field-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23A0A0A0' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

/* Textarea */
.field-textarea {
  resize: vertical;
  min-height: 110px;
}

/* ── Inline error text ── */
.field-error {
  font-size: 0.75rem;
  color: var(--pink);
  letter-spacing: 0.02em;
  min-height: 1em;
}

/* ── Submit button ── */
.btn-submit {
  width: 100%;
  margin-top: 0.4rem;
  padding: 0.9rem 2rem;
  border: none;
  border-radius: 5px;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  box-shadow: 0 0 12px rgba(139, 92, 246, 0.4);
}

.btn-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(139, 92, 246, 0.75), 0 0 40px rgba(236, 72, 153, 0.4);
}

.btn-submit:active:not(:disabled) {
  transform: translateY(0);
}

.btn-submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

/* ── Button loading spinner ── */
.btn-spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  vertical-align: middle;
  margin-right: 0.55rem;
  flex-shrink: 0;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ── Confirmation modal ── */
.modal-overlay[hidden] {
  display: none;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.78);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal {
  background: var(--surface);
  border: 1px solid rgba(139, 92, 246, 0.45);
  border-radius: 12px;
  box-shadow: 0 0 40px rgba(139, 92, 246, 0.2), 0 8px 32px rgba(0, 0, 0, 0.6);
  padding: 2.75rem 2.25rem 2.25rem;
  max-width: 420px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.modal-check {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.1);
  border: 2px solid var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  color: var(--purple);
  text-shadow: 0 0 14px rgba(139, 92, 246, 0.85);
  flex-shrink: 0;
}

.modal-title {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--purple);
  text-shadow: 0 0 14px rgba(139, 92, 246, 0.75);
}

.modal-body {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 320px;
}

.modal-close {
  margin-top: 0.75rem;
  width: 100%;
  padding: 0.85rem 2rem;
  border: none;
  border-radius: 5px;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 12px rgba(139, 92, 246, 0.4);
}

.modal-close:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(139, 92, 246, 0.75), 0 0 40px rgba(236, 72, 153, 0.4);
}

.modal-close:active {
  transform: translateY(0);
}

/* ══════════════════════════════════════════════
   Site Footer
══════════════════════════════════════════════ */
.site-footer {
  background: var(--bg);
  border-top: 1px solid rgba(139, 92, 246, 0.2);
  padding: 2.5rem 2rem 3rem;
  text-align: center;
}

.footer-inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.75rem;
  border-bottom: 1px solid rgba(236, 72, 153, 0.12);
  padding-bottom: 1.1rem;
  width: 100%;
}

.footer-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--purple);
}

.footer-email-link {
  color: var(--pink);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: none;
}

.footer-email-link:hover {
  color: var(--text);
}

.footer-email-text {
  color: var(--pink);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
}

.footer-copy {
  font-size: 0.72rem;
  color: rgba(160, 160, 160, 0.45);
  letter-spacing: 0.05em;
}

.footer-note {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.02em;
  line-height: 1.5;
  max-width: 420px;
}

@media (max-width: 600px) {
  .site-footer {
    padding: 2rem 1.25rem 2.5rem;
  }

  .footer-social {
    gap: 1.25rem;
  }
}

/* ── Booking responsive ── */
@media (max-width: 600px) {
  .booking-page {
    padding: 6rem 1rem 3rem;
  }

  .form-card {
    padding: 1.75rem 1.1rem;
  }

  #booking-form {
    gap: 1.2rem;
  }

  .booking-success {
    padding: 2.25rem 1.25rem;
  }

  .field-input,
  .field-select,
  .field-textarea {
    min-height: 48px;
    font-size: 1rem;
  }

  .field-textarea {
    min-height: 96px;
  }

  .btn-submit {
    min-height: 48px;
    font-size: 1rem;
  }
}
.gigs-track {
  padding-block: 0.75rem;
  padding-inline: 0.75rem;
  margin-block: -0.75rem;
}
@media (hover: hover) and (pointer: fine) {
  .gig-card:hover {
    position: relative;
    z-index: 2;
  }
}