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

* { margin: 0; padding: 0; box-sizing: border-box; }
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;
}
.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:1fr 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);
}
.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;
}
/* Agrupa #player + playlist (PlayerJS suele insertar la lista en el padre de #player) */
.audio-widget .audio-player-body {
  width: 100%;
}
.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;
}

/* PlayerJS: la playlist suele ir en #<id>_playlist; evitar line-through en tracks inactivos / marcados */
#player_playlist,
#player_playlist *,
.audio-widget [id$="_playlist"],
.audio-widget [id$="_playlist"] * {
  text-decoration: none !important;
  text-decoration-line: none !important;
}

/* PlayerJS: clases de ítems de playlist — forzar texto sin tachado */
.playerjs-playlist-item.playerjs-played,
.playerjs-playlist-item.active {
  text-decoration: none !important;
  text-decoration-line: none !important;
}

.playerjs-playlist-item * {
  text-decoration: none !important;
  text-decoration-line: none !important;
}

/* 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;
  }
  .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,
  .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;
  }

  /* PlayerJS + bloque audio: aire entre título, reproductor y lista */
  .video-section .audio-widget .audio-player-body {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    min-height: 0;
    width: 100%;
  }
  .video-section .audio-widget {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    margin-top: 32px;
    margin-left: 0;
    margin-right: 0;
    padding: 30px 18px 28px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }
  .video-section .audio-widget-header {
    margin-bottom: 0;
    text-align: center;
  }
  .video-section .audio-widget-header strong {
    font-size: clamp(17px, 4.8vw, 21px);
    line-height: 1.25;
    margin-bottom: 8px;
  }
  .video-section .audio-widget-header span {
    display: block;
    margin-top: 2px;
    line-height: 1.5;
    max-width: 34ch;
    margin-left: auto;
    margin-right: auto;
  }
  .video-section .audio-widget #player {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 120px;
    margin: 0;
    box-sizing: border-box;
  }
  /* Playlist: separada del reproductor + scroll */
  .video-section #player_playlist,
  .video-section .audio-widget [id$="_playlist"] {
    max-height: min(42vh, 320px);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    margin-top: 0;
    padding: 18px 12px 14px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
    border-top: 1px solid rgba(237, 235, 230, 0.12);
  }
  .video-section .playerjs-playlist-item,
  .video-section #player_playlist .playerjs-playlist-item {
    font-size: 12px;
    letter-spacing: 0.06em;
    line-height: 1.45;
    padding: 14px 12px;
    margin-bottom: 6px;
    word-break: break-word;
    hyphens: auto;
    color: rgba(237, 235, 230, 0.92);
    border-radius: 8px;
  }
  .video-section .playerjs-playlist-item:last-child,
  .video-section #player_playlist .playerjs-playlist-item:last-child {
    margin-bottom: 0;
  }
  .video-section .playerjs-playlist-item * {
    max-width: 100%;
  }

  .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"] .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,
  .audio-widget-header span,
  .video-caption span,
  .footer-text{
    font-size: 11px;
    letter-spacing: 0.18em;
  }
  .video-section #player_playlist,
  .video-section .audio-widget [id$="_playlist"] {
    max-height: min(28vh, 220px);
  }
}
