:root {
      --bg: #07080d;
      --bg-soft: #0d111b;
      --card: rgba(255, 255, 255, .075);
      --card-strong: rgba(255, 255, 255, .12);
      --text: #f4f6fb;
      --muted: #a7adbd;
      --blue: #2488ff;
      --blue-2: #68b6ff;
      --amber: #f2a646;
      --line: rgba(255, 255, 255, .16);
      --shadow: 0 24px 80px rgba(0, 0, 0, .45);
      --radius: 28px;
      --hero-position: 58% center;
      --mural-position: 58% center;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 18% 10%, rgba(36, 136, 255, .22), transparent 30%),
        radial-gradient(circle at 88% 12%, rgba(242, 166, 70, .18), transparent 28%),
        linear-gradient(180deg, #06070b 0%, #0b0f18 45%, #05060a 100%);
      overflow-x: hidden;
    }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(5, 6, 10, .62);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

    .nav {
      width: min(1180px, calc(100% - 36px));
      margin: 0 auto;
      min-height: 92px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
}
      
.brand-title {
  /*
    Fuente homogénea con la web: Inter.
    Evitamos una script que compita con el logo horizontal y usamos
    un texto limpio, compacto y elegante como apoyo al logotipo.
  */
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.05rem, 1.6vw, 1.45rem);
  line-height: 1;
  letter-spacing: .16em;
  font-weight: 900;
  text-transform: uppercase;
  color: #eaf4ff;
  display: inline-block;
  opacity: .92;
  text-shadow:
    0 0 12px rgba(36,136,255,.30),
    1px 1px 0 rgba(0,0,0,.65);
}


    .brand-mark {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, var(--blue), #1f356d 55%, var(--amber));
      box-shadow: 0 0 38px rgba(36, 136, 255, .55);
      font-family: Inter, sans-serif;
      font-size: 1.25rem;
      font-weight: 900;
    }

.brand-logo {
  width: 220px;
  height: 82px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 14px rgba(36, 136, 255, .35));
  flex: 0 0 auto;
}


    .menu {
      display: flex;
      align-items: center;
      gap: 22px;
      color: var(--muted);
      font-weight: 700;
      font-size: .9rem;
    }

    .menu a { transition: color .2s ease; }
    .menu a:hover { color: var(--text); }


    .lang-switch {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 10px;
      border-radius: 999px;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.14);
    }

    .lang-switch label {
      color: var(--muted);
      font-weight: 900;
      font-size: .76rem;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .lang-switch select {
      color: var(--text);
      background: rgba(7,8,13,.92);
      border: 1px solid rgba(255,255,255,.16);
      border-radius: 999px;
      padding: 6px 9px;
      font: inherit;
      font-weight: 900;
      cursor: pointer;
      outline: none;
    }

    .lang-switch-mobile {
      display: none;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 48px;
      padding: 0 20px;
      border-radius: 999px;
      font-weight: 800;
      border: 1px solid rgba(255,255,255,.18);
      background: rgba(255,255,255,.08);
      box-shadow: 0 12px 34px rgba(0,0,0,.25);
      transition: transform .2s ease, background .2s ease, border-color .2s ease;
    }

    .btn:hover { transform: translateY(-2px); background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.32); }
    .btn-primary { background: linear-gradient(135deg, var(--blue), #132f84); border-color: rgba(104, 182, 255, .45); }
    .btn-primary:hover { background: linear-gradient(135deg, var(--blue-2), #1945b4); }

.hero {
  min-height: calc(100svh - 92px);
  display: grid;
  place-items: end start;
  position: relative;
  isolation: isolate;
  padding: 90px 0 70px;
  overflow: hidden;
  z-index: 0;
}

      .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
          linear-gradient(90deg, rgba(4,5,8,.28) 0%, rgba(4,5,8,.16) 42%, rgba(4,5,8,.04) 100%),
          linear-gradient(180deg, rgba(4,5,8,.00) 0%, rgba(4,5,8,.08) 65%, rgba(7,8,13,.55) 100%),
          url("assets/bluestones_mural2.webp") var(--hero-position)/cover no-repeat;
        z-index: 0;
        transform: scale(1.01);
      }
    .hero::after {
      content: "";
      position: absolute;
      inset: auto 0 0 0;
      height: 160px;
      background: linear-gradient(180deg, transparent, var(--bg));
      z-index: 1;
      pointer-events: none;
    }

    .container {
      width: min(1180px, calc(100% - 36px));
      margin: 0 auto;
    }

    .hero-content {
  max-width: 560px;
  padding: 28px 30px;
  border-radius: 28px;
  background: rgba(7, 8, 13, .42);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 50px rgba(0,0,0,.28);
}

    .eyebrow::before {
      content: "";
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--amber);
      box-shadow: 0 0 22px var(--amber);
    }

    h1, h2, h3 { margin: 0; line-height: .95; }
h1 {
  margin-top: 18px;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3.4rem, 7vw, 6.8rem);
  letter-spacing: .03em;
  text-transform: uppercase;
  line-height: .95;
  text-shadow: 0 0 24px rgba(36,136,255,.24);
}

    .hero-title span {
      display: block;
      color: transparent;
      -webkit-text-stroke: 1px rgba(255,255,255,.84);
      text-shadow: none;
    }

    .lead {
      margin: 18px 0 0;
      max-width: 650px;
      color: #d8deee;
      font-size: clamp(1.05rem, 1.8vw, 1.35rem);
      line-height: 1.65;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 34px;
    }

    .hero-stats {
      margin-top: 44px;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      max-width: 760px;
    }

    .stat {
      padding: 18px;
      border-radius: 22px;
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.13);
      backdrop-filter: blur(16px);
    }

    .stat strong {
      display: block;
      font-family: "Bebas Neue", sans-serif;
      font-size: 2.25rem;
      letter-spacing: .04em;
    }

    .stat span { color: var(--muted); font-weight: 700; font-size: .92rem; }

    section { padding: 98px 0; position: relative; }
    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 34px;
    }

    .kicker {
      color: var(--amber);
      font-weight: 900;
      letter-spacing: .16em;
      text-transform: uppercase;
      font-size: .78rem;
      margin-bottom: 12px;
    }

    h2 {
      font-family: "Bebas Neue", sans-serif;
      font-size: clamp(3rem, 6vw, 6rem);
      letter-spacing: .04em;
      text-transform: uppercase;
    }

    .section-copy {
      max-width: 560px;
      color: var(--muted);
      line-height: 1.75;
      font-size: 1.02rem;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 26px;
      align-items: stretch;
    }

    .panel {
      border: 1px solid var(--line);
      background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.045));
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
    }

    .panel-text { padding: clamp(24px, 4vw, 46px); }
    .panel-text p {
      color: #c8cfdf;
      line-height: 1.85;
      margin: 0 0 20px;
    }

    .tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
    .tag {
      border: 1px solid rgba(104,182,255,.28);
      color: #dbeaff;
      background: rgba(36,136,255,.1);
      border-radius: 999px;
      padding: 9px 13px;
      font-weight: 800;
      font-size: .82rem;
    }

    .image-card {
      min-height: 460px;
      background: url("assets/bluestones_sevilla.webp") center/cover no-repeat;
      position: relative;
    }

    .image-card::after {
      content: "Sevilla · Blues · Rock";
      position: absolute;
      left: 22px;
      bottom: 22px;
      padding: 12px 16px;
      border-radius: 999px;
      background: rgba(0,0,0,.55);
      border: 1px solid rgba(255,255,255,.16);
      backdrop-filter: blur(14px);
      font-weight: 900;
    }


    .members-grid {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 20px;
      align-items: stretch;
    }

    .member {
      min-height: 300px;
      padding: 26px 18px 24px;
      border-radius: 28px;
      border: 1px solid var(--line);
      background:
        linear-gradient(180deg, rgba(255,255,255,.1), rgba(255,255,255,.045)),
        radial-gradient(circle at 50% 18%, rgba(36,136,255,.24), transparent 58%);
      box-shadow: 0 18px 48px rgba(0,0,0,.26);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      text-align: center;
      gap: 22px;
      transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
      overflow: hidden;
    }

    .member:hover {
      transform: translateY(-6px);
      border-color: rgba(104,182,255,.42);
      box-shadow: 0 24px 64px rgba(0,0,0,.34);
    }

    .member-photo-wrap {
      width: clamp(158px, 14vw, 198px);
      aspect-ratio: 1;
      border-radius: 50%;
      padding: 7px;
      background:
        linear-gradient(135deg, rgba(104,182,255,.95), rgba(255,255,255,.22) 44%, rgba(242,166,70,.72));
      box-shadow:
        0 18px 36px rgba(0,0,0,.35),
        0 0 34px rgba(36,136,255,.20);
      position: relative;
      flex: 0 0 auto;
      overflow: hidden;
      isolation: isolate;
    }

    .member-photo-wrap::before {
      content: "";
      position: absolute;
      inset: 7px;
      border-radius: 50%;
      background:
        radial-gradient(circle at 50% 28%, rgba(36,136,255,.30), transparent 52%),
        rgba(5,7,12,.72);
      border: 1px solid rgba(255,255,255,.12);
      z-index: 0;
      pointer-events: none;
    }

    .member-photo-wrap::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 50%;
      padding: 7px;
      background:
        linear-gradient(135deg, rgba(104,182,255,.98), rgba(255,255,255,.28) 44%, rgba(242,166,70,.86));
      -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      z-index: 3;
      pointer-events: none;
    }

    .member-photo {
      position: relative;
      z-index: 1;
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: center bottom;
      border-radius: 50%;
      filter: drop-shadow(0 12px 18px rgba(0,0,0,.42));
      transform: scale(1.34);
      transform-origin: center bottom;
      transition: transform .24s ease;
    }

    .member:hover .member-photo {
      transform: scale(1.42);
    }

    .member-info {
      display: grid;
      gap: 6px;
      justify-items: center;
    }

    .member h3 {
      font-size: 1.35rem;
      line-height: 1.15;
      margin: 0;
    }

    .member p {
      margin: 0;
      color: var(--muted);
      font-weight: 800;
    }

   .music {
  min-height: 78vh;
  padding: 120px 0;
  background:
    linear-gradient(180deg, rgba(7,8,13,.04), rgba(7,8,13,.55)),
    url("assets/bluestones_mural2.webp") var(--mural-position)/cover fixed no-repeat;
}

/* iPad/tablet: desactivamos el fixed para evitar el zoom exagerado del parallax en Safari/iPadOS. */
@media (max-width: 1180px), (pointer: coarse) {
  .music {
    --mural-position: 42% center;
    min-height: 64svh;
    background-attachment: scroll;
  }
}

    .music-box {
      max-width: 820px;
      padding: clamp(28px, 5vw, 56px);
      border-radius: var(--radius);
      border: 1px solid rgba(255,255,255,.18);
      background: rgba(5,7,12,.78);
      backdrop-filter: blur(18px);
      box-shadow: var(--shadow);
    }

    .setlist {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      margin-top: 28px;
    }

    .setlist div {
      padding: 18px;
      border-radius: 20px;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.12);
      color: #dfe7fb;
      font-weight: 800;
    }

    .shows-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .show-card {
      padding: 18px;
      border-radius: 26px;
      border: 1px solid var(--line);
      background:
        radial-gradient(circle at 50% 0%, rgba(36,136,255,.12), transparent 52%),
        rgba(255,255,255,.07);
      display: flex;
      flex-direction: column;
      gap: 18px;
      overflow: hidden;
    }

    .show-poster,
    .show-poster-placeholder {
      position: relative;
      width: 100%;
      aspect-ratio: 4 / 5;
      border: 0;
      border-radius: 22px;
      overflow: hidden;
      background:
        radial-gradient(circle at 50% 28%, rgba(36,136,255,.20), transparent 54%),
        rgba(0,0,0,.26);
      border: 1px solid rgba(255,255,255,.13);
      box-shadow: 0 18px 42px rgba(0,0,0,.30);
    }

    .show-poster {
      cursor: pointer;
      padding: 0;
      display: block;
    }

    .show-poster img,
    .show-poster-placeholder img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      transition: transform .28s ease, filter .28s ease;
    }

    .show-poster:hover img {
      transform: scale(1.045);
      filter: brightness(1.08);
    }

    .show-poster-placeholder {
      display: grid;
      place-items: center;
      padding: 26px;
    }

    .show-poster-placeholder img {
      width: min(72%, 210px);
      height: auto;
      object-fit: contain;
      filter: drop-shadow(0 18px 34px rgba(0,0,0,.45));
      opacity: .88;
    }

    .show-poster-badge {
      position: absolute;
      left: 14px;
      bottom: 14px;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(0,0,0,.64);
      border: 1px solid rgba(255,255,255,.16);
      color: #f4f6fb;
      font-size: .78rem;
      font-weight: 900;
      backdrop-filter: blur(12px);
    }

    .show-card-body {
      padding: 0 8px 6px;
    }

    .show-card .date {
      display: inline-flex;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(242,166,70,.14);
      color: #ffd59a;
      font-weight: 900;
      margin-bottom: 16px;
    }

    .show-card h3 { font-size: 1.3rem; line-height: 1.25; }
    .show-card p { color: var(--muted); line-height: 1.6; margin-bottom: 0; }

    .poster-modal {
      position: fixed;
      inset: 0;
      z-index: 100;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 28px;
      background: rgba(0,0,0,.78);
      backdrop-filter: blur(10px);
    }

    .poster-modal.is-open {
      display: flex;
    }

    .poster-modal-content {
      position: relative;
      width: min(92vw, 820px);
      max-height: 92vh;
      display: grid;
      place-items: center;
    }

    .poster-modal img {
      max-width: 100%;
      max-height: 88vh;
      object-fit: contain;
      border-radius: 22px;
      border: 1px solid rgba(255,255,255,.20);
      box-shadow: 0 28px 90px rgba(0,0,0,.62);
      background: rgba(255,255,255,.04);
    }

    .poster-modal-close {
      position: absolute;
      top: -18px;
      right: -18px;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,.22);
      background: rgba(7,8,13,.86);
      color: var(--text);
      font-size: 1.7rem;
      line-height: 1;
      cursor: pointer;
      box-shadow: 0 12px 34px rgba(0,0,0,.35);
    }

    .gallery-intro {
      max-width: 680px;
      color: var(--muted);
      line-height: 1.75;
      font-size: 1.02rem;
      margin-top: 16px;
    }

    .gallery-infinite {
      --gallery-speed: 28s;
      --gallery-gap: 24px;
      --gallery-card-width: clamp(300px, 42vw, 560px);
      position: relative;
      overflow: hidden;
      border-radius: 34px;
      padding: 34px 0;
      background:
        radial-gradient(circle at 50% 20%, rgba(36,136,255,.16), transparent 38%),
        linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.025));
      border: 1px solid rgba(255,255,255,.12);
      box-shadow: var(--shadow);
    }

    .gallery-infinite::before,
    .gallery-infinite::after {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      width: min(16%, 130px);
      z-index: 2;
      pointer-events: none;
    }

    .gallery-infinite::before {
      left: 0;
      background: linear-gradient(90deg, rgba(7,8,13,.96), rgba(7,8,13,0));
    }

    .gallery-infinite::after {
      right: 0;
      background: linear-gradient(270deg, rgba(7,8,13,.96), rgba(7,8,13,0));
    }

    .gallery-track-infinite {
      display: flex;
      width: max-content;
      gap: var(--gallery-gap);
      animation: gallery-scroll var(--gallery-speed) linear infinite;
      will-change: transform;
    }

    .gallery-infinite:hover .gallery-track-infinite {
      animation-play-state: paused;
    }

    .gallery-group {
      display: flex;
      gap: var(--gallery-gap);
      flex: 0 0 auto;
    }

    .gallery-item {
      position: relative;
      width: var(--gallery-card-width);
      aspect-ratio: 16 / 10;
      margin: 0;
      overflow: hidden;
      border-radius: 30px;
      border: 1px solid rgba(255,255,255,.18);
      background: rgba(255,255,255,.06);
      box-shadow: 0 24px 70px rgba(0,0,0,.38);
      transform: translateZ(0);
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      transition: transform .45s ease, filter .45s ease;
      user-select: none;
      -webkit-user-drag: none;
    }

    .gallery-item:hover img {
      transform: scale(1.045);
      filter: brightness(1.08);
    }

    .gallery-caption {
      position: absolute;
      left: 18px;
      bottom: 18px;
      display: inline-flex;
      width: fit-content;
      max-width: calc(100% - 36px);
      padding: 11px 15px;
      border-radius: 999px;
      background: rgba(0,0,0,.58);
      border: 1px solid rgba(255,255,255,.16);
      color: #f4f6fb;
      font-weight: 900;
      backdrop-filter: blur(14px);
    }

    @keyframes gallery-scroll {
      from {
        transform: translateX(0);
      }

      to {
        transform: translateX(calc(-50% - (var(--gallery-gap) / 2)));
      }
    }

    .socials {
      padding-top: 18px;
      padding-bottom: 88px;
    }

    .social-card {
      display: grid;
      grid-template-columns: minmax(180px, 280px) 1fr;
      gap: clamp(24px, 5vw, 56px);
      align-items: center;
      padding: clamp(28px, 5vw, 56px);
      border-radius: 34px;
      background:
        radial-gradient(circle at 16% 26%, rgba(36,136,255,.30), transparent 32%),
        radial-gradient(circle at 86% 12%, rgba(242,166,70,.16), transparent 28%),
        linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.045));
      border: 1px solid rgba(255,255,255,.18);
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .social-logo-panel {
      min-height: 230px;
      display: grid;
      place-items: center;
      border-radius: 30px;
      background: rgba(0,0,0,.22);
      border: 1px solid rgba(255,255,255,.12);
      box-shadow: inset 0 0 42px rgba(36,136,255,.10);
    }

    .social-logo {
      width: min(220px, 78%);
      height: auto;
      object-fit: contain;
      filter: drop-shadow(0 22px 42px rgba(0,0,0,.65));
    }

    .social-content p {
      max-width: 680px;
      color: #d3daea;
      line-height: 1.75;
      margin: 18px 0 0;
    }

    .social-links {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      margin-top: 28px;
    }

    .social-link {
      min-height: 138px;
      padding: 22px;
      border-radius: 24px;
      background:
        radial-gradient(circle at 20% 16%, rgba(104,182,255,.18), transparent 36%),
        rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.14);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 18px;
      transition: transform .22s ease, background .22s ease, border-color .22s ease, box-shadow .22s ease;
    }

    .social-link:hover {
      transform: translateY(-5px);
      background:
        radial-gradient(circle at 20% 16%, rgba(104,182,255,.25), transparent 38%),
        rgba(255,255,255,.13);
      border-color: rgba(104,182,255,.38);
      box-shadow: 0 18px 38px rgba(0,0,0,.22);
    }

    .social-top {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .social-icon {
      width: 48px;
      height: 48px;
      flex: 0 0 48px;
      display: grid;
      place-items: center;
      border-radius: 16px;
      background: rgba(255,255,255,.11);
      border: 1px solid rgba(255,255,255,.14);
      box-shadow: inset 0 0 18px rgba(255,255,255,.04), 0 12px 26px rgba(0,0,0,.20);
    }

    .social-icon svg {
      width: 25px;
      height: 25px;
      fill: currentColor;
      color: #f4f6fb;
    }

    .social-link strong {
      font-size: 1.08rem;
      letter-spacing: .02em;
    }

    .social-link span {
      color: var(--muted);
      font-weight: 800;
      font-size: .9rem;
      line-height: 1.45;
    }

    .contact {
      padding-top: 0;
      padding-bottom: 54px;
    }

    .contact-card {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 24px;
      align-items: center;
      padding: clamp(28px, 5vw, 54px);
      border-radius: 34px;
      background:
        linear-gradient(135deg, rgba(255,255,255,.09), rgba(255,255,255,.04));
      border: 1px solid rgba(255,255,255,.16);
      box-shadow: 0 18px 58px rgba(0,0,0,.30);
    }

    .contact-card p { color: #d3daea; line-height: 1.75; max-width: 720px; }

    footer {
      padding: 28px 0 44px;
      color: var(--muted);
      border-top: 1px solid rgba(255,255,255,.08);
    }

    .footer-inner {
      width: min(1180px, calc(100% - 36px));
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
      font-size: .95rem;
    }

    @media (max-width: 980px) {
      .menu { display: none; }
      .lang-switch-mobile { display: inline-flex; }
      .hero-stats, .about-grid, .shows-grid, .contact-card, .social-card { grid-template-columns: 1fr; }

      .members-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .setlist { grid-template-columns: 1fr; }
      .music { background-attachment: scroll; }
    }

    @media (max-width: 620px) {
      .nav { min-height: 76px; }
      .brand { gap: 9px; }
      .brand-logo { width: 150px; height: 60px; }
      .lang-switch { padding: 5px 8px; }
      .lang-switch label { display: none; }
      .brand-title { font-size: clamp(.9rem, 4vw, 1.1rem); letter-spacing: .12em; }
      .brand-mark { width: 36px; height: 36px; }

      .hero {
        min-height: 72svh;
        padding: 92px 0 56px;
      }

      .hero::before {
        /* En móvil enfocamos más a la izquierda para que no se recorten los integrantes. */
        --hero-position: 28% center;
        transform: scale(1);
      }
.hero-stats { grid-template-columns: 1fr; }
      .members-grid {
        grid-template-columns: 1fr;
        gap: 22px;
      }

      .member {
        min-height: 280px;
      }

      .member-photo-wrap {
        width: 210px;
      }

      .member-photo {
        transform: scale(1.32);
      }

      .member:hover .member-photo {
        transform: scale(1.38);
      }
      section { padding: 74px 0; }
      .section-head { display: block; }
      .image-card { min-height: 340px; }
.music {
        --mural-position: 28% center;
        min-height: 56svh;
        padding: 74px 0;
        background-attachment: scroll;
      }


      .show-card {
        padding: 16px;
      }

      .show-poster,
      .show-poster-placeholder {
        aspect-ratio: 16 / 10;
      }

      .poster-modal {
        padding: 16px;
      }

      .poster-modal-close {
        top: 8px;
        right: 8px;
      }

      .gallery-infinite {
        --gallery-speed: 24s;
        --gallery-gap: 16px;
        --gallery-card-width: 82vw;
        padding: 24px 0;
        border-radius: 28px;
      }

      .gallery-item {
        border-radius: 24px;
        aspect-ratio: 4 / 3;
      }

      .gallery-caption {
        font-size: .84rem;
        bottom: 14px;
        left: 14px;
      }


      .socials { padding-bottom: 64px; }
      .social-card { text-align: center; }
      .social-logo-panel { min-height: 180px; }
      .social-logo { width: 170px; }
      .social-links { grid-template-columns: 1fr; }
      .social-link { min-height: 92px; text-align: left; }

      .contact-card .btn { width: 100%; }
    }

/* Concierto cancelado: diseño más llamativo */
.show-card.cancelled {
  position: relative;
  border-color: rgba(255, 80, 80, .62);
  background:
    radial-gradient(circle at 50% 0%, rgba(220, 38, 38, .28), transparent 58%),
    linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.045));
  box-shadow:
    0 22px 60px rgba(0, 0, 0, .38),
    0 0 0 1px rgba(255, 80, 80, .20),
    0 0 42px rgba(220, 38, 38, .22);
}

.show-card.cancelled::before {
  content: "Cancelado";
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 6;
  padding: 8px 13px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ef4444, #991b1b);
  color: #fff;
  border: 1px solid rgba(255,255,255,.36);
  box-shadow: 0 10px 26px rgba(127, 29, 29, .45);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.show-cancelled {
  background: linear-gradient(135deg, #ef4444, #7f1d1d) !important;
  color: #fff !important;
  border: 1px solid rgba(255, 190, 190, .58);
  box-shadow: 0 0 24px rgba(220, 38, 38, .42);
}

.show-card.cancelled .show-poster img {
  filter: grayscale(.42) brightness(.58);
}

.show-card.cancelled .show-poster:hover img {
  transform: scale(1.025);
  filter: grayscale(.34) brightness(.66);
}

.show-card.cancelled .show-poster::after {
  content: "CANCELADO";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 5;
  transform: translate(-50%, -50%) rotate(-10deg);
  padding: 12px 28px;
  border-radius: 12px;
  background: rgba(220, 38, 38, .94);
  border: 2px solid rgba(255, 255, 255, .76);
  color: #fff;
  font-size: clamp(1rem, 2.5vw, 1.55rem);
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .45);
  pointer-events: none;
}

.show-card.cancelled .show-poster-badge {
  background: rgba(127, 29, 29, .94);
  color: #fff;
  border-color: rgba(255, 255, 255, .28);
}

.show-cancelled-reason {
  margin-top: 12px !important;
  padding: 13px 15px;
  border-radius: 16px;
  background: rgba(220, 38, 38, .13);
  border: 1px solid rgba(255, 120, 120, .25);
  color: #ffd7d7 !important;
  font-weight: 700;
}

.show-cancelled-reason strong {
  color: #fff;
}

@media (max-width: 620px) {
  .show-card.cancelled::before {
    top: 12px;
    right: 12px;
    font-size: .66rem;
  }

  .show-card.cancelled .show-poster::after {
    padding: 10px 20px;
    font-size: 1rem;
  }
}

/* Hero SEO discreto: H1 visible, no intrusivo y clicable */
.hero-seo-link {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  z-index: 3;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 14px 22px;
  border-radius: 999px;
  color: var(--text);
  text-align: center;
  background: rgba(7, 8, 13, .36);
  border: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 42px rgba(0, 0, 0, .32);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.hero-seo-link:hover {
  transform: translateX(-50%) translateY(-3px);
  background: rgba(7, 8, 13, .54);
  border-color: rgba(104, 182, 255, .34);
}

.hero-seo-link h1 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: .9;
  letter-spacing: .05em;
  text-transform: uppercase;
  text-shadow: 0 0 20px rgba(36, 136, 255, .30);
}

.hero-kicker {
  color: var(--amber);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero-scroll-text {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

@media (max-width: 620px) {
  .hero-seo-link {
    bottom: 22px;
    width: calc(100% - 40px);
    max-width: 360px;
    padding: 12px 18px;
  }

  .hero-seo-link h1 {
    font-size: 2.4rem;
  }

  .hero-kicker {
    font-size: .66rem;
  }

  .hero-scroll-text {
    font-size: .72rem;
  }
}



