/* ============================================================
   AURI TOLEDO — LUXURY WEBSITE
   Palette: Champagne #F7E7CE | Bone White #F9F9F9 | Slate Grey #333333
   Typography: Playfair Display + Montserrat
   ============================================================ */

/* ----- RESET & BASE ----- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --champagne: #F7E7CE;
  --champagne-light: #FDF4EA;
  --champagne-mid: #EDD6B0;
  --bone: #F9F9F9;
  --white: #FFFFFF;
  --slate: #333333;
  --slate-mid: #555555;
  --slate-light: #888888;
  --gold: #C9A96E;
  --gold-light: #DEC08A;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Montserrat', system-ui, sans-serif;

  --nav-h: 72px;
  --section-pad: 8rem;
  --radius: 4px;
  --radius-lg: 12px;
  --shadow-sm: 0 2px 16px rgba(51, 51, 51, .06);
  --shadow-md: 0 8px 40px rgba(51, 51, 51, .10);
  --shadow-lg: 0 24px 64px rgba(51, 51, 51, .14);
  --transition: .35s cubic-bezier(.4, 0, .2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--slate);
  background: var(--bone);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
textarea,
select {
  font-family: var(--font-sans);
  font-size: .9rem;
  color: var(--slate);
  outline: none;
}

/* ----- UTILITIES ----- */
.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}

.text-center {
  text-align: center;
}

.hidden {
  display: none !important;
}

/* Reveal animation base */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.4, 0, .2, 1), transform .7s cubic-bezier(.4, 0, .2, 1);
}

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

/* Stagger children */
.reveal:nth-child(2) {
  transition-delay: .1s;
}

.reveal:nth-child(3) {
  transition-delay: .2s;
}

.reveal:nth-child(4) {
  transition-delay: .3s;
}

.reveal:nth-child(5) {
  transition-delay: .4s;
}

/* ----- TYPOGRAPHY SYSTEM ----- */
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--slate);
  margin-bottom: 1.5rem;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-lead {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--slate-mid);
  line-height: 1.8;
  margin-bottom: 3rem;
}

.section-subtitle {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--slate);
  margin-bottom: 2rem;
}

/* ----- BUTTONS ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .9rem 2.2rem;
  border-radius: 2px;
  font-family: var(--font-sans);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: var(--transition);
}

.btn--primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(0, 0, 0, .2);
}

.btn--primary:hover {
  background: var(--slate);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, .3);
}

.btn--secondary {
  border: 1.5px solid var(--slate);
  color: var(--slate);
  background: transparent;
}

.btn--secondary:hover {
  background: var(--slate);
  color: var(--white);
  transform: translateY(-2px);
}

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


/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 900;
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(249, 249, 249, .97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 24px rgba(51, 51, 51, .08);
}

.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1200px, 92%);
  margin-inline: auto;
}

.nav__logo {
  display: flex;
  align-items: center;
}

.nav__logo-img {
  height: 92px;
  /* Aumentado un 15% adicional */
  width: auto;
  display: block;
  transition: transform var(--transition), filter var(--transition), opacity var(--transition);
}

/* Nav transparente sobre hero (fondo oscuro): logo blanco */
.nav--transparent:not(.scrolled) .nav__logo-img {
  filter: brightness(0) invert(1);
}

.nav__logo:hover .nav__logo-img {
  opacity: .7;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav__link {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--slate);
  position: relative;
  transition: color var(--transition);
}

/* Nav links blancos sobre hero oscuro (solo Desktop) */
@media (min-width: 769px) {
  .nav--transparent:not(.scrolled) .nav__link {
    color: var(--white);
  }

  .nav--transparent:not(.scrolled) .nav__link--cta {
    background: var(--gold);
    color: var(--white) !important;
  }
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav__link:hover {
  color: var(--gold);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__link--cta {
  background: var(--gold);
  color: var(--white) !important;
  padding: .55rem 1.4rem;
  border-radius: 2px;
  letter-spacing: .08em;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav__link--cta::after {
  display: none;
}

.nav__link--cta:hover {
  background: var(--slate);
  color: var(--white) !important;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--slate);
  transition: var(--transition);
}

.nav--transparent:not(.scrolled) .nav__toggle span {
  background: var(--white);
}


/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--champagne);
}

.hero__video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

/* ---- CSS Animated Background (siempre visible) ---- */
.hero__animated-bg {
  position: absolute;
  inset: 0;
  background:
    url('image/auri-toledo-silueta-artista-2.jpg') center/cover no-repeat;
  overflow: hidden;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .2;
}

.hero__orb--1 {
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, #d4aa70 0%, transparent 70%);
  top: -15%;
  left: -10%;
  animation: orbFloat1 14s ease-in-out infinite;
}

.hero__orb--2 {
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, #f0d09a 0%, transparent 70%);
  bottom: -10%;
  right: -5%;
  animation: orbFloat2 18s ease-in-out infinite;
}

.hero__orb--3 {
  width: 35vw;
  height: 35vw;
  background: radial-gradient(circle, #c9a96e 0%, transparent 70%);
  top: 30%;
  left: 55%;
  animation: orbFloat3 22s ease-in-out infinite;
  opacity: .3;
}

.hero__lines {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(90deg,
      transparent,
      transparent 120px,
      rgba(201, 169, 110, .06) 120px,
      rgba(201, 169, 110, .06) 121px),
    repeating-linear-gradient(0deg,
      transparent,
      transparent 120px,
      rgba(201, 169, 110, .06) 120px,
      rgba(201, 169, 110, .06) 121px);
  animation: linesDrift 30s linear infinite;
}

@keyframes orbFloat1 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(6%, 8%) scale(1.08);
  }

  66% {
    transform: translate(-4%, 3%) scale(.95);
  }
}

@keyframes orbFloat2 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  40% {
    transform: translate(-8%, -6%) scale(1.1);
  }

  70% {
    transform: translate(3%, -2%) scale(.92);
  }
}

@keyframes orbFloat3 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-10%, 10%) scale(1.15);
  }
}

@keyframes linesDrift {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 120px 120px;
  }
}

/* ---- YouTube background (activo en servidor web) ---- */
.hero__yt-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 2s ease;
}

.hero__yt-bg.active {
  opacity: 1;
}

.hero__yt-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max(100%, 177.78vh);
  height: max(100%, 56.25vw);
  transform: translate(-50%, -50%);
  border: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(10, 15, 25, 0.85) 0%,
      rgba(15, 23, 42, 0.6) 50%,
      rgba(10, 15, 25, 0.8) 100%);
}

/* Pattern for when no video is loaded */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(201, 169, 110, .12) 0%, transparent 70%),
    linear-gradient(160deg, var(--champagne-light) 0%, var(--bone) 50%, var(--champagne) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
}

.hero__eyebrow {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  transition-delay: .2s !important;
}

.hero__h1 {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
}

.hero__h1 em {
  font-style: italic;
  color: var(--gold-light);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

.hero__lead {
  font-size: clamp(.95rem, 2vw, 1.15rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);
  transition-delay: .4s !important;
}

.hero__content .btn {
  transition-delay: .6s !important;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  animation: floatDown 2s ease-in-out infinite;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

.hero__scroll-text {
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
}

@keyframes floatDown {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}


/* ============================================================
   STATS
   ============================================================ */
.stats {
  background: var(--white);
  padding: 5rem 0;
  border-top: 1px solid rgba(201, 169, 110, .2);
  border-bottom: 1px solid rgba(201, 169, 110, .2);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stats__item {
  padding: 2rem 1rem;
}

.stats__num {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--slate);
  line-height: 1;
}

.stats__unit {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--gold);
  font-weight: 400;
}

.stats__label {
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--slate-light);
  margin-top: .75rem;
}


/* ============================================================
   THE ARTIST
   ============================================================ */
.artist {
  padding: 8rem 0;
  background: var(--bone);
}

.artist__container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 6rem;
  align-items: start;
}

.artist__image-col {
  position: relative;
}

.artist__img-frame {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}

.artist__img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.artist__img-accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 60%;
  height: 60%;
  border: 2px solid rgba(201, 169, 110, .4);
  border-radius: var(--radius-lg);
  z-index: 0;
}

.artist__text-col {
  padding-top: 1rem;
}

.artist__intro {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--slate-mid);
  margin-bottom: 2.5rem;
}

.milestones {
  margin-bottom: 2.5rem;
}

.milestone {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(201, 169, 110, .2);
}

.milestone:first-child {
  border-top: 1px solid rgba(201, 169, 110, .2);
}

.milestone__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--champagne);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.milestone__icon svg {
  width: 18px;
  height: 18px;
}

.milestone__title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: .25rem;
}

.milestone__text {
  font-size: .88rem;
  color: var(--slate-mid);
  line-height: 1.6;
}

.milestone__text em {
  color: var(--slate);
  font-style: italic;
}


/* ============================================================
   MUSIC & SHOWCASE
   ============================================================ */
.music {
  padding: 8rem 0;
  background: var(--white);
}

/* Tabs */
.music-tabs {
  display: flex;
  gap: 0;
  border: 1.5px solid var(--champagne-mid);
  border-radius: 2px;
  overflow: hidden;
  width: fit-content;
  margin: 0 auto 2.5rem;
}

.music-tab {
  padding: .75rem 2rem;
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--slate-mid);
  background: transparent;
  transition: var(--transition);
}

.music-tab:first-child {
  border-right: 1.5px solid var(--champagne-mid);
}

.music-tab--active {
  background: var(--gold);
  color: var(--white);
}

.music-tab:not(.music-tab--active):hover {
  background: var(--champagne);
  color: var(--slate);
}

/* Panels */
.music-panel {
  display: none;
}

.music-panel--active {
  display: block;
  animation: fadeIn .4s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.music-panel__desc {
  text-align: center;
  font-size: .95rem;
  color: var(--slate-mid);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.album-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 780px;
  margin: 3rem auto 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(201, 169, 110, .2);
  gap: 0.75rem;
}

.album-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.2rem;
  background: rgba(201, 169, 110, 0.1);
  border: 1px solid var(--gold);
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  transition: var(--transition);
}

.album-link:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.track__external-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.4rem 0.8rem;
  background: rgba(29, 185, 84, 0.1);
  /* Spotify Green subtle */
  border: 1px solid rgba(29, 185, 84, 0.3);
  border-radius: 4px;
  color: #1DB954;
  /* Spotify Green */
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: var(--transition);
  text-decoration: none;
  min-width: 90px;
}

.track__external-link:hover {
  background: #1DB954;
  color: var(--white);
  border-color: #1DB954;
  transform: translateY(-2px);
}

.track__external-link svg {
  width: 14px;
  height: 14px;
}

/* Tracks */
.tracks {
  max-width: 780px;
  margin: 0 auto 5rem;
}

.track {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  background: var(--bone);
  margin-bottom: .75rem;
  transition: var(--transition);
  cursor: pointer;
}

.track:hover {
  background: var(--champagne-light);
  transform: translateX(4px);
}

.track.playing {
  background: var(--champagne);
}

.track__play {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(201, 169, 110, .3);
}

.track__play:hover {
  background: var(--gold-light);
  transform: scale(1.08);
}

.track__play svg {
  width: 20px;
  height: 20px;
}

.track__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .2rem;
}

.track__title {
  font-family: var(--font-serif);
  font-size: .95rem;
  font-weight: 600;
  color: var(--slate);
}

.track__genre {
  font-size: .72rem;
  color: var(--slate-light);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.track__wave {
  flex: 1;
  max-width: 200px;
}

.waveform {
  display: block;
}

.track__duration {
  font-size: .78rem;
  color: var(--slate-light);
  font-weight: 500;
  min-width: 36px;
  text-align: right;
}

/* SoundCloud embed */
.soundcloud-wrap {
  max-width: 780px;
  margin: 0 auto 3.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.soundcloud-wrap iframe {
  display: block;
}

/* Spotify embed */
.spotify-wrap {
  max-width: 780px;
  margin: 0 auto 3.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.spotify-wrap iframe {
  display: block;
}

/* Album label separator */
.album-label {
  font-family: var(--font-sans);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  max-width: 780px;
  margin: 2rem auto .75rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--champagne-mid);
}

/* Gallery */
.gallery-title {
  text-align: center;
  margin-bottom: 2rem;
}

.gallery-subtitle {
  font-size: .8rem;
  color: var(--slate-light);
  margin-top: .5rem;
}

.gallery-cta {
  text-align: center;
  margin-top: 2.5rem;
}

.gallery-cta .btn {
  gap: .6rem;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}

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

.video-item__thumb {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--champagne);
  aspect-ratio: 4/3;
  cursor: pointer;
  display: flex;
  /* Helps image fill container */
  align-items: stretch;
}

.video-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  display: block;
}

.video-item__thumb:hover .video-item__img {
  transform: scale(1.05);
}

.video-item--tall .video-item__thumb {
  aspect-ratio: unset;
  height: 100%;
  min-height: 340px;
}

.video-item__thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(51, 51, 51, 0);
  transition: var(--transition);
  z-index: 1;
}

.video-item__thumb:hover::after {
  background: rgba(51, 51, 51, .35);
}

.video-item__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(.8);
  z-index: 2;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .9);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.video-item__play svg {
  width: 24px;
  height: 24px;
}

.video-item__thumb:hover .video-item__play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.video-item__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 1rem;
  background: linear-gradient(to top, rgba(51, 51, 51, .6), transparent);
  color: var(--white);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: 0;
  transition: var(--transition);
}

.video-item__thumb:hover .video-item__label {
  opacity: 1;
}


/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: 8rem 0;
  background: var(--champagne-light);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
  border: 1px solid transparent;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201, 169, 110, .3);
}

.service-card--featured {
  border: 2px solid var(--gold);
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.service-card--featured:hover {
  transform: translateY(-14px);
}

.service-card__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem 1rem;
  border-radius: 20px;
  white-space: nowrap;
}

.service-card__icon {
  width: 56px;
  height: 56px;
  background: var(--champagne);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--gold);
}

.service-card__icon svg {
  width: 26px;
  height: 26px;
}

.service-card__title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--slate);
}

.service-card__desc {
  font-size: .9rem;
  color: var(--slate-mid);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-card__features {
  margin-bottom: 2rem;
}

.service-card__features li {
  font-size: .82rem;
  color: var(--slate-mid);
  padding: .4rem 0;
  border-bottom: 1px solid var(--champagne);
  display: flex;
  align-items: center;
  gap: .6rem;
}

.service-card__features li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.service-card__link {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: .25rem;
}

.service-card__link:hover {
  color: var(--slate);
  gap: .5rem;
}


/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: 8rem 0;
  background: var(--bone);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  border-top: 3px solid var(--gold);
}

.testimonial::before {
  content: '\201C';
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: .6;
  color: var(--champagne-mid);
  position: absolute;
  top: 1.5rem;
  left: 2rem;
}

.testimonial__quote {
  font-family: var(--font-serif);
  font-size: .95rem;
  font-style: italic;
  line-height: 1.8;
  color: var(--slate-mid);
  margin-bottom: 1.5rem;
  padding-top: 1rem;
}

.testimonial__footer {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}

.testimonial__name {
  font-weight: 600;
  font-size: .88rem;
  color: var(--slate);
}

.testimonial__event {
  font-size: .75rem;
  color: var(--gold);
  letter-spacing: .06em;
  text-transform: uppercase;
}


/* ============================================================
   REGIONS
   ============================================================ */
.regions {
  padding: 8rem 0;
  background: var(--white);
}

.regions__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.region-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 380px;
  cursor: default;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.region-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.region-card__bg {
  position: absolute;
  inset: 0;
}

.region-card__bg--asturias {
  background: linear-gradient(160deg, #d4c5a9 0%, #b8a47e 100%);
}

.region-card__bg--cantabria {
  background: linear-gradient(160deg, #c8bfa8 0%, #a89878 100%);
}

.region-card__bg--burgos {
  background: linear-gradient(160deg, #d9cbb2 0%, #c0a882 100%);
}

.region-card__bg--euskadi {
  background: linear-gradient(160deg, #cec0a8 0%, #b09878 100%);
}

.region-card__content {
  position: relative;
  z-index: 1;
  padding: 2.5rem 1.75rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(51, 51, 51, .7) 0%, rgba(51, 51, 51, .1) 60%, transparent 100%);
}

.region-card__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .75rem;
}

.region-card__text {
  font-size: .82rem;
  color: rgba(255, 255, 255, .85);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.region-card__link {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--champagne);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: .3rem;
}

.region-card__link:hover {
  color: var(--white);
  gap: .5rem;
}


/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter {
  padding: 8rem 0;
  background: var(--champagne);
}

.newsletter__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 4rem;
  box-shadow: var(--shadow-lg);
}

.newsletter__title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--slate);
  margin-bottom: 1rem;
}

.newsletter__title em {
  font-style: italic;
  color: var(--gold);
}

.newsletter__desc {
  font-size: .92rem;
  color: var(--slate-mid);
  line-height: 1.8;
}

.newsletter__desc strong {
  color: var(--slate);
}

.newsletter__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.newsletter__legal,
.contact__legal {
  font-size: .72rem;
  color: var(--slate-light);
  text-align: center;
  margin-top: .25rem;
}


/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: 8rem 0;
  background: var(--bone);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: start;
}

.contact__lead {
  font-size: 1rem;
  color: var(--slate-mid);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  padding: 1.5rem;
  background: var(--champagne-light);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.contact__info p {
  font-size: .88rem;
  color: var(--slate-mid);
}

.contact__info strong {
  color: var(--slate);
}

/* Forms */
.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.form-group label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--slate-mid);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: .85rem 1rem;
  border: 1.5px solid var(--champagne-mid);
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color var(--transition);
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, .12);
}

.form-group textarea {
  resize: vertical;
}

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

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}


/* ============================================================
   FOOTER
   ============================================================ */
/* ============================================================
   REPERTOIRE
   ============================================================ */
/* Fix for fixed header overlap on subpages */
/* Robust fix for subpage section overlap */
.repertoire,
.music,
.services,
.contact,
.newsletter {
  padding-top: 140px !important;
}

@media (max-width: 768px) {

  .repertoire,
  .music,
  .services,
  .contact,
  .newsletter {
    padding-top: 100px !important;
  }
}

.rep-filters {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  justify-content: center;
  margin: 2.5rem 0 1.5rem;
}

.rep-filter {
  padding: .45rem 1.2rem;
  border: 1px solid var(--champagne-dark, #e0c99a);
  border-radius: 999px;
  background: transparent;
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--slate);
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}

.rep-filter:hover,
.rep-filter--active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.rep-search {
  display: flex;
  align-items: center;
  gap: .8rem;
  max-width: 420px;
  margin: 0 auto 2.5rem;
  background: var(--white);
  border: 1px solid var(--champagne-dark, #e0c99a);
  border-radius: 999px;
  padding: .6rem 1.2rem;
}

.rep-search svg {
  color: var(--gold);
  flex-shrink: 0;
}

.rep-search input {
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-sans);
  font-size: .85rem;
  color: var(--slate);
  width: 100%;
}

.rep-search input::placeholder {
  color: #aaa;
}

.rep-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: .75rem;
}

.rep-card {
  background: var(--white);
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 1rem 1.1rem;
  transition: border-color .2s, box-shadow .2s, transform .2s;
  cursor: pointer;
}

.rep-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 18px rgba(180, 140, 60, .12);
  transform: translateY(-2px);
}

.rep-card--original {
  background: linear-gradient(135deg, #fff9f0, #fff);
  border-color: rgba(180, 140, 60, .25);
}

.rep-card.selected {
  background: linear-gradient(135deg, #fff8e6, #fff);
  border-color: var(--gold);
  box-shadow: 0 4px 18px rgba(180, 140, 60, .18);
}

.rep-label {
  display: flex;
  align-items: center;
  gap: .75rem;
  cursor: pointer;
  width: 100%;
}

.rep-check {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 2px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  transition: border-color .2s, background .2s;
}

.rep-check:checked {
  background: var(--gold);
  border-color: var(--gold);
}

.rep-check:checked::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 6px;
  height: 10px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.rep-title {
  font-family: var(--font-serif);
  font-size: .92rem;
  font-weight: 600;
  color: var(--slate);
  line-height: 1.25;
  flex: 1;
}

.rep-genre {
  display: block;
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: .2rem;
}

.rep-card[style*="display:none"],
.rep-card.hidden {
  display: none;
}

/* Barra de selección */
.rep-bar {
  position: fixed;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--slate);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  box-shadow: 0 8px 40px rgba(0, 0, 0, .3);
  z-index: 200;
  transition: bottom .4s cubic-bezier(.175, .885, .32, 1.275);
  white-space: nowrap;
}

.rep-bar.visible {
  bottom: 2rem;
}

.rep-bar__count {
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .04em;
}

.rep-bar__count span {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
}

.rep-bar__btn {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 999px;
  padding: .55rem 1.3rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s, transform .15s;
}

.rep-bar__btn:hover {
  background: var(--gold-dark, #a07a20);
  transform: scale(1.04);
}

.rep-bar__clear {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, .5);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  transition: color .2s;
}

.rep-bar__clear:hover {
  color: var(--white);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--slate);
  color: rgba(255, 255, 255, .7);
  padding: 4rem 0 2rem;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  flex-wrap: wrap;
  gap: 2rem;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  align-items: flex-start;
}

.footer__logo-img {
  height: 96px;
  width: auto;
  /* Footer oscuro: logo blanco */
  filter: brightness(0) invert(1);
  opacity: .92;
}

.footer__tagline {
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
}

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

.footer__nav a {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
  transition: color var(--transition);
}

.footer__nav a:hover {
  color: var(--gold);
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .6);
  transition: var(--transition);
}

.social-link svg {
  width: 16px;
  height: 16px;
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 2rem;
  flex-wrap: wrap;
  gap: .5rem;
}

.footer__bottom p {
  font-size: .75rem;
}


/* ============================================================
   FLOATING CTA
   ============================================================ */
.floating-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 800;
  transform: translateY(100px);
  opacity: 0;
  transition: transform .5s cubic-bezier(.4, 0, .2, 1), opacity .5s ease;
}

.floating-cta.visible {
  transform: translateY(0);
  opacity: 1;
}

.floating-cta__btn {
  display: flex;
  align-items: center;
  gap: .6rem;
  background: var(--slate);
  color: var(--white);
  padding: .85rem 1.75rem;
  border-radius: 40px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 8px 32px rgba(51, 51, 51, .3);
  transition: var(--transition);
}

.floating-cta__btn:hover {
  background: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201, 169, 110, .4);
}

.floating-cta__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.5);
    opacity: .7;
  }
}


/* ============================================================
   FORM EXTRAS (checkbox + link-btn)
   ============================================================ */
.form-group--check {
  flex-direction: row;
  align-items: center;
}

.check-label {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .82rem;
  color: var(--slate-mid);
  cursor: pointer;
}

.check-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--gold);
  cursor: pointer;
}

.link-btn {
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
  color: var(--gold);
  cursor: pointer;
  text-decoration: underline;
  transition: color var(--transition);
}

.link-btn:hover {
  color: var(--slate);
}

.link-btn--light {
  color: rgba(255, 255, 255, .55);
  font-size: .75rem;
  text-decoration: underline;
}

.link-btn--light:hover {
  color: var(--gold);
}

.link-btn--gold {
  color: var(--gold);
  font-size: inherit;
}

.footer__legal-links {
  display: flex;
  gap: .75rem;
  align-items: center;
  color: rgba(255, 255, 255, .3);
  font-size: .75rem;
}

/* ============================================================
   WHATSAPP BUTTON
   ============================================================ */
.whatsapp-btn {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 800;
  display: flex;
  align-items: center;
  gap: .6rem;
  background: #25D366;
  color: var(--white);
  padding: .75rem 1.4rem .75rem 1rem;
  border-radius: 40px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  box-shadow: 0 8px 28px rgba(37, 211, 102, .35);
  transition: var(--transition);
  transform: translateY(100px);
  opacity: 0;
}

.whatsapp-btn.visible {
  transform: translateY(0);
  opacity: 1;
}

.whatsapp-btn:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(37, 211, 102, .45);
}

.whatsapp-btn__label {
  line-height: 1;
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: var(--slate);
  color: rgba(255, 255, 255, .85);
  padding: 1.25rem 0;
  transform: translateY(100%);
  transition: transform .5s cubic-bezier(.4, 0, .2, 1);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, .2);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner__inner {
  width: min(1200px, 92%);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-banner__text p {
  font-size: .85rem;
  line-height: 1.6;
}

.cookie-banner__actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-shrink: 0;
}

.cookie-banner__reject {
  font-size: .78rem;
  color: rgba(255, 255, 255, .55);
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-decoration: underline;
  transition: color var(--transition);
  white-space: nowrap;
}

.cookie-banner__reject:hover {
  color: var(--white);
}

/* ============================================================
   PRIVACY POLICY MODAL
   ============================================================ */
.policy-modal {
  position: fixed;
  inset: 0;
  z-index: 9500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}

.policy-modal.open {
  opacity: 1;
  pointer-events: all;
}

.policy-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 20, .7);
  backdrop-filter: blur(4px);
}

.policy-modal__box {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: var(--radius-lg);
  width: min(760px, 92vw);
  max-height: 85vh;
  overflow-y: auto;
  padding: 3rem;
  box-shadow: var(--shadow-lg);
}

.policy-modal__close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-size: 2rem;
  line-height: 1;
  color: var(--slate-light);
  transition: color var(--transition);
}

.policy-modal__close:hover {
  color: var(--slate);
}

.policy-modal__content h2 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  color: var(--slate);
}

.policy-modal__content h3 {
  font-family: var(--font-sans);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 1.75rem 0 .5rem;
}

.policy-modal__content p,
.policy-modal__content li {
  font-size: .9rem;
  color: var(--slate-mid);
  line-height: 1.8;
  margin-bottom: .5rem;
}

.policy-modal__content ul {
  padding-left: 1.25rem;
  margin-bottom: .5rem;
}

.policy-modal__content a {
  color: var(--gold);
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(20, 20, 20, .94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease;
  backdrop-filter: blur(4px);
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 2.5rem;
  color: rgba(255, 255, 255, .7);
  line-height: 1;
  transition: color var(--transition);
}

.lightbox__close:hover {
  color: var(--white);
}

.lightbox__content {
  width: min(900px, 90vw);
}

.lightbox__video-wrap {
  aspect-ratio: 16/9;
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
}

.lightbox__video-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .artist__container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .artist__image-col {
    max-width: 480px;
  }

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

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

  .services__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }

  .service-card--featured {
    transform: none;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
    max-width: 540px;
    margin-inline: auto;
  }

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

  .video-item--tall {
    grid-row: auto;
  }

  .newsletter__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 3rem 2rem;
  }

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

@media (max-width: 768px) {
  :root {
    --nav-h: 110px;
    /* Aumentado para el logo grande */
  }

  .nav__logo-img {
    height: 74px;
    /* Aumentado un 15% adicional para móvil */
  }

  .nav__links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background: #0a0f19;
    /* Negro puro elegante */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 2rem 0;
    box-shadow: none;
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform .5s cubic-bezier(.4, 0, .2, 1), opacity .5s ease;
    z-index: 1000;
  }

  .nav__links.open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav__link {
    padding: 0.8rem 2rem;
    width: auto;
    border-bottom: none;
    letter-spacing: .3em;
    /* Estilo Angel */
    font-size: 1.35rem;
    text-align: center;
    color: var(--gold-light);
    font-family: var(--font-primary);
  }

  .nav__link--cta {
    background: var(--gold);
    color: var(--white) !important;
    margin-top: 3rem;
    padding: 1rem 3rem;
    width: auto;
    min-width: 280px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: .1em;
  }

  .nav__toggle {
    z-index: 1001;
    /* Encima del menú negro */
  }

  .nav__toggle {
    display: flex;
  }

  .nav__toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 4px);
  }

  .nav__toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .nav__toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -4px);
  }

  .hero__h1 {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
  }

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

  .regions__grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .footer__bottom {
    flex-direction: column;
  }

  .floating-cta {
    bottom: 1.2rem;
    right: 1.2rem;
  }

  section {
    padding: 5rem 0;
  }

  .music {
    padding: 5rem 0;
  }

  .artist {
    padding: 5rem 0;
  }

  .services {
    padding: 5rem 0;
  }

  .testimonials {
    padding: 5rem 0;
  }

  .regions {
    padding: 5rem 0;
  }

  .newsletter {
    padding: 5rem 0;
  }

  .contact {
    padding: 5rem 0;
  }
}

@media (max-width: 480px) {
  .regions__grid {
    grid-template-columns: 1fr;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .music-tabs {
    width: 100%;
  }

  .music-tab {
    flex: 1;
    text-align: center;
    font-size: .72rem;
    padding: .7rem 1rem;
  }

  .track {
    flex-wrap: nowrap;
    gap: 0.8rem;
    padding: 1.2rem 1rem;
  }

  .track__info {
    flex: 1;
    min-width: 0;
  }

  .track__title {
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .track__external-link {
    padding: 0.6rem;
    font-size: 0;
    /* Hide text, show icon only on very small screens? No, let's keep it compact */
    min-width: 44px;
    justify-content: center;
  }

  .track__wave {
    display: none;
  }
}
/* ============================================================
   CHATBOT WIDGET
   ============================================================ */
.chatbot-toggle {
  position: fixed;
  bottom: 6rem; /* Above WhatsApp if both exist */
  right: 1.5rem;
  width: 56px;
  height: 56px;
  background: var(--slate);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 998;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s;
}

@media (max-width: 768px) {
  .chatbot-toggle {
    bottom: 5rem;
    right: 1.2rem;
    width: 50px;
    height: 50px;
  }
}

.chatbot-toggle:hover {
  transform: scale(1.08);
  background: var(--slate-mid);
}

.chatbot-toggle svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.chatbot-window {
  position: fixed;
  bottom: 11rem;
  right: 1.5rem;
  width: 360px;
  height: 500px;
  max-height: calc(100vh - 12rem);
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  z-index: 999;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(201, 169, 110, 0.2);
}

@media (max-width: 768px) {
  .chatbot-window {
    right: 1rem;
    bottom: 9rem;
    width: calc(100vw - 2rem);
  }
}

.chatbot-window.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.chatbot-header {
  background: var(--slate);
  color: var(--white);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chatbot-header__info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.chatbot-header__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover;
}

.chatbot-header__text h3 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.2;
}

.chatbot-header__text p {
  font-size: 0.7rem;
  color: var(--gold);
  margin: 0;
  letter-spacing: 0.05em;
}

.chatbot-close {
  background: transparent;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.chatbot-close:hover {
  color: var(--gold);
}

.chatbot-body {
  flex: 1;
  padding: 1.25rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--bone);
  scroll-behavior: smooth;
}

.chatbot-msg {
  max-width: 85%;
  animation: chatPop 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  opacity: 0;
  transform: translateY(10px);
}

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

.chatbot-msg--bot {
  align-self: flex-start;
}

.chatbot-msg--user {
  align-self: flex-end;
}

.chatbot-msg__bubble {
  padding: 0.85rem 1rem;
  border-radius: 12px;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--slate);
}

.chatbot-msg--bot .chatbot-msg__bubble {
  background: var(--white);
  border-bottom-left-radius: 2px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.04);
}

.chatbot-msg--user .chatbot-msg__bubble {
  background: var(--gold);
  color: var(--white);
  border-bottom-right-radius: 2px;
  box-shadow: 0 2px 5px rgba(201, 169, 110, 0.2);
}

.chatbot-options {
  padding: 1rem 1.25rem;
  background: var(--white);
  border-top: 1px solid rgba(201, 169, 110, 0.15);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-height: 80px;
}

.chatbot-btn {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--slate);
  padding: 0.6rem 1rem;
  border-radius: 20px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
}

.chatbot-btn:hover {
  background: var(--gold);
  color: var(--white);
}

.chatbot-btn--action {
  background: var(--gold);
  color: var(--white);
}

.chatbot-btn--action:hover {
  background: var(--slate);
  border-color: var(--slate);
}