
:root {
  color-scheme: dark;
  --noche:   #17120d;
  --noche-2: #1f1811;
  --carbon:  #100c08;
  --bg-rgb:  23, 18, 13;

  --hueso:   #ece3d2;
  --hueso-2: #a99b84;
  --hueso-3: #6f6553;

  --brasa:   #c4592f;

  --linea:   rgba(236, 227, 210, 0.13);
  --linea-2: rgba(236, 227, 210, 0.07);

  --serif: "Newsreader", Georgia, serif;
  --sans:  "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --wrap: 1180px;
  --pad: clamp(1.25rem, 5vw, 4.5rem);
}

html[data-theme="light"] {
  color-scheme: light;
  --noche:   #f3ede2;
  --noche-2: #eae1d2;
  --carbon:  #e7ddcb;
  --bg-rgb:  243, 237, 226;
  --hueso:   #241d17;
  --hueso-2: #5f5346;
  --hueso-3: #8a7d6b;
  --brasa:   #b0491f;
  --linea:   rgba(36, 29, 23, 0.16);
  --linea-2: rgba(36, 29, 23, 0.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--noche);
  color: var(--hueso);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--brasa); color: #fff; }

:focus-visible { outline: 2px solid var(--brasa); outline-offset: 3px; border-radius: 1px; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding-inline: var(--pad); }

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

.display {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.015em;
}
.letra {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  line-height: 1.28;
  color: var(--hueso);
  letter-spacing: 0.005em;
}
.kicker {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--hueso-2);
}
.kicker::before {
  content: "";
  display: inline-block;
  width: 26px; height: 1px;
  background: var(--brasa);
  vertical-align: middle;
  margin-right: 0.7rem;
  transform: translateY(-2px);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.7rem 1.4rem;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.btn--fill { background: var(--hueso); color: var(--noche); }
.btn--fill:hover { filter: brightness(1.08); transform: translateY(-1px); }
.btn--line { border-color: var(--linea); color: var(--hueso); }
.btn--line:hover { border-color: var(--hueso); }

.btn--book { background: #b84e27; color: #fff; border-color: #b84e27; }
.btn--book:hover { background: #cf5f34; border-color: #cf5f34; transform: translateY(-1px); }
.btn .arw { transition: transform 0.3s ease; }
.btn:hover .arw { transform: translateX(3px); }

.tlink {
  position: relative;
  color: var(--hueso);
  padding-bottom: 2px;
}
.tlink::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--brasa);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.tlink:hover::after { transform: scaleX(1); }

@view-transition { navigation: auto; }
@media (prefers-reduced-motion: reduce) {
  @view-transition { navigation: none; }
}

@keyframes vt-out {
  to { opacity: 0; transform: translateY(-10px); }
}
@keyframes vt-in {
  from { opacity: 0; transform: translateY(12px); }
}
::view-transition-old(root) {
  animation: vt-out 0.45s cubic-bezier(0.4, 0, 0.2, 1) both;
}
::view-transition-new(root) {
  animation: vt-in 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  view-transition-name: site-header;
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}
.site-header.is-scrolled {
  background: rgba(var(--bg-rgb), 0.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--linea-2);
}
.site-header__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 1.5rem var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.01em;
}
.wordmark em { font-style: normal; }

.mainnav { display: flex; gap: 2.2rem; }
.mainnav__link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--hueso-2);
  position: relative;
  padding-block: 0.25rem;
  transition: color 0.25s ease;
}
.mainnav__link:hover { color: var(--hueso); }
.mainnav__link.is-active { color: var(--hueso); }
.mainnav__link.is-active::after {
  content: "";
  position: absolute; left: 0; bottom: -3px;
  width: 100%; height: 1px;
  background: var(--brasa);
}

.navtoggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none;
  cursor: pointer; padding: 6px; z-index: 101;
}
.navtoggle span {
  width: 26px; height: 1.5px;
  background: var(--hueso);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.header-actions { display: flex; align-items: center; gap: 0.4rem; }
.themetoggle {
  display: inline-flex; align-items: center; justify-content: center;
  background: none; border: none; cursor: pointer;
  color: var(--hueso-2); padding: 6px;
  transition: color 0.25s ease;
}
.themetoggle:hover { color: var(--hueso); }
.themetoggle svg { width: 20px; height: 20px; }
.themetoggle .ic-moon { display: none; }
html[data-theme="light"] .themetoggle .ic-sun { display: none; }
html[data-theme="light"] .themetoggle .ic-moon { display: inline-block; }

.site-footer {
  background: var(--carbon);
  border-top: 1px solid var(--linea-2);
  padding-block: clamp(3rem, 7vw, 5rem);
  text-align: center;
}
.site-footer__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding-inline: var(--pad);
  display: grid;
  gap: 1.4rem;
}
.site-footer__name {
  font-family: var(--serif);
  font-size: clamp(2rem, 6vw, 3.2rem);
  font-weight: 300;
  line-height: 1;
}
.site-footer__role { color: var(--hueso-2); font-size: 0.95rem; margin-top: -0.6rem; }
.site-footer__social {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1.6rem;
  padding-block: 0.6rem;
  border-top: 1px solid var(--linea-2);
  border-bottom: 1px solid var(--linea-2);
}
.site-footer__social a {
  font-size: 0.9rem; font-weight: 500; color: var(--hueso-2);
  transition: color 0.25s ease;
}
.site-footer__social a:hover { color: var(--hueso); }
.site-footer__meta { color: var(--hueso-3); font-size: 0.82rem; }
.site-footer__copy { color: var(--hueso-3); font-size: 0.82rem; }
.site-footer__legal { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.3rem; }
.site-footer__legal a { font-size: 0.82rem; color: var(--hueso-3); transition: color 0.2s ease; }
.site-footer__legal a:hover { color: var(--hueso); }

.legal {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(8rem, 14vw, 11rem) var(--pad) clamp(4rem, 8vw, 6rem);
}
.legal__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.legal__updated { color: var(--hueso-3); font-size: 0.9rem; margin-top: 0.9rem; }
.legal h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  color: var(--hueso);
  margin: clamp(2.2rem, 4vw, 3rem) 0 0.8rem;
}
.legal p, .legal li { color: var(--hueso-2); font-size: 1.02rem; line-height: 1.75; margin-bottom: 0.9rem; }
.legal p { text-align: justify; text-align-last: left; }
.legal ul { padding-left: 1.2rem; }
.legal a { color: var(--hueso); border-bottom: 1px solid var(--linea); }
.legal a:hover { border-color: var(--hueso); }
.legal .ph { color: var(--brasa); font-style: italic; }

.notfound {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(7rem, 14vw, 10rem) var(--pad) clamp(3rem, 8vw, 5rem);
}
.notfound__code {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(4.5rem, 18vw, 9rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--brasa);
}
.notfound__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.8rem, 5vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-top: 0.5rem;
}
.notfound__text {
  color: var(--hueso-2);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 32rem;
  margin: 1.2rem auto 0;
}
.notfound__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
  margin-top: 2.2rem;
}

.faq-list { margin-top: clamp(1.8rem, 4vw, 2.8rem); width: 100%; }
.faq-item { padding: clamp(1.2rem, 2.6vw, 1.9rem) 0; border-top: 1px solid var(--linea); }
.faq-item:last-child { border-bottom: 1px solid var(--linea); }
.faq-q {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  color: var(--hueso);
  line-height: 1.15;
}
.faq-a {
  margin-top: 0.7rem;
  color: var(--hueso-2);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.6;
  text-align: justify;
  text-align-last: left;
}
@media (min-width: 901px) { .evp:has(.faq-list) { padding-block: clamp(5rem, 9vw, 6.5rem); } }

.page { padding-top: clamp(7rem, 12vw, 10rem); }
.section { padding-block: clamp(4rem, 9vw, 7.5rem); }

.pagehead { max-width: 760px; }
.pagehead__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 1.1rem 0 0;
}
.pagehead__lead {
  margin-top: 1.6rem;
  color: var(--hueso-2);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  max-width: 52ch;
}

.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  max-width: var(--wrap);
  margin: 0 auto;
  padding: clamp(7rem, 12vw, 9rem) var(--pad) clamp(3rem, 6vw, 5rem);
}
.hero__name {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(3.6rem, 12vw, 8rem);
  line-height: 0.9;
  letter-spacing: -0.025em;
  margin: 1.2rem 0 1.6rem;
}
.hero__name em { font-style: italic; font-weight: 300; }
.hero__letra {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
  line-height: 1.3;
  max-width: 22ch;
  color: var(--hueso);
}
.hero__desc {
  margin-top: 1.4rem;
  color: var(--hueso-2);
  max-width: 46ch;
  font-size: 1.02rem;
  text-align: justify;
  text-align-last: left;
}
.hero__actions { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: 1rem; }

@media (min-width: 901px) {
  .hero__block { width: max-content; max-width: 100%; }
  .hero__name { width: 100%; text-align: left; }
  .hero__desc { width: 0; min-width: 100%; max-width: 100%; }
}

.hero__media { position: relative; }
.hero__photo {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
}
.hero__photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 18%;
  filter: saturate(1.02) contrast(1.02);
}
.hero__photo::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 62% 38%, transparent 30%, rgba(var(--bg-rgb),0.35) 78%, rgba(var(--bg-rgb),0.85) 100%),
    linear-gradient(180deg, transparent 55%, rgba(var(--bg-rgb),0.55));
}

.hero__scroll {
  position: absolute;
  left: 50%; bottom: 1.8rem;
  transform: translateX(-50%);
  color: var(--hueso-3);
  font-size: 1.3rem;
  line-height: 1;
  transition: color 0.25s ease;
}
.hero__scroll:hover { color: var(--hueso); }
.hero__scroll-arw { display: inline-block; animation: bob 2.2s ease-in-out infinite; }
@keyframes bob {
  0%, 100% { transform: translateY(0); opacity: 0.55; }
  50% { transform: translateY(7px); opacity: 1; }
}

html.paneled { scroll-snap-type: y mandatory; }
html.paneled.js-panels { scroll-snap-type: none; }
[data-panel] { scroll-snap-align: start; }

.panelnav {
  position: fixed;
  right: clamp(1rem, 2.5vw, 2.2rem);
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.panelnav__dot {
  width: 9px; height: 9px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid var(--hueso-3);
  background: transparent;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.panelnav__dot:hover { border-color: var(--hueso); }
.panelnav__dot.is-active {
  background: var(--brasa);
  border-color: var(--brasa);
  transform: scale(1.25);
}
.listen.panel {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  scroll-snap-align: start;
}
.testi {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
  border-top: 1px solid var(--linea-2);
  padding-bottom: 0;
}
.testi__inner { flex: 1; display: flex; align-items: center; width: 100%; }
.testi__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: -0.02em;
}
.testi__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  margin-top: clamp(2.2rem, 5vw, 3.6rem);
}
.testi__item { position: relative; padding-top: 1.6rem; display: flex; flex-direction: column; }
.testi__item::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 30px; height: 1px;
  background: var(--brasa);
}
.testi__quote {
  flex: 1;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.15rem, 1.55vw, 1.42rem);
  line-height: 1.45;
}
.testi__by {
  display: block;
  margin-top: 1.3rem;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--hueso);
}
.testi__by span {
  display: block;
  font-weight: 400;
  color: var(--hueso-3);
  margin-top: 0.15rem;
}
.site-footer.is-compact { flex: 0 0 auto; padding-block: 1.6rem; margin-top: clamp(2.5rem, 6vw, 4rem); }
.site-footer.is-compact .site-footer__inner { gap: 1rem; }
.site-footer.is-compact .site-footer__name,
.site-footer.is-compact .site-footer__role { display: none; }

@media (max-width: 900px), (max-height: 660px) {
  html.paneled { scroll-snap-type: none; }
  .listen.panel, .testi, .evp, .ev-close, .bio-end { min-height: 0; }
  .testi { padding-block: clamp(3.5rem, 12vw, 6rem); }
}

.evp {
  min-height: 100svh;
  display: flex;
  align-items: center;
  border-top: 1px solid var(--linea-2);
  padding-top: clamp(7rem, 10vw, 8rem);
  padding-bottom: clamp(3rem, 6vw, 4rem);
}
.evp:first-of-type { border-top: none; }

.evp__eyebrow {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--hueso-2);
}
.evp__eyebrow::before {
  content: "";
  display: inline-block;
  width: 26px; height: 1px;
  background: var(--brasa);
  vertical-align: middle;
  margin-right: 0.7rem;
  transform: translateY(-3px);
}
.evp__lead {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.6rem, 6.5vw, 5.2rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  max-width: 16ch;
  margin: 1.3rem 0 0;
}
.evp__sub {
  margin-top: 1.8rem;
  color: var(--hueso-2);
  font-size: clamp(1.12rem, 1.7vw, 1.38rem);
  max-width: 52ch;
  text-align: justify;
  text-align-last: left;
}

.ev-rows { display: flex; flex-direction: column; gap: clamp(3.5rem, 8vw, 7rem); width: 100%; transform: translateY(4vh); }
.ev-row { display: flex; align-items: center; gap: clamp(2rem, 6vw, 6rem); }
.ev-row--flip { flex-direction: row-reverse; }
.ev-rows .ev-row:first-child { transform: translateY(-1.2vh); }
.ev-row__title {
  flex: 1;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.ev-row__text {
  flex: 1;
  color: var(--hueso-2);
  font-size: clamp(1.12rem, 1.6vw, 1.32rem);
  max-width: 54ch;
  text-align: justify;
  text-align-last: left;
}

.evp__concert {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  width: 100%;
}
.ev__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.concert__text {
  margin-top: 1.3rem;
  color: var(--hueso-2);
  font-size: clamp(1.12rem, 1.6vw, 1.32rem);
  max-width: 50ch;
  text-align: justify;
  text-align-last: left;
}
.artists { text-align: center; align-self: center; }
.artists__label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--hueso-2);
  margin-bottom: 1.1rem;
}
.artists__list { list-style: none; }
.artists__list li {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.15rem, 1.7vw, 1.4rem);
  line-height: 1.95;
  color: var(--hueso);
  break-inside: avoid;
}

.ev-close {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--linea-2);
}
.ev-close__inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 1.4rem;
  padding-bottom: clamp(1rem, 2.5vw, 1.8rem);
}
.ev-close__line {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.6rem, 6.5vw, 4.8rem);
  line-height: 1.03;
  letter-spacing: -0.02em;
  max-width: 16ch;
}
.ev-close__sub { color: var(--hueso-2); font-size: clamp(1.05rem, 1.5vw, 1.2rem); max-width: 42ch; }
.ev-close__actions { margin-top: 0.6rem; }

@media (max-width: 900px) {
  .evp { min-height: 0; padding-block: clamp(4rem, 12vw, 6rem); }
  .evp:first-of-type { padding-top: clamp(7rem, 18vw, 9rem); }
  .evp__concert { grid-template-columns: 1fr; }
  .ev-row, .ev-row--flip { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .artists { border-left: none; padding-left: 0; margin-top: 1.6rem; }
  .ev-close { min-height: 0; }
  .ev-close__inner { justify-content: center; padding-bottom: 0; }
}

.bio2 {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  width: 100%;
}
.bio2__photo {
  border-radius: 3px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  max-height: 66svh;
  box-shadow: 0 34px 70px -32px rgba(16, 12, 8, 0.6);
}
.bio2__photo img { width: 100%; height: 100%; object-fit: cover; }
.bio2__text .ev__title { margin-bottom: 1.6rem; }
.bio2__p {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.2rem, 2vw, 1.62rem);
  line-height: 1.5;
  color: var(--hueso);
  max-width: 50ch;
  text-align: justify;
  text-align-last: left;
}
.bio2__p + .bio2__p { margin-top: 1.2rem; color: var(--hueso-2); }

.bio-end {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--linea-2);
}
.bio-end__inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: clamp(7rem, 10vw, 8rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
}
.tr-list { margin-top: clamp(1.6rem, 4vw, 2.6rem); }
.tr-item {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: clamp(1.2rem, 3vw, 2.5rem);
  align-items: baseline;
  padding: clamp(1rem, 2.4vw, 1.6rem) 0;
  border-top: 1px solid var(--linea);
}
.tr-item__key {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  color: var(--brasa);
}
.tr-item__text {
  color: var(--hueso);
  font-size: clamp(1.05rem, 1.45vw, 1.22rem);
  line-height: 1.55;
  max-width: 58ch;
  text-align: justify;
  text-align-last: left;
}
.disco { margin-top: clamp(1.8rem, 4vw, 2.6rem); }
.disco__label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--hueso-2);
  margin-bottom: 0.9rem;
}
.disco__list { list-style: none; columns: 2; column-gap: clamp(2rem, 4vw, 3rem); }
.disco__list li {
  break-inside: avoid;
  font-family: var(--serif);
  font-style: italic;
  color: var(--hueso);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.95;
}

.escena {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(1.8rem, 4vw, 2.8rem);
}
.escena__col { border-top: 1px solid var(--linea); padding-top: 1.2rem; }
.escena__key {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  color: var(--brasa);
  margin-bottom: 0.8rem;
}
.escena__text {
  color: var(--hueso);
  font-size: clamp(0.98rem, 1.3vw, 1.1rem);
  line-height: 1.5;
  text-align: justify;
  text-align-last: left;
}

@media (max-width: 900px) {
  .bio2 { grid-template-columns: 1fr; }
  .bio2__photo { max-width: 340px; }
  .tr-item { grid-template-columns: 1fr; gap: 0.3rem; }
  .disco__list { columns: 1; }
  .escena { grid-template-columns: 1fr 1fr; }
  .bio-end { min-height: 0; }
}
@media (max-width: 560px) {
  .escena { grid-template-columns: 1fr; }
}

.vframe {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  overflow: hidden;
  background: var(--noche-2);
  border: 1px solid var(--linea);
}
.vframe iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.vframe[data-yt] { cursor: pointer; }
.vframe__poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.vframe__play {
  position: absolute; inset: 0; margin: auto;
  width: clamp(52px, 5vw, 68px); height: clamp(52px, 5vw, 68px);
  border-radius: 50%;
  border: 1.5px solid rgba(236, 227, 210, 0.75);
  background: rgba(23, 18, 13, 0.42);
  backdrop-filter: blur(4px);
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
.vframe__play::after {
  content: "";
  position: absolute; top: 50%; left: 54%;
  transform: translate(-50%, -50%);
  border-left: 15px solid var(--hueso);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}
.vframe[data-yt]:hover .vframe__play {
  transform: scale(1.08);
  background: rgba(176, 106, 38, 0.5);
  border-color: var(--brasa);
}
.vhero { text-align: center; }
.vframe--hero { width: 100%; max-width: calc(60svh * 16 / 9); margin: 0 auto; }
.vhero__cap {
  margin-top: clamp(1.2rem, 2.5vw, 1.8rem);
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  color: var(--hueso);
}
.vmore { max-width: 1360px; }
.vgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.4rem, 2.5vw, 2.2rem);
  margin-top: clamp(1.8rem, 4vw, 2.8rem);
}
.vitem__cap {
  margin-top: 1rem;
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  color: var(--hueso);
  line-height: 1.35;
}
.vitem__label {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--brasa);
  margin-bottom: 0.3rem;
}
.vchannel__text { margin-top: 1rem; color: var(--hueso-2); font-size: clamp(1.05rem, 1.5vw, 1.2rem); max-width: 46ch; }
.vchannel__actions { margin-top: 1.9rem; }

@media (max-width: 900px) {
  .vgrid { grid-template-columns: 1fr; }
  .vframe--hero { max-width: 100%; }
}

.listen { border-top: 1px solid var(--linea-2); }
.listen__grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: stretch;
  margin-top: 2.8rem;
}
.listen__col { display: flex; flex-direction: column; }
.listen__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.02em;
}
.listen__title a { transition: color 0.25s ease; }
.listen__title a:hover { color: var(--brasa); }
.listen__links { margin-top: 2rem; display: flex; flex-direction: column; flex: 1; }
.listen__link {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 0;
  border-top: 1px solid var(--linea);
  transition: color 0.25s ease;
}
.listen__link:last-child { border-bottom: 1px solid var(--linea); }
.listen__link:hover { color: var(--brasa); }
.listen__name {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-family: var(--serif);
  font-size: 1.4rem;
}
.listen__logo { width: 24px; height: 24px; fill: currentColor; flex-shrink: 0; }
.listen__link em { font-style: normal; font-size: 0.82rem; color: var(--hueso-3); }
.listen__player iframe { display: block; border: none; border-radius: 12px; background: var(--noche-2); }

.offer { border-top: 1px solid var(--linea); }
.offer__row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1rem, 4vw, 4rem);
  padding-block: clamp(2.2rem, 5vw, 3.4rem);
  border-bottom: 1px solid var(--linea);
  align-items: start;
}
.offer__name {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.05;
}
.offer__name .idx {
  font-style: italic;
  font-size: 0.9rem;
  color: var(--brasa);
  vertical-align: super;
  margin-right: 0.6rem;
}
.offer__text { color: var(--hueso-2); font-size: 1.05rem; max-width: 46ch; }

.cta-band {
  margin-top: clamp(3rem, 6vw, 4.5rem);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.cta-band__line {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  max-width: 20ch;
}

.videos__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
  margin-top: 3rem;
}
.videoframe {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 4px;
  overflow: hidden;
  background: var(--noche-2);
  border: 1px solid var(--linea);
}
.videoframe iframe { width: 100%; height: 100%; border: none; }
.videoframe--empty {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.4rem;
  background:
    radial-gradient(130% 120% at 25% 15%, rgba(196,89,47,0.10), transparent 55%),
    var(--noche-2);
  transition: border-color 0.3s ease;
}
.videoframe--empty:hover { border-color: var(--hueso-3); }
.videoframe__play {
  position: absolute; top: 1.3rem; left: 1.4rem;
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--linea);
  display: grid; place-items: center;
}
.videoframe__play::after {
  content: "";
  border-left: 11px solid var(--hueso-2);
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  margin-left: 3px;
}
.videoframe__title { font-family: var(--serif); font-size: 1.3rem; }
.videoframe__meta { font-size: 0.85rem; color: var(--hueso-3); margin-top: 0.2rem; }
.videos__note { margin-top: 2.2rem; color: var(--hueso-2); }

.bio__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
  margin-top: 1rem;
}
.bio__photo { border-radius: 3px; overflow: hidden; position: sticky; top: 7rem; }
.bio__photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.bio__body p {
  font-size: clamp(1.15rem, 1.9vw, 1.5rem);
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 1.3rem;
  max-width: 30ch;
}
.bio__body p + p { color: var(--hueso-2); }
.bio__sgae {
  margin-top: 2.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--linea);
  font-family: var(--sans) !important;
  font-size: 0.9rem !important;
  color: var(--hueso-2);
  max-width: none !important;
}

.contact__intro { margin-top: 1.5rem; color: var(--hueso-2); font-size: clamp(1.05rem, 1.6vw, 1.2rem); max-width: 37rem; }
.contact__email {
  display: inline-block;
  margin-top: 1.6rem;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.5rem, 4.5vw, 2.4rem);
}
.contact__faqs { margin-top: 1.6rem; color: var(--hueso-2); font-size: 1rem; }
.contact__faqs a { color: var(--hueso); border-bottom: 1px solid var(--brasa); padding-bottom: 1px; transition: color 0.2s ease; }
.contact__faqs a:hover { color: var(--brasa); }

.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  width: 100%;
  max-width: 640px;
  margin-inline: auto;
}
.field { display: flex; flex-direction: column; grid-column: 1 / -1; }
.field--half { grid-column: span 1; }
.field label { font-size: 0.85rem; color: var(--hueso-2); margin-bottom: 0.5rem; }
.field input,
.field select,
.field textarea {
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--hueso);
  background: var(--noche-2);
  border: 1px solid var(--linea);
  border-radius: 5px;
  padding: 0.8rem 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input::placeholder, .field textarea::placeholder { color: var(--hueso-3); }
.field select option { background: var(--noche-2); color: var(--hueso); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brasa);
  box-shadow: 0 0 0 3px rgba(196, 89, 47, 0.15);
}
.field textarea { resize: vertical; min-height: 120px; }
.form__actions { grid-column: 1 / -1; margin-top: 1.4rem; display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.form__status { grid-column: 1 / -1; margin-top: 0.3rem; font-size: 0.95rem; color: var(--hueso-2); min-height: 1.2em; }
.form__status.is-ok { color: var(--hueso); }
.form__status.is-error { color: var(--brasa); }

.form-card {
  width: 100%;
  max-width: 660px;
  margin-inline: auto;
  border-radius: 14px;
  padding: clamp(1.6rem, 4vw, 2.6rem);
  box-shadow: 0 36px 70px -34px rgba(0, 0, 0, 0.6);
}
.form-card .form { max-width: none; margin: 0; }

.form-card { background: #e4dbca; border: 1px solid rgba(36, 29, 23, 0.14); }
.form-card .field label { color: #6a5c4e; }
.form-card .field input,
.form-card .field select,
.form-card .field textarea {
  background: #e4dbca;
  color: #2a2018;
  border: 1px solid #cec2ac;
}
.form-card .field input::placeholder,
.form-card .field textarea::placeholder { color: #8a7d6b; }
.form-card .field select option { background: #e4dbca; color: #2a2018; }
.form-card .field input:focus,
.form-card .field select:focus,
.form-card .field textarea:focus {
  border-color: var(--brasa);
  box-shadow: 0 0 0 3px rgba(196, 89, 47, 0.18);
}

html[data-theme="light"] .form-card { background: #372e26; border-color: rgba(236, 227, 210, 0.14); }
html[data-theme="light"] .form-card .field label { color: #a99b84; }
html[data-theme="light"] .form-card .field input,
html[data-theme="light"] .form-card .field select,
html[data-theme="light"] .form-card .field textarea {
  background: #372e26;
  color: #ece3d2;
  border-color: rgba(236, 227, 210, 0.16);
}
html[data-theme="light"] .form-card .field input::placeholder,
html[data-theme="light"] .form-card .field textarea::placeholder { color: #9a8d79; }
html[data-theme="light"] .form-card .field select option { background: #372e26; color: #ece3d2; }

.follow__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.9rem;
  width: 100%;
  margin-top: clamp(1.8rem, 4vw, 2.6rem);
}
.follow__item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.1rem 1.25rem;
  border: 1px solid var(--linea);
  border-radius: 10px;
  background: var(--noche-2);
  transition: transform 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.follow__item:hover { transform: translateY(-3px); border-color: var(--brasa); color: var(--brasa); }
.follow__item svg { width: 24px; height: 24px; fill: currentColor; flex-shrink: 0; }
.follow__item span { font-weight: 600; font-size: 0.98rem; }

@media (max-width: 720px) {
  .form { grid-template-columns: 1fr; }
  .field--half { grid-column: 1 / -1; }
}

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.no-intro .reveal { opacity: 1; transform: none; transition: none; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: clamp(5rem, 12vw, 6.5rem); }
  .hero__media { order: -1; max-width: 340px; }
  .listen__grid,
  .bio__grid,
  .contact__grid,
  .testi__grid { grid-template-columns: 1fr; }
  .bio__photo { position: static; max-width: 380px; }
  .offer__row { grid-template-columns: 1fr; gap: 0.8rem; }
  .videos__grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .navtoggle { display: flex; }
  .mainnav {
    position: fixed; inset: 0 0 0 auto;
    width: min(80vw, 320px);
    flex-direction: column; justify-content: center;
    gap: 2rem; padding: 3rem;
    background: var(--carbon);
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.5,0,0.2,1);
  }
  .mainnav.open { transform: translateX(0); }
  .mainnav__link { font-size: 1.35rem; font-family: var(--serif); }
  .navtoggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .navtoggle.open span:nth-child(2) { opacity: 0; }
  .navtoggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
  .form { grid-template-columns: 1fr; }
  .field--half { grid-column: 1 / -1; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 900px) {
  .hero { padding: clamp(6.25rem, 15vw, 7.75rem) 0 0; gap: 0; }
  .hero__media { max-width: none; }
  .hero__photo { border-radius: 0; }
  .hero__photo img { aspect-ratio: auto; height: 78svh; }
  .hero__text { padding: clamp(2.2rem, 7vw, 3.2rem) var(--pad) clamp(2.5rem, 7vw, 3.5rem); }

  .evp { padding-block: clamp(2.75rem, 6vw, 3.75rem); }
  .ev-rows, .artists { transform: none; }
  .evp:first-of-type { padding-top: clamp(5.5rem, 14vw, 7rem); }
  .listen.panel { padding-block: clamp(2.5rem, 6vw, 3.5rem); }
  .testi { padding-top: clamp(2.5rem, 6vw, 3.5rem); padding-bottom: 0; }
  .bio-end__inner { padding-top: clamp(2.5rem, 6vw, 3.5rem); padding-bottom: clamp(1rem, 3vw, 2rem); }
  .ev-close__inner { padding-top: clamp(2.5rem, 6vw, 3.5rem); }

  .faq-list { margin-top: 0; }
  .evp:has(.faq-list) { padding-block: 0.5rem; border-top: none; }
  .evp:has(.faq-list):first-of-type { padding-top: clamp(5.5rem, 14vw, 7rem); }
  .bio-end:has(.faq-list) { border-top: none; }
  .bio-end:has(.faq-list) .bio-end__inner { padding-top: 0.75rem; }
}

@media (max-width: 900px) {
  .hero__desc,
  .evp__sub,
  .ev-row__text,
  .concert__text,
  .bio2__p,
  .faq-a,
  .tr-item__text,
  .escena__text,
  .legal p,
  .contact__intro,
  .contact__faqs {
    text-align: justify;
    text-align-last: left;
  }
}

.wa-float {
  position: fixed;
  right: clamp(1rem, 2.5vw, 1.6rem);
  bottom: clamp(1rem, 2.5vw, 1.6rem);
  z-index: 95;
  view-transition-name: wa-float;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--brasa);
  color: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease, filter 0.25s ease, box-shadow 0.25s ease;
}
.wa-float:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.42);
}
.wa-float svg { width: 30px; height: 30px; }
@media (max-width: 560px) {
  .wa-float { width: 52px; height: 52px; }
  .wa-float svg { width: 28px; height: 28px; }
}
