:root {
  --bg: #070605;
  --bg-soft: #100d0a;
  --panel: rgba(19, 15, 11, 0.84);
  --panel-strong: rgba(11, 8, 6, 0.94);
  --text: #f8efdd;
  --text-soft: #dbc8a1;
  --gold: #ba8228;
  --gold-bright: #f4cf78;
  --gold-pale: #fff0c7;
  --line: rgba(244, 207, 120, 0.14);
  --line-strong: rgba(244, 207, 120, 0.3);
  --scrollbar-track: rgba(22, 17, 12, 0.96);
  --scrollbar-track-edge: rgba(244, 207, 120, 0.12);
  --scrollbar-thumb: linear-gradient(180deg, rgba(244, 207, 120, 0.96), rgba(186, 130, 40, 0.92));
  --scrollbar-thumb-hover: linear-gradient(180deg, rgba(255, 226, 160, 0.98), rgba(214, 156, 51, 0.96));
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
  --shadow-strong: 0 40px 120px rgba(0, 0, 0, 0.58);
  --radius: 30px;
  --max-width: 1560px;
  --header-width: 1860px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(244, 207, 120, 0.8) rgba(22, 17, 12, 0.96);
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top, rgba(244, 207, 120, 0.16), transparent 28%),
    radial-gradient(circle at 85% 18%, rgba(186, 130, 40, 0.14), transparent 22%),
    linear-gradient(135deg, #0a0807 0%, #050403 45%, #130d08 100%);
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 15px;
}

html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    var(--scrollbar-track);
  border-left: 1px solid var(--scrollbar-track-edge);
}

html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
  background: var(--scrollbar-thumb);
  border: 3px solid rgba(16, 12, 9, 0.94);
  border-radius: 999px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 240, 199, 0.16),
    0 0 18px rgba(186, 130, 40, 0.2);
}

html::-webkit-scrollbar-thumb:hover,
body::-webkit-scrollbar-thumb:hover {
  background: var(--scrollbar-thumb-hover);
}

html::-webkit-scrollbar-corner,
body::-webkit-scrollbar-corner {
  background: var(--scrollbar-track);
}

html::-webkit-scrollbar-button,
body::-webkit-scrollbar-button {
  height: 16px;
  background-color: rgba(30, 23, 16, 0.96);
  border-left: 1px solid var(--scrollbar-track-edge);
}

body.is-booking-modal-open,
body.is-player-modal-open,
body.is-event-modal-open {
  overflow: hidden;
}

body.is-booking-modal-open .global-player {
  opacity: 0.16;
  pointer-events: none;
}

body.is-event-modal-open .global-player {
  opacity: 0.16;
  pointer-events: none;
}

body.is-player-modal-open .global-player {
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.28;
  background:
    linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 84px 84px;
  -webkit-mask-image: radial-gradient(circle at center, black 34%, transparent 82%);
  mask-image: radial-gradient(circle at center, black 34%, transparent 82%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

.shared-audio-element {
  display: none;
}

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

.site-shell {
  position: relative;
  overflow-x: clip;
}

body.has-global-player .site-shell {
  padding-bottom: 6rem;
}

.global-player {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 70;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.global-player-shell {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
  pointer-events: auto;
}

.global-player-row {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.global-booking-button,
.global-player-trigger,
.global-player-mini-button,
.global-player-mini-expand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(244, 207, 120, 0.14);
  border-radius: 999px;
  backdrop-filter: blur(18px) saturate(115%);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.36);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease,
    opacity 180ms ease;
  appearance: none;
}

.global-booking-button {
  position: relative;
  width: 62px;
  min-height: 62px;
  min-width: 62px;
  padding: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent),
    linear-gradient(135deg, var(--gold-bright), var(--gold) 68%, #efbd58);
  color: #140d06;
  font-size: 0.72rem;
  box-shadow:
    0 20px 46px rgba(0, 0, 0, 0.34),
    0 14px 28px rgba(186, 130, 40, 0.24);
}

.global-booking-button::after {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(20, 13, 6, 0.14);
  border-radius: 999px;
  pointer-events: none;
}

.global-booking-button i {
  font-size: 1rem;
}

.global-booking-button .sr-only {
  position: absolute;
}

.global-player-trigger {
  position: relative;
  z-index: 2;
  width: 64px;
  height: 64px;
  min-width: 64px;
  min-height: 64px;
  padding: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent),
    linear-gradient(135deg, rgba(186, 130, 40, 0.14), transparent 46%, rgba(186, 130, 40, 0.04)),
    rgba(8, 7, 5, 0.94);
  color: var(--text);
  cursor: pointer;
}

.global-player-trigger-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  color: var(--gold-bright);
}

.global-player-trigger-icon i {
  font-size: 1rem;
}

.global-player-trigger-status {
  position: absolute;
  right: 0.8rem;
  bottom: 0.82rem;
  display: inline-flex;
  align-items: flex-end;
  gap: 0.14rem;
  height: 14px;
}

.global-player-trigger-status span {
  width: 3px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  opacity: 0.58;
  transform-origin: bottom;
}

.global-player-trigger.is-playing .global-player-trigger-status span {
  opacity: 1;
  animation: equalize 1.6s ease-in-out infinite;
}

.global-player-trigger.is-playing .global-player-trigger-status span:nth-child(2) {
  animation-delay: 0.14s;
}

.global-player-trigger.is-playing .global-player-trigger-status span:nth-child(3) {
  animation-delay: 0.28s;
}

.global-player-drawer {
  position: absolute;
  right: calc(100% + 0.8rem);
  bottom: 0;
  width: min(590px, calc(100vw - 8rem));
  opacity: 0;
  pointer-events: none;
  transform: translateX(18px) scale(0.96);
  transform-origin: right bottom;
  transition: opacity 220ms ease, transform 220ms ease;
}

.global-player.is-open .global-player-drawer {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1);
}

.global-player-drawer-panel {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  gap: 1rem;
  padding: 1rem 1rem 0.95rem;
  border: 1px solid rgba(244, 207, 120, 0.18);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent),
    linear-gradient(135deg, rgba(186, 130, 40, 0.12), transparent 48%, rgba(186, 130, 40, 0.03)),
    rgba(8, 7, 5, 0.96);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.42);
}

.global-player-drawer-art {
  min-height: 190px;
  border: 1px solid rgba(244, 207, 120, 0.12);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(7, 6, 5, 0.08), rgba(7, 6, 5, 0.72)),
    url("images/portadas-musicales/web/extrano.jpg") center/cover no-repeat;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 18px 34px rgba(0, 0, 0, 0.24);
}

.global-player-drawer-content {
  display: grid;
  gap: 0.9rem;
  min-width: 0;
}

.global-player-drawer-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.8rem;
  align-items: start;
}

.global-player-drawer-copy {
  display: grid;
  gap: 0.15rem;
  min-width: 0;
}

.global-player-drawer-kicker {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.global-player-drawer-copy strong {
  display: block;
  min-width: 0;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.global-player-drawer-copy > span:last-child {
  min-width: 0;
  font-size: 0.76rem;
  line-height: 1.45;
  color: var(--text-soft);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.global-player-mini-expand {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  cursor: pointer;
}

.global-player-mini-progress-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.75rem;
  align-items: center;
}

.global-player-mini-time {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--gold-bright);
}

.global-player-mini-progress {
  width: 100%;
  height: 5px;
  margin: 0;
  accent-color: var(--gold-bright);
  cursor: pointer;
}

.global-player-mini-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
}

.global-player-mini-button {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  cursor: pointer;
}

.global-player-mini-button i,
.global-player-mini-expand i {
  font-size: 0.92rem;
  transition: transform 180ms ease, color 180ms ease, opacity 180ms ease;
}

.global-player-mini-button-primary i {
  font-size: 1rem;
}

.global-player-mini-button-primary {
  width: 56px;
  height: 56px;
  min-width: 56px;
  min-height: 56px;
  color: #140d06;
  border-color: transparent;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  box-shadow: 0 18px 34px rgba(186, 130, 40, 0.24);
}

.global-player-trigger.is-playing {
  border-color: rgba(244, 207, 120, 0.32);
  box-shadow:
    0 22px 52px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(244, 207, 120, 0.08),
    0 0 28px rgba(244, 207, 120, 0.12);
}

.global-booking-button:hover,
.global-booking-button:focus-visible,
.global-player-trigger:hover,
.global-player-trigger:focus-visible,
.global-player-mini-button:hover,
.global-player-mini-button:focus-visible,
.global-player-mini-expand:hover,
.global-player-mini-expand:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(244, 207, 120, 0.3);
  outline: none;
}

.global-player-trigger:hover,
.global-player-trigger:focus-visible {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent),
    linear-gradient(135deg, rgba(186, 130, 40, 0.12), transparent 46%, rgba(186, 130, 40, 0.04)),
    rgba(8, 7, 5, 0.97);
}

.global-player-mini-button:hover,
.global-player-mini-button:focus-visible,
.global-player-mini-expand:hover,
.global-player-mini-expand:focus-visible {
  background: rgba(244, 207, 120, 0.08);
  box-shadow:
    0 12px 26px rgba(0, 0, 0, 0.26),
    0 0 0 1px rgba(244, 207, 120, 0.08),
    0 0 18px rgba(244, 207, 120, 0.1);
}

.global-player-mini-button:hover i,
.global-player-mini-button:focus-visible i,
.global-player-mini-expand:hover i,
.global-player-mini-expand:focus-visible i {
  transform: scale(1.06);
  color: var(--gold-pale);
}

.player-modal-icon-button,
.player-modal-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.player-modal-icon-button {
  cursor: pointer;
}

.player-modal-icon-button i {
  transition: transform 180ms ease, color 180ms ease;
}

.player-modal-icon-button:hover,
.player-modal-icon-button:focus-visible,
.player-modal-chip:hover,
.player-modal-chip:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(244, 207, 120, 0.38);
  background: rgba(244, 207, 120, 0.08);
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(244, 207, 120, 0.08),
    0 0 18px rgba(244, 207, 120, 0.1);
  outline: none;
}

.player-modal-icon-button:hover i,
.player-modal-icon-button:focus-visible i {
  transform: scale(1.06);
  color: var(--gold-pale);
}

.player-modal-icon-button-primary {
  color: #140d06;
  border-color: transparent;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  box-shadow: 0 18px 34px rgba(186, 130, 40, 0.24);
}

.player-modal-icon-button-primary:hover,
.player-modal-icon-button-primary:focus-visible {
  border-color: transparent;
  background: linear-gradient(135deg, #f7d887, #c98f2b 62%, #f0bf5d);
  color: #140d06;
  box-shadow:
    0 20px 40px rgba(186, 130, 40, 0.3),
    0 0 0 1px rgba(244, 207, 120, 0.12),
    0 0 24px rgba(244, 207, 120, 0.14);
}

.player-modal-icon-button-primary:hover i,
.player-modal-icon-button-primary:focus-visible i {
  color: #140d06;
}

.button-primary,
.header-cta,
.player-modal-icon-button-primary {
  position: relative;
  overflow: hidden;
}

.button-primary::after,
.header-cta::after,
.player-modal-icon-button-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.45), transparent 65%);
  opacity: 0.2;
  transform: translateX(-120%);
  animation: goldShimmer 7s linear infinite;
  pointer-events: none;
}

.player-modal[hidden] {
  display: none;
}

.player-modal {
  position: fixed;
  inset: 0;
  z-index: 92;
  padding: 0.75rem;
}

.player-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 3, 2, 0.8);
  backdrop-filter: blur(14px) saturate(120%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.player-modal-dialog {
  position: relative;
  width: min(1420px, calc(100vw - 2rem));
  max-height: calc(100dvh - 2rem);
  margin: 0 auto;
  overflow: hidden;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  scrollbar-gutter: stable both-edges;
  scrollbar-width: thin;
  scrollbar-color: rgba(244, 207, 120, 0.38) rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(244, 207, 120, 0.16);
  border-radius: 38px;
  background:
    radial-gradient(circle at top left, rgba(244, 207, 120, 0.15), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), transparent),
    rgba(8, 7, 5, 0.97);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.55);
  opacity: 0;
  transform: translateY(24px) scale(0.985);
  transition: opacity 220ms ease, transform 220ms ease;
}

.player-modal.is-open .player-modal-backdrop {
  opacity: 1;
}

.player-modal.is-open .player-modal-dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.player-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  min-width: 52px;
  min-height: 52px;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(10, 8, 6, 0.84);
  color: var(--text);
  font-size: 1rem;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.player-modal-close:hover,
.player-modal-close:focus-visible {
  border-color: rgba(244, 207, 120, 0.38);
  background: rgba(244, 207, 120, 0.08);
  outline: none;
}

.player-modal-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1fr);
  min-height: min(760px, calc(100dvh - 2.5rem));
}

.player-modal-art {
  min-height: 100%;
  border-right: 1px solid rgba(244, 207, 120, 0.1);
  background:
    linear-gradient(180deg, rgba(7, 6, 5, 0.08), rgba(7, 6, 5, 0.7)),
    url("images/portadas-musicales/web/extrano.jpg") center/cover no-repeat;
}

.player-modal-copy {
  display: grid;
  align-content: start;
  gap: 0.9rem;
  padding: 1.5rem 1.6rem 1.55rem;
  overflow: visible;
}

.player-modal-track-title {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  max-width: 9ch;
  font-size: clamp(2.7rem, 5.2vw, 5rem);
  line-height: 0.9;
  letter-spacing: 0.04em;
}

.player-modal-caption {
  margin: 0;
  max-width: 34rem;
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.55;
}

.player-modal-progress-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.85rem;
  align-items: center;
}

.player-modal-time {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--gold-bright);
}

.player-modal-progress {
  width: 100%;
  height: 5px;
  margin: 0;
  accent-color: var(--gold-bright);
  cursor: pointer;
}

.player-modal-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.player-modal-primary-controls,
.player-modal-secondary-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
}

.player-modal-icon-button {
  width: 62px;
  min-width: 62px;
  min-height: 62px;
  padding: 0;
  border-radius: 50%;
  font-size: 1.05rem;
}

.player-modal-icon-button-primary {
  width: 76px;
  min-width: 76px;
  min-height: 76px;
  font-size: 1.15rem;
}

.player-modal-chip {
  gap: 0.65rem;
  min-height: 52px;
  padding-inline: 1.05rem 1.15rem;
  font-size: 0.76rem;
  white-space: nowrap;
}

.player-modal-chip i,
.player-modal-icon-button i,
.player-modal-close i {
  line-height: 1;
}

.player-modal-playlist {
  max-height: min(320px, 38vh);
  overflow-y: scroll;
  overflow-x: hidden;
  scrollbar-gutter: stable both-edges;
  scrollbar-width: thin;
  scrollbar-color: rgba(244, 207, 120, 0.34) rgba(255, 255, 255, 0.03);
  padding: 0.8rem 0.7rem 0.8rem 0.8rem;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent),
    rgba(13, 10, 8, 0.88);
  box-shadow: none;
}

.player-modal-playlist.audio-playlist {
  gap: 0.65rem;
}

.player-modal-playlist .audio-track-card {
  gap: 0.6rem;
  padding: 0.85rem 0.92rem;
  border-radius: 20px;
}

.player-modal-playlist .audio-track-kicker {
  font-size: 0.64rem;
  letter-spacing: 0.15em;
}

.player-modal-playlist .audio-track-title {
  font-size: 1.25rem;
  line-height: 1.05;
}

.player-modal-playlist .audio-track-meta {
  font-size: 0.92rem;
  line-height: 1.35;
}

.player-modal-secondary-controls {
  width: 100%;
}

.player-modal-dialog::-webkit-scrollbar,
.player-modal-playlist::-webkit-scrollbar {
  width: 10px;
}

.player-modal-dialog::-webkit-scrollbar-track,
.player-modal-playlist::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 999px;
}

.player-modal-dialog::-webkit-scrollbar-thumb,
.player-modal-playlist::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(244, 207, 120, 0.74), rgba(186, 130, 40, 0.92));
  border-radius: 999px;
  border: 2px solid rgba(10, 8, 6, 0.5);
}

.player-modal-dialog::-webkit-scrollbar-thumb:hover,
.player-modal-playlist::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(255, 240, 199, 0.88), rgba(244, 207, 120, 0.98));
}

.player-modal-playlist::before {
  display: none;
}

.booking-modal[hidden] {
  display: none;
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 95;
  padding: 1rem;
}

.booking-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 3, 2, 0.74);
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 180ms ease;
}

.booking-modal-dialog {
  position: relative;
  width: min(980px, 100%);
  max-height: calc(100vh - 2rem);
  margin: 0 auto;
  overflow: auto;
  border: 1px solid rgba(244, 207, 120, 0.16);
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(244, 207, 120, 0.14), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), transparent),
    rgba(8, 7, 5, 0.96);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.55);
  opacity: 0;
  transform: translateY(24px) scale(0.985);
  transition: opacity 180ms ease, transform 180ms ease;
}

.booking-modal.is-open .booking-modal-backdrop {
  opacity: 1;
}

.booking-modal.is-open .booking-modal-dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.booking-modal-head {
  display: grid;
  gap: 0.7rem;
  padding: 1.45rem 1.6rem 0.35rem;
}

.booking-modal-head h2 {
  margin: 0;
  max-width: 12ch;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.1rem, 4vw, 3.35rem);
  line-height: 0.92;
  letter-spacing: 0.05em;
}

.booking-modal-head p:last-child {
  max-width: 34rem;
  margin: 0;
  color: var(--text-soft);
  font-size: 0.96rem;
  line-height: 1.72;
}

.booking-modal-form {
  padding: 0 1.6rem 1.6rem;
}

.booking-modal-close {
  position: sticky;
  top: 0.9rem;
  float: right;
  z-index: 2;
  margin: 0.9rem 0.9rem 0 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.8rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(10, 8, 6, 0.84);
  color: var(--text);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.booking-modal-close:hover,
.booking-modal-close:focus-visible {
  border-color: rgba(244, 207, 120, 0.38);
  background: rgba(244, 207, 120, 0.08);
  outline: none;
}

.ambient {
  position: fixed;
  width: 36rem;
  height: 36rem;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.12;
  z-index: -1;
  pointer-events: none;
}

.ambient-left {
  top: 14%;
  left: -10rem;
  background: radial-gradient(circle, var(--gold-bright), transparent 65%);
}

.ambient-right {
  right: -12rem;
  bottom: 8%;
  background: radial-gradient(circle, rgba(255, 177, 45, 0.9), transparent 65%);
}

.section {
  padding: 0 2rem 5.5rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 1rem 1rem 0;
}

.nav-shell {
  position: relative;
  width: min(var(--header-width), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 0.55rem;
  align-items: center;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(244, 207, 120, 0.12);
  border-radius: 28px;
  background:
    radial-gradient(circle at top center, rgba(244, 207, 120, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent),
    rgba(8, 7, 5, 0.72);
  backdrop-filter: blur(14px) saturate(110%);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.24);
  transition: background-color 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.nav-shell::after {
  display: none;
}

.site-header.is-scrolled .nav-shell {
  border-color: var(--line-strong);
  background:
    radial-gradient(circle at top center, rgba(244, 207, 120, 0.1), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent),
    rgba(7, 6, 5, 0.9);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.3);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.brand img {
  display: block;
  max-width: 100%;
  filter: drop-shadow(0 16px 30px rgba(0, 0, 0, 0.35));
}

.header-center-stack {
  display: grid;
  place-items: center;
  gap: 0;
}

.brand-center {
  position: relative;
  justify-self: center;
  width: clamp(106px, 7vw, 126px);
  padding: 0.58rem;
  border-radius: 50%;
  border: 1px solid rgba(244, 207, 120, 0.14);
  background:
    radial-gradient(circle at top, rgba(244, 207, 120, 0.14), transparent 38%),
    linear-gradient(145deg, rgba(18, 15, 11, 0.98), rgba(9, 7, 5, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 14px 28px rgba(0, 0, 0, 0.28);
  overflow: hidden;
  z-index: 2;
}

.brand-center::before,
.brand-center::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.brand-center::before {
  inset: 8px;
  border: 1px solid rgba(244, 207, 120, 0.12);
  border-radius: 50%;
}

.brand-center::after {
  inset: auto 18% -16% 18%;
  height: 28%;
  background: radial-gradient(circle, rgba(244, 207, 120, 0.26), transparent 72%);
  filter: blur(14px);
}

.brand-center img {
  position: relative;
  z-index: 1;
  width: 100%;
}

.eyebrow,
.section-kicker,
.panel-kicker,
.preview-label,
.post-label,
.track-type {
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.header-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.68rem;
  padding: 0.82rem 1rem 0.84rem;
  border: 1px solid rgba(244, 207, 120, 0.16);
  border-radius: 999px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), transparent),
    rgba(13, 10, 8, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 12px 26px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  animation: badgeFloat 4.8s ease-in-out infinite;
}

.header-badge::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 10%, rgba(255, 255, 255, 0.12) 50%, transparent 90%);
  transform: translateX(-130%);
  animation: badgeSheen 6s linear infinite;
}

.header-badge-dot {
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 0 0 rgba(244, 207, 120, 0.55);
  animation: badgePulse 1.8s ease-out infinite;
  flex-shrink: 0;
}

.header-badge-label,
.hero-live-pill {
  position: relative;
  z-index: 1;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-pale);
}

.header-badge strong,
.hero-hash-pill {
  position: relative;
  z-index: 1;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.08rem;
  letter-spacing: 0.14em;
  background: linear-gradient(90deg, var(--gold-pale), var(--gold-bright), var(--gold-pale));
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: goldShimmer 5s linear infinite;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.12rem;
  min-height: 56px;
  padding: 0.28rem 0.38rem;
  border: 1px solid rgba(244, 207, 120, 0.08);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent),
    rgba(255, 255, 255, 0.025);
}

.site-nav-desktop {
  width: 100%;
  min-width: 0;
}

.site-nav-left {
  justify-content: flex-end;
  padding-right: 0.7rem;
}

.site-nav-right {
  justify-content: flex-start;
  padding-left: 0.7rem;
}

.site-nav-mobile {
  display: none;
}

.site-nav a:not(.header-cta),
.footer-nav a {
  position: relative;
  padding: 0.78rem 0.95rem 0.86rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
  white-space: nowrap;
  transition: transform 180ms ease, color 180ms ease, background-color 180ms ease;
}

.site-nav a:not(.header-cta)::after,
.footer-nav a::after {
  content: "";
  position: absolute;
  left: 0.95rem;
  right: 0.95rem;
  bottom: 0.5rem;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:not(.header-cta):hover,
.site-nav a:not(.header-cta):focus-visible,
.site-nav a:not(.header-cta).is-active,
.footer-nav a:hover,
.footer-nav a:focus-visible,
.footer-nav a.is-active {
  color: var(--text);
  background: rgba(244, 207, 120, 0.06);
  transform: translateY(-1px);
}

.site-nav a:not(.header-cta):hover::after,
.site-nav a:not(.header-cta):focus-visible::after,
.site-nav a:not(.header-cta).is-active::after,
.footer-nav a:hover::after,
.footer-nav a:focus-visible::after,
.footer-nav a.is-active::after {
  transform: scaleX(1);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.header-cta {
  padding: 0.9rem 1.15rem;
  color: #140d06;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold) 62%, #efbd58);
  box-shadow: 0 18px 34px rgba(186, 130, 40, 0.28);
  white-space: nowrap;
  flex-shrink: 0;
}

.header-cta-desktop {
  padding: 0.72rem 1.05rem;
  font-size: 0.72rem;
  box-shadow: 0 14px 28px rgba(186, 130, 40, 0.22);
}

.header-cta:hover,
.header-cta:focus-visible,
.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.03);
}

.menu-toggle {
  display: none;
  position: relative;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), transparent),
    rgba(15, 12, 9, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 12px 24px rgba(0, 0, 0, 0.24);
  color: var(--text);
  cursor: pointer;
  appearance: none;
}

.menu-toggle span {
  position: absolute;
  left: 50%;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-pale), var(--gold-bright));
  box-shadow: 0 0 12px rgba(244, 207, 120, 0.24);
  transition: top 180ms ease, transform 180ms ease, opacity 180ms ease;
}

.menu-toggle span:first-child {
  top: calc(50% - 5px);
  transform: translateX(-50%);
}

.menu-toggle span:last-child {
  top: calc(50% + 5px);
  transform: translateX(-50%);
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  border-color: var(--line-strong);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 16px 28px rgba(0, 0, 0, 0.3);
}

.menu-toggle:focus-visible {
  outline: none;
}

.menu-toggle.is-open span:first-child {
  top: 50%;
  transform: translateX(-50%) rotate(45deg);
}

.menu-toggle.is-open span:last-child {
  top: 50%;
  transform: translateX(-50%) rotate(-45deg);
}

.page-hero {
  padding-top: 0;
}

.page-hero-home {
  position: relative;
  overflow: hidden;
}

.page-hero-home::before {
  content: none;
}

.page-hero-grid,
.section-head,
.preview-grid,
.content-grid-two,
.card-grid,
.step-grid,
.info-grid,
.article-grid,
.gallery-mosaic,
.contact-grid,
.contact-shell,
.site-footer {
  width: min(var(--max-width), 100%);
  margin: 0 auto;
}

.audio-player-shell {
  width: min(var(--max-width), 100%);
  margin: 0 auto;
  display: grid;
  gap: 1.2rem;
}

.audio-player-stage {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  gap: 1.2rem;
}

.page-hero-grid,
.content-grid-two,
.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 1.6rem;
  align-items: center;
}

.page-hero-home .page-hero-grid {
  position: relative;
  z-index: 2;
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  min-height: clamp(620px, 82vh, 860px);
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto 1fr auto;
  gap: 1rem;
  justify-items: stretch;
  align-items: stretch;
  padding: clamp(1rem, 2vw, 1.5rem) clamp(1.4rem, 3vw, 2.2rem);
  overflow: hidden;
  border: 1px solid rgba(244, 207, 120, 0.16);
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(7, 6, 5, 0.16) 0%, rgba(7, 6, 5, 0.28) 42%, rgba(7, 6, 5, 0.86) 100%),
    linear-gradient(90deg, rgba(7, 6, 5, 0.76) 0%, rgba(7, 6, 5, 0.46) 34%, rgba(7, 6, 5, 0.08) 62%, rgba(7, 6, 5, 0.28) 100%),
    url("images/musicos/musicos1.jpg") center 34% / cover no-repeat;
  box-shadow: var(--shadow-strong);
  text-align: left;
}

.page-hero-home .page-hero-grid::after {
  content: "";
  position: absolute;
  inset: 1rem 1.4rem;
  border: 1px solid rgba(244, 207, 120, 0.08);
  border-radius: 30px;
  pointer-events: none;
}

.page-hero-home .hero-minimal-stage {
  min-height: clamp(640px, 88vh, 920px);
  padding: clamp(1.1rem, 2vw, 1.5rem) clamp(1.4rem, 3vw, 2.2rem);
  background:
    linear-gradient(180deg, rgba(7, 6, 5, 0.14) 0%, rgba(7, 6, 5, 0.28) 48%, rgba(7, 6, 5, 0.88) 100%),
    linear-gradient(90deg, rgba(7, 6, 5, 0.82) 0%, rgba(7, 6, 5, 0.52) 32%, rgba(7, 6, 5, 0.16) 62%, rgba(7, 6, 5, 0.34) 100%),
    url("images/eventos/47.jpg") center 36% / cover no-repeat;
}

.page-hero-home .hero-minimal-stage::after {
  inset: 1rem 1.4rem;
  border-radius: 32px;
}

.hero-foreground-minimal {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100%;
  gap: 1.45rem;
  padding: clamp(1rem, 3vw, 2rem) clamp(0.4rem, 2vw, 1.2rem) clamp(1.1rem, 3vw, 2.2rem);
}

.hero-copy-home-minimal {
  display: grid;
  gap: 0.9rem;
  max-width: 40rem;
}

.page-hero-home .hero-copy-home-minimal .section-kicker {
  margin-bottom: 0.2rem;
}

.page-hero-home .hero-copy-home-minimal .page-title {
  margin-top: 0;
  max-width: 9ch;
  font-size: clamp(3.6rem, 7.6vw, 7.4rem);
  line-height: 0.9;
  text-wrap: balance;
  text-shadow: 0 20px 42px rgba(0, 0, 0, 0.42);
}

.page-hero-home .hero-copy-home-minimal .lead {
  max-width: 34rem;
  margin-top: 0;
  font-size: 1.04rem;
  line-height: 1.74;
  color: rgba(247, 240, 230, 0.88);
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.32);
}

.hero-minimal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.2rem;
  align-items: center;
  max-width: 70rem;
  padding-top: 0.2rem;
}

.hero-minimal-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(247, 240, 230, 0.8);
}

.hero-minimal-meta span::before {
  content: "";
  width: 0.36rem;
  height: 0.36rem;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 12px rgba(244, 207, 120, 0.32);
}

.page-hero-about .page-hero-grid {
  position: relative;
  z-index: 2;
  width: 100vw;
  max-width: none;
  min-height: clamp(620px, 82vh, 860px);
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  padding: clamp(2rem, 5vw, 4.2rem) clamp(1.4rem, 5vw, 4.4rem);
  overflow: hidden;
  border-left: 0;
  border-right: 0;
  border-top: 1px solid rgba(244, 207, 120, 0.14);
  border-bottom: 1px solid rgba(244, 207, 120, 0.14);
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(7, 6, 5, 0.82) 0%, rgba(7, 6, 5, 0.58) 34%, rgba(7, 6, 5, 0.16) 62%, rgba(7, 6, 5, 0.46) 100%),
    linear-gradient(180deg, rgba(7, 6, 5, 0.16) 0%, rgba(7, 6, 5, 0.24) 40%, rgba(7, 6, 5, 0.82) 100%),
    url("images/eventos/40.jpg") center 54% / cover no-repeat;
  box-shadow: var(--shadow-strong);
}

.page-hero-about .page-hero-grid::after {
  content: "";
  position: absolute;
  inset: 1.2rem 1.4rem;
  border: 1px solid rgba(244, 207, 120, 0.08);
  border-radius: 34px;
  pointer-events: none;
}

.page-hero-about .page-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 46rem;
  padding: 0;
}

.page-hero-about .page-title {
  max-width: 10ch;
  font-size: clamp(3.4rem, 6vw, 6.2rem);
  line-height: 0.94;
  text-wrap: balance;
}

.page-hero-about .lead {
  max-width: 40rem;
  color: rgba(247, 240, 230, 0.86);
  line-height: 1.78;
}

.hero-copy-mobile {
  display: none;
}

body[data-page="contactanos"] .page-hero-grid {
  position: relative;
  grid-template-columns: minmax(0, 1fr);
  overflow: hidden;
  padding: clamp(1.6rem, 3.8vw, 2.8rem);
  border: 1px solid rgba(244, 207, 120, 0.14);
  border-radius: 36px;
  background:
    linear-gradient(90deg, rgba(7, 6, 5, 0.9) 0%, rgba(7, 6, 5, 0.78) 30%, rgba(7, 6, 5, 0.48) 58%, rgba(7, 6, 5, 0.76) 100%),
    linear-gradient(180deg, rgba(7, 6, 5, 0.12) 0%, rgba(7, 6, 5, 0.36) 44%, rgba(7, 6, 5, 0.84) 100%),
    radial-gradient(circle at 84% 18%, rgba(244, 207, 120, 0.16), transparent 24%),
    url("images/eventos/45.jpg") center 34% / cover no-repeat;
  box-shadow: var(--shadow-strong);
}

body[data-page="contactanos"] .page-hero-grid::after {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(244, 207, 120, 0.08);
  border-radius: 30px;
  pointer-events: none;
}

body[data-page="contactanos"] .page-hero-copy {
  position: relative;
  z-index: 1;
}

body[data-page="contactanos"] .page-hero-copy {
  max-width: 48rem;
}

body[data-page="contactanos"] .page-title {
  text-shadow: 0 18px 36px rgba(0, 0, 0, 0.48);
}

body[data-page="contactanos"] .lead {
  max-width: 40rem;
  color: rgba(247, 240, 230, 0.9);
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.26);
}

.section-kicker {
  margin: 0 0 1rem;
  font-size: 0.75rem;
  color: var(--gold-bright);
}

.kicker-with-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.kicker-with-icon i {
  font-size: 0.92em;
  color: var(--gold-bright);
  filter: drop-shadow(0 4px 10px rgba(186, 130, 40, 0.24));
}

.section-head .section-kicker.kicker-with-icon,
.section-members .section-head .section-kicker.kicker-with-icon {
  justify-content: center;
}

.page-title,
.section-head h2,
.floating-card h2,
.content-card h3,
.info-card h3,
.step-card h3,
.article-card h3,
.video-card h3 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  line-height: 0.95;
  letter-spacing: 0.04em;
}

.page-title {
  font-size: clamp(3rem, 6.3vw, 5.45rem);
  max-width: none;
}

.page-hero-copy {
  max-width: 40rem;
  padding: 1rem 0 1.4rem;
}

.page-hero-home .page-hero-copy {
  max-width: 48rem;
  padding: 0;
}

.page-hero-copy-centered {
  display: grid;
  justify-items: center;
}

.page-hero-home .page-title {
  margin-top: 1rem;
  max-width: none;
  font-size: clamp(3.2rem, 6.1vw, 6rem);
  text-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.page-hero-home .page-title span {
  display: inline-block;
  color: var(--gold-pale);
  text-shadow:
    0 0 0 rgba(0, 0, 0, 0),
    0 14px 36px rgba(186, 130, 40, 0.18);
}

.lead,
.section-head p:not(.section-kicker),
.mini-card span,
.content-card p:not(.panel-kicker),
.media-card p:not(.panel-kicker),
.content-card li,
.info-card p,
.step-card p,
.article-card p,
.video-card p,
.gallery-item figcaption,
.form-note,
.site-footer p {
  color: var(--text-soft);
}

.lead {
  max-width: 48rem;
  margin-top: 1.2rem;
  font-size: 1rem;
  line-height: 1.78;
}

.page-hero-home .lead {
  max-width: 42rem;
  margin-inline: 0;
  color: rgba(247, 240, 230, 0.88);
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.36);
}

.hero-signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  margin-bottom: 1rem;
}

.hero-live-pill,
.hero-hash-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 0.95rem 0.76rem;
  border: 1px solid rgba(244, 207, 120, 0.16);
  border-radius: 999px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.05), transparent),
    rgba(12, 9, 7, 0.74);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.18);
}

.hero-live-pill {
  color: var(--gold-pale);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), transparent),
    rgba(12, 9, 7, 0.76);
}

.hero-hash-pill {
  animation: badgeFloat 4s ease-in-out infinite;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-actions-centered {
  justify-content: center;
}

.hero-foreground {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 1.4rem;
  min-height: 0;
  padding: clamp(0.4rem, 1.3vw, 0.9rem) clamp(0.5rem, 3vw, 2.4rem) clamp(1rem, 3vw, 2.1rem);
}

.hero-main-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(420px, 1.28fr);
  gap: clamp(1.1rem, 2.2vw, 2.4rem);
  align-items: center;
}

.page-hero-home .page-hero-copy,
.page-hero-home .page-hero-copy-centered {
  justify-items: start;
  text-align: left;
}

.hero-copy-home {
  display: grid;
  gap: 0.85rem;
}

.hero-kicker-line {
  margin: 0;
  max-width: 44rem;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247, 240, 230, 0.78);
}

.page-hero-home .hero-actions-centered,
.page-hero-home .hero-band-meta {
  justify-content: flex-start;
}

.button {
  padding: 1rem 1.35rem;
  border: 1px solid transparent;
}

.button-primary {
  color: #140d06;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  box-shadow: 0 18px 36px rgba(186, 130, 40, 0.24);
}

.button-secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.button-full {
  width: 100%;
}

.hero-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.mini-card,
.content-card,
.info-card,
.step-card,
.article-card,
.contact-form,
.gallery-item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), transparent),
    var(--panel);
  box-shadow: var(--shadow);
}

.mini-card {
  padding: 1rem 1.05rem;
}

.mini-card strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
}

.page-hero-visual {
  position: relative;
  min-height: 100%;
}

.hero-tag-marquee {
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(244, 207, 120, 0.14);
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(244, 207, 120, 0.06), transparent 18%, transparent 82%, rgba(244, 207, 120, 0.06)),
    rgba(12, 9, 7, 0.7);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
  position: relative;
  z-index: 1;
}

.hero-tag-track {
  display: flex;
  gap: 1.9rem;
  width: max-content;
  padding: 0.75rem 1.2rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(0.94rem, 1.7vw, 1.3rem);
  letter-spacing: 0.16em;
  color: rgba(248, 239, 221, 0.84);
  animation: marquee 28s linear infinite;
}

.hero-tag-track span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.hero-tag-track span::before {
  content: "";
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 12px rgba(244, 207, 120, 0.35);
}

.hero-tag-marquee-bottom .hero-tag-track {
  animation-direction: reverse;
  animation-duration: 32s;
}

.hero-band-stage {
  width: min(1180px, 100%);
  display: grid;
  gap: 1rem;
}

.hero-band-photo {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(244, 207, 120, 0.18);
  border-radius: 40px;
  background: #090705;
  box-shadow: var(--shadow-strong);
}

.hero-band-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 6, 5, 0.05) 0%, rgba(7, 6, 5, 0.2) 40%, rgba(7, 6, 5, 0.78) 100%);
  pointer-events: none;
}

.hero-band-photo img {
  display: block;
  width: 100%;
  height: clamp(360px, 46vw, 650px);
  object-fit: cover;
  object-position: center 42%;
}

.hero-band-overlay {
  position: absolute;
  left: 1.45rem;
  right: auto;
  bottom: 1.45rem;
  z-index: 1;
  max-width: 32rem;
  padding: 1.1rem 1.2rem 1.2rem;
  border: 1px solid rgba(244, 207, 120, 0.16);
  border-radius: 28px;
  background: rgba(11, 8, 6, 0.72);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  text-align: left;
}

.hero-band-overlay h2 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.95rem, 3vw, 3rem);
  line-height: 0.96;
  letter-spacing: 0.05em;
  text-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}

.hero-band-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 0.35rem;
}

.hero-band-stat {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.82rem 1rem 0.88rem;
  border: 1px solid rgba(244, 207, 120, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--gold-pale);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.page-hero-home .page-title {
  max-width: 12ch;
  font-size: clamp(3.4rem, 6.2vw, 6.2rem);
  line-height: 0.94;
  text-wrap: balance;
}

.page-hero-home .lead {
  max-width: 34rem;
  font-size: 1.04rem;
  line-height: 1.72;
  color: rgba(247, 240, 230, 0.86);
}

.hero-band-stat::before {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 12px rgba(244, 207, 120, 0.3);
}

.hero-photo-showcase {
  position: relative;
  align-self: stretch;
  min-height: clamp(460px, 54vw, 720px);
  border: 1px solid rgba(244, 207, 120, 0.16);
  border-radius: 38px;
  overflow: hidden;
  background: #090705;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 22px 48px rgba(0, 0, 0, 0.24);
}

.hero-photo-showcase::before {
  content: "";
  position: absolute;
  inset: 1.1rem 1.1rem auto;
  height: 36%;
  border: 1px solid rgba(244, 207, 120, 0.08);
  border-radius: 24px;
  pointer-events: none;
  z-index: 1;
}

.hero-photo-showcase img {
  width: 100%;
  height: 100%;
  min-height: clamp(460px, 54vw, 720px);
  object-fit: cover;
  object-position: center 34%;
}

.hero-photo-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 6, 5, 0.02) 0%, rgba(7, 6, 5, 0.08) 48%, rgba(7, 6, 5, 0.34) 100%),
    linear-gradient(90deg, rgba(7, 6, 5, 0.02), rgba(7, 6, 5, 0.12));
  pointer-events: none;
}

.hero-photo-overlay {
  position: absolute;
  left: 1.35rem;
  right: auto;
  bottom: 1.35rem;
  z-index: 2;
  display: grid;
  gap: 0.4rem;
  max-width: 24rem;
  padding: 0.95rem 1rem 1rem;
  border: 1px solid rgba(244, 207, 120, 0.16);
  border-radius: 22px;
  background: rgba(10, 8, 6, 0.48);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.24);
}

.hero-photo-overlay strong {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.45rem, 2vw, 1.95rem);
  line-height: 1.08;
  color: var(--text);
}

.home-release-grid,
.home-route-grid,
.home-showcase-grid,
.home-booking-panel {
  width: min(var(--max-width), 100%);
  margin: 0 auto;
}

.home-release-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1.14fr);
  gap: 1.4rem;
  align-items: stretch;
}

.home-release-cover,
.route-card,
.home-showcase-feature,
.home-showcase-card,
.home-booking-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), transparent),
    var(--panel);
  box-shadow: var(--shadow-strong);
}

.member-roster-intro {
  width: min(var(--max-width), 100%);
  margin: 0 auto 1.4rem;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) auto;
  gap: 1.2rem;
  align-items: end;
  padding: clamp(1.4rem, 2.6vw, 2rem);
  border: 1px solid rgba(244, 207, 120, 0.14);
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(244, 207, 120, 0.16), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), transparent),
    var(--panel);
  box-shadow: var(--shadow);
}

.section-members .section-head {
  display: grid;
  justify-items: center;
  max-width: 64rem;
  margin-inline: auto;
  text-align: center;
}

.section-members .section-head p:not(.section-kicker) {
  max-width: 46rem;
  margin-inline: auto;
}

.section-members .member-roster-intro {
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  max-width: 88rem;
  text-align: center;
}

.member-roster-copy {
  display: grid;
  gap: 0.65rem;
  max-width: 44rem;
}

.section-members .member-roster-copy {
  justify-items: center;
  width: 100%;
  max-width: 48rem;
}

.member-roster-copy h3 {
  margin: 0 auto;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.2rem, 4.2vw, 4rem);
  line-height: 0.92;
  letter-spacing: 0.04em;
}

.member-roster-copy p:last-child {
  max-width: 42rem;
  margin: 0 auto;
  color: rgba(247, 240, 230, 0.82);
  line-height: 1.72;
}

.member-roster-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.7rem;
}

.section-members .member-roster-badges {
  justify-content: center;
  max-width: 44rem;
  margin-inline: auto;
}

.member-roster-badges span {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.82rem 1rem 0.88rem;
  border: 1px solid rgba(244, 207, 120, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--gold-pale);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.member-roster-badges span::before {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 12px rgba(244, 207, 120, 0.32);
}

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

.member-card {
  position: relative;
  overflow: hidden;
  min-height: 0;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(244, 207, 120, 0.14);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.03), transparent),
    var(--panel);
  box-shadow: var(--shadow);
  transform: translateY(0);
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease,
    background 260ms ease;
}

.member-card::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(244, 207, 120, 0.08);
  border-radius: 24px;
  pointer-events: none;
  z-index: 1;
}

.member-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 54%;
  background: linear-gradient(180deg, rgba(8, 7, 6, 0), rgba(8, 7, 6, 0.94));
  pointer-events: none;
}

.member-card:hover {
  transform: translateY(-10px);
  border-color: rgba(244, 207, 120, 0.26);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.3);
}

.member-card-media {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
}

.member-card-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 26%;
  transform: scale(1);
  filter: saturate(102%);
  transition: transform 360ms ease, filter 360ms ease;
}

.member-card:hover .member-card-media img {
  transform: scale(1.05);
  filter: saturate(112%);
}

.member-card-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: grid;
  gap: 0.32rem;
  padding: 1.2rem 1.2rem 1.24rem;
}

.member-card-copy .panel-kicker {
  color: var(--gold-bright);
}

.member-card-copy h3 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.45rem, 2.1vw, 1.9rem);
  line-height: 0.94;
  letter-spacing: 0.04em;
  color: var(--text);
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.3);
}

.member-card-copy p:not(.panel-kicker) {
  margin: 0;
  color: rgba(247, 240, 230, 0.84);
  font-size: 0.98rem;
  line-height: 1.52;
}

.section-timeline {
  position: relative;
}

.timeline-stage {
  position: relative;
  width: min(var(--max-width), 100%);
  margin: 0 auto;
}

.timeline-head {
  max-width: 54rem;
  margin-bottom: 2.4rem;
}

.band-timeline {
  position: relative;
  display: grid;
  gap: 1.6rem;
  padding: 0.8rem 0 0.2rem;
}

.band-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  transform: translateX(-50%);
  background:
    linear-gradient(180deg, rgba(244, 207, 120, 0), rgba(244, 207, 120, 0.24) 12%, rgba(244, 207, 120, 0.24) 88%, rgba(244, 207, 120, 0));
  box-shadow: 0 0 18px rgba(244, 207, 120, 0.08);
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 112px minmax(0, 1fr);
  gap: 1.15rem;
  align-items: start;
  grid-template-areas: "content marker postcard";
}

.timeline-marker {
  position: relative;
  z-index: 2;
  grid-area: marker;
  display: grid;
  justify-items: center;
  gap: 0.85rem;
  padding-top: 1.1rem;
}

.timeline-year {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0.55rem 0.8rem 0.5rem;
  border: 1px solid rgba(244, 207, 120, 0.16);
  border-radius: 999px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), transparent),
    rgba(12, 9, 7, 0.84);
  color: var(--gold-pale);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.timeline-dot {
  width: 18px;
  height: 18px;
  border: 4px solid rgba(11, 8, 6, 0.96);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  box-shadow:
    0 0 0 1px rgba(244, 207, 120, 0.18),
    0 0 22px rgba(244, 207, 120, 0.22);
}

.timeline-content {
  grid-area: content;
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 0.8rem;
  padding: 1.45rem 1.5rem 1.55rem;
  border: 1px solid rgba(244, 207, 120, 0.14);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(244, 207, 120, 0.1), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), transparent),
    rgba(13, 10, 8, 0.86);
  box-shadow: var(--shadow);
  transition:
    transform 240ms ease,
    border-color 240ms ease,
    box-shadow 240ms ease,
    background-color 240ms ease;
}

.timeline-content::before {
  content: attr(data-year);
  position: absolute;
  top: 0.7rem;
  right: 1rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3.5rem, 7vw, 5.8rem);
  line-height: 0.9;
  letter-spacing: 0.06em;
  color: rgba(244, 207, 120, 0.07);
  pointer-events: none;
}

.timeline-item:nth-child(even) {
  grid-template-areas: "postcard marker content";
}

.timeline-postcard {
  position: relative;
  grid-area: postcard;
  align-self: start;
  width: 100%;
  max-width: 320px;
  margin: 0;
  padding: 0.8rem 0.8rem 1rem;
  border: 1px solid rgba(244, 207, 120, 0.16);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent),
    rgba(15, 12, 9, 0.92);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
  overflow: hidden;
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.timeline-postcard::before {
  content: "";
  position: absolute;
  inset: 0.7rem;
  border: 1px solid rgba(244, 207, 120, 0.08);
  border-radius: 22px;
  pointer-events: none;
}

.timeline-postcard::after {
  content: "";
  position: absolute;
  top: 0.55rem;
  left: 50%;
  width: 76px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 240, 199, 0.2), rgba(255, 240, 199, 0.06));
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.14);
  transform: translateX(-50%) rotate(-2deg);
  opacity: 0.78;
}

.timeline-postcard img {
  width: 100%;
  aspect-ratio: 4 / 5;
  display: block;
  object-fit: cover;
  object-position: center 28%;
  border-radius: 20px;
  transform: scale(1.01);
  transition: transform 320ms ease, filter 320ms ease;
  filter: saturate(102%);
}

.timeline-postcard figcaption {
  position: relative;
  z-index: 1;
  margin-top: 0.8rem;
  padding: 0 0.25rem;
  color: rgba(247, 240, 230, 0.78);
  font-size: 0.82rem;
  line-height: 1.58;
}

.timeline-item:nth-child(odd) .timeline-postcard {
  justify-self: start;
  transform: rotate(3deg);
}

.timeline-item:nth-child(even) .timeline-postcard {
  justify-self: end;
  transform: rotate(-3deg);
}

.timeline-content h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 22ch;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.9rem, 2.6vw, 2.75rem);
  line-height: 0.96;
  letter-spacing: 0.04em;
}

.timeline-content p:not(.panel-kicker) {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(247, 240, 230, 0.82);
  line-height: 1.78;
}

.timeline-content:hover {
  transform: translateY(-6px);
  border-color: rgba(244, 207, 120, 0.24);
  box-shadow: 0 26px 58px rgba(0, 0, 0, 0.28);
}

.timeline-item:hover .timeline-postcard {
  border-color: rgba(244, 207, 120, 0.26);
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.34);
}

.timeline-item:hover .timeline-postcard img {
  transform: scale(1.04);
  filter: saturate(112%);
}

.timeline-item:nth-child(odd):hover .timeline-postcard,
.timeline-item:nth-child(even):hover .timeline-postcard {
  transform: rotate(0deg) translateY(-6px);
}

.timeline-tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.timeline-tags span {
  display: inline-flex;
  align-items: center;
  padding: 0.72rem 0.9rem 0.76rem;
  border: 1px solid rgba(244, 207, 120, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--gold-pale);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-release-cover {
  min-height: 470px;
  background: #090705;
}

.home-release-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-release-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 6, 5, 0.04), rgba(7, 6, 5, 0.76));
}

.home-release-cover-copy {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1;
  max-width: 24rem;
}

.home-release-cover-copy h2,
.home-release-copy h2,
.home-booking-copy h2,
.home-showcase-feature h3,
.home-showcase-card h3 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  line-height: 0.96;
  letter-spacing: 0.05em;
}

.home-release-cover-copy h2 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
}

.home-release-cover-copy p:last-child {
  margin: 0.8rem 0 0;
  color: rgba(247, 240, 230, 0.82);
  line-height: 1.72;
}

.home-release-copy {
  padding: clamp(1.5rem, 3vw, 2.2rem) clamp(1.6rem, 3.3vw, 2.6rem);
}

.home-release-copy h2 {
  font-size: clamp(2.45rem, 4.2vw, 3.9rem);
  max-width: none;
}

.home-release-copy > p:not(.section-kicker) {
  max-width: 40rem;
  color: var(--text-soft);
  line-height: 1.82;
}

.home-release-copy strong {
  color: var(--text);
  font-weight: 800;
}

.home-release-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.home-release-tags span {
  display: inline-flex;
  align-items: center;
  padding: 0.72rem 0.95rem 0.78rem;
  border: 1px solid rgba(244, 207, 120, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-pale);
}

.spotify-inline-panel,
.spotify-panel {
  border: 1px solid rgba(244, 207, 120, 0.12);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.03), transparent),
    rgba(11, 8, 6, 0.72);
}

.spotify-inline-panel {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
  padding: 1rem 1.1rem;
}

.spotify-inline-panel h3,
.spotify-panel-copy h2 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  line-height: 0.96;
  letter-spacing: 0.05em;
}

.spotify-inline-panel h3 {
  font-size: clamp(1.55rem, 2.6vw, 2.15rem);
}

.spotify-inline-actions,
.spotify-panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.spotify-panel {
  width: min(var(--max-width), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.4rem;
  align-items: center;
  padding: 1.55rem;
  box-shadow: var(--shadow-strong);
}

.spotify-panel-copy h2 {
  font-size: clamp(2.35rem, 4.4vw, 4rem);
  max-width: none;
}

.spotify-panel-copy p:last-child {
  max-width: 42rem;
  margin: 1rem 0 0;
  color: var(--text-soft);
  line-height: 1.82;
}

.platform-link-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
  margin-top: 1.15rem;
}

.platform-link-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.78rem 1rem 0.82rem;
  border-radius: 999px;
  border: 1px solid rgba(244, 207, 120, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent),
    rgba(16, 12, 9, 0.88);
  color: var(--text);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.platform-link-chip i {
  color: var(--gold-bright);
  font-size: 1rem;
}

.platform-link-chip:hover,
.platform-link-chip:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(244, 207, 120, 0.26);
  color: var(--gold-pale);
  box-shadow:
    0 12px 24px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  outline: none;
}

.button-spotify {
  color: #05150b;
  background: linear-gradient(135deg, #3be477, #1db954);
  box-shadow: 0 18px 36px rgba(29, 185, 84, 0.2);
}

.button-whatsapp {
  gap: 0.65rem;
  color: #04110a;
  background: linear-gradient(135deg, #6de19a, #25d366 58%, #17a34a);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 18px 36px rgba(37, 211, 102, 0.2);
}

.button-whatsapp i {
  font-size: 1rem;
}

.spotify-feedback {
  margin: 0;
  color: var(--gold-pale);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.route-card {
  padding: 1.35rem 1.3rem 1.4rem;
}

.route-city {
  display: block;
  margin-bottom: 0.8rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.08em;
  color: var(--text);
}

.route-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.72;
}

.home-showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 1.2rem;
}

.home-events-head {
  width: min(var(--max-width), 100%);
  margin: 0 auto 2rem;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.2rem;
}

.home-events-head .section-head {
  margin-bottom: 0;
  max-width: 58rem;
}

.home-events-grid {
  width: min(var(--max-width), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.event-highlight-card {
  padding: 0;
  overflow: hidden;
  min-height: 100%;
  display: grid;
  grid-template-rows: minmax(240px, 252px) auto;
}

.event-highlight-media {
  position: relative;
  overflow: hidden;
  background: rgba(10, 8, 6, 0.82);
}

.event-highlight-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 6, 5, 0.08), rgba(7, 6, 5, 0.78)),
    linear-gradient(145deg, rgba(244, 207, 120, 0.08), transparent 62%);
  pointer-events: none;
}

.event-highlight-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  transition: transform 220ms ease;
}

.event-highlight-card:hover .event-highlight-media img {
  transform: scale(1.06);
}

.event-highlight-copy {
  display: grid;
  gap: 1rem;
  padding: 1.3rem 1.25rem 1.35rem;
}

.event-highlight-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
}

.event-status-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(244, 207, 120, 0.16);
  background: rgba(244, 207, 120, 0.08);
  color: var(--gold-pale);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.event-highlight-card h3 {
  font-size: clamp(1.75rem, 2.8vw, 2.5rem);
}

.event-highlight-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.event-highlight-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.78rem;
  border-radius: 999px;
  border: 1px solid rgba(244, 207, 120, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-soft);
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1;
}

.event-highlight-meta i {
  color: var(--gold-bright);
}

.event-highlight-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
}

.event-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.82rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(244, 207, 120, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent),
    rgba(16, 12, 9, 0.92);
  color: var(--text);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.event-card-cta:hover,
.event-card-cta:focus-visible {
  transform: translateY(-2px);
  color: var(--gold-pale);
  border-color: rgba(244, 207, 120, 0.28);
  box-shadow:
    0 12px 24px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  outline: none;
}

.event-share-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
}

.event-share-link {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(244, 207, 120, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent),
    rgba(16, 12, 9, 0.92);
  color: var(--text-soft);
  text-decoration: none;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.event-share-link:hover,
.event-share-link:focus-visible {
  transform: translateY(-2px);
  outline: none;
  box-shadow:
    0 12px 24px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.event-share-link.is-whatsapp:hover,
.event-share-link.is-whatsapp:focus-visible {
  color: #7ee7a8;
  border-color: rgba(37, 211, 102, 0.34);
}

.event-share-link.is-facebook:hover,
.event-share-link.is-facebook:focus-visible {
  color: #8dbbff;
  border-color: rgba(66, 103, 178, 0.34);
}

.event-share-link.is-x:hover,
.event-share-link.is-x:focus-visible,
.event-share-link-button:hover,
.event-share-link-button:focus-visible {
  color: var(--text);
  border-color: rgba(244, 207, 120, 0.28);
}

.event-share-link-button {
  appearance: none;
  cursor: pointer;
  font: inherit;
  padding: 0;
}

.event-share-feedback {
  min-height: 1.2rem;
  margin: 0;
  color: var(--gold-pale);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.event-empty-state {
  padding: 1.55rem;
}

.events-page-section .home-events-head {
  margin-bottom: 1.7rem;
}

.events-page-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.button.is-disabled {
  opacity: 0.72;
  cursor: default;
  pointer-events: none;
}

.event-modal[hidden] {
  display: none;
}

.event-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
}

.event-modal-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(244, 207, 120, 0.1), transparent 28%),
    rgba(5, 4, 3, 0.76);
  backdrop-filter: blur(14px);
  opacity: 0;
  transition: opacity 180ms ease;
}

.event-modal-dialog {
  position: relative;
  width: min(940px, calc(100% - 2rem));
  max-height: calc(100vh - 2rem);
  margin: 1rem auto;
  overflow: auto;
  border: 1px solid rgba(244, 207, 120, 0.14);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent),
    rgba(12, 9, 7, 0.98);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.5);
  transform: translateY(20px) scale(0.98);
  opacity: 0;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.event-modal.is-open .event-modal-backdrop {
  opacity: 1;
}

.event-modal.is-open .event-modal-dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.event-modal-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(244, 207, 120, 0.14);
  border-radius: 16px;
  background: rgba(12, 9, 7, 0.88);
  color: var(--text);
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.event-modal-close:hover,
.event-modal-close:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(244, 207, 120, 0.28);
  color: var(--gold-pale);
  outline: none;
}

.event-modal-layout {
  display: grid;
  grid-template-columns: minmax(280px, 320px) minmax(0, 1fr);
  min-height: auto;
  align-items: start;
}

.event-modal-media {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 5;
  min-height: auto;
  max-height: 440px;
  overflow: hidden;
  background: rgba(10, 8, 6, 0.86);
  align-self: start;
}

.event-modal-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 6, 5, 0.08), rgba(7, 6, 5, 0.72)),
    linear-gradient(145deg, rgba(244, 207, 120, 0.08), transparent 62%);
  pointer-events: none;
}

.event-modal-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.event-modal-copy {
  display: grid;
  align-content: start;
  gap: 1rem;
  padding: 1rem 1rem 1.2rem;
}

.event-modal-headline {
  display: grid;
  gap: 0.45rem;
  padding-right: 4.95rem;
}

.event-modal-headline h2,
#event-modal-title {
  margin: 0;
  max-width: none;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.6rem, 2.1vw, 2.45rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
}

.event-modal-summary {
  margin: 0;
  color: rgba(247, 240, 230, 0.86);
  line-height: 1.45;
  font-size: 0.92rem;
}

.event-modal-story p {
  margin: 0;
  color: rgba(247, 240, 230, 0.84);
  line-height: 1.6;
  font-size: 0.95rem;
}

.event-modal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.event-modal .event-highlight-topline {
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  padding-right: 4.5rem;
  align-items: center;
}

.event-modal .event-status-badge {
  padding: 0.4rem 0.72rem;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
}

.event-modal-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.62rem 0.82rem;
  border: 1px solid rgba(244, 207, 120, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-soft);
  font-size: 0.8rem;
  font-weight: 700;
}

.event-modal-meta i {
  color: var(--gold-bright);
}

.event-modal-details-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.event-modal-detail-card {
  display: grid;
  gap: 0.32rem;
  padding: 0.82rem 0.88rem;
  border: 1px solid rgba(244, 207, 120, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
}

.event-modal-detail-label {
  color: var(--gold-bright);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.event-modal-detail-value {
  color: var(--text);
  font-size: 0.94rem;
  line-height: 1.45;
}

.event-modal-share-block {
  display: grid;
  gap: 0.8rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(244, 207, 120, 0.1);
}

.event-modal-share-toolbar {
  gap: 0.65rem;
}

.home-news-head {
  width: min(var(--max-width), 100%);
  margin: 0 auto 2rem;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.2rem;
}

.home-news-head .section-head {
  margin-bottom: 0;
  max-width: 54rem;
}

.home-showcase-feature {
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  padding: 1.4rem;
  color: var(--text);
  text-decoration: none;
}

.home-showcase-image {
  position: absolute;
  inset: 0;
}

.home-showcase-live {
  background:
    linear-gradient(180deg, rgba(7, 6, 5, 0.14), rgba(7, 6, 5, 0.86)),
    url("images/eventos/18.jpg") center 48%/cover no-repeat;
}

.home-showcase-feature::after,
.home-showcase-card::after {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(244, 207, 120, 0.08);
  border-radius: 26px;
  pointer-events: none;
}

.home-showcase-copy {
  position: relative;
  z-index: 1;
  max-width: 30rem;
}

.home-showcase-feature h3,
.home-showcase-card h3 {
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.home-showcase-copy p:last-child,
.home-showcase-card p:last-child {
  color: rgba(247, 240, 230, 0.82);
  line-height: 1.72;
}

.home-showcase-stack {
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.home-showcase-card {
  min-height: 176px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.35rem;
  color: var(--text);
  text-decoration: none;
}

.home-showcase-gallery {
  background:
    linear-gradient(180deg, rgba(7, 6, 5, 0.14), rgba(7, 6, 5, 0.88)),
    url("images/eventos/10.jpg") center 26%/cover no-repeat;
}

.home-showcase-story {
  background:
    linear-gradient(180deg, rgba(7, 6, 5, 0.18), rgba(7, 6, 5, 0.9)),
    url("images/eventos/5.jpg") center/cover no-repeat;
}

.home-showcase-band {
  background:
    linear-gradient(180deg, rgba(7, 6, 5, 0.14), rgba(7, 6, 5, 0.88)),
    url("images/eventos/3.jpg") center 28%/cover no-repeat;
}

.home-booking-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.4rem;
  align-items: center;
  padding: 1.55rem;
}

.home-booking-copy h2 {
  font-size: clamp(2.4rem, 4.3vw, 4rem);
  max-width: none;
}

.home-booking-copy p:last-child {
  margin: 1rem 0 0;
  color: var(--gold-pale);
  font-size: 1.02rem;
  letter-spacing: 0.04em;
}

.home-booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-end;
}

.hero-parallax,
.hero-wordmark {
  position: absolute;
  pointer-events: none;
  --parallax-shift: 0px;
}

.hero-parallax {
  z-index: 0;
  border-radius: 50%;
  transform: translate3d(0, var(--parallax-shift), 0);
  will-change: transform;
}

.hero-parallax-left {
  top: 8%;
  left: -4rem;
  width: 18rem;
  height: 18rem;
  background: radial-gradient(circle, rgba(244, 207, 120, 0.22), transparent 66%);
  filter: blur(16px);
}

.hero-parallax-right {
  right: -7rem;
  top: 16%;
  width: 25rem;
  height: 25rem;
  border: 1px solid rgba(244, 207, 120, 0.12);
  background:
    radial-gradient(circle at center, rgba(244, 207, 120, 0.08), transparent 62%),
    linear-gradient(135deg, rgba(244, 207, 120, 0.04), transparent 60%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.hero-wordmark {
  top: 2rem;
  left: 50%;
  z-index: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(4.6rem, 14vw, 10.5rem);
  letter-spacing: 0.14em;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgba(244, 207, 120, 0.18);
  opacity: 0.18;
  transform: translate3d(-50%, var(--parallax-shift), 0);
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
  will-change: transform;
}

.hero-stage,
.media-panel,
.audio-player-cover,
.audio-player-panel,
.audio-playlist {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(244, 207, 120, 0.18);
  border-radius: 36px;
  box-shadow: var(--shadow-strong);
}

.hero-stage {
  padding: clamp(1.6rem, 4vw, 2.3rem);
  background:
    radial-gradient(circle at top, rgba(244, 207, 120, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(21, 17, 13, 0.98), rgba(8, 7, 6, 0.95));
  transform-style: preserve-3d;
}

.hero-stage-photo {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  min-height: 620px;
  background:
    linear-gradient(180deg, rgba(7, 6, 5, 0.08) 0%, rgba(7, 6, 5, 0.22) 36%, rgba(7, 6, 5, 0.84) 100%),
    linear-gradient(145deg, rgba(14, 12, 10, 0.06), rgba(10, 8, 6, 0.22)),
    url("images/musicos/musicos10.jpg") center center / cover no-repeat;
}

.hero-stage::before,
.media-panel::before,
.audio-player-cover::before,
.audio-player-panel::before,
.audio-playlist::before,
.video-card::before,
.preview-card::before,
.media-card::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(244, 207, 120, 0.08);
  border-radius: 28px;
  pointer-events: none;
}

.hero-stage-glow {
  position: absolute;
  inset: auto 8% -12% 8%;
  height: 34%;
  background: radial-gradient(circle, rgba(244, 207, 120, 0.24), transparent 70%);
  filter: blur(20px);
}

.hero-stage img {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.52));
}

.hero-stage-copy,
.hero-stage-badge,
.equalizer,
.waveform {
  position: relative;
  z-index: 1;
}

.hero-stage-copy {
  max-width: 21rem;
}

.hero-stage-copy h2 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 0.94;
  letter-spacing: 0.05em;
  text-shadow: 0 14px 36px rgba(0, 0, 0, 0.42);
}

.page-hero-home .hero-stage {
  padding: 0;
}

.page-hero-home .hero-stage::before {
  inset: 1.1rem;
}

.page-hero-home .hero-stage-copy {
  max-width: 29rem;
  margin: 0 1.45rem 1.45rem;
  padding: 1.15rem 1.2rem 1.25rem;
  border-radius: 26px;
  background: rgba(11, 8, 6, 0.74);
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
}

.page-hero-home .hero-stage-copy h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.9rem);
}

.page-hero-home .hero-stage-copy p:not(.panel-kicker) {
  margin: 0.8rem 0 0;
  color: rgba(247, 240, 230, 0.82);
  line-height: 1.72;
}

.hero-stage-badge {
  width: clamp(190px, 26vw, 280px);
  padding: 1rem 1.15rem;
  border: 1px solid rgba(244, 207, 120, 0.16);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), transparent),
    rgba(10, 8, 6, 0.68);
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}

.hero-stage-badge img {
  width: 100%;
}

.equalizer,
.waveform {
  display: flex;
  align-items: flex-end;
  gap: 0.55rem;
}

.equalizer {
  justify-content: center;
  height: 84px;
  margin-top: 1.2rem;
}

.equalizer span,
.waveform span {
  width: 12px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  box-shadow: 0 0 20px rgba(186, 130, 40, 0.22);
  transform-origin: bottom;
  animation: equalize 1.8s ease-in-out infinite;
}

.equalizer span:nth-child(1) { height: 24px; animation-delay: 0s; }
.equalizer span:nth-child(2) { height: 56px; animation-delay: 0.12s; }
.equalizer span:nth-child(3) { height: 38px; animation-delay: 0.24s; }
.equalizer span:nth-child(4) { height: 72px; animation-delay: 0.36s; }
.equalizer span:nth-child(5) { height: 48px; animation-delay: 0.48s; }
.equalizer span:nth-child(6) { height: 82px; animation-delay: 0.6s; }
.equalizer span:nth-child(7) { height: 34px; animation-delay: 0.72s; }
.equalizer span:nth-child(8) { height: 62px; animation-delay: 0.84s; }

.floating-card {
  position: absolute;
  right: -1.1rem;
  bottom: 1.6rem;
  width: min(290px, 64%);
  padding: 1.2rem 1.3rem;
  border-radius: 26px;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), transparent),
    rgba(10, 8, 6, 0.95);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.4);
}

.floating-card p:last-child {
  line-height: 1.76;
}

.floating-card-media {
  overflow: hidden;
}

.floating-card-image {
  height: 142px;
  margin: -1.2rem -1.3rem 1rem;
  border-radius: 24px 24px 20px 20px;
}

.audio-player-cover {
  min-height: 430px;
  background:
    linear-gradient(180deg, rgba(7, 6, 5, 0.1), rgba(7, 6, 5, 0.88)),
    url("images/portadas-musicales/web/extrano.jpg") center/cover no-repeat;
}

.audio-player-panel,
.audio-playlist {
  padding: 1.45rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), transparent),
    var(--panel);
}

.audio-player-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.audio-player-title {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: 0.05em;
}

.audio-player-copy {
  margin: 1rem 0 0;
  max-width: 34rem;
  color: var(--text-soft);
  line-height: 1.8;
}

.audio-progress-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.9rem;
  align-items: center;
  margin-top: 1.5rem;
}

.audio-time {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold-bright);
}

.audio-progress {
  width: 100%;
  height: 6px;
  margin: 0;
  accent-color: var(--gold-bright);
  cursor: pointer;
}

.audio-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.4rem;
  align-items: center;
}

.audio-control-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.audio-control-button i {
  font-size: 1.1rem;
  line-height: 1;
}

.audio-control-button:hover,
.audio-control-button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(244, 207, 120, 0.4);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent),
    rgba(244, 207, 120, 0.08);
  color: var(--gold-pale);
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(244, 207, 120, 0.08),
    0 0 22px rgba(244, 207, 120, 0.1);
  outline: none;
}

.audio-play-button {
  width: 4.65rem;
  height: 4.65rem;
  color: #140d06;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  box-shadow: 0 16px 34px rgba(186, 130, 40, 0.24);
}

.audio-play-button i {
  font-size: 1.22rem;
}

.audio-play-button:hover,
.audio-play-button:focus-visible {
  color: #140d06;
  box-shadow: 0 16px 34px rgba(186, 130, 40, 0.24);
}

.audio-play-button:hover,
.audio-play-button:focus-visible {
  box-shadow:
    0 20px 40px rgba(186, 130, 40, 0.3),
    0 0 0 1px rgba(244, 207, 120, 0.12),
    0 0 24px rgba(244, 207, 120, 0.14);
}

.audio-playlist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  max-height: min(420px, 52vh);
  overflow-y: scroll;
  overflow-x: hidden;
  scrollbar-gutter: stable both-edges;
  scrollbar-width: thin;
  scrollbar-color: rgba(244, 207, 120, 0.34) rgba(255, 255, 255, 0.03);
}

.audio-track-card {
  display: grid;
  gap: 0.75rem;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(244, 207, 120, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  text-align: left;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.audio-track {
  display: grid;
  gap: 0.3rem;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: none;
}

.audio-track-card:hover,
.audio-track-card:focus-within,
.audio-track-card.is-active {
  transform: translateY(-2px);
  border-color: rgba(244, 207, 120, 0.35);
  background: rgba(244, 207, 120, 0.08);
}

.audio-track:focus-visible {
  outline: none;
}

.audio-playlist::-webkit-scrollbar {
  width: 10px;
}

.audio-playlist::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 999px;
}

.audio-playlist::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(244, 207, 120, 0.74), rgba(186, 130, 40, 0.92));
  border-radius: 999px;
  border: 2px solid rgba(10, 8, 6, 0.5);
}

.audio-playlist::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(255, 240, 199, 0.92), rgba(244, 207, 120, 0.96));
}

.audio-track-kicker {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.audio-track-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  font-weight: 700;
}

.audio-track-meta {
  color: var(--text-soft);
  line-height: 1.5;
}

.audio-track-actions {
  display: flex;
  justify-content: flex-start;
}

.track-platform-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
}

.track-platform-links-current {
  margin-top: 0.9rem;
}

.track-platform-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 46px;
  padding: 0 0.95rem;
  border: 1px solid rgba(244, 207, 120, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.track-platform-link i {
  line-height: 1;
}

.track-platform-link:hover,
.track-platform-link:focus-visible,
.track-platform-link.is-copied {
  transform: translateY(-2px);
  border-color: rgba(244, 207, 120, 0.34);
  background: rgba(244, 207, 120, 0.1);
  color: var(--gold-pale);
  outline: none;
}

.track-platform-link.is-share {
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
}

.track-platform-links.is-compact {
  gap: 0.45rem;
}

.track-platform-link.is-compact {
  min-width: 38px;
  min-height: 38px;
  padding: 0;
  border-radius: 14px;
}

.track-share-feedback {
  min-height: 1.2rem;
  margin: 0.3rem 0 0;
  color: var(--gold-bright);
  font-size: 0.78rem;
  line-height: 1.35;
}

.ticker {
  margin: 0 0 5.5rem;
  overflow: hidden;
  padding: 0.95rem 0;
  border-block: 1px solid rgba(244, 207, 120, 0.12);
  background:
    linear-gradient(90deg, rgba(244, 207, 120, 0.05), transparent 18%, transparent 82%, rgba(244, 207, 120, 0.05));
}

.ticker-track {
  display: flex;
  gap: 2.4rem;
  width: max-content;
  padding-left: 2.4rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: 0.18em;
  color: rgba(248, 239, 221, 0.72);
  animation: marquee 28s linear infinite;
}

.section-head {
  margin-bottom: 2rem;
}

.section-head h2 {
  font-size: clamp(2.55rem, 4.8vw, 4.35rem);
  max-width: none;
}

.section-head p:not(.section-kicker) {
  max-width: 48rem;
  margin-top: 1rem;
}

.section-title-soft {
  margin-bottom: 1.5rem;
}

.section-title-soft h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 2.85rem);
  font-weight: 600;
  line-height: 1;
  color: var(--text);
}

.preview-grid,
.card-grid,
.step-grid,
.info-grid,
.article-grid,
.contact-grid {
  display: grid;
  gap: 1.2rem;
}

.preview-grid,
.card-grid-three,
.info-grid,
.contact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.preview-card,
.video-card,
.media-card {
  position: relative;
  min-height: 290px;
  display: flex;
  align-items: flex-end;
  padding: 1.3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}

.preview-card h3,
.media-card h3,
.video-card h3 {
  position: relative;
  z-index: 1;
  max-width: none;
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
}

.media-card-copy,
.video-copy {
  position: relative;
  z-index: 1;
}

.preview-label,
.video-copy .panel-kicker,
.media-card-copy .panel-kicker {
  position: relative;
  z-index: 1;
  color: var(--gold-bright);
}

.preview-card::after,
.video-card::after,
.media-card::after,
.media-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 5, 4, 0.08), rgba(6, 5, 4, 0.88));
}

.content-card,
.info-card,
.step-card,
.article-card,
.contact-form {
  padding: 1.5rem;
}

.content-card h3,
.info-card h3,
.step-card h3,
.article-card h3 {
  font-size: clamp(1.55rem, 2.3vw, 2rem);
  margin-bottom: 0.6rem;
}

.panel-kicker,
.post-label,
.track-type {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  color: var(--gold-bright);
}

.feature-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  line-height: 1.7;
}

.feature-list li::before {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  margin-top: 0.42rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  flex-shrink: 0;
}

.cta-banner,
.quote-banner {
  width: min(var(--max-width), 100%);
  margin: 0 auto;
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(244, 207, 120, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), transparent),
    var(--panel-strong);
  box-shadow: var(--shadow-strong);
}

.cta-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.quote-banner h2,
.cta-banner h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.03;
  margin: 0;
}

.media-panel {
  min-height: 420px;
  background-color: var(--panel);
}

.panel-tall {
  min-height: 430px;
}

.media-logo {
  background:
    radial-gradient(circle at top, rgba(244, 207, 120, 0.16), transparent 32%),
    url("images/logo.png") center/74% no-repeat,
    linear-gradient(145deg, rgba(21, 17, 13, 0.98), rgba(8, 7, 6, 0.95));
}

.media-concierto {
  background: url("images/eventos/6.jpg") center/cover;
}

.media-cabalgata {
  background: url("images/eventos/4.jpg") center/cover;
}

.media-evento {
  background: url("images/eventos/17.jpg") center 40%/cover;
}

.media-stage {
  background: url("images/eventos/16.jpg") center 40%/cover;
}

.media-musicos {
  background: url("images/musicos/musicos1.jpg") center/cover;
}

.media-musicos-alt {
  background: url("images/eventos/13.jpg") center/cover;
}

.media-video-main {
  background: url("images/musicos/musicos10.jpg") center/cover;
}

.media-video-session {
  background: url("images/musicos/musicos6.jpg") center/cover;
}

.media-video-backstage {
  background: url("images/musicos/musicos13.jpg") center/cover;
}

.media-blog-one {
  background: url("images/eventos/1.jpg") center/cover;
}

.media-blog-two {
  background: url("images/eventos/7.png") center/cover;
}

.media-blog-three {
  background: url("images/eventos/4.jpg") center 26%/cover;
}

.media-caminito {
  background: url("images/portadas-musicales/web/caminito.jpg") center/cover;
}

.info-card {
  min-height: 220px;
}

.card-index,
.step-card span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 0.8rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #140d06;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
}

.step-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.step-card h3 {
  font-size: 1.55rem;
}

.waveform {
  height: 90px;
  margin-top: 1.4rem;
}

.waveform-short span:nth-child(1) { height: 24px; animation-delay: 0s; }
.waveform-short span:nth-child(2) { height: 44px; animation-delay: 0.1s; }
.waveform-short span:nth-child(3) { height: 68px; animation-delay: 0.2s; }
.waveform-short span:nth-child(4) { height: 34px; animation-delay: 0.3s; }
.waveform-short span:nth-child(5) { height: 76px; animation-delay: 0.4s; }
.waveform-short span:nth-child(6) { height: 52px; animation-delay: 0.5s; }

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

.video-card {
  min-height: 320px;
  align-items: stretch;
  justify-content: space-between;
}

.video-copy {
  position: relative;
  z-index: 1;
  margin-top: auto;
}

.play-badge {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border: 1px solid rgba(244, 207, 120, 0.2);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 207, 120, 0.22), rgba(7, 6, 5, 0.06));
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.3);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.12em;
}

.article-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.article-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
}

.article-card-media {
  position: relative;
  overflow: hidden;
}

.article-card-media > * {
  position: relative;
  z-index: 1;
}

.article-card-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 6, 5, 0.14), rgba(7, 6, 5, 0.9));
}

.article-card a {
  margin-top: auto;
  align-self: flex-start;
  padding-bottom: 0.15rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-bright);
  border-bottom: 1px solid rgba(244, 207, 120, 0.32);
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.gallery-item {
  margin: 0;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.gallery-item figcaption {
  padding: 1rem 1.1rem 1.2rem;
  font-family: "Manrope", sans-serif;
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: 0;
}

.band-wall {
  width: min(var(--max-width), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 0.85fr;
  gap: 1.2rem;
}

.band-shot,
.still-card,
.contact-photo {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), transparent),
    var(--panel);
  box-shadow: var(--shadow);
}

.band-shot img,
.still-card img,
.contact-photo img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.band-shot figcaption,
.still-card figcaption {
  padding: 0.95rem 1rem 1.15rem;
  color: var(--text-soft);
  line-height: 1.6;
}

.band-shot-large {
  grid-row: span 2;
}

.still-grid {
  width: min(var(--max-width), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.still-card figcaption {
  font-size: 0.98rem;
}

.contact-visual-stack {
  display: grid;
  gap: 1rem;
}

.contact-overview,
.form-header {
  display: grid;
  gap: 0.85rem;
}

.contact-overview h2,
.form-header h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.85rem, 2.7vw, 2.45rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: 0.01em;
  color: var(--text);
}

.contact-overview p:not(.panel-kicker),
.form-header p:not(.panel-kicker) {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.contact-summary-row span {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.contact-summary-row a {
  width: fit-content;
  font-weight: 700;
  color: var(--gold-bright);
  border-bottom: 1px solid rgba(244, 207, 120, 0.22);
}

.contact-summary-row p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.65;
}

.contact-shell-refined {
  align-items: start;
}

body[data-page="contactanos"] .contact-shell-refined {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

.contact-social-panel {
  align-content: start;
}

.contact-aside {
  display: grid;
  gap: 1rem;
}

.contact-aside-panel {
  display: grid;
  gap: 1.4rem;
  padding: 1.7rem;
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), transparent),
    var(--panel);
  box-shadow: var(--shadow);
}

.contact-overview-compact {
  padding-bottom: 0.2rem;
}

.contact-overview-compact p:last-child {
  max-width: 28rem;
}

.contact-info-grid {
  display: grid;
  gap: 1rem;
}

.contact-info-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.95rem;
  align-items: start;
  padding: 1.15rem 1.2rem;
  border: 1px solid rgba(244, 207, 120, 0.14);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent),
    linear-gradient(135deg, rgba(186, 130, 40, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(17, 13, 10, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 18px 32px rgba(0, 0, 0, 0.18);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

a.contact-info-card:hover,
a.contact-info-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(244, 207, 120, 0.26);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 24px 42px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(244, 207, 120, 0.06);
  outline: none;
}

.contact-info-icon {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #140d06;
  font-size: 1.12rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 14px 28px rgba(186, 130, 40, 0.18);
}

.contact-info-copy {
  display: grid;
  gap: 0.22rem;
  min-width: 0;
}

.contact-info-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.contact-info-value {
  color: var(--text);
  font-size: 1.16rem;
  line-height: 1.2;
}

.contact-info-note {
  color: var(--text-soft);
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.contact-summary,
.contact-guidance,
.contact-direct-links {
  padding-top: 1.2rem;
  border-top: 1px solid rgba(244, 207, 120, 0.12);
}

.contact-summary {
  display: grid;
  gap: 1rem;
}

.contact-summary-row {
  display: grid;
  gap: 0.3rem;
}

.contact-summary-row strong,
.contact-guidance h3 {
  font-size: 1.2rem;
  color: var(--text);
}

.contact-guidance h3 {
  margin: 0 0 0.8rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  line-height: 1.05;
}

.feature-list-compact {
  gap: 0.85rem;
  margin-top: 0;
}

.feature-list-compact li {
  color: var(--text-soft);
}

.contact-direct-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.contact-social-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-social-link {
  display: grid;
  gap: 0.55rem;
  min-height: 164px;
  padding: 1.15rem;
  border: 1px solid rgba(244, 207, 120, 0.14);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent),
    linear-gradient(135deg, rgba(186, 130, 40, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(17, 13, 10, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 18px 32px rgba(0, 0, 0, 0.18);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.contact-social-link:hover,
.contact-social-link:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(244, 207, 120, 0.26);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 24px 42px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(244, 207, 120, 0.06);
  outline: none;
}

.contact-social-icon {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #140d06;
  font-size: 1.2rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 14px 28px rgba(186, 130, 40, 0.18);
}

.contact-social-link strong {
  font-size: 1.12rem;
  color: var(--text);
}

.contact-social-link span:last-child {
  color: var(--text-soft);
  line-height: 1.55;
  overflow-wrap: anywhere;
}

@media (max-width: 720px) {
  .contact-social-grid {
    grid-template-columns: 1fr;
  }

  .contact-social-link {
    min-height: auto;
  }
}

.contact-photo-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-photo img {
  min-height: 260px;
}

.gallery-item-wide {
  grid-column: span 2;
}

.gallery-item-tall {
  grid-row: span 2;
}

.contact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-shell {
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.form-header {
  display: grid;
  gap: 0.7rem;
  margin-bottom: 0.15rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid rgba(244, 207, 120, 0.12);
}

.contact-form label {
  display: grid;
  gap: 0.5rem;
  font-size: 0.94rem;
}

.choice-group {
  display: grid;
  gap: 0.8rem;
  padding: 1rem 1.05rem 1.05rem;
  border: 1px solid rgba(244, 207, 120, 0.14);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.03), transparent),
    rgba(255, 255, 255, 0.025);
}

.booking-scope-chooser {
  gap: 0.95rem;
}

.choice-group p {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.choice-group-note {
  margin: 0;
  max-width: 42rem;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(219, 200, 161, 0.82);
}

.choice-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.choice-option {
  position: relative;
  display: block;
  cursor: pointer;
}

.choice-option input[type="radio"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.choice-option-ui {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.85rem;
  min-height: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(244, 207, 120, 0.14);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent),
    rgba(12, 10, 8, 0.76);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.choice-option-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(244, 207, 120, 0.16);
  border-radius: 14px;
  background: rgba(244, 207, 120, 0.08);
  color: var(--gold-bright);
  font-size: 0.95rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.choice-option-copy {
  display: grid;
  gap: 0.2rem;
}

.choice-option-copy strong {
  font-size: 1rem;
  line-height: 1.1;
  color: var(--text);
}

.choice-option-copy span {
  color: var(--text-soft);
  font-size: 0.82rem;
  line-height: 1.45;
}

.choice-option:hover .choice-option-ui,
.choice-option:focus-within .choice-option-ui {
  transform: translateY(-2px);
  border-color: rgba(244, 207, 120, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent),
    rgba(14, 11, 8, 0.88);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.18);
}

.choice-option:has(input:checked) .choice-option-ui {
  border-color: rgba(244, 207, 120, 0.38);
  background:
    linear-gradient(145deg, rgba(244, 207, 120, 0.12), transparent 60%),
    rgba(18, 14, 10, 0.92);
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(244, 207, 120, 0.08);
}

.choice-option:has(input:checked) .choice-option-icon {
  border-color: rgba(244, 207, 120, 0.34);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #140d06;
}

.choice-option:has(input:checked) .choice-option-copy strong {
  color: var(--gold-pale);
}

.booking-fields[hidden],
.scope-panel[hidden] {
  display: none;
}

.booking-fields {
  display: grid;
  gap: 1rem;
}

.booking-fields.is-active {
  animation: bookingFieldsIn 220ms ease;
}

.location-other-field[hidden] {
  display: none;
}

.location-other-field {
  max-width: min(32rem, 100%);
}

.form-row-scope-detail {
  grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1.12fr);
  align-items: start;
}

.scope-panel {
  padding: 1rem 1.05rem 1.05rem;
  border: 1px solid rgba(244, 207, 120, 0.14);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.03), transparent),
    rgba(255, 255, 255, 0.025);
}

.scope-panel label {
  display: grid;
  gap: 0.5rem;
}

.form-row-event {
  grid-template-columns: minmax(320px, 1.05fr) minmax(0, 1fr);
  align-items: start;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(244, 207, 120, 0.14);
  border-radius: 18px;
  padding: 1rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.custom-select-shell {
  position: relative;
  display: grid;
}

.contact-form .select-native {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.001;
  pointer-events: none;
}

.custom-select {
  position: relative;
  display: grid;
}

.custom-select-trigger {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  min-height: 58px;
  padding: 0.95rem 1rem 0.95rem 1.05rem;
  border: 1px solid rgba(244, 207, 120, 0.18);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent),
    linear-gradient(135deg, rgba(186, 130, 40, 0.09), rgba(255, 255, 255, 0.02)),
    rgba(18, 14, 10, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 12px 24px rgba(0, 0, 0, 0.16);
  color: var(--text);
  cursor: pointer;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease,
    background-color 180ms ease;
}

.custom-select:hover .custom-select-trigger,
.custom-select.is-open .custom-select-trigger,
.custom-select.is-invalid .custom-select-trigger,
.custom-select-trigger:focus-visible {
  border-color: rgba(244, 207, 120, 0.3);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 18px 34px rgba(0, 0, 0, 0.22),
    0 0 0 4px rgba(244, 207, 120, 0.08);
  transform: translateY(-1px);
  outline: none;
}

.custom-select.is-invalid .custom-select-trigger {
  border-color: rgba(255, 139, 107, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 18px 34px rgba(0, 0, 0, 0.18),
    0 0 0 4px rgba(255, 139, 107, 0.12);
}

.custom-select.is-disabled .custom-select-trigger {
  opacity: 0.56;
  cursor: not-allowed;
  transform: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.custom-select-value {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: left;
  font-weight: 700;
  color: var(--text);
}

.custom-select:not(.has-value) .custom-select-value {
  color: rgba(219, 200, 161, 0.76);
}

.custom-select-caret {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(244, 207, 120, 0.16);
  border-radius: 12px;
  background: rgba(244, 207, 120, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.custom-select-caret::before {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--gold-bright);
  border-bottom: 2px solid var(--gold-bright);
  transform: translateY(-1px) rotate(45deg);
  transition: transform 180ms ease;
}

.custom-select.is-open .custom-select-caret::before {
  transform: translateY(2px) rotate(-135deg);
}

.custom-select-dropdown {
  position: absolute;
  top: calc(100% + 0.65rem);
  left: 0;
  right: 0;
  z-index: 30;
  display: grid;
  gap: 0.7rem;
  max-height: 320px;
  padding: 0.8rem;
  overflow: auto;
  border: 1px solid rgba(244, 207, 120, 0.16);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(244, 207, 120, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent),
    rgba(12, 9, 7, 0.98);
  box-shadow:
    0 26px 54px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(244, 207, 120, 0.06);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px) scale(0.985);
  transform-origin: top center;
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 180ms ease;
}

.custom-select.is-open .custom-select-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.custom-select-dropdown::-webkit-scrollbar {
  width: 10px;
}

.custom-select-dropdown::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
}

.custom-select-dropdown::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(244, 207, 120, 0.68), rgba(186, 130, 40, 0.92));
  border-radius: 999px;
  border: 2px solid rgba(12, 9, 7, 0.96);
}

.custom-select-group {
  display: grid;
  gap: 0.35rem;
}

.custom-select-group-label {
  margin: 0;
  padding: 0.2rem 0.35rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.custom-select-option {
  display: grid;
  gap: 0.15rem;
  width: 100%;
  padding: 0.8rem 0.9rem;
  border: 1px solid transparent;
  border-radius: 18px;
  background: transparent;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.custom-select-option:hover,
.custom-select-option:focus-visible {
  border-color: rgba(244, 207, 120, 0.22);
  background:
    linear-gradient(135deg, rgba(244, 207, 120, 0.12), transparent 70%),
    rgba(255, 255, 255, 0.03);
  color: var(--gold-pale);
  transform: translateX(2px);
  outline: none;
}

.custom-select-option.is-selected {
  border-color: rgba(244, 207, 120, 0.26);
  background:
    linear-gradient(135deg, rgba(244, 207, 120, 0.16), transparent 68%),
    rgba(31, 24, 17, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 10px 20px rgba(0, 0, 0, 0.14);
}

.custom-select-option:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

.custom-select-option.is-placeholder {
  color: rgba(219, 200, 161, 0.74);
}

.custom-select-option-meta {
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 207, 120, 0.72);
}

.custom-select-option-label {
  font-weight: 700;
  line-height: 1.3;
}

.contact-form select {
  appearance: none;
  color-scheme: dark;
  min-height: 58px;
  padding-right: 4rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    inset 0 -1px 0 rgba(244, 207, 120, 0.04);
  background-color: rgba(255, 255, 255, 0.03);
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent),
    radial-gradient(circle at calc(100% - 28px) 50%, rgba(244, 207, 120, 0.12), transparent 24%),
    linear-gradient(135deg, rgba(186, 130, 40, 0.08), rgba(255, 255, 255, 0.025)),
    linear-gradient(45deg, transparent 50%, var(--gold-bright) 50%),
    linear-gradient(135deg, var(--gold-bright) 50%, transparent 50%),
    linear-gradient(180deg, rgba(244, 207, 120, 0.14), rgba(244, 207, 120, 0.02));
  background-position:
    0 0,
    0 0,
    0 0,
    calc(100% - 24px) calc(50% - 4px),
    calc(100% - 18px) calc(50% - 4px),
    calc(100% - 46px) 50%;
  background-size: 100% 100%, 100% 100%, 100% 100%, 7px 7px, 7px 7px, 1px 58%;
  background-repeat: no-repeat;
  outline: none;
}

.contact-form select:hover {
  border-color: rgba(244, 207, 120, 0.24);
  background-color: rgba(255, 255, 255, 0.045);
}

.contact-form select option {
  padding: 0.8rem 1rem;
  color: var(--text);
  background-color: #17120d;
  font-weight: 600;
}

.contact-form select optgroup {
  color: var(--gold-bright);
  font-weight: 800;
  background-color: #110d08;
}

.contact-form select option:checked,
.contact-form select option:hover,
.contact-form select option:focus {
  color: var(--gold-pale);
  background: linear-gradient(135deg, rgba(244, 207, 120, 0.18), rgba(30, 22, 15, 0.96));
}

.contact-form input:disabled,
.contact-form select:disabled,
.contact-form textarea:disabled {
  opacity: 0.56;
  cursor: not-allowed;
}

.input-with-icon {
  position: relative;
  display: grid;
  align-items: center;
}

.input-with-icon input {
  padding-left: 2.6rem;
}

.input-with-icon input[type="date"],
.input-with-icon input[type="time"] {
  color-scheme: dark;
  padding-right: 2.8rem;
}

.contact-form input[type="date"]::-webkit-datetime-edit,
.contact-form input[type="time"]::-webkit-datetime-edit {
  color: var(--text);
}

.contact-form input[type="date"]::-webkit-datetime-edit-fields-wrapper,
.contact-form input[type="time"]::-webkit-datetime-edit-fields-wrapper {
  padding: 0;
}

.contact-form input[type="date"]::-webkit-datetime-edit-year-field,
.contact-form input[type="date"]::-webkit-datetime-edit-month-field,
.contact-form input[type="date"]::-webkit-datetime-edit-day-field,
.contact-form input[type="time"]::-webkit-datetime-edit-hour-field,
.contact-form input[type="time"]::-webkit-datetime-edit-minute-field,
.contact-form input[type="time"]::-webkit-datetime-edit-ampm-field {
  border-radius: 10px;
  padding: 0.15rem 0.35rem;
  transition: background-color 180ms ease, color 180ms ease;
}

.contact-form input[type="date"]::-webkit-datetime-edit-year-field:focus,
.contact-form input[type="date"]::-webkit-datetime-edit-month-field:focus,
.contact-form input[type="date"]::-webkit-datetime-edit-day-field:focus,
.contact-form input[type="time"]::-webkit-datetime-edit-hour-field:focus,
.contact-form input[type="time"]::-webkit-datetime-edit-minute-field:focus,
.contact-form input[type="time"]::-webkit-datetime-edit-ampm-field:focus {
  background: rgba(244, 207, 120, 0.14);
  color: var(--gold-pale);
}

.contact-form input[type="date"]::-webkit-datetime-edit-text,
.contact-form input[type="time"]::-webkit-datetime-edit-text {
  color: rgba(244, 207, 120, 0.72);
}

.input-icon {
  position: absolute;
  left: 0.95rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-bright);
  font-size: 0.95rem;
  pointer-events: none;
}

.contact-form input[type="date"]::-webkit-calendar-picker-indicator,
.contact-form input[type="time"]::-webkit-calendar-picker-indicator {
  opacity: 0.92;
  cursor: pointer;
  filter: invert(84%) sepia(23%) saturate(679%) hue-rotate(349deg) brightness(103%) contrast(95%);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(219, 200, 161, 0.72);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--line-strong);
  box-shadow: 0 0 0 4px rgba(244, 207, 120, 0.08);
  background: rgba(255, 255, 255, 0.045);
}

.form-note,
.form-response {
  margin: 0;
  font-size: 0.92rem;
}

.form-response {
  min-height: 1.4rem;
  color: var(--gold-bright);
}

.site-footer {
  display: grid;
  gap: 1.2rem;
  justify-items: center;
  text-align: center;
  padding: 1rem 1.5rem 2.4rem;
  border-top: 1px solid rgba(244, 207, 120, 0.1);
  background:
    radial-gradient(circle at top center, rgba(244, 207, 120, 0.08), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 72%);
}

.footer-signature {
  display: grid;
  justify-items: center;
  gap: 0;
}

.footer-emblem {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border-radius: 28px;
  border: 1px solid rgba(244, 207, 120, 0.16);
  background:
    radial-gradient(circle at 30% 20%, rgba(244, 207, 120, 0.12), transparent 40%),
    linear-gradient(145deg, rgba(18, 15, 11, 0.98), rgba(9, 7, 5, 0.96));
  color: var(--gold-bright);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 18px 36px rgba(0, 0, 0, 0.22);
}

.footer-emblem::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(244, 207, 120, 0.1);
  border-radius: 22px;
  pointer-events: none;
}

.footer-emblem-mark {
  width: 80%;
  height: 80%;
  overflow: visible;
}

.footer-emblem-mark path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.24));
}

.footer-emblem-mark path:first-child {
  stroke-width: 30;
}

.footer-emblem-mark path:last-child {
  stroke-width: 36;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 0.4rem;
  max-width: 62rem;
}

.footer-copy {
  margin: 0;
  text-align: center;
  white-space: normal;
  max-width: 42rem;
  font-size: 0.9rem;
}

.footer-meta {
  display: grid;
  justify-items: center;
  gap: 0;
}

.footer-link-clusters {
  display: grid;
  gap: 0.9rem;
  justify-items: center;
}

.footer-link-cluster {
  display: grid;
  gap: 0.45rem;
  justify-items: center;
}

.footer-link-kicker {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
}

.footer-stream-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
}

.footer-stream-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 42px;
  padding: 0.7rem 0.9rem;
  border-radius: 14px;
  border: 1px solid rgba(244, 207, 120, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent),
    rgba(16, 12, 9, 0.9);
  color: var(--text-soft);
  text-decoration: none;
  transition:
    transform 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.footer-stream-link i {
  color: var(--gold-bright);
}

.footer-stream-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.footer-stream-link:hover,
.footer-stream-link:focus-visible {
  transform: translateY(-2px);
  color: var(--text);
  border-color: rgba(244, 207, 120, 0.28);
  box-shadow:
    0 12px 24px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  outline: none;
}

.footer-social-link {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(244, 207, 120, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent),
    rgba(16, 12, 9, 0.9);
  color: var(--text-soft);
  transition:
    transform 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
  transform: translateY(-2px);
  color: var(--text);
  border-color: rgba(244, 207, 120, 0.28);
  box-shadow:
    0 12px 24px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  outline: none;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes equalize {
  0%, 100% {
    transform: scaleY(0.48);
    opacity: 0.76;
  }
  50% {
    transform: scaleY(1.06);
    opacity: 1;
  }
}

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

@keyframes badgePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(244, 207, 120, 0.48);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(244, 207, 120, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(244, 207, 120, 0);
  }
}

@keyframes badgeFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

@keyframes badgeSheen {
  from {
    transform: translateX(-130%);
  }
  to {
    transform: translateX(130%);
  }
}

@keyframes goldShimmer {
  from {
    background-position: 0% 50%;
  }
  to {
    background-position: 220% 50%;
  }
}

@keyframes navSweep {
  0%, 78% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(120%);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1180px) {
  .timeline-item {
    grid-template-columns: minmax(0, 1fr) 96px minmax(0, 1fr);
  }

  .timeline-postcard {
    max-width: 280px;
  }

  .member-roster-intro {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .member-roster-badges {
    justify-content: flex-start;
  }

  .member-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .nav-shell {
    gap: 0.8rem;
    padding-inline: 0.9rem;
  }

  .site-nav {
    padding-inline: 0.35rem;
  }

  .site-nav a:not(.header-cta) {
    padding-inline: 0.76rem;
    font-size: 0.69rem;
  }

  .brand-center {
    width: clamp(108px, 9vw, 132px);
  }

  .header-center-stack {
    gap: 0.5rem;
  }

  .header-cta-desktop {
    padding-inline: 0.92rem;
    font-size: 0.68rem;
  }
}

@media (max-width: 980px) {
  .timeline-head {
    margin-bottom: 2rem;
  }

  .band-timeline {
    gap: 1.35rem;
    padding-top: 0.2rem;
  }

  .band-timeline::before {
    display: none;
  }

  .timeline-item {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.9rem;
    grid-template-areas:
      "marker"
      "content"
      "postcard";
  }

  .timeline-marker {
    grid-area: marker;
    grid-template-columns: auto auto;
    justify-content: start;
    align-items: center;
    justify-items: start;
    gap: 0.7rem;
    padding: 0 0.15rem;
  }

  .timeline-year {
    writing-mode: initial;
    transform: none;
    min-height: 34px;
    min-width: 0;
    padding: 0.58rem 0.85rem 0.54rem;
    font-size: 0.62rem;
    letter-spacing: 0.16em;
  }

  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    grid-area: content;
  }

  .timeline-item:nth-child(odd) .timeline-postcard,
  .timeline-item:nth-child(even) .timeline-postcard {
    grid-area: postcard;
    justify-self: stretch;
    width: 100%;
    max-width: none;
    margin: 0;
    transform: rotate(0deg);
  }

  .timeline-postcard img {
    aspect-ratio: 16 / 10;
    object-position: center 32%;
  }

  .timeline-content h3 {
    max-width: none;
  }

  body.has-global-player .site-shell {
    padding-bottom: 6.4rem;
  }

  .global-player {
    right: 0.85rem;
    bottom: 0.85rem;
  }

  .global-player-shell {
    gap: 0.65rem;
  }

  .global-booking-button,
  .global-player-trigger {
    min-height: 58px;
  }

  .global-booking-button {
    width: 58px;
    min-width: 58px;
  }

  .global-player-trigger {
    width: 58px;
    height: 58px;
    min-width: 58px;
    min-height: 58px;
  }

  .global-player-drawer {
    width: min(510px, calc(100vw - 7rem));
  }

  .global-player-drawer-panel {
    gap: 0.8rem;
    padding: 0.9rem 0.95rem;
  }

  .global-player-drawer-art {
    min-height: 168px;
  }

  .global-player-drawer-copy strong {
    font-size: 0.92rem;
  }

  .global-player-drawer-copy > span:last-child {
    font-size: 0.72rem;
  }

  .player-modal-layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .player-modal-art {
    min-height: 320px;
    border-right: 0;
    border-bottom: 1px solid rgba(244, 207, 120, 0.1);
  }

  .player-modal-copy {
    padding: 1.6rem;
  }

  .player-modal-track-title {
    font-size: clamp(2.8rem, 8vw, 5rem);
  }

  .player-modal-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .player-modal-playlist {
    max-height: min(340px, 34vh);
  }

  .page-hero-grid,
  .audio-player-stage,
  .content-grid-two,
  .contact-shell,
  .video-grid,
  .preview-grid,
  .card-grid-three,
  .info-grid,
  .article-grid,
  .contact-grid,
  .home-release-grid,
  .home-showcase-grid,
  .home-booking-panel,
  .spotify-panel {
    grid-template-columns: 1fr;
  }

  .step-grid,
  .card-grid-two,
  .hero-mini-grid,
  .audio-playlist,
  .contact-direct-links,
  .form-row,
  .gallery-mosaic,
  .band-wall,
  .still-grid,
  .contact-photo-stack,
  .home-route-grid {
    grid-template-columns: 1fr 1fr;
  }

  .form-row-event,
  .form-row-scope-detail {
    grid-template-columns: 1fr;
  }

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

  .home-news-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .member-card {
    aspect-ratio: 4 / 5;
  }

  .gallery-item-wide,
  .gallery-item-tall,
  .band-shot-large {
    grid-column: span 1;
    grid-row: span 1;
  }

  .floating-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 1rem;
  }

  .hero-wordmark {
    top: 0.8rem;
    font-size: clamp(3.8rem, 15vw, 7rem);
  }

  .hero-stage-photo {
    min-height: 520px;
    background-position: center 22%;
  }

  .page-hero-home .page-hero-grid {
    min-height: 700px;
    background-position: center 36%;
    padding: 0.9rem 1rem;
  }

  .page-hero-about .page-hero-grid {
    min-height: 680px;
    background-position: center 48%;
    padding: 2rem 1.2rem;
  }

  .hero-main-layout {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .hero-foreground {
    padding: 0 0.25rem 0.4rem;
  }

  .hero-photo-showcase {
    min-height: 520px;
  }

  .hero-photo-showcase img {
    min-height: 520px;
    object-position: center 24%;
  }

  .hero-tag-track {
    gap: 1.3rem;
    padding: 0.8rem 1rem;
    font-size: clamp(1rem, 2.8vw, 1.25rem);
  }

  .hero-band-photo img {
    height: clamp(340px, 58vw, 520px);
  }

  .hero-band-overlay {
    max-width: 26rem;
  }

  .home-release-cover {
    min-height: 420px;
  }

  .home-showcase-feature {
    min-height: 460px;
  }

  .home-events-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-showcase-stack {
    grid-template-rows: none;
  }

  .home-booking-actions {
    justify-content: flex-start;
  }

  .spotify-panel-actions {
    justify-content: flex-start;
  }

  .page-hero-home::before {
    inset: 0 0.7rem 1.5rem;
  }

  .audio-player-cover {
    min-height: 360px;
  }

  .site-footer {
    padding: 1rem 1rem 2rem;
  }

  .footer-nav,
  .footer-copy {
    justify-content: center;
    text-align: center;
  }

  .footer-meta {
    justify-items: center;
  }

  .footer-link-clusters {
    gap: 0.8rem;
  }

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

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

  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 980px) {
  .home-events-head,
  .home-news-head {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .events-page-grid {
    grid-template-columns: 1fr;
  }

  .event-highlight-card {
    grid-template-rows: minmax(220px, 240px) auto;
  }

  .event-highlight-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .event-card-cta {
    width: 100%;
    justify-content: center;
  }

  .event-share-toolbar {
    justify-content: flex-start;
  }

  .event-modal-layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .event-modal-media {
    aspect-ratio: 16 / 10;
    min-height: 220px;
    max-height: 280px;
  }

  .event-modal-headline {
    padding-right: 4.1rem;
  }

  .event-modal-details-grid {
    grid-template-columns: 1fr;
  }

  .nav-shell {
    display: flex;
    justify-content: center;
    padding: 0.85rem 1rem;
  }

  .site-nav-desktop {
    display: none;
  }

  .header-center-stack {
    gap: 0;
  }

  .brand-center {
    width: 116px;
    padding: 0.6rem;
  }

  .header-cta-desktop {
    display: none;
  }

  .menu-toggle {
    position: absolute;
    right: 1rem;
    top: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
  }

  .site-nav-mobile {
    position: absolute;
    top: calc(100% + 0.65rem);
    left: 0;
    right: 0;
    display: grid;
    justify-content: stretch;
    gap: 0.25rem;
    padding: 0.7rem;
    border-radius: 24px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent),
      rgba(8, 7, 5, 0.96);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .site-nav-mobile.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav-mobile a:not(.header-cta) {
    padding: 0.95rem 1rem 1.05rem;
    border-radius: 18px;
  }

  .site-nav-mobile a:not(.header-cta)::after {
    left: 1rem;
    right: 1rem;
  }

  .site-nav-mobile .header-cta {
    width: 100%;
    margin-top: 0.35rem;
  }
}

@media (max-width: 760px) {
  body.has-global-player .site-shell {
    padding-bottom: 7.4rem;
  }

  .player-modal {
    padding: 0;
  }

  .event-modal-dialog {
    width: min(100% - 1rem, 1120px);
    max-height: calc(100vh - 1rem);
    margin: 0.5rem auto;
    border-radius: 28px;
  }

  .event-modal-copy {
    padding: 1.25rem 1rem 1.1rem;
  }

  .event-modal-headline h2,
  #event-modal-title {
    max-width: none;
    font-size: clamp(1.2rem, 6vw, 1.8rem);
    line-height: 0.94;
  }

  .player-modal-dialog {
    width: 100vw;
    max-height: 100dvh;
    min-height: 100dvh;
    border-radius: 0;
  }

  .player-modal-copy {
    padding: 1.2rem 1rem calc(1rem + env(safe-area-inset-bottom));
  }

  .player-modal-track-title {
    font-size: clamp(2.35rem, 10vw, 4.2rem);
  }

  .player-modal-progress-shell {
    grid-template-columns: 1fr;
  }

  .player-modal-toolbar,
  .player-modal-primary-controls,
  .player-modal-secondary-controls {
    gap: 0.65rem;
  }

  .global-player {
    left: auto;
    right: max(0.7rem, env(safe-area-inset-right));
    bottom: max(0.7rem, env(safe-area-inset-bottom));
    transform: none;
  }

  .global-player-shell {
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 0.55rem;
  }

  .global-player-row {
    justify-content: flex-end;
  }

  .global-booking-button,
  .global-player-trigger {
    min-height: 54px;
  }

  .global-booking-button {
    width: 54px;
    min-width: 54px;
    padding-inline: 0;
    font-size: 0.64rem;
  }

  .global-player-trigger {
    width: 56px;
    height: 56px;
    min-width: 56px;
    min-height: 56px;
  }

  .global-player-drawer {
    left: auto;
    right: 0;
    bottom: calc(100% + 0.65rem);
    width: min(calc(100vw - 1.4rem), 360px);
    transform: translateY(14px) scale(0.96);
    transform-origin: right bottom;
  }

  .global-player.is-open .global-player-drawer {
    transform: translateY(0) scale(1);
  }

  body[data-page="contactanos"] .global-booking-button {
    display: none;
  }

  .global-player-drawer-head {
    gap: 0.65rem;
  }

  .global-player-drawer-panel {
    grid-template-columns: 1fr;
    padding: 0.88rem 0.9rem 0.9rem;
    border-radius: 24px;
  }

  .global-player-drawer-art {
    display: none;
  }

  .global-player-drawer-copy strong {
    font-size: 0.86rem;
  }

  .global-player-drawer-copy > span:last-child {
    font-size: 0.69rem;
  }

  .booking-modal {
    padding: 0.7rem;
  }

  .booking-modal-head,
  .booking-modal-form {
    padding-inline: 1rem;
  }

  .booking-modal-head h2 {
    max-width: 12ch;
    font-size: clamp(1.9rem, 8vw, 2.9rem);
  }

  .section {
    padding: 0 1rem 4.4rem;
  }

  .site-header {
    padding: 0.8rem 0.8rem 0;
  }

  .nav-shell {
    padding: 0.75rem 0.8rem;
  }

  .brand-center {
    width: 102px;
    padding: 0.52rem;
  }

  .menu-toggle {
    right: 0.8rem;
  }

  .page-title,
  .section-head h2 {
    max-width: 100%;
    font-size: clamp(2.6rem, 11.5vw, 4.4rem);
  }

  .page-hero-home .page-title {
    max-width: 100%;
    font-size: clamp(2.7rem, 9.5vw, 4rem);
  }

  .home-release-copy h2,
  .home-booking-copy h2 {
    max-width: 100%;
    font-size: clamp(2.4rem, 8vw, 3.8rem);
  }

  .page-hero-home .page-hero-grid {
    min-height: 640px;
  }

  .page-hero-about .page-hero-grid {
    min-height: 620px;
    background-position: center 50%;
  }

  .page-hero-home .page-hero-copy,
  .page-hero-home .page-hero-copy-centered {
    justify-items: center;
    text-align: center;
  }

  .hero-copy-home {
    justify-items: center;
  }

  .page-hero-home .lead {
    margin-inline: auto;
  }

  .hero-kicker-line {
    max-width: 32rem;
    text-align: center;
  }

  .page-hero-home .hero-actions-centered,
  .page-hero-home .hero-band-meta {
    justify-content: center;
  }

  .hero-photo-overlay {
    left: 1rem;
    right: auto;
    bottom: 1rem;
    max-width: 20rem;
    padding: 0.9rem 0.95rem;
  }

  .hero-photo-overlay strong {
    font-size: 1.45rem;
  }

  .home-showcase-feature h3,
  .home-showcase-card h3 {
    font-size: clamp(1.85rem, 6vw, 2.5rem);
  }

  .hero-tag-marquee {
    border-radius: 28px;
  }

  .hero-band-overlay {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    max-width: none;
    padding: 1rem 1rem 1.05rem;
  }

  .hero-band-overlay h2 {
    font-size: clamp(1.7rem, 6vw, 2.5rem);
  }

  .ticker {
    margin-bottom: 4.5rem;
  }

  .hero-parallax-right {
    width: 16rem;
    height: 16rem;
    right: -5rem;
    top: 6%;
  }

  .hero-wordmark {
    font-size: clamp(3.5rem, 18vw, 5.5rem);
    top: 3rem;
    letter-spacing: 0.1em;
  }

  .page-hero-home .hero-minimal-stage {
    min-height: 720px;
    padding: 1rem;
    background-position: center 30%;
  }

  .page-hero-home .hero-minimal-stage::after {
    inset: 0.95rem;
    border-radius: 28px;
  }

  .hero-foreground-minimal {
    justify-content: flex-end;
    gap: 1.15rem;
    padding: 1rem 0.2rem 1.25rem;
  }

  .page-hero-home .hero-copy-home-minimal {
    max-width: 31rem;
    justify-items: start;
    text-align: left;
  }

  .page-hero-home .hero-copy-home-minimal .page-title {
    max-width: 8.5ch;
    font-size: clamp(3rem, 9vw, 5rem);
  }

  .page-hero-home .hero-copy-home-minimal .lead {
    max-width: 27rem;
    margin-inline: 0;
  }

  .hero-minimal-meta {
    justify-content: flex-start;
    gap: 0.75rem 1rem;
  }
}

@media (max-width: 640px) {
  .timeline-content {
    gap: 0.72rem;
    padding: 1.05rem 1rem 1.08rem;
    border-radius: 22px;
  }

  .timeline-content::before {
    top: 0.72rem;
    right: 0.8rem;
    font-size: clamp(2.3rem, 12vw, 3.5rem);
  }

  .timeline-content h3 {
    font-size: clamp(1.45rem, 7vw, 2rem);
  }

  .timeline-postcard {
    width: 100%;
    padding: 0.68rem 0.68rem 0.82rem;
    border-radius: 22px;
  }

  .timeline-postcard::before {
    inset: 0.58rem;
    border-radius: 16px;
  }

  .timeline-postcard::after {
    width: 58px;
    height: 14px;
  }

  .timeline-postcard img {
    aspect-ratio: 16 / 10;
  }

  .timeline-postcard figcaption {
    margin-top: 0.72rem;
    font-size: 0.74rem;
    line-height: 1.52;
  }

  .timeline-tags {
    gap: 0.55rem;
  }

  .timeline-tags span {
    padding: 0.62rem 0.74rem 0.66rem;
    font-size: 0.58rem;
    letter-spacing: 0.12em;
  }

  .choice-group {
    padding: 0.95rem;
    border-radius: 22px;
  }

  .choice-group-note {
    font-size: 0.82rem;
    line-height: 1.55;
  }

  .choice-options {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .choice-option-ui {
    padding: 0.9rem 0.92rem;
  }

  .choice-option-icon {
    width: 40px;
    height: 40px;
  }

  .choice-option-copy strong {
    font-size: 0.95rem;
  }

  .choice-option-copy span {
    font-size: 0.78rem;
  }

  .member-roster-intro {
    gap: 1rem;
    padding: 1.2rem;
    border-radius: 26px;
  }

  .member-roster-copy h3 {
    font-size: clamp(2rem, 11vw, 3.2rem);
  }

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

  .member-card {
    aspect-ratio: 4 / 5;
    border-radius: 24px;
  }

  .member-card::before {
    inset: 0.85rem;
    border-radius: 20px;
  }

  .member-card-copy {
    padding: 0.95rem 0.95rem 1rem;
  }

  .member-card-copy h3 {
    font-size: clamp(1.6rem, 7vw, 2.15rem);
  }

  body.has-global-player .site-shell {
    padding-bottom: 6.5rem;
  }

  .global-player {
    left: auto;
    right: max(0.65rem, env(safe-area-inset-right));
    bottom: max(0.7rem, env(safe-area-inset-bottom));
    transform: none;
  }

  .global-player-shell {
    align-items: flex-end;
    gap: 0.55rem;
  }

  .global-booking-button {
    min-height: 52px;
    width: 52px;
    min-width: 52px;
    padding-inline: 0;
    font-size: 0.6rem;
  }

  .global-booking-button span {
    display: none;
  }

  .global-player-trigger {
    width: 52px;
    height: 52px;
    min-width: 52px;
    min-height: 52px;
  }

  .global-player-trigger-icon {
    font-size: 0.92rem;
  }

  .global-player-trigger-status {
    right: 0.72rem;
    bottom: 0.7rem;
  }

  .global-player-drawer {
    right: 0;
    width: min(calc(100vw - 1.3rem), 330px);
  }

  .global-player-drawer-panel {
    gap: 0.75rem;
    padding: 0.82rem 0.82rem 0.85rem;
  }

  .global-player-mini-progress-shell {
    gap: 0.5rem;
  }

  .global-player-mini-controls {
    gap: 0.5rem;
  }

  .global-player-mini-button {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
  }

  .global-player-mini-button-primary {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
  }

  .player-modal-dialog {
    border-radius: 0;
    max-height: 100dvh;
  }

  .player-modal-art {
    min-height: 220px;
  }

  .player-modal-toolbar {
    align-items: stretch;
  }

  .player-modal-primary-controls {
    justify-content: center;
  }

  .player-modal-secondary-controls {
    display: block;
  }

  .track-platform-links-current .track-platform-link {
    min-width: 42px;
    min-height: 42px;
    padding: 0;
  }

  .track-platform-links-current .track-platform-link span {
    display: none;
  }

  .booking-modal-dialog {
    border-radius: 24px;
  }

  .booking-modal-head {
    padding-top: 1.1rem;
  }

  .booking-modal-close {
    position: relative;
    top: 0;
    float: none;
    margin: 0.85rem 0.85rem 0 auto;
  }

  .hero-actions,
  .home-booking-actions,
  .spotify-panel-actions,
  .spotify-inline-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .platform-link-strip {
    flex-direction: column;
    align-items: stretch;
  }

  .event-highlight-copy {
    padding: 1.15rem 1.05rem 1.2rem;
  }

  .event-highlight-topline {
    align-items: flex-start;
    flex-direction: column;
  }

  .event-highlight-meta {
    gap: 0.5rem;
  }

  .event-highlight-meta span {
    width: 100%;
    justify-content: flex-start;
  }

  .event-share-toolbar {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .event-share-link {
    width: 100%;
    border-radius: 16px;
  }

  .footer-stream-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .footer-stream-link {
    width: 100%;
    justify-content: center;
  }

  .button,
  .hero-actions .button {
    width: 100%;
  }

  .hero-mini-grid,
  .step-grid,
  .card-grid-two,
  .gallery-mosaic,
  .contact-direct-links,
  .form-row,
  .band-wall,
  .still-grid,
  .contact-photo-stack,
  .home-route-grid {
    grid-template-columns: 1fr;
  }

  .contact-aside-panel,
  .contact-form {
    padding: 1.3rem;
  }

  .preview-card,
  .video-card,
  .media-card,
  .gallery-item img {
    min-height: 260px;
  }

  .hero-signal-row {
    gap: 0.6rem;
  }

  .hero-live-pill,
  .hero-hash-pill {
    width: 100%;
    justify-content: center;
  }

  .page-hero-home .page-hero-grid {
    min-height: 560px;
    background-position: center 38%;
    padding-inline: 0.85rem;
  }

  .page-hero-about .page-hero-grid {
    min-height: 540px;
    padding: 1.6rem 0.85rem;
    background-position: center 52%;
  }

  .page-hero-about .page-hero-grid::after {
    inset: 0.85rem;
    border-radius: 24px;
  }

  .page-hero-about .page-title {
    max-width: 100%;
    font-size: clamp(2.7rem, 10vw, 4.2rem);
  }

  .page-hero-about .page-hero-copy {
    max-width: min(100%, 22rem);
  }

  .page-hero-about .lead {
    max-width: 19rem;
    margin-top: 0.9rem;
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .page-hero-about .hero-copy-desktop {
    display: none;
  }

  .page-hero-about .hero-copy-mobile {
    display: inline;
  }

  .hero-main-layout {
    gap: 1rem;
  }

  .hero-kicker-line {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }

  .hero-photo-showcase {
    min-height: 440px;
    border-radius: 28px;
  }

  .hero-photo-showcase img {
    min-height: 440px;
    object-position: center 24%;
  }

  .hero-photo-overlay {
    gap: 0.4rem;
    max-width: 16.5rem;
    padding: 0.78rem 0.82rem;
    border-radius: 22px;
  }

  .hero-proof-tile {
    padding: 0.85rem 0.9rem;
  }

  .hero-proof-tile strong {
    font-size: 1.12rem;
  }

  .hero-tag-track {
    gap: 1rem;
    font-size: 0.98rem;
    letter-spacing: 0.12em;
  }

  .hero-band-photo {
    border-radius: 28px;
  }

  .hero-band-photo img {
    height: 320px;
  }

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

  .hero-foreground {
    gap: 1rem;
    padding: 0;
  }

  .home-release-cover {
    min-height: 320px;
  }

  .home-release-cover-copy,
  .home-showcase-copy,
  .home-showcase-card,
  .home-booking-panel,
  .spotify-panel {
    padding: 1rem;
  }

  .home-showcase-feature {
    min-height: 380px;
    padding: 1rem;
  }

  .home-showcase-card {
    min-height: 190px;
  }

  .hero-wordmark {
    display: none;
  }

  .page-hero-home::before {
    inset: 0 0.45rem 1.1rem;
  }

  .hero-stage-photo {
    min-height: 420px;
    padding: 1.1rem;
  }

  .hero-stage-copy h2 {
    font-size: clamp(1.8rem, 9vw, 2.8rem);
  }

  .page-hero-home .hero-stage-copy {
    margin: 0;
    padding: 1rem 1rem 1.05rem;
  }

  .hero-stage-badge {
    width: min(78%, 220px);
  }

  .floating-card-image {
    height: 112px;
  }

  .audio-controls {
    justify-content: center;
  }

  .audio-control-button,
  .audio-play-button {
    width: 3.7rem;
    height: 3.7rem;
  }

  .audio-play-button {
    width: 4.2rem;
    height: 4.2rem;
  }

  .audio-progress-shell {
    grid-template-columns: 1fr;
  }

  .audio-time {
    display: flex;
    justify-content: space-between;
  }
}

@media (max-width: 420px) {
  body.has-global-player .site-shell {
    padding-bottom: 6.4rem;
  }

  .global-player-shell {
    gap: 0.45rem;
  }

  .global-booking-button {
    min-width: 52px;
    width: 52px;
    padding-inline: 0;
  }

  .global-player-trigger {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
  }

  .global-player-drawer {
    width: min(94vw, 304px);
  }

  .global-player-drawer-copy strong {
    font-size: 0.8rem;
  }

  .global-player-drawer-copy > span:last-child {
    font-size: 0.66rem;
  }
}

body[data-page]:not([data-page="inicio"]) {
  --internal-hero-image: url("images/eventos/17.jpg");
  --internal-hero-position: center 40%;
  --internal-hero-position-mobile: center 42%;
  --internal-hero-copy-max: 35rem;
  --internal-hero-lead-max: 28rem;
  --internal-hero-title-max: 11ch;
}

body[data-page="nosotros"] {
  --internal-hero-image: url("images/eventos/40.jpg");
  --internal-hero-position: center 54%;
  --internal-hero-position-mobile: center 50%;
  --internal-hero-copy-max: 37rem;
  --internal-hero-lead-max: 29rem;
}

body[data-page="eventos"] {
  --internal-hero-image: url("images/eventos/17.jpg");
  --internal-hero-position: center 38%;
  --internal-hero-position-mobile: center 40%;
}

body[data-page="musica"] {
  --internal-hero-image: url("images/eventos/16.jpg");
  --internal-hero-position: center 38%;
  --internal-hero-position-mobile: center 34%;
  --internal-hero-copy-max: 34rem;
  --internal-hero-lead-max: 26rem;
}

body[data-page="videos"] {
  --internal-hero-image: url("images/musicos/musicos10.jpg");
  --internal-hero-position: center 26%;
  --internal-hero-position-mobile: center 24%;
}

body[data-page="blog"] {
  --internal-hero-image: url("images/eventos/5.jpg");
  --internal-hero-position: center 34%;
  --internal-hero-position-mobile: center 32%;
  --internal-hero-copy-max: 34rem;
}

body[data-page="galeria"] {
  --internal-hero-image: url("images/eventos/14.jpg");
  --internal-hero-position: center 35%;
  --internal-hero-position-mobile: center 34%;
  --internal-hero-copy-max: 34rem;
}

body[data-page="contactanos"] {
  --internal-hero-image: url("images/eventos/45.jpg");
  --internal-hero-position: center 34%;
  --internal-hero-position-mobile: center 34%;
  --internal-hero-copy-max: 32rem;
  --internal-hero-lead-max: 24rem;
}

body[data-page="bolsa-trabajo"] {
  --internal-hero-image: url("images/eventos/13.jpg");
  --internal-hero-position: center 34%;
  --internal-hero-position-mobile: center 32%;
  --internal-hero-copy-max: 33rem;
  --internal-hero-lead-max: 25rem;
}

body[data-page]:not([data-page="inicio"]) .page-hero .page-hero-grid {
  position: relative;
  z-index: 2;
  width: 100vw;
  max-width: none;
  min-height: clamp(560px, 78vh, 760px);
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  gap: 1rem;
  padding: clamp(1.2rem, 2.8vw, 2rem) clamp(1.4rem, 3.6vw, 3rem);
  overflow: hidden;
  border-top: 1px solid rgba(244, 207, 120, 0.14);
  border-bottom: 1px solid rgba(244, 207, 120, 0.14);
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(7, 6, 5, 0.14) 0%, rgba(7, 6, 5, 0.22) 44%, rgba(7, 6, 5, 0.72) 100%),
    linear-gradient(90deg, rgba(7, 6, 5, 0.76) 0%, rgba(7, 6, 5, 0.42) 30%, rgba(7, 6, 5, 0.08) 60%, rgba(7, 6, 5, 0.26) 100%),
    var(--internal-hero-image) var(--internal-hero-position) / cover no-repeat;
  box-shadow: var(--shadow-strong);
}

body[data-page]:not([data-page="inicio"]) .page-hero .page-hero-grid::after {
  content: "";
  position: absolute;
  inset: 0.95rem 1.25rem;
  border: 1px solid rgba(244, 207, 120, 0.07);
  border-radius: 30px;
  pointer-events: none;
}

body[data-page]:not([data-page="inicio"]) .page-hero .page-hero-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.85rem;
  max-width: min(100%, var(--internal-hero-copy-max));
  padding: 0;
}

body[data-page]:not([data-page="inicio"]) .page-hero .page-title {
  margin: 0;
  max-width: var(--internal-hero-title-max);
  font-size: clamp(3rem, 6.2vw, 5.8rem);
  line-height: 0.9;
  text-wrap: balance;
  text-shadow: 0 18px 38px rgba(0, 0, 0, 0.4);
}

body[data-page]:not([data-page="inicio"]) .page-hero .lead {
  max-width: var(--internal-hero-lead-max);
  margin-top: 0;
  font-size: 1rem;
  line-height: 1.68;
  color: rgba(247, 240, 230, 0.88);
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.26);
}

body[data-page]:not([data-page="inicio"]) .page-hero .section-kicker {
  margin-bottom: 0.15rem;
}

body[data-page]:not([data-page="inicio"]) .page-hero .hero-actions {
  margin-top: 1.15rem;
}

body[data-page]:not([data-page="inicio"]) .page-hero .platform-link-strip {
  max-width: min(100%, 40rem);
  margin-top: 0.2rem;
}

body[data-page]:not([data-page="inicio"]) .page-hero .page-hero-visual {
  display: none;
}

@media (max-width: 980px) {
  body[data-page]:not([data-page="inicio"]) .page-hero .page-hero-grid {
    min-height: 620px;
    padding: 1.45rem 1rem;
  }

  body[data-page]:not([data-page="inicio"]) .page-hero .page-title {
    max-width: 10ch;
    font-size: clamp(2.85rem, 8vw, 4.5rem);
  }
}

@media (max-width: 640px) {
  body[data-page]:not([data-page="inicio"]) .page-hero .page-hero-grid {
    min-height: 540px;
    padding: 1.25rem 0.85rem;
    background:
      linear-gradient(180deg, rgba(7, 6, 5, 0.14) 0%, rgba(7, 6, 5, 0.22) 44%, rgba(7, 6, 5, 0.72) 100%),
      linear-gradient(90deg, rgba(7, 6, 5, 0.76) 0%, rgba(7, 6, 5, 0.42) 30%, rgba(7, 6, 5, 0.08) 60%, rgba(7, 6, 5, 0.26) 100%),
      var(--internal-hero-image) var(--internal-hero-position-mobile) / cover no-repeat;
  }

  body[data-page]:not([data-page="inicio"]) .page-hero .page-hero-grid::after {
    inset: 0.85rem;
    border-radius: 24px;
  }

  body[data-page]:not([data-page="inicio"]) .page-hero .page-hero-copy {
    max-width: min(100%, 22rem);
  }

  body[data-page]:not([data-page="inicio"]) .page-hero .page-title {
    max-width: 100%;
    font-size: clamp(2.55rem, 10vw, 4rem);
  }

  body[data-page]:not([data-page="inicio"]) .page-hero .lead {
    max-width: 20rem;
    font-size: 0.96rem;
    line-height: 1.58;
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
