:root {
  --ink: #1A1714;
  --paper: #EDEBE6;
  --copper: #DD7F46;
  --ash: #7A6A58;
  --warm: #F5F2EC;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
.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;
}
html { scroll-behavior: smooth; }
body {
  background: var(--ink);
  color: var(--paper);
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 28px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.4s, padding 0.4s;
}
nav.scrolled {
  background: rgba(26,23,20,0.96);
  padding: 16px 48px;
  border-bottom: 1px solid rgba(221,127,70,0.15);
}
nav:not(.scrolled) .nav-logo img {
  filter: brightness(0) invert(1);
}
.nav-logo img {
  height: 27px;
  width: auto;
  /* White in nav */
  filter: brightness(0) invert(1);
  display: block;
}
.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  color: var(--paper);
  text-decoration: none;
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
  transition: opacity 0.2s, color 0.2s;
}
.nav-links a:hover {
  opacity: 1;
  color: var(--copper);
}
nav:not(.scrolled) .nav-links a,
nav:not(.scrolled) .nav-toggle,
nav:not(.scrolled) .social-link {
  color: #FFFFFF;
}
.nav-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-hamburger{
  display:none;
  align-items:center;
  justify-content:center;
  width:38px;
  height:38px;
  border-radius:10px;
  border:1px solid rgba(221,127,70,0.22);
  background:rgba(221,127,70,0.06);
  color:var(--paper);
  cursor:pointer;
}
.nav-hamburger svg{width:18px;height:18px;display:block}
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  opacity: 0.8;
  transition: opacity 0.2s, color 0.2s;
}
.social-link:hover {
  opacity: 1;
  color: var(--copper);
}
.social-link svg {
  width: 15px;
  height: 15px;
  display: block;
}
.nav-toggle {
  border: none;
  background: transparent;
  color: var(--paper);
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px;
  cursor: pointer;
  transition: color 0.2s, background 0.2s, opacity 0.2s;
  opacity: 0.8;
}
.nav-toggle svg {
  width: 14px;
  height: 14px;
  display: block;
}
.theme-icon {
  position: relative;
  width: 14px;
  height: 14px;
  display: block;
}
.theme-icon svg {
  position: absolute;
  inset: 0;
  transition: opacity 0.2s ease;
}
.lang-flag {
  font-size: 13px;
  line-height: 1;
  display: block;
}
.lang-select{
  position: relative;
  display: inline-flex;
  align-items: center;
}
.lang-toggle{
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.lang-caret{
  font-size: 10px;
  opacity: 0.9;
  transform: translateY(-1px);
}
.lang-menu{
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 160px;
  padding: 8px;
  display: none;
  flex-direction: column;
  gap: 4px;
  border-radius: 14px;
  background: rgba(26,23,20,0.96);
  border: 1px solid rgba(237,235,230,0.12);
  box-shadow: 0 18px 44px rgba(0,0,0,0.38);
  z-index: 140;
}
nav.scrolled .lang-menu{
  background: rgba(26,23,20,0.98);
}
body[data-theme="light"] .lang-menu{
  background: rgba(245,242,236,0.98);
  border-color: rgba(26,23,20,0.10);
  box-shadow: 0 18px 44px rgba(0,0,0,0.14);
}
.lang-select.open .lang-menu{
  display: flex;
}
.lang-option{
  width: 100%;
  text-align: left;
  border: 1px solid rgba(237,235,230,0.10);
  background: rgba(255,255,255,0.04);
  color: var(--paper);
  border-radius: 12px;
  padding: 10px 10px;
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  letter-spacing: 0.06em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.15s, border-color 0.15s, transform 0.15s;
}
.lang-option .flag-svg{
  display: block;
  border-radius: 2px;
  overflow: hidden;
  flex-shrink: 0;
}
body[data-theme="light"] .lang-option{
  background: rgba(26,23,20,0.03);
  border-color: rgba(26,23,20,0.08);
  color: var(--paper);
}
.lang-option:hover{
  background: rgba(221,127,70,0.12);
  border-color: rgba(221,127,70,0.34);
  transform: translateY(-1px);
}
.lang-option span{
  letter-spacing: 0.08em;
}
.theme-icon-sun { opacity: 0; }
.theme-icon-moon { opacity: 1; }
.nav-toggle:hover,
.nav-toggle.active {
  opacity: 1;
  color: var(--paper);
}
.nav-toggle.active .theme-icon-sun { opacity: 1; }
.nav-toggle.active .theme-icon-moon { opacity: 0; }
body[data-theme="light"] {
  --ink: #F5F2EC;
  --paper: #1A1714;
  --copper: #B3927E;
  --ash: #6C5B49;
  --warm: #FFFFFF;
}
body[data-theme="light"] nav.scrolled {
  background: rgba(245,242,236,0.96);
  border-bottom: 1px solid rgba(179,146,126,0.22);
}
body[data-theme="light"] nav.scrolled .nav-logo img,
body[data-theme="light"] .footer-logo img {
  filter: brightness(0) saturate(100%);
}
body[data-theme="light"] .hero-overlay {
  background: linear-gradient(
    to bottom,
    rgba(245,242,236,0.08) 0%,
    rgba(245,242,236,0.0) 35%,
    rgba(245,242,236,0.28) 78%,
    rgba(245,242,236,0.72) 100%
  );
}
body[data-theme="light"] .hero-tagline,
body[data-theme="light"] .hero-scroll,
body[data-theme="light"] .footer-text,
body[data-theme="light"] .audio-track-title,
body[data-theme="light"] .sound-body,
body[data-theme="light"] .band-left p,
body[data-theme="light"] .band-desc,
body[data-theme="light"] .venue-card p,
body[data-theme="light"] .booking-left p,
body[data-theme="light"] .contact-detail {
  color: rgba(26,23,20,0.68);
}
body[data-theme="light"] .hero-tagline {
  color: rgba(255,255,255,0.84);
}
body[data-theme="light"] .hero-scroll-line,
body[data-theme="light"] .video-placeholder,
body[data-theme="light"] .audio-widget,
body[data-theme="light"] .venues-grid,
body[data-theme="light"] .venue-card,
body[data-theme="light"] .contact-card,
body[data-theme="light"] footer,
body[data-theme="light"] .band-section,
body[data-theme="light"] .venues-section {
  border-color: rgba(26,23,20,0.08);
}
body[data-theme="light"] .footer-social .social-link {
  color: rgba(26,23,20,0.72);
}
body[data-theme="light"] .video-placeholder,
body[data-theme="light"] .audio-widget,
body[data-theme="light"] .band-section,
body[data-theme="light"] .venues-section,
body[data-theme="light"] .venue-card:hover {
  background: rgba(26,23,20,0.03);
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.42);
  transform: scale(1.03);
  transition: transform 8s ease-out;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,23,20,0.08) 0%,
    rgba(26,23,20,0.0) 35%,
    rgba(26,23,20,0.28) 78%,
    rgba(26,23,20,0.72) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
/* Logo and tagline share exact same width */
.hero-logo-wrap {
  width: 360px;
  max-width: 72vw;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}
.hero-logo {
  width: 100%;
  /* Copper / orange tint: filter to approximate #DD7F46 */
  filter: brightness(0) saturate(100%) invert(55%) sepia(60%) saturate(600%) hue-rotate(340deg) brightness(1.1);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 1s 0.3s, transform 1s 0.3s;
}
.hero-logo.visible { opacity: 1; transform: translateY(0); }
.hero-tagline {
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.84);
  opacity: 0;
  transition: opacity 1s 0.7s;
  text-align: center;
  /* Full width of parent = same as logo */
  display: block;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
}
.hero-tagline.visible { opacity: 1; }
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
}
.hero-scroll span {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: var(--paper);
  animation: grow 2.5s infinite;
}
@keyframes grow { 0% { height: 0; opacity: 0; } 50% { height: 40px; opacity: 1; } 100% { height: 40px; opacity: 0; } }

/* SECTIONS */
section { padding: 100px 0; }
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}
.section-label {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #B3927E;
  margin-bottom: 20px;
  display: block;
}

/* SOUND */
.sound-section { background: var(--ink); }
.sound-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.sound-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 2.8vw, 29px);
  line-height: 1.3;
  font-style: italic;
  color: var(--paper);
  border-left: 2px solid var(--copper);
  padding-left: 32px;
}
.sound-body {
  color: rgba(237,235,230,0.65);
  font-size: 15px;
  line-height: 1.85;
}
.sound-body p + p { margin-top: 16px; }

/* BAND */
.band-section {
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(237,235,230,0.06);
  border-bottom: 1px solid rgba(237,235,230,0.06);
}
.band-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  align-items: start;
}
.band-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 36px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.2;
  color: var(--paper);
  margin-bottom: 20px;
}
.band-left p {
  color: rgba(237,235,230,0.55);
  font-size: 13px;
  line-height: 1.8;
}
.band-instruments {
  display: flex;
  flex-direction: column;
}
.band-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid rgba(237,235,230,0.06);
}
.band-row:last-child { border-bottom: none; }
.band-marker {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  display: block;
  margin-top: 2px;
  flex-shrink: 0;
  border: 1px solid rgba(237,235,230,0.14);
  box-shadow: 0 0 0 1px rgba(196,98,42,0.08);
}
.band-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-style: italic;
  color: #FE9734;
  margin-bottom: 6px;
  display: block;
}
.band-desc {
  color: rgba(237,235,230,0.55);
  font-size: 13px;
  line-height: 1.7;
}

/* VIDEO */
.video-section { background: var(--ink); }
.video-header {
  text-align: center;
  margin-bottom: 60px;
}
.video-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 36px);
  font-weight: 400;
  font-style: italic;
  color: var(--paper);
}
.video-placeholder {
  position: relative;
  width: 100%;
  max-width: 840px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(237,235,230,0.08);
  overflow: hidden;
}
.video-embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 35%;
  filter: brightness(0.92);
  z-index: 0;
}
.video-embed::-webkit-media-controls-panel {
  background: rgba(26,23,20,0.45);
}
.video-play-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1.5px solid rgba(221,127,70,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--copper);
}
.video-play-icon svg {
  width: 22px; height: 22px;
  margin-left: 4px;
}
.video-caption {
  text-align: center;
  margin-top: 20px;
  background: none;
}
.video-caption strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--paper);
  margin-bottom: 6px;
  text-shadow: none;
}
.video-caption span {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
  opacity: 0.7;
  text-shadow: none;
}
.video-clips{
  width:100%;
  max-width:840px;
  margin:18px auto 0;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:12px;
}
.video-clip{
  position:relative;
  width:100%;
  aspect-ratio:16/9;
  background:rgba(255,255,255,0.03);
  border:1px solid rgba(237,235,230,0.08);
  overflow:hidden;
}
.video-clip-embed{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  display:block;
  border:0;
}
@media (max-width: 560px){
  .video-header{ margin-bottom: 28px; }
  .video-caption{ margin-top: 12px; }
  .video-clips{grid-template-columns:1fr}
  .video-placeholder,
  .video-clips{
    max-width: 100%;
    width: 100%;
  }
}
.audio-widget {
  width: 100%;
  max-width: 840px;
  margin: 32px auto 0;
  padding: 32px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(237,235,230,0.08);
}
.native-live-player {
  margin-top: 4px;
  padding: 0;
  border-radius: 28px;
  outline: none;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(237,235,230,0.08);
  box-shadow: 0 16px 48px rgba(0,0,0,0.18);
  overflow: hidden;
}
.native-live-player:focus-visible {
  box-shadow: 0 16px 48px rgba(0,0,0,0.18), 0 0 0 2px rgba(221,127,70,0.45);
}
body[data-theme="light"] .native-live-player:focus-visible {
  box-shadow: 0 14px 40px rgba(0,0,0,0.08), 0 0 0 2px rgba(179,146,126,0.55);
}
body[data-theme="light"] .native-live-player {
  background: rgba(255,255,255,0.55);
  border-color: rgba(26,23,20,0.09);
  box-shadow: 0 14px 40px rgba(0,0,0,0.08);
}
.native-live-audio-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.native-live-card {
  display: grid;
  grid-template-columns: minmax(200px, 38%) 1fr;
  gap: 0;
  align-items: start;
  min-height: 0;
}
/* Mismo encuadre que imagenes/foto-grupal.png (690 × 805) */
.native-live-art {
  margin: 0;
  position: relative;
  width: 100%;
  align-self: start;
  aspect-ratio: 690 / 805;
  max-height: none;
  background: rgba(0,0,0,0.25);
  overflow: hidden;
  border-top-left-radius: 27px;
}
.native-live-art::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
}
.native-live-art img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.native-live-panel {
  padding: 26px 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  min-width: 0;
  border-top-right-radius: 27px;
}
.native-live-eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 9px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--copper);
  opacity: 0.85;
  margin: 0 0 10px;
}
.native-live-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3.2vw, 28px);
  font-weight: 400;
  font-style: italic;
  color: var(--paper);
  line-height: 1.2;
  margin: 0 0 8px;
  letter-spacing: 0.01em;
}
.native-live-credit {
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(237,235,230,0.52);
  margin: 0 0 10px;
  min-height: 1.2em;
}
.native-live-credit:empty {
  display: none;
}
.native-live-venue {
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(237,235,230,0.45);
  margin: 0 0 22px;
}
.native-live-progress {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.native-live-time {
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(237,235,230,0.5);
  font-variant-numeric: tabular-nums;
}
.native-live-time:last-child {
  text-align: right;
}
.native-live-seek {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 4px;
  background: rgba(237,235,230,0.12);
  cursor: pointer;
}
.native-live-seek:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.native-live-seek::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--copper);
  box-shadow: 0 0 0 3px rgba(221,127,70,0.22);
  cursor: grab;
  margin-top: -5px;
}
.native-live-seek::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border: none;
  border-radius: 50%;
  background: var(--copper);
  box-shadow: 0 0 0 3px rgba(221,127,70,0.22);
  cursor: grab;
}
.native-live-seek::-webkit-slider-runnable-track {
  height: 4px;
  border-radius: 4px;
  background: rgba(237,235,230,0.12);
}
.native-live-seek::-moz-range-track {
  height: 4px;
  border-radius: 4px;
  background: rgba(237,235,230,0.12);
}
.native-live-seek::-moz-range-progress {
  height: 4px;
  border-radius: 4px;
  background: var(--copper);
}
.native-live-transport {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.native-live-skip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(237,235,230,0.14);
  background: rgba(255,255,255,0.04);
  color: rgba(237,235,230,0.75);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}
.native-live-skip:hover {
  background: rgba(221,127,70,0.12);
  border-color: rgba(221,127,70,0.35);
  color: var(--paper);
}
.native-live-skip:active {
  transform: scale(0.96);
}
.native-live-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1.5px solid rgba(221,127,70,0.55);
  background: rgba(221,127,70,0.14);
  color: var(--paper);
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, transform 0.15s, box-shadow 0.25s;
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
}
.native-live-play:hover {
  background: rgba(221,127,70,0.28);
  border-color: rgba(221,127,70,0.85);
  box-shadow: 0 10px 32px rgba(221,127,70,0.18);
}
.native-live-play:active {
  transform: scale(0.96);
}
.native-live-play.is-playing {
  background: rgba(221,127,70,0.32);
  border-color: var(--copper);
}
.native-live-play .native-live-icon--pause,
.native-live-play.is-playing .native-live-icon--play {
  display: none;
}
.native-live-play.is-playing .native-live-icon--pause {
  display: block;
}
.native-live-queue {
  padding: 18px 24px 22px;
  border-top: 1px solid rgba(237,235,230,0.07);
  background: rgba(0,0,0,0.12);
}
body[data-theme="light"] .native-live-queue {
  background: rgba(26,23,20,0.04);
  border-top-color: rgba(26,23,20,0.07);
}
.native-live-queue-label {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(237,235,230,0.42);
  margin-bottom: 12px;
}
body[data-theme="light"] .native-live-queue-label {
  color: rgba(26,23,20,0.45);
}
.native-live-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.native-live-track {
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: center;
  gap: 14px;
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 12px 14px 12px 16px;
  cursor: pointer;
  border-radius: 12px;
  border: 1px solid transparent;
  color: rgba(237,235,230,0.55);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.native-live-track-num {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: rgba(237,235,230,0.35);
  font-variant-numeric: tabular-nums;
}
.native-live-track-name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.native-live-track:hover {
  background: rgba(221,127,70,0.08);
  color: rgba(237,235,230,0.92);
}
.native-live-track:hover .native-live-track-num {
  color: rgba(237,235,230,0.55);
}
.native-live-track.is-active {
  color: var(--copper);
  font-weight: 500;
  background: rgba(221,127,70,0.1);
  border-color: rgba(221,127,70,0.25);
}
.native-live-track.is-active .native-live-track-num {
  color: var(--copper);
  opacity: 0.85;
}
.native-live-track:focus {
  outline: none;
}
.native-live-track:focus-visible {
  outline: 2px solid rgba(221,127,70,0.55);
  outline-offset: 2px;
}
body[data-theme="light"] .native-live-title {
  color: var(--paper);
}
body[data-theme="light"] .native-live-credit {
  color: rgba(26,23,20,0.48);
}
body[data-theme="light"] .native-live-venue {
  color: rgba(26,23,20,0.42);
}
body[data-theme="light"] .native-live-time {
  color: rgba(26,23,20,0.45);
}
body[data-theme="light"] .native-live-seek {
  background: rgba(26,23,20,0.1);
}
body[data-theme="light"] .native-live-skip {
  border-color: rgba(26,23,20,0.12);
  background: rgba(255,255,255,0.5);
  color: rgba(26,23,20,0.65);
}
body[data-theme="light"] .native-live-skip:hover {
  background: rgba(179,146,126,0.15);
  color: var(--paper);
}
body[data-theme="light"] .native-live-play {
  color: var(--paper);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
body[data-theme="light"] .native-live-track {
  color: rgba(26,23,20,0.55);
}
body[data-theme="light"] .native-live-track-num {
  color: rgba(26,23,20,0.38);
}
body[data-theme="light"] .native-live-track:hover {
  background: rgba(179,146,126,0.12);
  color: rgba(26,23,20,0.88);
}
body[data-theme="light"] .native-live-track.is-active {
  color: var(--copper);
  border-color: rgba(221,127,70,0.28);
  background: rgba(221,127,70,0.08);
}
@media (max-width: 640px) {
  .native-live-card {
    grid-template-columns: 1fr;
  }
  .native-live-art {
    aspect-ratio: 690 / 805;
    border-top-left-radius: 27px;
    border-top-right-radius: 27px;
  }
  .native-live-panel {
    padding: 22px 20px 20px;
    border-top-right-radius: 0;
  }
  .native-live-progress {
    grid-template-columns: 36px 1fr 36px;
    gap: 8px;
  }
}
.audio-widget-header {
  margin-bottom: 24px;
}
.audio-widget-header strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  color: var(--paper);
  margin-bottom: 6px;
}
.audio-widget-header span {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
  opacity: 0.7;
}
.audio-track + .audio-track {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(237,235,230,0.08);
}
.audio-track-title {
  display: block;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(237,235,230,0.7);
  margin-bottom: 10px;
}
.audio-track audio {
  width: 100%;
  display: block;
  min-height: 54px;
  height: auto;
  opacity: 0.9;
}

/* VENUES */
.venues-section {
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(237,235,230,0.06);
}
.venues-header { margin-bottom: 60px; }
.venues-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 36px);
  font-weight: 400;
  font-style: italic;
  color: var(--paper);
}
.venues-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(237,235,230,0.08);
}
.venue-card {
  padding: 40px 32px;
  border-right: 1px solid rgba(237,235,230,0.08);
  transition: background 0.3s;
}
.venue-card:last-child { border-right: none; }
.venue-card:hover { background: rgba(221,127,70,0.04); }
.venue-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  margin-bottom: 24px;
  filter: saturate(0.92) contrast(1.02);
  border-radius: 10px;
}
.venue-icon {
  width: 32px;
  height: 1px;
  background: var(--copper);
  margin-bottom: 28px;
}
.venue-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 400;
  color: var(--paper);
  margin-bottom: 12px;
}
.venue-card p {
  color: rgba(237,235,230,0.45);
  font-size: 12.5px;
  line-height: 1.7;
}

/* BOOKING */
.booking-section { background: var(--ink); }
.booking-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.booking-left .contact-card{
  margin-top: 28px;
}
.booking-right{
  padding-top: 8px;
}
.booking-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 36px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.2;
  color: var(--paper);
  margin-bottom: 20px;
}
.booking-left p {
  color: rgba(237,235,230,0.55);
  font-size: 14px;
  line-height: 1.8;
}
.booking-photo-full{
  width: 100%;
  height: auto;
  display: block;
  transform: scaleY(1.05);
  transform-origin: center;
  border: 1px solid rgba(237,235,230,0.08);
}
body[data-theme="light"] .booking-photo-full {
  border-color: rgba(26,23,20,0.08);
}
.contact-card {
  padding: 32px;
  border: 1px solid rgba(237,235,230,0.08);
  transition: border-color 0.3s;
}
.contact-card:hover { border-color: rgba(221,127,70,0.3); }
.contact-role {
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 12px;
  display: block;
}
.contact-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--paper);
  margin-bottom: 12px;
}
.contact-detail {
  font-size: 13px;
  color: rgba(237,235,230,0.55);
  line-height: 1.8;
}
.contact-line {
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact-line + .contact-line {
  margin-top: 4px;
}
.contact-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #25D366;
  flex-shrink: 0;
}
.contact-whatsapp svg {
  width: 14px;
  height: 14px;
  display: block;
}
.contact-detail a {
  color: var(--copper);
  text-decoration: none;
  transition: opacity 0.2s;
}
.contact-detail a:hover { opacity: 0.7; }

/* FOOTER */
footer {
  padding: 48px;
  border-top: 1px solid rgba(237,235,230,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo img {
  height: 27px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 1;
  display: block;
}
.footer-text {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: rgba(237,235,230,0.3);
  text-align: right;
}
.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}
.footer-social .social-link {
  color: rgba(237,235,230,0.72);
}
.footer-social .social-link:hover {
  color: var(--copper);
}

@media (max-width: 900px) {
  nav { padding: 20px 24px; }
  nav.scrolled { padding: 14px 24px; }
  .nav-links { gap: 24px; }
  .nav-right { gap: 18px; }
  .nav-controls { gap: 8px; }
  .nav-toggle { padding: 0; }
  .container { padding: 0 24px; }
  section { padding: 72px 0; }
  .sound-inner, .band-inner, .booking-inner { grid-template-columns: 1fr; gap: 48px; }
  .venues-grid { grid-template-columns: repeat(2, 1fr); }
  .venue-card { border-bottom: 1px solid rgba(237,235,230,0.08); }
  footer { flex-direction: column; gap: 16px; text-align: center; }
  .footer-text { text-align: center; }
}
@media (max-width: 560px) {
  .nav-links { display: none; }
  .nav-right { margin-left: auto; }
  .venues-grid { grid-template-columns: 1fr; }
  /* Header logo = footer logo size */
  nav .nav-logo img { height: 27px; }
  .nav-hamburger{ display:inline-flex; }
  /* Icons inside hamburger menu */
  .nav-controls{
    position: fixed;
    top: 64px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 14px;
    border-radius: 14px;
    background: rgba(26,23,20,0.94);
    border: 1px solid rgba(237,235,230,0.10);
    z-index: 120;
  }
  body.menu-open .nav-controls{ display:flex; }
  body.menu-open .nav-hamburger{
    border-color: rgba(221,127,70,0.38);
    background: rgba(221,127,70,0.10);
  }
  .nav-controls .nav-toggle,
  .nav-controls .social-link{
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items:center;
    justify-content:center;
    border-radius: 12px;
    border: 1px solid rgba(237,235,230,0.12);
    background: rgba(255,255,255,0.04);
    color: #FFFFFF;
    opacity: 1;
  }
  .lang-menu{
    position: static;
    top: auto;
    right: auto;
    min-width: 0;
    width: 100%;
    box-shadow: none;
    border-radius: 12px;
    margin-top: 6px;
  }
  .lang-option{
    justify-content: flex-start;
  }
  .nav-controls .social-link svg{ width: 18px; height: 18px; }

  /* Hero: un poco más alto en mobile (acepta recorte lateral) */
  .hero{
    height: 48vh;
    min-height: 320px;
  }

  /* Volver a mostrar logo naranja en mobile (pequeño) */
  .hero-logo-wrap{ width: 170px; max-width: 170px; }
  .hero-logo{ display: block; }

  /* Quitar overlays del video en mobile */
  .hero-overlay{ display: none; }
  .hero-tagline {
    font-size: 12px;
    letter-spacing: 0.24em;
    color: #FFFFFF;
  }
  /* Mobile: más alto => cover (recorta un poco laterales) */
  .hero-bg{
    object-fit: cover;
    object-position: center 30%;
    filter: none;
    width: 100%;
    left: 0;
    right: 0;
  }
  .section-label {
    font-size: 11px;
    letter-spacing: 0.28em;
    color: #ccb3a3;
  }
  .sound-body,
  .band-left p,
  .band-desc,
  .venue-card p,
  .booking-left p,
  .contact-detail {
    font-size: 14px;
    line-height: 1.75;
    color: rgba(237,235,230,0.78);
  }
  .video-caption span,
  .audio-widget-header span,
  .audio-track-title,
  .native-live-track,
  .footer-text {
    font-size: 12px;
    letter-spacing: 0.14em;
    color: rgba(237,235,230,0.78);
  }
  /* Mobile: títulos de canciones más legibles (1 línea) */
  .audio-track-title{
    font-weight: 700;
    color: #000000;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .contact-role {
    font-size: 10px;
    letter-spacing: 0.28em;
  }
  .band-row {
    gap: 18px;
  }
  .band-marker {
    width: 52px;
    height: 52px;
  }
  /* Mobile: evita que la foto de booking se vea “rara” */
  .booking-photo-full{
    transform: scaleY(1.0);
  }
  body[data-theme="light"] .hero-tagline,
  body[data-theme="light"] .sound-body,
  body[data-theme="light"] .band-left p,
  body[data-theme="light"] .band-desc,
  body[data-theme="light"] .venue-card p,
  body[data-theme="light"] .booking-left p,
  body[data-theme="light"] .contact-detail,
  body[data-theme="light"] .video-caption span,
  body[data-theme="light"] .audio-widget-header span,
  body[data-theme="light"] .audio-track-title,
  body[data-theme="light"] .native-live-track,
  body[data-theme="light"] .footer-text {
    color: rgba(26,23,20,0.82);
  }

  /* Mobile: el subtítulo del hero siempre blanco (también en light) */
  body[data-theme="light"] .hero-tagline{
    color: #FFFFFF;
  }
}

/* Mobile horizontal: tipografía más armónica (similar desktop) */
@media (max-width: 900px) and (orientation: landscape) {
  .hero-tagline{
    font-size: 11px;
    letter-spacing: 0.32em;
  }
  .section-label{
    font-size: 10px;
    letter-spacing: 0.35em;
  }
  .sound-body,
  .band-left p,
  .band-desc,
  .venue-card p,
  .booking-left p,
  .contact-detail{
    font-size: 13px;
    line-height: 1.7;
  }
  .audio-track-title,
  .native-live-track,
  .audio-widget-header span,
  .video-caption span,
  .footer-text{
    font-size: 11px;
    letter-spacing: 0.18em;
  }
}
