.block {
  --block-pad: clamp(4rem, 12vh, 7.5rem);
  padding-block: var(--block-pad);

  --anchor-gap: 8px;
  scroll-margin-top: calc(var(--anchor-gap) - var(--block-pad));
}
.block__head { margin-bottom: 2.25rem; }

.hero {
  position: relative;
  --alto-foto: min(150vw, 62svh);

  --recorte: calc((var(--alto-foto) - 150vw) * 0.35);

  --punto:  calc(var(--recorte) + 72vw);
  --menton: calc(var(--recorte) + 60vw + 24px);
}

.hero__bg {
  position: relative;
  height: var(--alto-foto);
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  object-position: center 35%;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 52%, transparent 97%);
          mask-image: linear-gradient(to bottom, #000 0%, #000 52%, transparent 97%);
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(58, 18, 2, 0.58) 0%,
    rgba(58, 18, 2, 0.12) 22%,
    rgba(240, 118, 26, 0.28) 66%,
    rgba(240, 118, 26, 0) 100%
  );
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  margin-top: calc(
    max(var(--menton), min(var(--punto), var(--alto-foto) * 0.78))
    - var(--alto-foto));

  text-align: center;
  padding: 0 var(--pad) clamp(1rem, 4svh, 4rem);
}

.hero__fecha {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--crema);
  text-shadow: 0 1px 12px rgba(58, 18, 2, 0.45);
  margin-bottom: clamp(0.35rem, 1svh, 0.7rem);
}

.hero__title {
  font-family: var(--f-display);
  font-weight: 400;
  text-transform: uppercase;

  font-size: clamp(2.2rem, min(19.5vw, 9.5svh), 9.5rem);
  line-height: 0.92;
  letter-spacing: 0.01em;
  color: var(--crema);
  text-wrap: balance;
  text-shadow: 0 4px 40px rgba(90, 30, 5, 0.3);
}

.hero__lugar {
  margin-top: clamp(0.45rem, 1.2svh, 0.9rem);
  font-size: 0.86rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--crema);
  text-shadow: 0 1px 12px rgba(58, 18, 2, 0.45);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem 0.9rem;

  overflow-wrap: anywhere;
}
.hero__lugar .sep { opacity: 0.6; }

@media (max-width: 400px) {
  .hero__lugar .sep { display: none; }
}

.hero__cta {
  margin-top: clamp(0.6rem, 1.8svh, 1.3rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
.hero__cta .btn { width: 100%; }

.btn.is-agotado {
  border-style: dashed;
  opacity: 0.85;
  pointer-events: none;
}

.scroll-cue {
  display: block;
  width: max-content;
  margin: 0.5rem auto 0;
  color: var(--crema);
  opacity: 0.8;
  padding: 0.5rem;
  transition: opacity 0.25s;
}
@media (hover: hover) {
  .scroll-cue:hover { opacity: 1; }
}
.scroll-cue svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  animation: bajar 2.4s var(--ease) infinite;
}
@keyframes bajar {
  0%, 100% { transform: translateY(-4px); opacity: 0.55; }
  50%      { transform: translateY(4px);  opacity: 1; }
}

@media (max-width: 359px) {
  :root { --pad: 0.9rem; }

  .hero__title { font-size: clamp(1.5rem, 17vw, 3rem); }
  .hero__fecha { font-size: 0.66rem; letter-spacing: 0.18em; margin-bottom: 0.45rem; }
  .hero__lugar { font-size: 0.7rem; letter-spacing: 0.12em; margin-top: 0.5rem; gap: 0.2rem 0.6rem; }
  .hero__cta { margin-top: 0.9rem; }
  .hero__cta .btn { padding: 0.7rem 0.9rem; font-size: 0.66rem; letter-spacing: 0.1em; gap: 0.6em; }
  .hero__cta .btn svg { width: 14px; height: 14px; }
  .hero__cta .btn-ghost { padding: 0.6rem 0.2rem; font-size: 0.66rem; letter-spacing: 0.1em; }

  .section-title { font-size: clamp(1.6rem, 10vw, 2.4rem); }

  .show { gap: 0.25rem; padding-block: 1.35rem; }
  .show__fecha .dia { font-size: 1.55rem; }
  .show__info .venue { font-size: 1.35rem; }
  .show__info .ciudad { font-size: 0.7rem; letter-spacing: 0.16em; }
  .brand img { height: 27px; }
  .site-footer__logo { height: 38px; }
}

@media (max-width: 359px) and (max-height: 620px) {
  .hero__title { font-size: clamp(1.4rem, 15vw, 2.6rem); }
  .hero__cta { margin-top: 0.6rem; }
  .hero__inner { padding-bottom: 0.5rem; }
  .scroll-cue { display: none; }
}

@media (max-width: 899px) and (max-height: 720px) {
  .hero__title { font-size: clamp(2.1rem, 13.5vw, 4.2rem); }
  .hero__fecha { font-size: 0.74rem; margin-bottom: 0.4rem; }
  .hero__lugar { margin-top: 0.55rem; font-size: 0.78rem; }
  .hero__cta { margin-top: 0.9rem; }
  .hero__cta { gap: 0.15rem; }
  .hero__cta .btn { padding: 0.65rem 1.3rem; font-size: 0.72rem; }
  .hero__cta .btn-ghost { padding: 0.6rem 0.3rem; font-size: 0.72rem; }
  .hero__inner { padding-bottom: 0.7rem; }
  .scroll-cue { display: none; }
}

@media (min-width: 560px) and (max-width: 899px) and (max-height: 720px) {
  .hero__title { font-size: clamp(1.8rem, 5vw, 3rem); }
  .hero__cta { margin-top: 0.6rem; }
  .hero__inner { padding-bottom: 0.5rem; }
}

@media (max-width: 559px) and (max-height: 560px) {
  .hero__title { font-size: clamp(1.9rem, 11vw, 3.4rem); }
  .hero__fecha { font-size: 0.7rem; margin-bottom: 0.3rem; }
  .hero__lugar { margin-top: 0.4rem; font-size: 0.74rem; }
  .hero__cta { margin-top: 0.6rem; }
  .hero__inner { padding-bottom: 0.5rem; }
}

@media (min-width: 560px) {
  .hero {
    --alto-foto: min(62.5vw, 62svh);
    --recorte: calc((var(--alto-foto) - 62.5vw) * 0.35);
    --punto:  calc(var(--recorte) + 38.13vw);
    --menton: calc(var(--recorte) + 28.75vw + 24px);
  }

  .hero__title { font-size: clamp(3rem, 19.5vw, 9.5rem); }

  .hero__cta {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1.6rem;
    margin-top: 1.8rem;
  }
  .hero__cta .btn { width: auto; }
}

@media (min-width: 900px) {
  .hero {
    min-height: 100svh;
    display: grid;
    grid-template-rows: 56svh auto;
    overflow: hidden;
  }

  .hero__bg {
    position: absolute;
    inset: 0;
    height: auto;
  }
  .hero__bg img {
    object-position: center center;
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 46%, transparent 90%);
            mask-image: linear-gradient(to bottom, #000 0%, #000 46%, transparent 90%);
  }

  .hero__inner {
    grid-row: 2;
    margin-top: 0;
    padding-bottom: clamp(0.75rem, 1.5vh, 1.5rem);
  }

  .scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 1.2rem;
    transform: translateX(-50%);
    margin: 0;
    z-index: 3;
  }

  .hero__fecha { font-size: 0.9rem; }
  .hero__lugar { font-size: 0.95rem; margin-top: 0.9rem; }
  .hero__cta { margin-top: 1.4rem; }

}

@media (min-width: 900px) and (max-height: 820px) {
  .hero { grid-template-rows: 54svh auto; }
  .hero__title { font-size: clamp(2.8rem, 7vw, 6rem); }
  .hero__lugar { margin-top: 0.8rem; }
  .hero__cta { margin-top: 1.3rem; }
  .hero__inner { padding-bottom: 0.6rem; }
}

@media (min-width: 900px) and (max-height: 700px) {
  .hero { grid-template-rows: 50svh auto; }
  .hero__title { font-size: clamp(2rem, 5vw, 4rem); }
  .hero__fecha { font-size: 0.76rem; margin-bottom: 0.35rem; }
  .hero__lugar { margin-top: 0.45rem; font-size: 0.8rem; }
  .hero__cta { margin-top: 0.7rem; }
  .hero__cta .btn { padding: 0.65rem 1.3rem; font-size: 0.72rem; }
  .hero__cta .btn-ghost { padding: 0.65rem 0.3rem; font-size: 0.72rem; }
  .hero__inner { padding-bottom: 0.5rem; }
  .scroll-cue { display: none; }
}

@media (max-width: 259px) and (max-height: 460px) {
  .hero__fecha { font-size: 0.6rem; margin-bottom: 0.3rem; }
  .hero__title { font-size: 1.35rem; }
  .hero__lugar { font-size: 0.64rem; margin-top: 0.35rem; }
  .hero__cta { margin-top: 0.45rem; gap: 0.1rem; }
  .hero__cta .btn { padding: 0.5rem 0.7rem; font-size: 0.6rem; }
  .hero__cta .btn-ghost { padding: 0.45rem 0.2rem; font-size: 0.6rem; }
  .hero__inner { padding-bottom: 0.3rem; }
}

.plataformas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}
.plataformas a {

  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--crema);
  border: 1px solid rgba(255, 246, 236, 0.5);
  background: rgba(58, 18, 2, 0.16);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: transform 0.25s var(--ease), background 0.25s,
              color 0.25s, border-color 0.25s, box-shadow 0.35s var(--ease);
}
@media (hover: hover) {
  .plataformas a:hover {
    background: var(--crema);
    color: var(--brasa);
    border-color: var(--crema);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px -8px rgba(58, 18, 2, 0.65);
  }
}
.plataformas a:active { transform: scale(0.94); }
.plataformas svg { width: 23px; height: 23px; }

.plataformas span {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

@media (min-width: 660px) {
  .plataformas { gap: 0.9rem; }
  .plataformas a { width: 58px; height: 58px; }
  .plataformas svg { width: 25px; height: 25px; }
}

.shows { border-top: 1px solid var(--line); }

.show {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 0.3rem;
  padding: 1.9rem 0.25rem;
  border-bottom: 1px solid var(--line);
  transition: background 0.3s var(--ease), padding-left 0.3s var(--ease);
}
@media (hover: hover) {
  .show:hover { background: rgba(255, 246, 236, 0.06); }
}

.show__fecha {
  grid-area: fecha;
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.45rem;
  line-height: 1.1;
  margin-bottom: 0.35rem;
}
.show__fecha .dia {
  font-family: var(--f-display);
  font-size: 1.85rem;
  color: var(--crema);
  display: block;
}
.show__fecha .mes {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--crema-dim);
}

.show__info {
  grid-area: info;
  min-width: 0;
  overflow-wrap: anywhere;
  display: flex;
  flex-direction: column;
}
.show__info .venue  { order: 1; }
.show__info .ciudad { order: 2; }

.show__info .venue {
  font-family: var(--f-display);
  font-size: 1.75rem;
  line-height: 1.15;
  color: var(--crema);
  margin-bottom: 0.2rem;
}
.show__info .ciudad {
  font-family: var(--f-ui);
  font-size: 0.78rem;
  line-height: 1.4;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--crema-dim);
}

.show__cta {
  grid-area: cta;
  margin-top: 1.05rem;
  align-self: stretch;
}
.show__cta > * {
  width: 100%;
  text-align: center;
}

.tag-agotado,
.tag-pronto {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.55rem 1.1rem;
  border-radius: 100px;
  border: 1px solid var(--line);
}
.tag-agotado {
  color: var(--crema);
  border-style: dashed;
  border-color: rgba(255, 246, 236, 0.55);
}
.tag-pronto { color: var(--crema-faint); }

.shows__empty {
  border-top: 1px solid var(--line);
  padding: 2.2rem 0.25rem 0;
  color: var(--crema-dim);
  max-width: 46ch;
}

@media (min-width: 720px) {

  .show {
    display: grid;
    grid-template-columns: 128px 1fr auto;
    grid-template-areas: "fecha info cta";
    align-items: center;
    text-align: left;
    gap: 1.5rem;
    padding-block: 1.6rem;
  }
  @media (hover: hover) {
    .show:hover { padding-left: 1.1rem; }
  }

  .show__cta {
    margin-top: 0;
    text-align: right;
    align-self: center;
  }
  .show__cta > * { width: auto; }

  .show__fecha {
    display: block;
    margin-bottom: 0;
  }
  .show__fecha .dia { font-size: 2.9rem; }

  .show__info { display: block; }
  .show__info .ciudad {
    font-family: var(--f-display);
    font-size: 1.7rem;
    line-height: 1.15;
    letter-spacing: normal;
    color: var(--crema);
  }
  .show__info .venue {
    font-family: var(--f-ui);
    font-size: 0.92rem;
    color: var(--crema-dim);
    margin-bottom: 0;
  }
}

.sobre {
  display: grid;
  gap: 2.5rem;
}

.sobre__foto img {
  width: 100%;
  height: auto;

  max-height: 70svh;
  object-fit: cover;

  border-radius: var(--radio);
}

.sobre__texto p {
  color: var(--crema-dim);
  max-width: 54ch;
}
.sobre__texto p + p { margin-top: 1.1rem; }
.sobre__texto .btn-ghost { margin-top: 1.6rem; }

.redes { margin-top: 1.8rem; }

.redes__label {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--crema-dim);
  margin-bottom: 0.8rem;
}

.redes__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}
.redes__links a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--crema);
  border: 1px solid rgba(255, 246, 236, 0.4);
  transition: transform 0.25s var(--ease), background 0.25s,
              color 0.25s, border-color 0.25s, box-shadow 0.35s var(--ease);
}
@media (hover: hover) {
  .redes__links a:hover {
    background: var(--crema);
    color: var(--brasa);
    border-color: var(--crema);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px -8px rgba(58, 18, 2, 0.65);
  }
}
.redes__links a:active { transform: scale(0.94); }
.redes__links svg { width: 20px; height: 20px; }

.redes__links span {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

@media (max-width: 359px) {
  .redes__links a { width: 40px; height: 40px; }
  .redes__links svg { width: 18px; height: 18px; }
}

@media (min-width: 900px) {
  .sobre {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
}

.musica {
  display: grid;
  gap: 1.75rem;
}

.musica__label {
  font-family: var(--f-ui);
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--crema-dim);
  margin-bottom: 0.85rem;
}

.musica__embed {
  display: block;
  width: 100%;
  height: 352px;
  border: 0;
  border-radius: 12px;
}

.musica__mas { margin-top: 2.75rem; }

.musica__mas-label {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--crema-dim);
  margin-bottom: 0.9rem;
}

@media (min-width: 860px) {
  .musica {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

.news {
  display: grid;
  gap: 1.5rem;
  max-width: 60ch;
}

.news__texto {
  color: var(--crema-dim);
  max-width: 54ch;
}

.news__form {
  display: grid;
  gap: 1rem;
}

.news__campo {
  display: grid;
  gap: 0.6rem;
}

.news__label {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--crema-dim);
}

.news__input {
  width: 100%;
  font-family: var(--f-ui);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.4;
  color: var(--crema);
  background: rgba(255, 246, 236, 0.07);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 0.95rem 1.4rem;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.news__input::placeholder { color: var(--crema-faint); }
.news__input:focus {
  border-color: var(--crema);
  background: rgba(255, 246, 236, 0.12);
}
.news__input:focus-visible { border-radius: 100px; }

.news__form .btn { width: 100%; }

.news__form.enviando .btn {
  opacity: 0.55;
  pointer-events: none;
}

.news__trampa {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.news__msg {
  font-size: 0.88rem;
  color: var(--crema-dim);
  min-height: 1.4em;
}
.news__msg--ok { color: var(--crema); }
.news__msg--error { color: var(--sol-hot); }

.news__legal {
  font-size: 0.74rem;
  line-height: 1.55;
  color: var(--crema-faint);
  max-width: 54ch;
}
.news__legal a {
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.25s var(--ease);
}
@media (hover: hover) {
  .news__legal a:hover { color: var(--crema); }
}

@media (min-width: 560px) {
  .news__form {
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 0.9rem;
  }
  .news__form .btn { width: auto; }
}

.site-footer {
  border-top: 1px solid var(--line-soft);
  padding-block: 2.6rem;
}
.site-footer .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
  text-align: center;
}
.site-footer__logo {
  height: 58px;
  width: auto;
  aspect-ratio: 1725 / 871;
  opacity: 0.92;
}
.site-footer__creditos {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--crema-faint);
}
.site-footer__creditos img {
  height: 17px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: opacity 0.25s var(--ease);
}
.site-footer__creditos a {
  display: inline-flex;
  align-items: center;
  color: var(--crema-faint);
  transition: color 0.25s var(--ease);
}
@media (hover: hover) {
  .site-footer__creditos a:hover { color: var(--crema); }
  .site-footer__creditos a:hover img { opacity: 1; }
}

.site-footer__legal {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--crema-faint);
}

@media (min-width: 720px) {
  .site-footer .wrap {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
