:root {
  --bg: #000000;
  --bg-soft: #050505;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --line: rgba(255, 255, 255, 0.08);

  --primary: #a10f22;
  --primary-soft: rgba(161, 15, 34, 0.22);
  --shadow-red: rgba(161, 15, 34, 0.35);
  --shadow-black: rgba(0, 0, 0, 0.9);

  --font-body: "Inter", sans-serif;
  --font-display: "Oswald", sans-serif;

  --container: min(1380px, 94%);
  --nav-height: 92px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
}

/* =========================
  UTILS
========================= */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 8px;
  background: var(--primary);
  color: #ffffff;
  padding: 8px 16px;
  z-index: 9999;
  font-size: 0.875rem;
  font-family: var(--font-body);
  font-weight: 500;
  text-decoration: none;
  border-radius: 0 0 4px 4px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
}

/* =========================
  FOCUS VISIBLE
========================= */

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 2px;
}

/* =========================
  HERO WRAPPER
========================= */

.hero-header {
  min-height: 100vh;
  position: relative;
  background:
    radial-gradient(circle at 62% 50%, rgba(161, 15, 34, 0.08), transparent 20%),
    linear-gradient(180deg, #000000 0%, #020202 100%);
  overflow: hidden;
}

/* =========================
  NAV
========================= */

.nav {
  width: var(--container);
  min-height: var(--nav-height);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
}


.nav__list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 78px;
}

.nav__list a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.nav__list a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 0;
  height: 1px;
  background: var(--primary);
  transform: translateX(-50%);
  transition: width 0.25s ease;
}

.nav__list a:hover {
  color: #ffffff;
}

.nav__list a:hover::after {
  width: 100%;
}

/* =========================
  HERO LAYOUT
========================= */

.hero {
  width: 100%;
  min-height: 100vh;
  margin: 0;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: stretch;
  position: relative;
}

/* =========================
  IMAGE SIDE
========================= */

.hero__media {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  min-height: 100%;
  transform: translateZ(0); /* aísla el blur del ::after en su propia capa — evita repaint en scroll */
  contain: paint;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(0, 0, 0, 0.74) 0%,
      rgba(0, 0, 0, 0.10) 14%,
      rgba(0, 0, 0, 0.10) 52%,
      rgba(0, 0, 0, 0.60) 72%,
      rgba(0, 0, 0, 0.88) 84%,
      rgba(0, 0, 0, 1.00) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.1) 20%, rgba(0, 0, 0, 0.26) 74%, rgba(0, 0, 0, 0.98) 100%);
  filter: blur(20px);
  pointer-events: none;
  z-index: 3;
}

.hero__image {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(1.08) contrast(1.03) brightness(0.76);
  box-shadow:
    34px 0 58px -30px rgba(161, 15, 34, 0.5),
    0 30px 50px -34px rgba(0, 0, 0, 0.96);
  -webkit-mask-image: radial-gradient(ellipse 90% 86% at 44% 50%, #000 56%, rgba(0, 0, 0, 0.92) 68%, transparent 100%);
  mask-image: radial-gradient(ellipse 90% 86% at 44% 50%, #000 56%, rgba(0, 0, 0, 0.92) 68%, transparent 100%);
  -webkit-mask-size: 154% 150%;
  mask-size: 154% 150%;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  position: relative;
  z-index: 1;
}

/* overlay oscuro para fundir la imagen con el fondo */
.hero__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 86% 50%, rgba(161, 15, 34, 0.24), transparent 54%),
    radial-gradient(circle at 8% 16%, rgba(0, 0, 0, 0.56), transparent 42%),
    radial-gradient(circle at 12% 88%, rgba(0, 0, 0, 0.68), transparent 46%);
  pointer-events: none;
  z-index: 2;
}

/* =========================
  LOGO SIDE
========================= */

.hero__brand {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background:
    radial-gradient(circle at 0% 50%, rgba(161, 15, 34, 0.2), transparent 44%),
    #000000;
  padding: 40px;
}

.hero__brand::before {
  content: "";
  position: absolute;
  left: -70px;
  top: 50%;
  transform: translateY(-50%);
  width: 220px;
  height: 420px;
  background:
    radial-gradient(
      ellipse at center,
      var(--shadow-red) 0%,
      rgba(161, 15, 34, 0.14) 35%,
      rgba(161, 15, 34, 0.04) 58%,
      transparent 78%
    );
  filter: blur(38px);
  pointer-events: none;
  z-index: 1;
}

.hero__logo {
  width: min(420px, 72%);
  max-width: 420px;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
  animation: logo-enter 1.05s cubic-bezier(0.22, 0.61, 0.36, 1) 0.18s both;
  filter:
    drop-shadow(0 0 18px rgba(255, 255, 255, 0.03))
    drop-shadow(0 0 28px rgba(161, 15, 34, 0.10));
}

@keyframes logo-enter {
  0% {
    opacity: 0;
    transform: translateY(34px) scale(0.94);
    filter:
      blur(8px)
      drop-shadow(0 0 10px rgba(161, 15, 34, 0.04));
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter:
      drop-shadow(0 0 18px rgba(255, 255, 255, 0.03))
      drop-shadow(0 0 28px rgba(161, 15, 34, 0.10));
  }
}

/* =========================
  RESPONSIVE
========================= */

@media (max-width: 980px) {
  :root {
    --nav-height: 82px;
  }

  .nav {
    gap: 14px;
  }

  .nav__list {
    gap: 48px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav__list a {
    font-size: 0.8rem;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero__brand {
    order: 1;
  }

  .hero__media {
    order: 2;
    min-height: auto;
  }

  .hero__image {
    height: 58vh;
    min-height: 380px;
  }

  .hero__media::after {
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.84) 0%, rgba(0, 0, 0, 0.1) 20%, rgba(0, 0, 0, 0.3) 72%, rgba(0, 0, 0, 0.96) 100%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.12) 16%, rgba(0, 0, 0, 0.12) 84%, rgba(0, 0, 0, 0.72) 100%);
    filter: blur(14px);
  }

  .hero__brand {
    min-height: 34vh;
    padding: 34px 20px 56px;
  }

  .hero__brand::before {
    left: 50%;
    top: auto;
    bottom: 10px;
    transform: translateX(-50%);
    width: 300px;
    height: 120px;
  }

  .hero__logo {
    width: min(320px, 80%);
  }
}

@media (max-width: 640px) {
  :root {
    --nav-height: 88px;
  }

  .nav {
    padding: 16px 0;
  }

  .nav__list {
    gap: 24px 40px;
  }

  .nav__list a {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
  }

  .hero__image {
    height: 50vh;
    min-height: 300px;
  }

  .hero__brand {
    min-height: 28vh;
    padding: 28px 18px 48px;
  }

  .hero__logo {
    width: min(260px, 82%);
  }
}

/* =========================
  SECCIÓN: QUIÉN SOY
========================= */

.about {
  background:
    radial-gradient(circle at 80% 30%, rgba(161, 15, 34, 0.07), transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(161, 15, 34, 0.05), transparent 44%),
    var(--bg-soft);
  padding: 120px 0 140px;
  position: relative;
  overflow: hidden;
}

/* línea decorativa superior */
.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: var(--container);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--line) 20%,
    rgba(161, 15, 34, 0.35) 50%,
    var(--line) 80%,
    transparent 100%
  );
}

.about__inner {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* =========================
  COLUMNA TEXTO
========================= */

.about__content {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

/* encabezado con número + título + línea */
.about__heading-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.about__label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--primary);
  opacity: 0.9;
}

.about__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--text);
  position: relative;
}

.about__title-dot {
  color: var(--primary);
}

.about__title-line {
  width: 52px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, rgba(161, 15, 34, 0.2) 100%);
  margin-top: 4px;
}

/* párrafos */
.about__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about__paragraph {
  font-family: var(--font-body);
  font-size: 0.96rem;
  font-weight: 300;
  line-height: 1.82;
  color: var(--muted);
  letter-spacing: 0.015em;
}

.about__paragraph--highlight {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 400;
  padding-left: 16px;
  border-left: 1px solid var(--primary);
  font-style: italic;
}
/* =========================
  COLUMNA IMAGEN
========================= */

.about__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

/* marco decorativo offset */
.about__image-wrap::before {
  content: "";
  position: absolute;
  inset: -1px;
  border: 1px solid rgba(161, 15, 34, 0.22);
  pointer-events: none;
  z-index: 4;
}

/* esquina decorativa */
.about__image-wrap::after {
  content: "";
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 72px;
  height: 72px;
  border-bottom: 2px solid var(--primary);
  border-right: 2px solid var(--primary);
  pointer-events: none;
  z-index: 4;
  opacity: 0.7;
}

.about__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  display: block;
  filter: saturate(1.05) contrast(1.04) brightness(0.8);
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter 0.7s ease;
}

.about__image-wrap:hover .about__image {
  transform: scale(1.04);
  filter: saturate(1.1) contrast(1.05) brightness(0.88);
}

/* overlay de fusión en los bordes */
.about__image-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(5, 5, 5, 0.42) 0%,
      transparent 28%,
      transparent 68%,
      rgba(5, 5, 5, 0.72) 100%),
    linear-gradient(90deg,
      rgba(5, 5, 5, 0.52) 0%,
      transparent 18%,
      transparent 82%,
      rgba(5, 5, 5, 0.52) 100%);
  pointer-events: none;
  z-index: 2;
}

/* resplandor rojo lateral */
.about__image-glow {
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 120px;
  height: 60%;
  background: radial-gradient(
    ellipse at center,
    rgba(161, 15, 34, 0.28) 0%,
    rgba(161, 15, 34, 0.08) 45%,
    transparent 72%
  );
  filter: blur(30px);
  pointer-events: none;
  z-index: 1;
}

/* =========================
  RESPONSIVE
========================= */

@media (max-width: 980px) {
  .about {
    padding: 90px 0 110px;
  }

  .about__inner {
    grid-template-columns: 1fr;
    gap: 52px;
  }

.about__heading-wrap {
  align-items: center;
  text-align: center;
}

.about__title-line {
  margin-left: auto;
  margin-right: auto;
}

  .about__image-wrap {
    aspect-ratio: 3 / 4;
    max-height: 520px;
  }

  .about__image-glow {
    left: 50%;
    top: auto;
    bottom: -30px;
    transform: translateX(-50%);
    width: 60%;
    height: 80px;
  }

  .about__image {
  object-position:center;
}
}

@media (max-width: 640px) {
  .about {
    padding: 72px 0 88px;
  }

  .about__inner {
    gap: 40px;
  }

  .about__title {
    font-size: clamp(2.2rem, 9vw, 2.8rem);
  }

  .about__paragraph {
    font-size: 0.9rem;
    line-height: 1.76;
  }

  .about__image-wrap {
    aspect-ratio: 3 / 4;
    max-height: 420px;
  }

  .about__image-wrap::after {
    bottom: -8px;
    right: -8px;
    width: 48px;
    height: 48px;
  }
}

/* =========================
  ABOUT — ANIMACIÓN SCROLL
========================= */

.about__content,
.about__media {
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.22, 0.61, 0.36, 1),
              transform 1s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.about__content {
  transform: translateX(-60px);
}

.about__media {
  transform: translateX(60px);
}

.about__content.about--visible,
.about__media.about--visible {
  opacity: 1;
  transform: translateX(0);
}

.about__media.about--visible {
  transition-delay: 0.15s;
}

/* =========================
  SECCIÓN: EQUIPO
========================= */

.equipment {
  background:
    radial-gradient(circle at 50% 40%, rgba(161, 15, 34, 0.09), transparent 52%),
    var(--bg);
  padding: 120px 0 140px;
  position: relative;
  overflow: hidden;
}

.equipment::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: var(--container);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--line) 20%,
    rgba(161, 15, 34, 0.35) 50%,
    var(--line) 80%,
    transparent 100%
  );
}

.equipment__inner {
  width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
}

/* =========================
  ENCABEZADO
========================= */

.equipment__heading-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.equipment__label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--primary);
  opacity: 0.9;
}

.equipment__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--text);
}

.equipment__title-accent {
  color: var(--primary);
}

.equipment__title-line {
  width: 52px;
  height: 2px;
  background: linear-gradient(90deg, rgba(161, 15, 34, 0.2) 0%, var(--primary) 50%, rgba(161, 15, 34, 0.2) 100%);
  margin-top: 4px;
}

/* =========================
  IMAGEN
========================= */

.equipment__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 780px;
}

.equipment__image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

/* marco decorativo */
.equipment__image-wrap::before {
  content: "";
  position: absolute;
  inset: -1px;
  border: 1px solid rgba(161, 15, 34, 0.22);
  pointer-events: none;
  z-index: 4;
}

/* esquinas decorativas */
.equipment__image-wrap::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--primary);
  opacity: 0.6;
  pointer-events: none;
  z-index: 4;
}

.equipment__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(1.05) contrast(1.04) brightness(0.78);
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter 0.7s ease;
}

.equipment__image-wrap:hover .equipment__image {
  transform: scale(1.03);
  filter: saturate(1.1) contrast(1.05) brightness(0.86);
}

.equipment__image-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(0, 0, 0, 0.38) 0%,
      transparent 30%,
      transparent 62%,
      rgba(0, 0, 0, 0.72) 100%),
    linear-gradient(90deg,
      rgba(0, 0, 0, 0.44) 0%,
      transparent 18%,
      transparent 82%,
      rgba(0, 0, 0, 0.44) 100%);
  pointer-events: none;
  z-index: 2;
}

/* sombra roja difusa debajo de la imagen */
.equipment__glow {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 60px;
  background: radial-gradient(
    ellipse at center,
    rgba(161, 15, 34, 0.55) 0%,
    rgba(161, 15, 34, 0.18) 45%,
    transparent 72%
  );
  filter: blur(22px);
  pointer-events: none;
  z-index: 0;
}

/* =========================
  RIDER
========================= */

.equipment__rider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  width: 100%;
  max-width: 780px;
}


.equipment__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  width: 100%;
}

.equipment__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  position: relative;
  transition: background 0.25s ease, border-color 0.25s ease;
  cursor: default;
}

.equipment__item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--primary-soft);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.equipment__item:hover {
  border-color: rgba(161, 15, 34, 0.3);
}

.equipment__item:hover::before {
  opacity: 1;
}

.equipment__item-icon {
  color: var(--primary);
  font-size: 0.7rem;
  margin-top: 3px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.equipment__item-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  z-index: 1;
}

.equipment__item-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.2;
}

.equipment__item-detail {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--muted);
}

/* =========================
  ANIMACIÓN SCROLL
========================= */

.equipment__heading-wrap,
.equipment__media,
.equipment__rider {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.6s cubic-bezier(0.22, 0.61, 0.36, 1),
              transform 1.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.equipment__media {
  transition-delay: 0.15s;
}

.equipment__rider {
  transition-delay: 0.3s;
}

.equipment--visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* =========================
  RESPONSIVE
========================= */

@media (max-width: 980px) {
  .equipment {
    padding: 90px 0 110px;
  }

  .equipment__media {
    max-width: 100%;
  }

  .equipment__rider {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .equipment {
    padding: 72px 0 88px;
  }

  .equipment__grid {
    grid-template-columns: 1fr;
  }

  .equipment__item {
    padding: 18px 20px;
  }

  .equipment__item-name {
    font-size: 0.9rem;
  }
}

/* =========================
  SECCIÓN: LUGARES v2 — MARQUEE
========================= */

.venues {
  background:
    radial-gradient(circle at 20% 60%, rgba(161, 15, 34, 0.06), transparent 48%),
    radial-gradient(circle at 80% 20%, rgba(161, 15, 34, 0.05), transparent 44%),
    var(--bg-soft);
  padding: 120px 0 0;
  position: relative;
  overflow: hidden;
}

.venues::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: var(--container);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--line) 20%,
    rgba(161, 15, 34, 0.35) 50%,
    var(--line) 80%,
    transparent 100%
  );
}

/* =========================
  ENCABEZADO
========================= */

.venues__heading-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  width: var(--container);
  margin: 0 auto 64px;
}

.venues__label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--primary);
  opacity: 0.9;
}

.venues__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--text);
}

.venues__title-accent {
  color: var(--primary);
}

.venues__subtitle {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  margin-top: 4px;
}

.venues__title-line {
  width: 52px;
  height: 2px;
  background: linear-gradient(90deg, rgba(161, 15, 34, 0.2) 0%, var(--primary) 50%, rgba(161, 15, 34, 0.2) 100%);
  margin-top: 4px;
}

/* =========================
  MARQUEE WRAPPER
========================= */

.venues__marquee-wrapper {
  position: relative;
  width: 100%;
  padding: 64px 0 80px;
  overflow: hidden;
  transform: translateZ(0); /* fuerza capa GPU propia → Safari respeta overflow:hidden sobre will-change hijos */
  background:
    radial-gradient(ellipse at 50% 50%, rgba(161, 15, 34, 0.07) 0%, transparent 68%);
}

/* líneas decorativas arriba y abajo */
.venues__marquee-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
}

.venues__marquee-line--top {
  top: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--line) 15%,
    rgba(161, 15, 34, 0.3) 50%,
    var(--line) 85%,
    transparent 100%
  );
}

.venues__marquee-line--bottom {
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--line) 15%,
    rgba(161, 15, 34, 0.3) 50%,
    var(--line) 85%,
    transparent 100%
  );
}

/* fade en los bordes laterales */
.venues__marquee-wrapper::before,
.venues__marquee-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 180px;
  z-index: 10;
  pointer-events: none;
}

.venues__marquee-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-soft) 0%, transparent 100%);
}

.venues__marquee-wrapper::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg-soft) 0%, transparent 100%);
}

/* =========================
  MARQUEE TRACK
========================= */

.venues__marquee {
  display: flex;
  width: 100%;
  /* overflow removed — parent wrapper already clips */
}

.venues__track {
  display: flex;
  align-items: center;
  gap: 0;
  animation: marquee-scroll 16s linear infinite;
  animation-play-state: paused; /* arranca pausado — evita que corra antes de que las imágenes estén listas */
}

/* arranca cuando el wrapper entra al viewport (JS agrega venues--visible) */
.venues__marquee-wrapper.venues--visible .venues__track {
  animation-play-state: running;
}

@media (hover: hover) and (pointer: fine) {
  .venues__track {
    will-change: transform;
  }
}

/* pausa solo en dispositivos con hover real (no touch) */
@media (hover: hover) and (pointer: fine) {
  .venues__marquee:hover .venues__track {
    animation-play-state: paused;
  }
}

@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =========================
  SEPARADOR
========================= */

.venues__sep {
  color: var(--primary);
  font-size: 0.6rem;
  opacity: 0.5;
  padding: 0 40px;
  flex-shrink: 0;
  user-select: none;
}

/* =========================
  ITEM
========================= */

.venues__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  cursor: default;
  position: relative;
  padding: 8px 32px;
  transition: transform 0.3s ease;
}

.venues__item:hover {
  transform: scale(1.08);
}

/* =========================
  LOGO
========================= */

.venues__logo {
  width: auto;
  max-width: 260px;
  max-height: 130px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.45;
  transition: filter 0.35s ease, opacity 0.35s ease;
  user-select: none;
  pointer-events: none;
}

.venues__item:hover .venues__logo {
  filter:
    brightness(0)
    saturate(100%)
    invert(15%)
    sepia(100%)
    saturate(1200%)
    hue-rotate(330deg)
    brightness(110%);
  opacity: 1;
}

/* =========================
  ITEM DESTACADO
========================= */

.venues__item--featured .venues__logo {
  max-width: 420px;
  max-height: 240px;
  opacity: 0.9;
  filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255,255,255,0.1));
}

.venues__item--featured:hover .venues__logo {
  filter:
    brightness(0)
    saturate(100%)
    invert(15%)
    sepia(100%)
    saturate(1200%)
    hue-rotate(330deg)
    brightness(110%)
    drop-shadow(0 0 16px rgba(161, 15, 34, 0.8));
  opacity: 1;
}

.venues__badge {
  position: absolute;
  top: 6px;
  bottom: unset;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  border: 1px solid rgba(161, 15, 34, 0.4);
  padding: 3px 10px;
  white-space: nowrap;
  transition: background 0.3s ease;
}

.venues__item--featured:hover .venues__badge {
  background: rgba(161, 15, 34, 0.18);
}

/* =========================
  ANIMACIÓN SCROLL
========================= */

.venues__heading-wrap {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.6s cubic-bezier(0.22, 0.61, 0.36, 1),
              transform 1.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.venues--visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
  RESPONSIVE
========================= */

@media (max-width: 980px) {
  .venues {
    padding: 90px 0 0;
  }

  .venues__marquee-wrapper::before,
  .venues__marquee-wrapper::after {
    width: 80px;
  }

  .venues__logo {
    max-width: 200px;
    max-height: 150px;
  }

  .venues__item--featured .venues__logo {
    max-width: 260px;
    max-height: 160px;
  }

  .venues__item {
    transition: none;
  }
}

@media (max-width: 640px) {
  .venues {
    padding: 72px 0 0;
  }

  .venues__marquee-wrapper::before,
  .venues__marquee-wrapper::after {
    width: 48px;
  }

  .venues__sep {
    padding: 0 24px;
  }

  .venues__logo {
    max-width: 160px;
    max-height: 120px;
  }

  .venues__item--featured .venues__logo {
    max-width: 268px;
    max-height: 160px;
  }
}

.venues__item--featured {
  padding-top: 28px;
}

/* =========================
  SECCIÓN: CALENDARIO
========================= */

.calendar {
  background:
    radial-gradient(circle at 15% 50%, rgba(161, 15, 34, 0.07), transparent 46%),
    radial-gradient(circle at 85% 20%, rgba(161, 15, 34, 0.05), transparent 42%),
    var(--bg);
  padding: 120px 0 140px;
  position: relative;
  overflow: hidden;
}

.calendar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: var(--container);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--line) 20%,
    rgba(161, 15, 34, 0.35) 50%,
    var(--line) 80%,
    transparent 100%
  );
}

.calendar__inner {
  width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 72px;
}

/* =========================
  ENCABEZADO
========================= */

.calendar__heading-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.calendar__label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--primary);
  opacity: 0.9;
}

.calendar__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--text);
}

.calendar__title-accent {
  color: var(--primary);
}

.calendar__subtitle {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  margin-top: 4px;
}

.calendar__title-line {
  width: 52px;
  height: 2px;
  background: linear-gradient(90deg, rgba(161, 15, 34, 0.2) 0%, var(--primary) 50%, rgba(161, 15, 34, 0.2) 100%);
  margin-top: 4px;
}

/* =========================
  MESES
========================= */

.calendar__months {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  width: 100%;
  max-width: 1000px;
  align-items: start;
}

/* =========================
  BLOQUE MES
========================= */

.calendar__month-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.calendar__month-header {
  display: flex;
  align-items: baseline;
  gap: 12px;
  position: relative;
  padding-bottom: 16px;
}

.calendar__month-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  line-height: 1;
}

.calendar__month-year {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.55);
}

.calendar__month-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(161, 15, 34, 0.5) 0%, var(--line) 60%, transparent 100%);
}

/* =========================
  EVENTOS
========================= */

.calendar__events {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.calendar__event {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: background 0.3s ease, border-color 0.3s ease;
}

/* barra roja izquierda al hover */
.calendar__event::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--primary);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* glow de fondo al hover */
.calendar__event::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 0% 50%, rgba(161, 15, 34, 0.1) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.calendar__event:hover {
  border-color: rgba(161, 15, 34, 0.25);
  background: rgba(161, 15, 34, 0.04);
}

.calendar__event:hover::before {
  transform: scaleY(1);
}

.calendar__event:hover::after {
  opacity: 1;
}


/* =========================
  NÚMERO DÍA
========================= */

.calendar__event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  min-width: 38px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.calendar__event-day {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  color: var(--text);
  transition: color 0.3s ease;
}

.calendar__event:hover .calendar__event-day {
  color: var(--primary);
}

.calendar__event-weekday {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

/* =========================
  DIVISOR VERTICAL
========================= */

.calendar__event-divider {
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.1), transparent);
  flex-shrink: 0;
}

/* =========================
  INFO EVENTO
========================= */

.calendar__event-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  position: relative;
  z-index: 1;
}

.calendar__event-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.2;
}

.calendar__event-venue {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
}

/* dot decorativo derecha */
.calendar__event-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(161, 15, 34, 0.4);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.calendar__event:hover .calendar__event-dot {
  background: var(--primary);
  box-shadow: 0 0 8px rgba(161, 15, 34, 0.7);
}

/* =========================
  ANIMACIÓN SCROLL
========================= */

.calendar__heading-wrap,
.calendar__months {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.6s cubic-bezier(0.22, 0.61, 0.36, 1),
              transform 1.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.calendar__months {
  transition-delay: 0.2s;
}

.calendar--visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* =========================
  RESPONSIVE
========================= */

@media (max-width: 980px) {
  .calendar {
    padding: 90px 0 110px;
  }

  .calendar__months {
    grid-template-columns: 1fr;
    gap: 52px;
    max-width: 560px;
  }
}

@media (max-width: 640px) {
  .calendar {
    padding: 72px 0 88px;
  }

  .calendar__event {
    padding: 16px 16px;
    gap: 14px;
  }

  .calendar__event-day {
    font-size: 1.3rem;
  }

  .calendar__event-name {
    font-size: 0.88rem;
  }
}

/* ================================
  SECCIÓN: CONTACTO / BOOKING
================================ */

.booking {
  background: var(--bg);
  padding: 110px 0 120px;
  position: relative;
  overflow: hidden;
}

.booking::before {
  content: "";
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 360px;
  background: radial-gradient(ellipse at center, var(--primary-soft) 0%, transparent 68%);
  filter: blur(40px);
  pointer-events: none;
}

.booking__inner {
  width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.booking__heading-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.6s cubic-bezier(0.22, 0.61, 0.36, 1),
              transform 1.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.booking__label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  color: var(--primary);
  text-transform: uppercase;
}

.booking__title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1;
  margin: 0;
}

.booking__title-accent {
  color: var(--primary);
}

.booking__title-line {
  width: 48px;
  height: 2px;
  background: var(--primary);
  opacity: 0.5;
  margin-top: 6px;
}

.booking__body {
  max-width: 540px;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.6s cubic-bezier(0.22, 0.61, 0.36, 1) 0.15s,
              transform 1.6s cubic-bezier(0.22, 0.61, 0.36, 1) 0.15s;
}

.booking__paragraph {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
}

.booking__paragraph strong {
  color: var(--text);
  font-weight: 500;
}

.booking__links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: 500px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.6s cubic-bezier(0.22, 0.61, 0.36, 1) 0.3s,
              transform 1.6s cubic-bezier(0.22, 0.61, 0.36, 1) 0.3s;
}

.booking__link {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 28px;
  border: 1px solid var(--line);
  border-radius: 2px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.02);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.25s ease;
}

.booking__link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background: var(--primary);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s ease;
}

.booking__link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 0% 50%, rgba(161, 15, 34, 0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.booking__link:hover {
  border-color: rgba(161, 15, 34, 0.3);
  background: rgba(161, 15, 34, 0.04);
  transform: translateX(4px);
}

.booking__link:hover::before {
  transform: scaleY(1);
}

.booking__link:hover::after {
  opacity: 1;
}

.booking__link-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.45);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.booking__link:hover .booking__link-icon {
  color: var(--primary);
}

.booking__link-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  flex: 1;
  position: relative;
  z-index: 1;
}

.booking__link-label {
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1;
}

.booking__link-handle {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text);
}

.booking__link-arrow {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.50);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease, transform 0.25s ease;
}

.booking__link:hover .booking__link-arrow {
  color: var(--primary);
  transform: translateX(4px);
}

.booking--visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

@media (max-width: 980px) {
  .booking {
    padding: 90px 0 100px;
  }

  .booking__links {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .booking {
    padding: 72px 0 80px;
  }

  .booking__link {
    padding: 18px 20px;
    gap: 16px;
  }

  .booking__link-handle {
    font-size: 0.92rem;
  }
}

/* ================================
  SECCIÓN: SETS / VIDEOS
================================ */

.sets {
  background: var(--bg);
  padding: 110px 0 120px;
  position: relative;
  overflow: hidden;
}

.sets::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse at center, var(--primary-soft) 0%, transparent 68%);
  filter: blur(60px);
  pointer-events: none;
}

.sets__inner {
  width: var(--container);
  margin: 0 auto;
}

/* =========================
  ENCABEZADO
========================= */

.sets__heading-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.6s cubic-bezier(0.22, 0.61, 0.36, 1),
              transform 1.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.sets__label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  color: var(--primary);
  text-transform: uppercase;
}

.sets__title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1;
  margin: 0;
}

.sets__title-accent {
  color: var(--primary);
}

.sets__subtitle {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

.sets__title-line {
  width: 48px;
  height: 2px;
  background: var(--primary);
  opacity: 0.5;
  margin-top: 4px;
}

/* =========================
  GRILLA DE VIDEOS
========================= */

.sets__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 860px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.6s cubic-bezier(0.22, 0.61, 0.36, 1) 0.2s,
              transform 1.6s cubic-bezier(0.22, 0.61, 0.36, 1) 0.2s;
}

.sets__video-wrap {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0a0a0a;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255,255,255,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sets__video-wrap:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.8), 0 0 20px rgba(161, 15, 34, 0.18);
}

/* Cover title and channel overlay at the top of the player */
.sets__video-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 18%;
  background: linear-gradient(to bottom, #000 55%, transparent);
  z-index: 2;
  pointer-events: none;
  border-radius: 10px 10px 0 0;
}

.sets__video-wrap iframe {
  width: 100%;
  aspect-ratio: 9 / 16;
  border: none;
  display: block;
}

/* =========================
  ANIMACIÓN SCROLL
========================= */

.sets--visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* =========================
  RESPONSIVE
========================= */

@media (max-width: 980px) {
  .sets {
    padding: 90px 0 100px;
  }

  .sets__grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 520px;
    gap: 14px;
  }

  /* 3rd video centered in 2-col layout */
  .sets__video-wrap:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 240px;
    margin: 0 auto;
  }
}

@media (max-width: 560px) {
  .sets {
    padding: 72px 0 80px;
  }

  .sets__grid {
    grid-template-columns: 1fr;
    max-width: 260px;
    gap: 20px;
  }

  .sets__video-wrap:nth-child(3) {
    grid-column: auto;
    max-width: 100%;
    margin: 0;
  }
}

@media (hover: none) {
  .sets__video-wrap:hover {
    transform: none;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255,255,255,0.04);
  }
}

/* ================================
  FOOTER
================================ */

.footer {
  background: var(--bg);
  padding: 0 0 40px;
}

.footer__inner {
  width: var(--container);
  margin: 0 auto;
}

.footer__divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line) 20%, var(--line) 80%, transparent);
  margin-bottom: 32px;
}

.footer__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__brand {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.25s ease;
}

.footer__brand:hover {
  color: rgba(255, 255, 255, 0.65);
}

.footer__brand-accent {
  color: var(--primary);
  opacity: 0.7;
}

.footer__copy {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.50);
  text-transform: uppercase;
}

@media (max-width: 640px) {
  .footer__content {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
  }
}

/* =========================
  PREFERS REDUCED MOTION
========================= */

@media (prefers-reduced-motion: reduce) {
  /* disable entrance animations — show all sections immediately */
  .about__content,
  .about__media,
  .equipment__heading-wrap,
  .equipment__media,
  .equipment__rider,
  .calendar__heading-wrap,
  .calendar__months,
  .venues__heading-wrap,
  .venues__marquee-wrapper,
  .booking__heading-wrap,
  .booking__body,
  .booking__links,
  .sets__heading-wrap,
  .sets__grid {
    opacity: 1;
    transform: none;
    transition: none;
  }

  /* stop the marquee loop */
  .venues__track {
    animation: none;
  }

  /* skip the hero logo entrance */
  .hero__logo {
    animation: none;
    opacity: 1;
    transform: none;
    filter:
      drop-shadow(0 0 18px rgba(255, 255, 255, 0.03))
      drop-shadow(0 0 28px rgba(161, 15, 34, 0.10));
  }
}