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

:root {
  --black: #040404;
  --panel: #0b0b0d;
  --panel-2: #101014;
  --red: #bd1230;
  --red-bright: #e01a3d;
  --red-dark: #620817;
  --white: #f7f4f1;
  --gray: #a5a5a8;
  --border: rgba(255,255,255,.12);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  min-height: 78px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 12px 4%;
  background: rgba(2,2,2,.88);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
  transition: .3s ease;
}

.site-header.scrolled {
  min-height: 66px;
  background: rgba(2,2,2,.97);
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
}

.brand {
  margin-right: auto;
  display: flex;
  flex-direction: column;
  line-height: .85;
}

.brand-main {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: .04em;
}

.brand-sub {
  margin-top: 7px;
  color: #ef2549;
  font-size: .7rem;
  letter-spacing: .35em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: .74rem;
  font-weight: 700;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  opacity: .86;
  transition: color .25s ease, opacity .25s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: #f52b50;
  opacity: 1;
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  height: 2px;
  background: #e51b40;
}

.ticket-btn,
.small-btn,
.section-cta {
  border: 1px solid var(--border);
  border-radius: 999px;
  text-transform: uppercase;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .02em;
}

.ticket-btn {
  padding: 11px 19px;
  background: var(--red);
  border-color: var(--red);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: white;
  font-size: 1.55rem;
}

/* HERO */
.hero {
  position: relative;
  min-height: 650px;
  height: 74vh;
  max-height: 820px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 0;
  padding: 110px 6% 55px;
  background: #020202;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("hero.jpg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 82% calc(50% + 38px);
  z-index: 0;
  transform: scale(1.01);
  will-change: transform;
}

.hero-red-texture {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 83% 35%, rgba(183,0,35,.31), transparent 22%),
    radial-gradient(circle at 70% 65%, rgba(154,0,28,.18), transparent 26%),
    radial-gradient(circle at 16% 70%, rgba(105,0,20,.15), transparent 25%);
  mix-blend-mode: screen;
  z-index: 1;
  pointer-events: none;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(0,0,0,.97) 0%, rgba(0,0,0,.90) 26%, rgba(0,0,0,.52) 46%, rgba(0,0,0,.04) 69%, rgba(0,0,0,.18) 100%),
    linear-gradient(to top, #030303 0%, transparent 18%),
    linear-gradient(to bottom, rgba(0,0,0,.12), transparent 18%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(620px, 48vw);
}

.eyebrow {
  color: #f12b50;
  text-transform: uppercase;
  letter-spacing: .34em;
  font-size: .72rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  line-height: .78;
  letter-spacing: -.035em;
  display: flex;
  flex-direction: column;
}

.hero-white {
  font-size: clamp(4.7rem, 8vw, 7.4rem);
  color: white;
}

.hero-red {
  margin-top: 16px;
  font-size: clamp(4.1rem, 7vw, 6.5rem);
  color: #d11334;
}

.heart-divider {
  margin: 26px 0 14px;
  display: flex;
  width: 320px;
  max-width: 100%;
  align-items: center;
  gap: 10px;
}

.heart-divider span {
  height: 1px;
  flex: 1;
  background: rgba(255,255,255,.40);
}

.heart-divider b {
  color: var(--red);
  font-size: .9rem;
}

.tagline {
  color: #e2e2e2;
  font-size: 1rem;
}

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

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 7px;
  border: 1px solid transparent;
  text-transform: uppercase;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .02em;
  transition: .25s ease;
}

.btn-primary {
  background: var(--red);
  color: white;
}

.btn-primary:hover {
  background: var(--red-bright);
  transform: translateY(-2px);
}

.btn-outline {
  background: rgba(0,0,0,.25);
  border-color: rgba(255,255,255,.35);
}

.btn-outline:hover {
  border-color: #ef2448;
}

.hero-socials {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-socials > span {
  margin-right: 4px;
  color: #bdbdbd;
  text-transform: uppercase;
  font-size: .66rem;
  letter-spacing: .13em;
}

.hero-socials a {
  width: 31px;
  height: 31px;
  display: grid;
  place-content: center;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 700;
  transition: .25s ease;
}

.hero-socials a:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-2px);
}


.hero-logo {
  position: absolute;
  z-index: 4;
  width: clamp(230px, 25vw, 390px);
  height: auto;
  left: 72%;
  top: 67%;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 12px 20px rgba(0,0,0,.88));
  pointer-events: none;
  animation: logoFloat 5s ease-in-out infinite;
}

@keyframes logoFloat {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-6px); }
}
  50% { transform: translateX(50%) translateY(-5px); }
}

/* MARQUEE */
.marquee-wrap {
  position: relative;
  z-index: 4;
  overflow: hidden;
  white-space: nowrap;
  background: #060606;
  border-top: 1px solid rgba(220,20,53,.85);
  border-bottom: 1px solid rgba(220,20,53,.85);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 26s linear infinite;
}

.marquee-track span {
  padding: 13px 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  letter-spacing: .03em;
}

.marquee-track span::first-letter {
  color: var(--red);
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* SECTIONS */
.section {
  padding: 58px 4% 72px;
}

.section-dark {
  background:
    radial-gradient(circle at 20% 0%, rgba(108,0,21,.10), transparent 25%),
    #050505;
}

.section-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.section-top h2,
.story-copy h2,
.shop-copy h2,
.newsletter-copy h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 4.4vw, 4.3rem);
  line-height: .95;
}

.mini-divider {
  width: 180px;
  display: flex;
  align-items: center;
  margin-top: 12px;
}

.mini-divider span {
  width: 72px;
  height: 2px;
  background: var(--red);
}

.mini-divider b {
  color: var(--red);
  font-size: .68rem;
  margin-left: 7px;
}

.section-cta {
  padding: 10px 16px;
  color: #d8d8d8;
}

/* DATES */
.dates-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.date-card {
  position: relative;
  min-height: 145px;
  display: grid;
  grid-template-columns: 84px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 14px 14px 14px 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 7px;
  background:
    linear-gradient(90deg, rgba(103,5,22,.25), rgba(8,8,9,.92) 36%, rgba(8,8,9,.98));
  transition: transform .3s ease, border-color .3s ease;
}

.date-card:hover {
  transform: translateY(-4px);
  border-color: rgba(229,26,61,.55);
}

.date-box {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(145,9,34,.45), rgba(50,2,12,.18));
  border-right: 1px solid rgba(255,255,255,.08);
}

.date-box strong {
  font-size: 2.15rem;
  line-height: 1;
}

.date-box span {
  margin-top: 8px;
  color: #ef2347;
  font-size: .95rem;
}

.date-box small {
  margin-top: 3px;
  color: #d6d6d6;
  font-size: .75rem;
}

.date-info h3 {
  font-size: .93rem;
  line-height: 1.25;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.date-info .venue {
  color: #f12a4f;
  font-size: .74rem;
  text-transform: uppercase;
}

.date-info .location {
  margin-top: 13px;
  color: #b0b0b0;
  font-size: .72rem;
}

.small-btn {
  align-self: end;
  padding: 8px 15px;
  background: var(--red);
  border-color: var(--red);
}

/* MUSIC */
.music-section {
  background:
    radial-gradient(circle at 92% 10%, rgba(119,0,21,.12), transparent 25%),
    #060606;
}

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

.music-card {
  min-height: 165px;
  display: grid;
  grid-template-columns: 145px 1fr;
  gap: 18px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: #09090a;
  overflow: hidden;
}

.album-cover {
  aspect-ratio: 1/1;
  min-height: 145px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.15);
  box-shadow: inset 0 0 45px rgba(0,0,0,.55);
}

.album-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, transparent 20%, rgba(0,0,0,.26) 80%),
    repeating-radial-gradient(circle at 50% 50%, transparent 0 12px, rgba(255,255,255,.015) 13px 14px);
  pointer-events: none;
}

.album-heart {
  background:
    radial-gradient(circle at 50% 42%, #c21a38 0 16%, #6e091b 17% 28%, transparent 29%),
    radial-gradient(circle at 50% 50%, #5b0715, #120206 65%, #050505);
}

.album-roses {
  background:
    radial-gradient(circle at 22% 20%, #b90f2c 0 9%, transparent 10%),
    radial-gradient(circle at 78% 23%, #9a0d26 0 10%, transparent 11%),
    radial-gradient(circle at 25% 77%, #980c24 0 12%, transparent 13%),
    radial-gradient(circle at 78% 73%, #c31230 0 11%, transparent 12%),
    radial-gradient(circle at 50% 50%, #420812, #080808 70%);
}

.album-mexico {
  background:
    linear-gradient(90deg, #0b5b2f 0 33.33%, #e8dfd0 33.33% 66.66%, #8d1023 66.66% 100%);
}

.cover-content {
  position: relative;
  z-index: 2;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  text-shadow: 0 2px 9px rgba(0,0,0,.85);
}

.cover-content small {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: .48rem;
  letter-spacing: .08em;
  margin-bottom: 7px;
}

.cover-content strong {
  font-size: 1.18rem;
  line-height: 1;
}

.script-look strong {
  font-style: italic;
  font-size: 1.55rem;
}

.music-copy h3 {
  font-size: .98rem;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.music-copy p {
  color: #aaa;
  font-size: .76rem;
  min-height: 36px;
}

.platforms {
  margin-top: 14px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.platforms a {
  padding: 6px 8px;
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 4px;
  font-size: .58rem;
  font-weight: 700;
}


.real-cover {
  background: #080808;
}

.real-cover::after {
  display: none;
}

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

/* STORY */
.story-section {
  min-height: 520px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #090909;
}

.story-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(174,10,39,.28), transparent 35%),
    linear-gradient(135deg, #130307, #050505 62%);
}

.story-visual::before {
  content: "";
  position: absolute;
  inset: -25%;
  background: repeating-radial-gradient(circle at 50% 50%, transparent 0 28px, rgba(255,255,255,.02) 29px 30px);
  animation: slowSpin 55s linear infinite;
}

@keyframes slowSpin {
  to { transform: rotate(360deg); }
}

.story-monogram {
  position: relative;
  z-index: 2;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(7rem, 17vw, 14rem);
  letter-spacing: -.07em;
  color: rgba(255,255,255,.06);
}

.story-copy {
  padding: 70px 8%;
  align-self: center;
}

.story-copy p:not(.eyebrow) {
  color: #b3b3b3;
  margin: 20px 0 24px;
  max-width: 620px;
}

.text-link {
  color: #ef2c50;
  font-weight: 800;
}

/* VIDEO */
.video-feature {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 34px;
  align-items: center;
}

.video-placeholder {
  aspect-ratio: 16/9;
  display: grid;
  place-content: center;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 7px;
  background:
    radial-gradient(circle at center, rgba(172,14,40,.30), transparent 25%),
    #111;
  color: #a4a4a4;
}

.video-placeholder span {
  color: #e42045;
  font-size: 3.8rem;
}

.video-copy h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.1rem;
}

.video-copy > p:not(.eyebrow) {
  color: #aaa;
  margin: 10px 0 24px;
}


.video-player {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: #000;
  box-shadow: 0 18px 45px rgba(0,0,0,.38);
}

.video-player iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}


.video-subtitle {
  color: #ef2c50 !important;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-top: 2px !important;
  margin-bottom: 10px !important;
}

/* GALLERY */
.gallery-section {
  background:
    radial-gradient(circle at 12% 8%, rgba(117,0,24,.12), transparent 24%),
    #09090a;
}

.gallery-grid-real {
  display: grid;
  grid-template-columns: 1.35fr .8fr .8fr;
  grid-template-rows: repeat(2, 260px);
  gap: 12px;
}

.gallery-item {
  appearance: none;
  border: 1px solid var(--border);
  padding: 0;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: #111;
  border-radius: 7px;
  transition: transform .38s ease, border-color .38s ease, box-shadow .38s ease;
}

.gallery-main {
  grid-row: 1 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .65s cubic-bezier(.2,.7,.2,1), filter .45s ease;
}

.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top, rgba(0,0,0,.84) 0%, rgba(0,0,0,.12) 48%, transparent 72%);
  pointer-events: none;
}

.gallery-item::after {
  content: "↗";
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  display: grid;
  place-content: center;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 50%;
  color: white;
  background: rgba(0,0,0,.36);
  opacity: 0;
  transform: translateY(-5px);
  transition: opacity .3s ease, transform .3s ease;
}

.gallery-item span {
  position: absolute;
  z-index: 2;
  left: 18px;
  bottom: 16px;
  color: white;
  text-transform: uppercase;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-shadow: 0 2px 10px rgba(0,0,0,.75);
}

.gallery-item:hover {
  transform: translateY(-4px);
  border-color: rgba(225,25,61,.48);
  box-shadow: 0 20px 42px rgba(0,0,0,.33);
}

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

.gallery-item:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: grid;
  place-items: center;
  padding: 5vw;
  background: rgba(0,0,0,.92);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .28s ease, visibility .28s ease;
}

.gallery-lightbox.open {
  opacity: 1;
  visibility: visible;
}

.gallery-lightbox img {
  max-width: min(1180px, 92vw);
  max-height: 84vh;
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 28px 80px rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.10);
}

.gallery-lightbox-close {
  position: fixed;
  top: 24px;
  right: 28px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(15,15,15,.70);
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
}

@media (max-width: 900px) {
  .gallery-grid-real {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 220px);
  }

  .gallery-main {
    grid-column: 1 / -1;
    grid-row: auto;
  }
}

@media (max-width: 620px) {
  .gallery-grid-real {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 230px);
  }

  .gallery-main {
    grid-column: auto;
  }

  .gallery-item span {
    font-size: .66rem;
  }
}

/* SHOP */
.shop-section {
  position: relative;
  overflow: hidden;
  padding: 78px 4% 68px;
  background:
    radial-gradient(circle at 14% 20%, rgba(132,0,24,.28), transparent 30%),
    radial-gradient(circle at 92% 55%, rgba(176,13,42,.18), transparent 26%),
    linear-gradient(135deg, #070707, #0e0b0c 58%, #15070a);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.shop-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .22;
  background:
    repeating-linear-gradient(
      135deg,
      transparent 0 22px,
      rgba(255,255,255,.015) 23px 24px
    );
}

.shop-intro {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin-bottom: 38px;
}

.shop-intro h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: .9;
  margin-bottom: 18px;
}

.shop-intro > p:not(.eyebrow) {
  max-width: 700px;
  color: #b9b9b9;
  font-size: .95rem;
}

.shop-badges {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin: 22px 0 28px;
}

.shop-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 11px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
  background: rgba(255,255,255,.025);
  color: #d3d3d3;
  font-size: .66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.shop-main-btn {
  min-width: 190px;
}

.shop-categories {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.shop-category {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 8px;
  background: #0b0b0c;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.shop-category:hover {
  transform: translateY(-5px);
  border-color: rgba(228,26,61,.55);
  box-shadow: 0 20px 42px rgba(0,0,0,.34);
}

.shop-category-art {
  position: relative;
  min-height: 210px;
  display: flex;
  align-items: end;
  padding: 20px;
  overflow: hidden;
}

.shop-category-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,.80), transparent 55%),
    radial-gradient(circle at 50% 35%, rgba(255,255,255,.10), transparent 30%);
}

.shop-category-art::after {
  content: "IDA";
  position: absolute;
  right: -10px;
  top: 4px;
  font-family: "Cormorant Garamond", serif;
  font-size: 8.8rem;
  font-weight: 700;
  color: rgba(255,255,255,.055);
  letter-spacing: -.08em;
}

.shop-category-art span {
  position: relative;
  z-index: 2;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: .03em;
}

.shirts-art {
  background:
    radial-gradient(circle at 62% 38%, rgba(194,18,48,.42), transparent 28%),
    linear-gradient(135deg, #171719, #450713);
}

.hoodies-art {
  background:
    radial-gradient(circle at 36% 28%, rgba(152,13,38,.38), transparent 30%),
    linear-gradient(135deg, #0c0c0e, #25050b 70%);
}

.caps-art {
  background:
    radial-gradient(circle at 70% 25%, rgba(224,27,63,.32), transparent 24%),
    linear-gradient(135deg, #171719, #31060e);
}

.shop-category-copy {
  padding: 16px 18px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.shop-category-copy strong {
  font-size: .88rem;
  text-transform: uppercase;
}

.shop-category-copy small {
  color: #eb2d50;
  font-size: .68rem;
  font-weight: 800;
  white-space: nowrap;
}

.shop-footer-note {
  position: relative;
  z-index: 2;
  margin-top: 22px;
  padding: 15px 18px;
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 7px;
  background: rgba(255,255,255,.02);
  color: #9e9e9e;
  font-size: .74rem;
}

.shop-heart {
  color: #db1739;
}

.footer-store-link a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
  color: #ef2b4d;
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .shop-categories {
    grid-template-columns: 1fr;
  }

  .shop-category {
    display: grid;
    grid-template-columns: 160px 1fr;
  }

  .shop-category-art {
    min-height: 155px;
  }

  .shop-category-copy {
    align-self: center;
  }
}

@media (max-width: 620px) {
  .shop-section {
    padding: 60px 5%;
  }

  .shop-category {
    display: block;
  }

  .shop-category-art {
    min-height: 190px;
  }

  .shop-main-btn {
    width: 100%;
  }
}

/* NEWSLETTER */
.newsletter-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding: 75px 6%;
  background: #eee9e4;
  color: #111;
}

.newsletter-section .eyebrow {
  color: #a50f2b;
}

.newsletter-copy p:last-child {
  margin-top: 14px;
  color: #575757;
}

.newsletter-form {
  display: grid;
  gap: 10px;
  align-content: center;
}

.newsletter-form input {
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid #c9c2bd;
  background: white;
  font-family: inherit;
}

/* FOOTER */
footer {
  padding: 44px 6% 28px;
  display: grid;
  gap: 20px;
  background: #030303;
}

.footer-logo {
  display: flex;
  flex-direction: column;
}

.footer-logo strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
}

.footer-logo span,
footer > p {
  color: #777;
  font-size: .72rem;
}

.social-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
}

/* MOTION */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-content: center;
  background: #030303;
  transition: opacity .65s ease, visibility .65s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}






  20% { transform: scale(1.15); }
  40% { transform: scale(.96); }
  60% { transform: scale(1.1); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .75s cubic-bezier(.2,.65,.2,1), transform .75s cubic-bezier(.2,.65,.2,1);
}

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

.tilt-card {
  transition: transform .2s ease-out, border-color .3s ease, box-shadow .3s ease;
  will-change: transform;
}

.tilt-card:hover {
  border-color: rgba(228,26,61,.5);
  box-shadow: 0 18px 38px rgba(0,0,0,.34);
}

/* RESPONSIVE */
@media (max-width: 1150px) {
  .main-nav {
    gap: 17px;
    font-size: .68rem;
  }

  .dates-grid,
  .music-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 700px;
  }

  .hero-bg {
    background-position: 96% calc(50% + 32px);
    opacity: .76;
  }

  .hero-copy {
    width: 60vw;
  }
}

@media (max-width: 900px) {
  .hero-logo {
    width: clamp(210px, 36vw, 300px);
    left: 68%;
    top: 61%;
    right: auto;
  }

  .site-header {
    min-height: 72px;
  }

  .menu-toggle {
    display: block;
  }

  .ticket-btn {
    display: none;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    padding: 22px 5%;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(3,3,3,.98);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a.active::after {
    bottom: -5px;
  }

  .hero {
    height: auto;
    min-height: 760px;
    align-items: end;
    padding: 120px 6% 55px;
  }

  .hero-bg {
    background-size: cover;
    background-position: 62% 35px;
    opacity: .73;
  }

  .hero-shade {
    background:
      linear-gradient(to top, rgba(0,0,0,.98) 0%, rgba(0,0,0,.78) 45%, rgba(0,0,0,.15) 78%),
      linear-gradient(90deg, rgba(0,0,0,.76), rgba(0,0,0,.12));
  }

  .hero-copy {
    width: 100%;
    max-width: 650px;
  }

  .hero-white {
    font-size: clamp(3.7rem, 13vw, 6rem);
  }

  .hero-red {
    font-size: clamp(3.3rem, 12vw, 5.4rem);
  }

  .story-section,
  .video-feature,
  .newsletter-section {
    grid-template-columns: 1fr;
  }

  .story-visual {
    min-height: 360px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2, 220px);
  }

  .gallery-item:first-child {
    grid-row: auto;
  }
}

@media (max-width: 620px) {
  .hero-logo {
    width: 190px;
    left: 64%;
    top: 49%;
    right: auto;
    transform: translate(-50%, -50%);
    animation: logoFloat 5s ease-in-out infinite;
  }

  .site-header {
    padding-inline: 5%;
  }

  .brand-main {
    font-size: 1.45rem;
  }

  .hero {
    min-height: 720px;
    padding-inline: 5%;
  }

  .hero-bg {
    background-size: 155%;
    background-position: 61% 30%;
  }

  .hero-red-texture {
    opacity: .65;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .hero-socials {
    flex-wrap: wrap;
  }

  .section {
    padding: 48px 5% 60px;
  }

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

  .date-card {
    grid-template-columns: 74px 1fr;
    padding-right: 12px;
  }

  .date-card .small-btn {
    grid-column: 1 / -1;
    width: calc(100% - 12px);
    margin-left: 12px;
    text-align: center;
  }

  .music-card {
    grid-template-columns: 110px 1fr;
  }

  .album-cover {
    min-height: 110px;
  }

  .platforms a {
    font-size: .54rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 210px);
  }

  .newsletter-section {
    padding: 60px 5%;
  }
}

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


/* ===== Premium intro ===== */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(92, 5, 24, .20), transparent 32%),
    linear-gradient(180deg, #050505 0%, #020202 100%);
  overflow: hidden;
  transition: opacity .85s ease, visibility .85s ease;
}

.page-loader::before {
  content: "";
  position: absolute;
  inset: -30%;
  background:
    radial-gradient(circle at center, rgba(184, 13, 44, .08), transparent 22%),
    repeating-radial-gradient(circle at center, transparent 0 42px, rgba(255,255,255,.008) 43px 44px);
  animation: premiumAura 4.5s ease-in-out infinite alternate;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.premium-loader {
  position: relative;
  z-index: 2;
  width: min(760px, 90vw);
  min-height: 310px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: 1fr auto;
  align-items: center;
  gap: 22px;
}

.premium-loader-logo {
  grid-column: 2;
  grid-row: 1;
  width: clamp(220px, 30vw, 390px);
  height: auto;
  opacity: 0;
  transform: scale(.82) translateY(14px);
  filter:
    drop-shadow(0 18px 34px rgba(0,0,0,.80))
    drop-shadow(0 0 18px rgba(173,12,42,.12));
  animation: premiumLogoReveal 1.55s cubic-bezier(.16,.84,.24,1) .15s forwards;
}

.premium-line {
  grid-row: 1;
  height: 1px;
  width: 100%;
  max-width: 190px;
  background: linear-gradient(90deg, transparent, rgba(214, 24, 57, .78));
  transform: scaleX(0);
  opacity: 0;
}

.premium-line-left {
  grid-column: 1;
  justify-self: end;
  transform-origin: right center;
  animation: lineRevealLeft .8s ease .72s forwards;
}

.premium-line-right {
  grid-column: 3;
  justify-self: start;
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(214, 24, 57, .78), transparent);
  animation: lineRevealRight .8s ease .72s forwards;
}

.premium-slogan {
  grid-column: 1 / -1;
  grid-row: 2;
  justify-self: center;
  margin-top: -18px;
  color: #bcbcbc;
  text-align: center;
  font-size: clamp(.55rem, .95vw, .72rem);
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(9px);
  animation: premiumSloganReveal .7s ease 1.18s forwards;
}

@keyframes premiumLogoReveal {
  0% {
    opacity: 0;
    transform: scale(.82) translateY(14px);
    filter:
      drop-shadow(0 18px 34px rgba(0,0,0,.80))
      blur(3px)
      brightness(.65);
  }
  58% {
    opacity: 1;
    transform: scale(1.035) translateY(-2px);
    filter:
      drop-shadow(0 18px 34px rgba(0,0,0,.80))
      drop-shadow(0 0 26px rgba(191,17,50,.20))
      blur(0)
      brightness(1.04);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter:
      drop-shadow(0 18px 34px rgba(0,0,0,.80))
      drop-shadow(0 0 16px rgba(191,17,50,.10));
  }
}

@keyframes lineRevealLeft {
  from {
    opacity: 0;
    transform: scaleX(0);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes lineRevealRight {
  from {
    opacity: 0;
    transform: scaleX(0);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes premiumSloganReveal {
  from {
    opacity: 0;
    transform: translateY(9px);
    letter-spacing: .34em;
  }
  to {
    opacity: 1;
    transform: translateY(0);
    letter-spacing: .28em;
  }
}

@keyframes premiumAura {
  from {
    transform: scale(1);
    opacity: .55;
  }
  to {
    transform: scale(1.06);
    opacity: 1;
  }
}

@media (max-width: 620px) {
  .premium-loader {
    grid-template-columns: 42px auto 42px;
    gap: 12px;
    min-height: 285px;
  }

  .premium-loader-logo {
    width: 235px;
  }

  .premium-line {
    max-width: 42px;
  }

  .premium-slogan {
    max-width: 290px;
    line-height: 1.75;
    letter-spacing: .18em;
  }
}


/* ===== HISTORIA PAGE ===== */
.history-page { background:#050505; color:#fff; }
.history-header { position:sticky; top:0; background:rgba(4,4,4,.94); backdrop-filter:blur(14px); }
.history-header .nav-links .active { color:#e31b3f; }
.history-hero {
  min-height:78vh; padding:150px 7% 90px; display:grid; grid-template-columns:1.15fr .85fr;
  align-items:center; gap:5vw; position:relative; overflow:hidden;
  background:radial-gradient(circle at 78% 42%,rgba(132,6,27,.28),transparent 28%),linear-gradient(135deg,#050505,#0b0708);
}
.history-hero::after { content:""; position:absolute; inset:auto 0 0; height:1px; background:linear-gradient(90deg,transparent,#6d1022,transparent); }
.history-hero-copy { position:relative; z-index:2; max-width:850px; }
.history-hero h1 { font-family:"Cormorant Garamond",serif; font-size:clamp(4rem,7.5vw,8rem); line-height:.79; letter-spacing:-.045em; margin:18px 0 30px; }
.history-hero h1 em { color:#d7193b; font-weight:600; }
.history-lead { max-width:650px; color:#b9b9b9; line-height:1.8; margin-bottom:30px; }
.history-hero-logo img { width:min(520px,100%); filter:drop-shadow(0 25px 45px rgba(0,0,0,.75)); animation:historyFloat 5s ease-in-out infinite; }
@keyframes historyFloat { 50% { transform:translateY(-10px); } }

.history-story { padding:110px 7%; display:grid; grid-template-columns:.7fr 1.3fr; gap:7vw; background:#080808; }
.history-number { font-family:"Cormorant Garamond",serif; font-size:clamp(8rem,18vw,17rem); line-height:.7; color:rgba(255,255,255,.035); font-weight:700; }
.history-copy { max-width:850px; }
.history-copy h2,.history-members h2,.discography-section h2 { font-family:"Cormorant Garamond",serif; font-size:clamp(3rem,5vw,5.4rem); line-height:.9; margin:10px 0 28px; }
.history-copy p { color:#b9b9b9; line-height:1.9; margin:0 0 18px; }
.history-copy strong { color:#fff; }

.history-members { padding:90px 7%; background:linear-gradient(135deg,#0a0a0a,#110609); }
.member-list { display:grid; grid-template-columns:repeat(3,1fr); border-top:1px solid rgba(255,255,255,.1); }
.member-list div { padding:25px 15px 25px 0; border-bottom:1px solid rgba(255,255,255,.1); display:flex; flex-direction:column; gap:7px; }
.member-list strong { font-family:"Cormorant Garamond",serif; font-size:1.55rem; }
.member-list span { color:#d82043; text-transform:uppercase; letter-spacing:.12em; font-size:.62rem; font-weight:800; }

.discography-section { padding:105px 7%; background:#050505; }
.discography-section .section-heading > p:last-child { color:#929292; }
.discography-grid { margin-top:45px; display:grid; grid-template-columns:repeat(4,1fr); border-top:1px solid rgba(255,255,255,.1); border-left:1px solid rgba(255,255,255,.1); }
.disc-card { min-height:145px; padding:24px; border-right:1px solid rgba(255,255,255,.1); border-bottom:1px solid rgba(255,255,255,.1); transition:.3s ease; }
.disc-card:hover { background:#11070a; transform:translateY(-3px); }
.disc-card span { color:#d91b3d; font-size:.66rem; font-weight:800; letter-spacing:.15em; }
.disc-card h3 { font-family:"Cormorant Garamond",serif; font-size:1.55rem; line-height:1.05; margin-top:15px; }

.history-closing { padding:110px 7%; text-align:center; background:radial-gradient(circle at center,rgba(132,6,27,.25),transparent 30%),#080808; }
.history-closing img { width:min(330px,70vw); }
.history-closing p { font-family:"Cormorant Garamond",serif; font-size:2rem; margin:15px 0 25px; }
.history-footer { padding:25px 7%; display:flex; justify-content:space-between; color:#777; font-size:.65rem; text-transform:uppercase; letter-spacing:.12em; border-top:1px solid rgba(255,255,255,.08); }

@media(max-width:900px){
  .history-hero,.history-story { grid-template-columns:1fr; }
  .history-hero-logo { text-align:center; }
  .history-number { display:none; }
  .member-list { grid-template-columns:1fr 1fr; }
  .discography-grid { grid-template-columns:repeat(2,1fr); }
}
@media(max-width:620px){
  .history-hero { padding:125px 5% 65px; min-height:auto; }
  .history-story,.history-members,.discography-section,.history-closing { padding:70px 5%; }
  .member-list,.discography-grid { grid-template-columns:1fr; }
  .history-footer { flex-direction:column; gap:8px; text-align:center; }
}


/* ===== FAN CLUB ===== */
.fanclub-promo {
  padding: 90px 6%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7vw;
  align-items: center;
  background:
    radial-gradient(circle at 82% 40%, rgba(170,11,42,.22), transparent 28%),
    linear-gradient(135deg,#060606,#12070a);
  border-top: 1px solid rgba(255,255,255,.07);
}

.fanclub-promo h2,
.fanclub-register h2,
.fanclub-benefits h2,
.fanclub-result h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem,5vw,5.3rem);
  line-height: .92;
}

.fanclub-promo-copy > p:not(.eyebrow) {
  color:#b4b4b4;
  max-width:630px;
  margin:18px 0 27px;
}

.fanclub-card-preview,
.fanclub-card-large {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  background:
    radial-gradient(circle at 20% 15%, rgba(205,20,55,.32), transparent 30%),
    linear-gradient(135deg,#1a050a,#070707 55%,#150308);
  box-shadow: 0 30px 70px rgba(0,0,0,.42);
}

.fanclub-card-preview {
  width:min(520px,100%);
  aspect-ratio:1.62/1;
  justify-self:end;
  padding:30px;
  border-radius:20px;
}

.fanclub-card-logo img { width:180px; }
.fanclub-card-label { color:#dc2344; font-size:.65rem; font-weight:800; letter-spacing:.22em; margin-top:24px; }
.fanclub-card-name { font-family:"Cormorant Garamond",serif; font-size:2.15rem; margin-top:3px; }
.fanclub-card-id { color:#ddd; font-size:.8rem; font-weight:800; letter-spacing:.16em; }
.fanclub-card-footer { position:absolute; left:30px; right:30px; bottom:24px; display:flex; justify-content:space-between; color:#8d8d8d; font-size:.58rem; letter-spacing:.08em; }

.fanclub-page { background:#050505; }
.fanclub-hero {
  min-height:82vh;
  padding:145px 7% 85px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:7vw;
  align-items:center;
  background:
    radial-gradient(circle at 78% 36%,rgba(170,11,42,.23),transparent 30%),
    #050505;
}

.fanclub-hero h1 {
  font-family:"Cormorant Garamond",serif;
  font-size:clamp(5rem,9vw,9rem);
  line-height:.72;
  margin:15px 0 30px;
}
.fanclub-hero h1 span { color:#d7193b; }
.fanclub-hero-copy > p:not(.eyebrow) { color:#b6b6b6; max-width:620px; margin-bottom:28px; }

.fanclub-card-large {
  aspect-ratio:1.58/1;
  border-radius:24px;
  padding:38px;
  transform:rotate(1.5deg);
}
.fanclub-card-shine {
  position:absolute; inset:-40%;
  background:linear-gradient(105deg,transparent 36%,rgba(255,255,255,.08) 48%,transparent 60%);
  transform:translateX(-50%);
  animation:fanCardShine 5s ease-in-out infinite;
}
@keyframes fanCardShine { 50% { transform:translateX(50%); } }
.fanclub-card-logo-img { width:210px; position:relative; z-index:2; }
.fanclub-card-kicker { margin-top:22px; color:#dc2344; font-size:.62rem; letter-spacing:.25em; font-weight:800; }
.fanclub-card-large h2 { font-family:"Cormorant Garamond",serif; font-size:2.5rem; line-height:1; margin:5px 0; }
.fanclub-card-id-big { font-size:.9rem; font-weight:800; letter-spacing:.17em; color:#ddd; }
.fanclub-card-meta { display:flex; gap:20px; margin-top:15px; color:#858585; font-size:.55rem; text-transform:uppercase; letter-spacing:.1em; }
.fanclub-card-bottom { position:absolute; left:38px; right:38px; bottom:28px; display:flex; justify-content:space-between; align-items:end; gap:15px; }
.fanclub-card-bottom strong { color:#e22548; font-size:.72rem; }
.fanclub-card-bottom span { max-width:210px; text-align:right; color:#6f6f6f; font-size:.48rem; letter-spacing:.08em; }

.fanclub-benefits { padding:90px 7%; background:#090909; }
.fanclub-benefit-grid { display:grid; grid-template-columns:repeat(4,1fr); border-top:1px solid rgba(255,255,255,.1); border-left:1px solid rgba(255,255,255,.1); }
.fanclub-benefit-grid article { padding:28px; min-height:190px; border-right:1px solid rgba(255,255,255,.1); border-bottom:1px solid rgba(255,255,255,.1); }
.fanclub-benefit-grid article > span { color:#d91b3d; font-size:.62rem; font-weight:800; letter-spacing:.14em; }
.fanclub-benefit-grid h3 { font-family:"Cormorant Garamond",serif; font-size:1.7rem; margin:20px 0 9px; }
.fanclub-benefit-grid p { color:#8e8e8e; font-size:.79rem; }

.fanclub-register {
  padding:100px 7%;
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:8vw;
  background:linear-gradient(135deg,#0d0507,#060606);
}
.fanclub-register-copy p:last-child { color:#9c9c9c; line-height:1.8; margin-top:20px; }
.fanclub-form { display:grid; gap:17px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:15px; }
.fanclub-form label { display:grid; gap:8px; color:#b7b7b7; font-size:.72rem; font-weight:700; text-transform:uppercase; letter-spacing:.06em; }
.fanclub-form input[type="text"],
.fanclub-form input[type="email"] {
  min-height:52px; padding:0 15px; border:1px solid rgba(255,255,255,.14);
  background:#0d0d0e; color:#fff; font:inherit; outline:none;
}
.fanclub-form input:focus { border-color:#d91b3d; }
.fanclub-checkbox { grid-template-columns:auto 1fr !important; align-items:start; text-transform:none !important; letter-spacing:0 !important; font-weight:500 !important; }
.fanclub-checkbox input { margin-top:4px; accent-color:#c61938; }

.fanclub-result { padding:80px 7%; background:#060606; text-align:center; }
.fanclub-result-inner { max-width:720px; margin:auto; }
.fanclub-result strong { display:block; margin:24px 0 14px; color:#dc2143; font-family:"Cormorant Garamond",serif; font-size:3rem; letter-spacing:.05em; }
.fanclub-demo-note { color:#7e7e7e; font-size:.76rem; }

@media(max-width:950px){
  .fanclub-promo,.fanclub-hero,.fanclub-register { grid-template-columns:1fr; }
  .fanclub-card-preview { justify-self:center; }
  .fanclub-card-large { max-width:650px; width:100%; margin:auto; transform:none; }
  .fanclub-benefit-grid { grid-template-columns:1fr 1fr; }
}
@media(max-width:620px){
  .fanclub-promo,.fanclub-hero,.fanclub-benefits,.fanclub-register { padding:70px 5%; }
  .fanclub-hero { padding-top:125px; min-height:auto; }
  .fanclub-card-preview { padding:22px; border-radius:14px; }
  .fanclub-card-logo img { width:130px; }
  .fanclub-card-name { font-size:1.6rem; }
  .fanclub-card-footer { left:22px; right:22px; bottom:17px; }
  .fanclub-card-large { padding:24px; border-radius:16px; }
  .fanclub-card-logo-img { width:145px; }
  .fanclub-card-large h2 { font-size:1.75rem; }
  .fanclub-card-bottom { left:24px; right:24px; bottom:18px; }
  .fanclub-card-bottom span { display:none; }
  .fanclub-benefit-grid,.form-row { grid-template-columns:1fr; }
}

.fanclub-form-status {
  min-height: 22px;
  margin-top: 2px;
  color: #a8a8a8;
  font-size: .74rem;
  text-transform: none;
  letter-spacing: 0;
}
.fanclub-form-status.success { color: #56c989; }
.fanclub-form-status.error { color: #ff6b7f; }
#fanSubmitBtn:disabled { opacity: .65; cursor: wait; }

/* Mobile intro alignment — Industria del Amor */
@media (max-width: 768px) {
  #intro .intro-content,
  .intro .intro-content,
  .intro-content {
    transform: translateY(-8vh);
  }
}

/* ===== Mobile alignment fixes — 2026-07-28 ===== */
@media (max-width: 620px) {
  /* Keep the intro artwork truly centered in the phone viewport */
  .premium-loader {
    width: 100vw;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    padding-inline: 18px;
    gap: 12px;
  }

  .premium-loader-logo {
    grid-column: 2;
    justify-self: center;
    width: min(235px, 68vw);
  }

  .premium-line-left {
    grid-column: 1;
    justify-self: stretch;
    max-width: 74px;
  }

  .premium-line-right {
    grid-column: 3;
    justify-self: stretch;
    max-width: 74px;
  }

  .premium-slogan {
    grid-column: 1 / -1;
    justify-self: center;
    width: 100%;
    max-width: 340px;
    text-align: center;
  }

  /* Move the floating hero logo up and to the right so it no longer covers
     the "INDUSTRIA DEL AMOR" headline on mobile. */
  .hero-logo {
    width: 155px;
    left: 74%;
    top: 34%;
    right: auto;
  }
}


/* ===== Mobile hero logo position refinement — 2026-07-28 v2 ===== */
@media (max-width: 620px) {
  .hero-logo {
    width: 140px;
    left: 76%;
    top: 22%;
    right: auto;
  }
}

/* ===== INTRO FAILSAFE =====
   This is only a backup. JavaScript still controls the normal intro timing.
   If a browser ever fails to run the loader script, the intro will hide itself.
*/
.page-loader {
  animation: idaLoaderFailsafe 0.65s ease 4.5s forwards;
}

@keyframes idaLoaderFailsafe {
  to {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

/* ===== FAN CLUB RESULT CARD LAYOUT FIX ===== */
.fanclub-result-card {
  position: relative;
  width: min(680px, 100%);
  aspect-ratio: 1.58 / 1;
  margin: 32px auto 0;
  padding: 38px;
  text-align: left;
  border-radius: 24px;
  transform: none;
}

.fanclub-result-card .fanclub-card-logo-img {
  width: 210px;
  position: relative;
  z-index: 2;
}

.fanclub-result-card .fanclub-card-kicker {
  margin-top: 22px;
}

.fanclub-result-card h2#resultCardName {
  margin: 5px 0 4px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: 0;
  color: #fff;
}

.fanclub-result-card .fanclub-card-id-big {
  margin-top: 0;
  font-size: .9rem;
  line-height: 1.2;
}

.fanclub-result-card .fanclub-card-meta {
  margin-top: 15px;
}

.fanclub-result-card .fanclub-card-bottom {
  left: 38px;
  right: 38px;
  bottom: 28px;
}

@media (max-width: 620px) {
  .fanclub-result-card {
    width: 100%;
    aspect-ratio: 1.48 / 1;
    padding: 24px;
    border-radius: 16px;
  }

  .fanclub-result-card .fanclub-card-logo-img {
    width: 145px;
  }

  .fanclub-result-card h2#resultCardName {
    font-size: 1.75rem;
  }

  .fanclub-result-card .fanclub-card-bottom {
    left: 24px;
    right: 24px;
    bottom: 18px;
  }

  .fanclub-result-card .fanclub-card-bottom span {
    display: none;
  }
}

/* ===== FAN CLUB RESULT CARD — FINAL OVERRIDES =====
   Prevent generic .fanclub-result styles from affecting text inside the card.
*/
.fanclub-result-card .fanclub-card-bottom strong {
  display: inline;
  margin: 0;
  color: #e22548;
  font-family: "Montserrat", sans-serif;
  font-size: .72rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.fanclub-result-card .fanclub-card-bottom span {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: .48rem;
  line-height: 1.35;
  letter-spacing: .08em;
}

.fanclub-result-card .fanclub-card-meta span {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: .55rem;
  line-height: 1.2;
  letter-spacing: .10em;
}

.fanclub-result-card .fanclub-card-id-big {
  display: block;
  margin: 0;
  color: #ddd;
  font-family: "Montserrat", sans-serif;
  font-size: .90rem;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: .17em;
}

.fanclub-result-card h2#resultCardName {
  display: block;
  margin: 5px 0 5px;
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: 0;
}

.fanclub-result-card .fanclub-card-kicker {
  margin: 22px 0 0;
  color: #dc2344;
  font-family: "Montserrat", sans-serif;
  font-size: .62rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .25em;
}

@media (max-width: 620px) {
  .fanclub-result-card h2#resultCardName {
    font-size: 1.75rem;
  }

  .fanclub-result-card .fanclub-card-bottom strong {
    font-size: .66rem;
  }

  .fanclub-result-card .fanclub-card-meta span {
    font-size: .50rem;
  }
}

/* ===== FAN CLUB RESULT CARD — STRUCTURAL LAYOUT FIX ===== */
.fanclub-result-card {
  position: relative;
  overflow: hidden;
}

/* Keep identity block together in the lower-left/center area. */
.fanclub-result-card .fanclub-card-kicker {
  position: absolute;
  left: 38px;
  bottom: 145px;
  margin: 0;
}

.fanclub-result-card h2#resultCardName {
  position: absolute;
  left: 38px;
  bottom: 98px;
  margin: 0;
}

.fanclub-result-card #resultId {
  position: absolute;
  left: 38px;
  bottom: 72px;
  margin: 0;
}

.fanclub-result-card .result-card-meta {
  position: absolute;
  left: 38px;
  bottom: 42px;
  margin: 0;
  display: flex;
  gap: 22px;
  align-items: center;
  color: #858585;
}

.fanclub-result-card .result-card-meta span {
  font-family: "Montserrat", sans-serif;
  font-size: .55rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Dedicated footer label avoids .fanclub-result strong inheritance entirely. */
.fanclub-result-card .result-card-industrioso {
  position: absolute;
  left: 38px;
  bottom: 20px;
  margin: 0;
  color: #e22548;
  font-family: "Montserrat", sans-serif;
  font-size: .72rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.fanclub-result-card .fanclub-card-bottom {
  position: static;
}

.fanclub-result-card .fanclub-card-bottom > span {
  position: absolute;
  right: 38px;
  bottom: 20px;
  margin: 0;
  max-width: 230px;
  text-align: right;
  color: #6f6f6f;
  font-family: "Montserrat", sans-serif;
  font-size: .48rem;
  line-height: 1.35;
  letter-spacing: .08em;
}

@media (max-width: 620px) {
  .fanclub-result-card .fanclub-card-kicker {
    left: 24px;
    bottom: 116px;
  }

  .fanclub-result-card h2#resultCardName {
    left: 24px;
    bottom: 79px;
  }

  .fanclub-result-card #resultId {
    left: 24px;
    bottom: 58px;
  }

  .fanclub-result-card .result-card-meta {
    left: 24px;
    bottom: 35px;
    gap: 12px;
  }

  .fanclub-result-card .result-card-meta span {
    font-size: .46rem;
  }

  .fanclub-result-card .result-card-industrioso {
    left: 24px;
    bottom: 14px;
    font-size: .62rem;
  }

  .fanclub-result-card .fanclub-card-bottom > span {
    display: none;
  }
}

/* ===== MEMBERSHIP CARD DOWNLOAD BUTTON ===== */
.membership-download-btn {
  margin: 28px auto 0;
  min-width: 430px;
  min-height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 38px;
  border: 1px solid #d7193b;
  border-radius: 8px;
  background: transparent;
  color: #ef2347;
  font-family: "Montserrat", sans-serif;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}

.membership-download-btn:hover {
  background: #d7193b;
  color: #fff;
  transform: translateY(-2px);
}

.membership-download-btn:disabled {
  opacity: .6;
  cursor: wait;
  transform: none;
}

@media (max-width: 620px) {
  .membership-download-btn {
    width: 100%;
    min-width: 0;
  }
}

