:root {
  --bg: #0f0a0d;
  --bg-soft: #1b1115;
  --wine: #5b1b2b;
  --wine-bright: #8b2741;
  --gold: #d8b36a;
  --gold-soft: #f3deae;
  --text: #f7f2e8;
  --muted: #ccbda4;
  --card: rgba(31, 20, 25, 0.78);
  --line: rgba(216, 179, 106, 0.32);
  --radius-lg: 1.4rem;
  --radius-md: 1rem;
  --shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
  --header-height: 72px;
  --container-xl: 80rem;
  --container-2xl: 96rem;
  --space-x-mobile: 1rem;
  --space-x-tablet: 1.5rem;
  --space-x-desktop: 2rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  font-family: "Sora", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 12%, rgba(139, 39, 65, 0.28), transparent 32%),
    radial-gradient(circle at 85% 20%, rgba(216, 179, 106, 0.15), transparent 28%),
    linear-gradient(165deg, #090608 0%, #120a0f 38%, #1b0e16 100%);
  min-height: 100svh;
}

body.menu-open {
  overflow: hidden;
}

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

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

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 30;
  opacity: 0.14;
  background-image: radial-gradient(rgba(255, 255, 255, 0.28) 0.5px, transparent 0.5px);
  background-size: 3px 3px;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 43;
  background: rgba(0, 0, 0, 0.62);
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms ease;
}

.nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 44;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  min-height: var(--header-height);
  padding: 0.9rem 1rem;
  background: linear-gradient(180deg, rgba(15, 10, 13, 0.96), rgba(15, 10, 13, 0.66));
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(9px);
}

.brand {
  font-family: "Bodoni Moda", serif;
  font-size: 1.2rem;
  letter-spacing: 0.09em;
}

.brand span {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
}

.menu-toggle {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.25);
  color: var(--text);
  width: 2.85rem;
  height: 2.85rem;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 220ms ease, border-color 220ms ease;
}

.menu-icon {
  width: 1.15rem;
  height: 0.9rem;
  display: grid;
  align-items: center;
  position: relative;
}

.menu-icon span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transform-origin: center;
  transition: top 220ms ease, transform 220ms ease, opacity 160ms ease;
}

.menu-icon span:nth-child(1) {
  top: 0;
}

.menu-icon span:nth-child(2) {
  top: 0.38rem;
}

.menu-icon span:nth-child(3) {
  top: 0.76rem;
}

.site-nav {
  position: fixed;
  top: 0;
  right: -100%;
  z-index: 45;
  width: min(84vw, 360px);
  height: 100svh;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1rem;
  background: linear-gradient(180deg, rgba(17, 11, 15, 0.98), rgba(12, 8, 11, 0.98));
  border-left: 1px solid var(--line);
  box-shadow: -20px 0 40px rgba(0, 0, 0, 0.5);
  transition: right 280ms ease;
}

.site-nav.open {
  right: 0;
}

.site-nav a {
  padding: 0.78rem 0.9rem;
  border-radius: 0.8rem;
  color: var(--muted);
  transition: background 200ms ease, color 200ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  background: rgba(216, 179, 106, 0.16);
  color: var(--text);
}

main {
  width: 100%;
}

.block {
  width: 100%;
  min-height: 100svh;
  display: flex;
  align-items: stretch;
  position: relative;
  overflow: clip;
  scroll-snap-align: start;
  border-bottom: 1px solid rgba(216, 179, 106, 0.14);
}

.full-block {
  min-height: 100svh;
}

.block-inner {
  width: 100%;
  max-width: var(--container-2xl);
  margin: 0 auto;
  padding: calc(var(--header-height) + 1rem) var(--space-x-mobile) 1.5rem;
  display: grid;
  align-content: center;
  gap: clamp(1rem, 2.6vh, 1.45rem);
}

.block-hero {
  background: #090609;
}

.block-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 70% 65%, rgba(216, 179, 106, 0.18), transparent 34%),
    radial-gradient(circle at 28% 26%, rgba(139, 39, 65, 0.22), transparent 36%),
    linear-gradient(120deg, rgba(6, 4, 5, 0.88), rgba(11, 8, 10, 0.52) 52%, rgba(10, 6, 9, 0.92));
}

.block-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(7, 5, 8, 0.72) 0%, rgba(7, 5, 8, 0.36) 38%, rgba(7, 5, 8, 0.08) 60%, rgba(7, 5, 8, 0.58) 100%);
}

.hero-layout {
  grid-template-columns: 1fr;
  align-items: end;
  min-height: calc(100svh - var(--header-height) - 2.5rem);
}

.hero-art {
  position: relative;
  width: min(92vw, 680px);
  height: 100%;
  max-height: none;
  margin: 0 0 0 auto;
  margin-top: 0.5rem;
  display: flex;
  align-items: end;
  justify-content: center;
  z-index: 1;
  will-change: transform;
  pointer-events: none;
}

.hero-art img {
  width: auto;
  height: 100%;
  max-height: none;
  object-fit: contain;
  transform: translateZ(0);
  filter: drop-shadow(0 26px 34px rgba(0, 0, 0, 0.45));
  animation: slowZoom 26s ease-in-out infinite alternate;
}

.hero-content {
  max-width: 45rem;
  display: grid;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-soft);
  font-size: 0.72rem;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Bodoni Moda", serif;
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.2rem, 6vw, 4.6rem);
  text-wrap: balance;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.subtitle {
  margin: 0;
  color: var(--muted);
  max-width: 54ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  border-radius: 999px;
  padding: 0 1.35rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 180ms ease, filter 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.06);
}

.btn-gold {
  background: linear-gradient(130deg, #cfa356 0%, #ecd39b 58%, #ba8f4b 100%);
  color: #23140f;
}

.btn-spotify {
  background: #1db954;
  color: #0b0b0b;
  border: 1px solid #1ed760;
}

.btn-ghost {
  border: 1px solid var(--line);
  background: rgba(20, 13, 17, 0.6);
}

.icon-link {
  gap: 0.55rem;
}

.icon-link svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: currentColor;
}

blockquote {
  margin: 1rem 0 0;
  border-left: 2px solid var(--gold);
  padding-left: 1rem;
  color: var(--muted);
}

blockquote cite {
  display: block;
  margin-top: 0.5rem;
  color: var(--gold-soft);
  font-style: normal;
}

.block-albums {
  background:
    radial-gradient(circle at 16% 18%, rgba(216, 179, 106, 0.16), transparent 36%),
    linear-gradient(140deg, #171018, #241520 46%, #332032 100%);
}

.block-directo {
  background:
    radial-gradient(circle at 82% 14%, rgba(29, 185, 84, 0.22), transparent 42%),
    radial-gradient(circle at 14% 84%, rgba(29, 185, 84, 0.14), transparent 34%),
    linear-gradient(160deg, #050505, #0b0b0b 52%, #111111 100%);
}

.block-directo .eyebrow {
  color: #1ed760;
}

.block-directo .section-head p {
  color: #b3b3b3;
}

.block-directo .section-head h2 {
  color: #ffffff;
}

.block-redes {
  background:
    radial-gradient(circle at 82% 16%, rgba(216, 179, 106, 0.12), transparent 34%),
    linear-gradient(145deg, #0d0f17, #151a27 42%, #1f2635 100%);
}

.block-redes .eyebrow {
  color: #b7c7ee;
}

.block-redes .section-head h2 {
  color: #f6f8ff;
}

.block-redes .section-head p {
  color: #c6d1e6;
}

.block-galeria {
  background:
    radial-gradient(circle at 18% 20%, rgba(216, 179, 106, 0.08), transparent 36%),
    radial-gradient(circle at 82% 78%, rgba(255, 255, 255, 0.04), transparent 34%),
    linear-gradient(145deg, #060606, #0b0b0b 48%, #121212 100%);
}

.block-agenda {
  background:
    radial-gradient(circle at 82% 18%, rgba(139, 39, 65, 0.22), transparent 34%),
    linear-gradient(150deg, #140b12, #23101b 42%, #321529 100%);
}

.block-historias {
  background:
    radial-gradient(circle at 14% 16%, rgba(216, 179, 106, 0.12), transparent 38%),
    linear-gradient(150deg, #16110b, #231a10 42%, #302314 100%);
}

.block-contratacion {
  background:
    radial-gradient(circle at 78% 80%, rgba(139, 39, 65, 0.22), transparent 34%),
    linear-gradient(150deg, #0b090f, #141127 42%, #1d1940 100%);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  z-index: 4;
  width: 3.4rem;
  height: 3.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(247, 242, 232, 0.7);
  opacity: 0;
  transform: translate(-50%, 8px) scale(0.94);
  transition: opacity 220ms ease, transform 220ms ease, color 220ms ease;
}

.scroll-cue svg {
  width: 2.75rem;
  height: 2.75rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.scroll-cue.cue-down {
  bottom: 0.8rem;
}

.scroll-cue.cue-up {
  top: calc(var(--header-height) + 0.25rem);
}

.block:hover .scroll-cue,
.block:focus-within .scroll-cue {
  opacity: 0.92;
  transform: translate(-50%, 0) scale(1);
}

.scroll-cue:hover,
.scroll-cue:focus-visible {
  color: #f3deae;
  transform: translate(-50%, 0) scale(1.05);
}

.section-head {
  max-width: 56rem;
  display: grid;
  gap: 0.7rem;
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.albums-grid,
.agenda-list,
.social-track {
  display: grid;
  gap: 1rem;
}

.albums-grid {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.record-card,
.show-card,
.social-card,
.fan-form,
.booking-form,
.spotify-embed {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--card);
  box-shadow: var(--shadow);
}

.record-card,
.show-card,
.social-card {
  padding: 1.2rem;
}

.record-card img {
  border-radius: 0.95rem;
  margin-bottom: 0.9rem;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.record-card p,
.show-card p,
.social-card p {
  color: var(--muted);
}

.record-card a,
.show-card a,
.social-card a,
.site-footer a {
  color: var(--gold-soft);
  font-weight: 600;
}

.direct-layout {
  display: grid;
  gap: 1rem;
}

.direct-layout > * {
  min-width: 0;
}

.spotify-embed {
  border: 1px solid rgba(29, 185, 84, 0.45);
  background: linear-gradient(160deg, #121212, #0d0d0d);
  overflow: hidden;
  min-height: clamp(390px, 56svh, 620px);
  will-change: transform;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.48), 0 0 0 1px rgba(29, 185, 84, 0.16) inset;
}

.spotify-embed iframe {
  width: 100%;
  min-height: clamp(390px, 56svh, 620px);
  border: 0;
}

.block-directo .spotify-embed iframe {
  background: #121212;
  filter: saturate(0.58) contrast(1.05);
}

.social-card h3 {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #f5f8ff;
}

.social-icon {
  width: 2.15rem;
  height: 2.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.2), rgba(120, 146, 208, 0.22));
  color: #f5f8ff;
}

.social-icon svg {
  width: 1.12rem;
  height: 1.12rem;
  fill: currentColor;
}

.social-icon svg [stroke] {
  stroke: currentColor;
  stroke-width: 1.7;
}

.block-redes .social-card {
  border-color: rgba(165, 183, 228, 0.34);
  background: linear-gradient(160deg, rgba(24, 22, 34, 0.92), rgba(21, 27, 44, 0.92));
}

.block-redes .social-card p {
  color: #d2d9ea;
}

.block-redes .social-card a {
  color: #deebff;
}

.block-redes .social-card[data-platform='Instagram'] .social-icon {
  background: radial-gradient(circle at 30% 20%, rgba(255, 188, 220, 0.26), rgba(143, 103, 199, 0.24));
}

.block-redes .social-card[data-platform='TikTok'] .social-icon {
  background: radial-gradient(circle at 30% 20%, rgba(131, 250, 233, 0.26), rgba(69, 108, 175, 0.24));
}

.block-redes .social-card[data-platform='Spotify'] .social-icon {
  background: radial-gradient(circle at 30% 20%, rgba(133, 247, 175, 0.3), rgba(43, 116, 78, 0.3));
}

.social-card.active {
  border-color: rgba(196, 216, 255, 0.72);
  background: linear-gradient(180deg, rgba(31, 37, 58, 0.92), rgba(23, 28, 44, 0.92));
}

.gallery-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  grid-auto-flow: dense;
}

.gallery-grid figure {
  margin: 0;
  border-radius: 0.9rem;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  min-height: 0;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms ease, filter 360ms ease;
}

.gallery-grid figure:hover img,
.gallery-grid figure:focus-within img {
  transform: scale(1.04);
  filter: saturate(1.18) brightness(1.03);
}


.show-card .date {
  color: var(--gold-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.74rem;
}

.fan-form,
.booking-form {
  display: grid;
  gap: 0.9rem;
  padding: 1.2rem;
}

.fan-form label,
.booking-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--gold-soft);
  font-size: 0.9rem;
}

input,
textarea,
select {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid rgba(216, 179, 106, 0.32);
  background: rgba(15, 9, 12, 0.7);
  color: var(--text);
  font: inherit;
  padding: 0.72rem 0.8rem;
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid rgba(216, 179, 106, 0.46);
  outline-offset: 2px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.whatsapp-float {
  position: fixed;
  right: 0.9rem;
  bottom: 1rem;
  z-index: 42;
  min-height: 2.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0 1.1rem;
  border-radius: 999px;
  background: linear-gradient(140deg, #2ad978, #11a45c);
  color: #062b18;
  font-weight: 700;
  box-shadow: 0 14px 24px rgba(13, 62, 40, 0.52);
}

.whatsapp-float svg {
  width: 1.06rem;
  height: 1.06rem;
  fill: currentColor;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2rem 1rem 2.5rem;
  text-align: center;
  color: var(--muted);
}

.site-footer p {
  margin: 0.2rem 0;
}

.toast {
  position: fixed;
  left: 50%;
  transform: translateX(-50%) translateY(30px);
  bottom: 1.3rem;
  background: rgba(15, 9, 12, 0.95);
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.65rem 1rem;
  opacity: 0;
  pointer-events: none;
  transition: all 220ms ease;
  z-index: 60;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.98);
  transition: opacity 620ms cubic-bezier(0.22, 1, 0.36, 1), transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.parallax-layer {
  transition: transform 120ms linear;
}

@keyframes slowZoom {
  from {
    transform: translateY(0) scale(1.01);
  }
  to {
    transform: translateY(-8px) scale(1.04);
  }
}

@media (min-width: 768px) {
  .site-header {
    padding: 0.95rem 1.5rem;
  }

  .menu-toggle {
    display: none;
  }

  .nav-overlay {
    display: none;
  }

  .site-nav {
    position: static;
    width: auto;
    height: auto;
    right: auto;
    flex-direction: row;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
    transition: none;
  }

  .block-inner {
    padding-top: calc(var(--header-height) + 1.25rem);
    padding-right: var(--space-x-tablet);
    padding-bottom: 1.75rem;
    padding-left: var(--space-x-tablet);
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    column-gap: 0.8rem;
    align-items: end;
    min-height: calc(100svh - var(--header-height) - 3rem);
  }

  .hero-art {
    width: min(54vw, 980px);
    height: 100%;
    max-height: none;
    margin-top: 0;
    align-self: end;
  }

  .hero-content {
    max-width: min(52ch, 100%);
  }

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

  .direct-layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    align-items: center;
    gap: 1.5rem;
  }

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

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

  .fan-form label:nth-child(3),
  .fan-form .btn,
  .fan-form .form-note,
  .booking-form label:nth-child(4),
  .booking-form .btn,
  .booking-form .form-note {
    grid-column: 1 / -1;
  }

  .whatsapp-float {
    right: 1.6rem;
    bottom: 1.4rem;
  }
}

@media (min-width: 1120px) {
  .block-inner {
    max-width: var(--container-xl);
    padding-top: calc(var(--header-height) + 1.5rem);
    padding-right: var(--space-x-desktop);
    padding-bottom: 2rem;
    padding-left: var(--space-x-desktop);
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    column-gap: 1.4rem;
  }

  .hero-art {
    width: min(56vw, 1120px);
    height: 100%;
    max-height: none;
    margin-top: 0;
  }

}

@media (hover: none) {
  .scroll-cue {
    opacity: 0.62;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
    scroll-behavior: auto !important;
  }
}
