/* ============================================================
   GORDO — black / white / red editorial
   ============================================================ */
:root {
  --black: #050505;
  --ink: #0c0c0c;
  --white: #f4f2ee;
  --grey: #8a8a86;
  --red: #e10600;
  --font-display: "Helvetica Neue", Helvetica, "Archivo", Arial, sans-serif;
  --font-body: "Archivo", Helvetica, sans-serif;
  --font-mono: "Space Mono", monospace;
  --pad: clamp(20px, 4vw, 64px);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.locked { overflow: hidden; }

/* TARAKA-style display type: heavy tight grotesque */
.mobilemenu a,
.hero__bgrow,
.press__outlet,
.section__title,
.tour__title,
.event__city,
.release__name,
.setcard__title,
.bio__cta,
.booking__title,
.contacts__links a {
  font-weight: 800;
  letter-spacing: -0.025em;
}

.red { color: var(--red); }
a { color: inherit; text-decoration: none; }
em { font-style: italic; }

/* subtle grain over everything */
body::after {
  content: "";
  position: fixed;
  inset: -50%;
  pointer-events: none;
  z-index: 200;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============ INTRO ============ */
.intro {
  position: fixed;
  inset: 0;
  min-height: 100lvh; /* cover past iOS collapsed-toolbar area */
  z-index: 1000;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: inset(0 0 0 0);
}
.intro__video {
  width: min(320px, 46vw);
  height: auto;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.intro.is-playing .intro__video { opacity: 1; }

/* hard zoom: logo blasts past the camera, site punches in beneath */
.intro.is-done {
  transition: opacity 0.45s ease 0.15s;
  opacity: 0;
  pointer-events: none;
}
.intro.is-done .intro__video {
  transition: transform 0.65s cubic-bezier(0.7, 0, 0.85, 0.4);
  transform: scale(9);
}
.intro.is-gone { display: none; }

main, .footer {
  transform: scale(0.82);
  transform-origin: 50% 30vh;
}
body.zoomed main, body.zoomed .footer {
  transform: scale(1);
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.12s;
}
/* once the zoom settles, drop the transform entirely — a lingering transform
   creates a containing block that makes iOS glitch backdrop-filter glass
   and breaks fixed positioning while scrolling */
body.settled main, body.settled .footer {
  transform: none;
  transition: none;
}

/* ============ LIQUID GLASS NAV ============ */
.nav {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 500;
  width: min(920px, calc(100% - 32px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 10px 10px 24px;
  border-radius: 999px;
  background: linear-gradient(
      120deg,
      rgba(255, 255, 255, 0.10),
      rgba(255, 255, 255, 0.03) 40%,
      rgba(255, 255, 255, 0.08)
    );
  -webkit-backdrop-filter: blur(22px) saturate(170%);
  backdrop-filter: blur(22px) saturate(170%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -1px 0 rgba(0, 0, 0, 0.25),
    0 12px 40px rgba(0, 0, 0, 0.45);
  opacity: 0;
  translate: 0 -24px;
  transition: opacity 0.7s ease, translate 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.nav.is-visible { opacity: 1; translate: 0 0; }

.nav__logo { display: flex; align-items: center; }
.nav__logo img {
  height: 34px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.25));
}
.nav__links {
  display: flex;
  gap: 4px;
}
.nav__links a {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 8px 16px;
  border-radius: 999px;
  transition: background 0.25s ease, color 0.25s ease;
}
.nav__links a:hover {
  background: rgba(255, 255, 255, 0.12);
}
.nav__cta {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 10px 22px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 18px rgba(225, 6, 0, 0.35);
  white-space: nowrap;
}
.nav__cta:hover { transform: scale(1.05); box-shadow: 0 6px 26px rgba(225, 6, 0, 0.55); }

.nav__burger {
  display: none;
  background: none;
  border: 0;
  width: 40px; height: 40px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.nav__burger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--white);
  transition: transform 0.3s ease;
}
.nav__burger.open span:first-child { transform: translateY(4px) rotate(45deg); }
.nav__burger.open span:last-child { transform: translateY(-4px) rotate(-45deg); }

.mobilemenu {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: rgba(5, 5, 5, 0.7);
  -webkit-backdrop-filter: blur(30px) saturate(160%);
  backdrop-filter: blur(30px) saturate(160%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobilemenu.open { opacity: 1; pointer-events: auto; }
.mobilemenu a {
  font-family: var(--font-display);
  font-size: clamp(40px, 10vw, 64px);
  text-transform: uppercase;
  line-height: 1.15;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 620px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(5,5,5,0.18), rgba(5,5,5,0.62) 100%),
    linear-gradient(180deg, rgba(5,5,5,0.5) 0%, rgba(5,5,5,0) 30%, rgba(5,5,5,0) 60%, rgba(5,5,5,0.85) 96%);
}
.hero__frame { display: none; }
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 var(--pad);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  will-change: transform;
}
.hero__video { will-change: transform; }
.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #d8d6d1;
  margin-bottom: 14px;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(96px, 21vw, 320px);
  line-height: 0.86;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  position: relative;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(50px) scale(0.96);
  transition: opacity 0.9s ease, transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.hero.is-in .hero__title { opacity: 1; transform: translateY(0) scale(1); }
.hero__title em { font-style: normal; }
/* thermal logo mark: heatmap gradient masked by the GORDO logo */
.hero__logomark {
  display: block;
  width: clamp(210px, 30vw, 470px);
  aspect-ratio: 3 / 2;
  background: linear-gradient(to top,
    #101a8e 0%,
    #2453e6 18%,
    #00c8ff 38%,
    #2fe06b 56%,
    #ffe600 74%,
    #ff9500 90%,
    #ffc36b 100%);
  -webkit-mask: url("assets/gordo-logo.png") center / contain no-repeat;
  mask: url("assets/gordo-logo.png") center / contain no-repeat;
  filter: drop-shadow(0 14px 44px rgba(0, 0, 0, 0.55));
  position: relative;
}
/* glitch bursts */
.hero__title::before,
.hero__title::after {
  content: "";
  position: absolute;
  inset: 0;
  -webkit-mask: url("assets/gordo-logo.png") center / contain no-repeat;
  mask: url("assets/gordo-logo.png") center / contain no-repeat;
  opacity: 0;
  pointer-events: none;
}
.hero__title::before {
  background: var(--red);
  z-index: -1;
  animation: glitch-red 4.5s infinite;
}
.hero__title::after {
  background: rgba(255, 255, 255, 0.9);
  z-index: -2;
  animation: glitch-white 4.5s infinite;
}
@keyframes glitch-red {
  0%, 91%, 100% { opacity: 0; transform: none; clip-path: none; }
  92% { opacity: 0.9; transform: translate(-9px, 3px); clip-path: inset(12% 0 58% 0); }
  93.5% { opacity: 0.9; transform: translate(7px, -2px); clip-path: inset(60% 0 8% 0); }
  95% { opacity: 0.85; transform: translate(-5px, 1px); clip-path: inset(35% 0 40% 0); }
  96.5% { opacity: 0; transform: none; }
}
@keyframes glitch-white {
  0%, 91.5%, 100% { opacity: 0; transform: none; clip-path: none; }
  92.5% { opacity: 0.6; transform: translate(8px, -3px); clip-path: inset(45% 0 30% 0); }
  94% { opacity: 0.6; transform: translate(-6px, 2px); clip-path: inset(5% 0 75% 0); }
  95.5% { opacity: 0; transform: none; }
}

/* giant outline marquee rows behind the title */
.hero__bgtext {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
  /* lighten blend: the bright face wins over the dark strokes, so the
     sliders read as passing behind Gordo's head */
  mix-blend-mode: lighten;
}
.hero__bgrow {
  position: absolute;
  display: flex;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: clamp(64px, 10vw, 150px);
  line-height: 1;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(225, 6, 0, 0.38);
}
.hero__bgrow--top { top: 6%; animation: marquee 70s linear infinite; }
.hero__bgrow--bottom {
  bottom: 5%;
  animation: marquee 60s linear infinite reverse;
}

/* equalizer bars */
.hero__eq {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 62px;
  margin-top: 30px;
  padding: 12px 22px;
  max-width: min(540px, 86vw);
  overflow: hidden;
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(255,255,255,0.10), rgba(255,255,255,0.03) 45%, rgba(255,255,255,0.08));
  -webkit-backdrop-filter: blur(20px) saturate(170%);
  backdrop-filter: blur(20px) saturate(170%);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.2),
    inset 0 -1px 0 rgba(0,0,0,0.25),
    0 14px 36px rgba(0,0,0,0.45);
}
.hero__eq span {
  width: 4px;
  border-radius: 3px;
  /* thermal ramp: cold base -> hot peak */
  background: linear-gradient(to top,
    #00b4ff 0%,
    #21e065 14%,
    #ffe600 34%,
    #ff7300 60%,
    #e10600 100%);
  animation: eq 0.8s ease-in-out infinite alternate;
  box-shadow: 0 0 7px rgba(255, 115, 0, 0.35);
}
@keyframes eq {
  from { transform: scaleY(0.12); }
  to { transform: scaleY(1); }
}

.hero__tags {
  margin-top: 24px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #c9c7c2;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.hero__tag, .hero__tournow { white-space: nowrap; }
.hero__wave {
  width: min(680px, 92vw);
  height: 120px;
  margin-top: 10px;
}
.hero__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
  flex-wrap: wrap;
}
.hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
  white-space: nowrap;
}
.hero__chip--red {
  background: rgba(225, 6, 0, 0.75);
  border-color: rgba(255, 90, 70, 0.55);
}
.hero__tournow {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
  transition: color 0.25s ease;
}
.hero__tournow:hover { color: var(--red); }
.hero__chip-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  animation: pulse 1.2s ease infinite;
}

.hero__scroll {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: clamp(26px, 4vh, 48px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--grey);
  writing-mode: vertical-rl;
}
.hero__scroll-line {
  width: 1px;
  height: 56px;
  background: rgba(255,255,255,0.25);
  overflow: hidden;
  position: relative;
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 40%;
  background: var(--red);
  animation: scrollhint 1.8s cubic-bezier(0.6, 0, 0.4, 1) infinite;
}
@keyframes scrollhint {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(260%); }
}

/* ============ PRESS MARQUEE ============ */
@keyframes marquee {
  to { transform: translateX(-50%); }
}
.press {
  overflow: hidden;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.14);
  border-bottom: 1px solid rgba(255,255,255,0.14);
  background: linear-gradient(120deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02) 40%, rgba(255,255,255,0.06));
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  backdrop-filter: blur(18px) saturate(160%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
  position: relative;
}
.press__track {
  display: flex;
  width: max-content;
  animation: marquee 38s linear infinite;
}
.press:hover .press__track { animation-play-state: paused; }
.press__group {
  display: flex;
  align-items: center;
  gap: 30px;
  padding-right: 30px;
  white-space: nowrap;
}
.press__logo {
  height: 22px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}
.press__quote {
  font-size: 14.5px;
  font-style: italic;
  color: #b9b7b2;
}
.press__dot {
  width: 9px;
  height: 9px;
  background: var(--red);
  flex: none;
}

/* ============ SECTIONS ============ */
.section {
  padding: clamp(56px, 8vh, 96px) var(--pad);
  display: grid;
  grid-template-columns: minmax(200px, 1fr) minmax(0, 2fr);
  gap: clamp(32px, 6vw, 96px);
  position: relative;
}
.section__head { position: relative; }
.section__index {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--red);
  display: block;
  margin-bottom: 12px;
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 86px);
  line-height: 0.92;
  text-transform: uppercase;
  position: sticky;
  top: 110px;
}

/* centered section variant + big glass panel */
.section--center { display: block; }
.section--center .section__head {
  text-align: center;
  margin-bottom: clamp(36px, 5vh, 60px);
}
.section--center .section__title {
  position: static;
  font-size: clamp(44px, 6.5vw, 96px);
  margin-top: 10px;
}
.glasswrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(16px, 2.4vw, 32px);
  border-radius: 32px;
  background: linear-gradient(160deg, rgba(255,255,255,0.09), rgba(255,255,255,0.02) 45%, rgba(255,255,255,0.06));
  -webkit-backdrop-filter: blur(24px) saturate(170%);
  backdrop-filter: blur(24px) saturate(170%);
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.2),
    inset 0 -1px 0 rgba(0,0,0,0.3),
    0 30px 80px rgba(0,0,0,0.55);
  position: relative;
}
.section--center .music__platforms { justify-content: center; }
.section--center .sets__all { align-self: center; }

/* reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.is-in { opacity: 1; transform: translateY(0); }

/* ============ BIO ============ */
.section__title--bio {
  font-size: clamp(36px, 5vw, 78px);
  line-height: 1;
  white-space: nowrap;
}
.bio {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(32px, 4.5vw, 72px);
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.bio__body { max-width: none; }
.bio .section__head {
  grid-column: 1 / -1;
  text-align: center;
  margin-bottom: 10px;
}
.bio::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 45% 50% at 78% 40%, rgba(225, 6, 0, 0.10), transparent 70%);
  pointer-events: none;
}
.bio__body { position: relative; }
.bio__body > p {
  font-size: clamp(15px, 1.25vw, 17.5px);
  color: #c9c7c2;
  margin-bottom: 20px;
}
.bio__more {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.bio__more-inner { overflow: hidden; min-height: 0; }
.bio__more.open { grid-template-rows: 1fr; }
.bio__toggle {
  display: block;
  margin: 6px auto 20px;
  background: none;
  border: 0;
  padding: 0 0 5px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  border-bottom: 2px solid var(--red);
  cursor: pointer;
  transition: color 0.25s ease;
}
.bio__toggle:hover { color: var(--red); }
.bio__cta-row { text-align: center; }
.bio__cta {
  display: inline-block;
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 34px);
  text-transform: uppercase;
  border-bottom: 3px solid var(--red);
  padding-bottom: 5px;
  transition: color 0.25s ease;
}
.bio__cta:hover { color: var(--red); }
.bio__photo {
  position: sticky;
  top: 110px;
  align-self: start;
  margin: 0;
  padding: 10px;
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(255,255,255,0.10), rgba(255,255,255,0.03) 45%, rgba(255,255,255,0.07));
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 24px 60px rgba(0,0,0,0.55);
}
.bio__photo img {
  width: 100%;
  display: block;
  border-radius: 14px;
}
.bio__photo-chip {
  position: absolute;
  bottom: 24px;
  left: 24px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(5,5,5,0.5);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.25);
}

/* ============ TOUR / UPCOMING EVENTS ============ */
.tour {
  padding: clamp(90px, 14vh, 160px) 0;
  position: relative;
  overflow: hidden;
}
/* deep red ambient glow behind the glass cards */
.tour::before {
  content: "";
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: 120vw;
  height: 70%;
  background:
    radial-gradient(ellipse 50% 60% at 25% 50%, rgba(225, 6, 0, 0.16), transparent 70%),
    radial-gradient(ellipse 45% 55% at 75% 45%, rgba(225, 6, 0, 0.10), transparent 70%),
    radial-gradient(ellipse 30% 40% at 50% 60%, rgba(255, 255, 255, 0.045), transparent 70%);
  pointer-events: none;
}
.tour__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 0 var(--pad);
  margin-bottom: clamp(36px, 5vh, 64px);
  position: relative;
}
.tour__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 86px);
  line-height: 0.92;
  text-transform: uppercase;
  margin-top: 12px;
}
.tour__nav { display: flex; gap: 10px; }
.tour__arrow {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--white);
  cursor: pointer;
  background: linear-gradient(120deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.22), 0 8px 24px rgba(0,0,0,0.4);
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.tour__arrow:hover { background: var(--red); border-color: var(--red); transform: scale(1.07); }
.tour__arrow:active { transform: scale(0.96); }

.tour__carousel {
  display: flex;
  gap: clamp(14px, 1.6vw, 22px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 10px clamp(24px, 4.5vw, 64px) 28px;
  scroll-padding-left: clamp(24px, 4.5vw, 64px);
  scrollbar-width: none;
  position: relative;
  cursor: grab;
}
.tour__carousel::-webkit-scrollbar { display: none; }
.tour__carousel.dragging { cursor: grabbing; scroll-behavior: auto; scroll-snap-type: none; }

.event {
  flex: 0 0 clamp(272px, 24vw, 330px);
  scroll-snap-align: start;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(160deg, rgba(255,255,255,0.10), rgba(255,255,255,0.03) 45%, rgba(255,255,255,0.07));
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    0 20px 50px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.35s ease, box-shadow 0.35s ease;
}
.event:hover {
  transform: translateY(-8px);
  border-color: rgba(255,255,255,0.28);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.25),
    0 30px 70px rgba(0,0,0,0.6),
    0 0 40px rgba(225,6,0,0.12);
}
.event__art {
  position: relative;
  aspect-ratio: 1;
  margin: 10px 10px 0;
  border-radius: 14px;
  overflow: hidden;
}
.event__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.4s ease;
}
.event:hover .event__img { transform: scale(1.07); }
/* real flyers: show the full artwork, blurred self-fill behind */
.event__art--flyer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--flyer);
  background-size: cover;
  background-position: center;
  filter: blur(26px) brightness(0.55) saturate(1.2);
  transform: scale(1.25);
}
.event__art--flyer .event__img {
  position: relative;
  object-fit: contain;
}
.event__art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(5,5,5,0.55));
  pointer-events: none;
}
.event__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(5,5,5,0.45);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.22);
}
.event__badge--red { background: rgba(225,6,0,0.85); border-color: rgba(255,80,60,0.6); }
.event__logo {
  position: absolute;
  bottom: 10px;
  right: 12px;
  z-index: 2;
  height: 26px;
  opacity: 0.9;
}
.event__body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}
.event__date {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
}
.event__city {
  font-family: var(--font-display);
  font-size: clamp(21px, 1.9vw, 26px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.event__venue {
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--grey);
  margin-bottom: 14px;
}
.event__actions {
  margin-top: auto;
  display: flex;
  gap: 8px;
}
.event__cta { flex: 1.4; }
.event__rsvp {
  flex: 1;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 14px 10px;
  border-radius: 999px;
  color: #fff;
  background: rgba(225, 6, 0, 0.85);
  border: 1px solid rgba(255, 80, 60, 0.5);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.15);
  transition: background 0.25s ease, transform 0.25s ease;
}
.event__rsvp:hover { background: var(--red); transform: scale(1.03); }
.event__cta {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 14px 10px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(120deg, rgba(255,255,255,0.14), rgba(255,255,255,0.05));
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.event__cta:hover { background: var(--red); border-color: var(--red); transform: scale(1.03); }
.event__cta--sold {
  pointer-events: none;
  opacity: 0.45;
  text-decoration: line-through;
}

.tour__progress {
  margin: 6px var(--pad) 0;
  height: 2px;
  background: rgba(255,255,255,0.12);
  border-radius: 2px;
  overflow: hidden;
}
.tour__progress-bar {
  height: 100%;
  width: 10%;
  background: var(--red);
  border-radius: 2px;
  transition: width 0.2s ease;
}

/* ============ MUSIC ============ */
.music { position: relative; }
.music::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 55% at 60% 45%, rgba(225, 6, 0, 0.10), transparent 70%),
    radial-gradient(ellipse 30% 40% at 85% 70%, rgba(255,255,255,0.04), transparent 70%);
  pointer-events: none;
}
.music__content { display: flex; flex-direction: column; gap: 26px; position: relative; }
.music__rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.release {
  padding: 10px 10px 16px;
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(255,255,255,0.10), rgba(255,255,255,0.03) 45%, rgba(255,255,255,0.07));
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18), 0 16px 40px rgba(0,0,0,0.45);
  display: flex;
  flex-direction: column;
  gap: 3px;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.35s ease, box-shadow 0.35s ease;
}
.release:hover {
  transform: translateY(-7px);
  border-color: rgba(255,255,255,0.3);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), 0 26px 60px rgba(0,0,0,0.6), 0 0 34px rgba(225,6,0,0.12);
}
.release__art {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
}
.release__art img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.release:hover .release__art img { transform: scale(1.06); }
.release__name {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.6vw, 21px);
  text-transform: uppercase;
  line-height: 1.05;
  padding: 0 8px;
}
.release__meta {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey);
  padding: 0 8px;
}
.music__players {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.player {
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.player:hover { transform: translateY(-3px); border-color: rgba(255,255,255,0.22); }
.player iframe { display: block; }
.music__players .player:first-child,
.music__players .player--tall { grid-column: 1 / -1; }

/* ============ LIVE GALLERY ============ */
.live {
  padding: clamp(56px, 8vh, 96px) 0;
  overflow: hidden;
  position: relative;
}
.live::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 55% at 50% 55%, rgba(225, 6, 0, 0.12), transparent 70%);
  pointer-events: none;
}
.live__rows {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.live__row {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee 55s linear infinite;
}
.live__row--rev { animation: marquee 48s linear infinite reverse; }
.live__row:hover { animation-play-state: paused; }
.live__card {
  flex: none;
  width: clamp(260px, 28vw, 400px);
  padding: 8px;
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(255,255,255,0.10), rgba(255,255,255,0.03) 45%, rgba(255,255,255,0.07));
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.16), 0 14px 36px rgba(0,0,0,0.45);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.35s ease;
}
.live__card:hover {
  transform: scale(1.04) rotate(-0.5deg);
  border-color: rgba(255,255,255,0.3);
  z-index: 2;
}
.live__card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

/* ============ CONTACTS ============ */
.contacts {
  width: min(880px, 100%);
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.contacts__group {
  padding: 18px 20px;
  border-radius: 18px;
  text-align: left;
  background: linear-gradient(160deg, rgba(255,255,255,0.09), rgba(255,255,255,0.03) 45%, rgba(255,255,255,0.06));
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.16);
}
.contacts__label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 10px;
}
.contacts__links { display: flex; gap: 16px; flex-wrap: wrap; }
.contacts__links a {
  font-family: var(--font-display);
  font-size: 19px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-bottom: 2px solid var(--red);
  padding-bottom: 2px;
  transition: color 0.25s ease;
}
.contacts__links a:hover { color: var(--red); }

.music__platforms { display: flex; flex-wrap: wrap; gap: 10px; }
.platform {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 13px 26px;
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.platform:hover { background: var(--red); border-color: var(--red); transform: scale(1.05); }
.platform--red { background: rgba(225,6,0,0.85); border-color: rgba(255,80,60,0.5); }

/* ============ SETS ============ */
.sets { position: relative; }
.sets::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 45% 50% at 45% 50%, rgba(225, 6, 0, 0.09), transparent 70%);
  pointer-events: none;
}
.sets__content { display: flex; flex-direction: column; gap: 26px; position: relative; }
.sets__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.setcard {
  padding: 10px 10px 16px;
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(255,255,255,0.10), rgba(255,255,255,0.03) 45%, rgba(255,255,255,0.07));
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18), 0 16px 40px rgba(0,0,0,0.45);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.35s ease, box-shadow 0.35s ease;
}
.setcard:hover {
  transform: translateY(-7px);
  border-color: rgba(255,255,255,0.3);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), 0 26px 60px rgba(0,0,0,0.6), 0 0 34px rgba(225,6,0,0.12);
}
.setcard__thumb {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  margin-bottom: 12px;
}
.setcard__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.setcard:hover .setcard__thumb img { transform: scale(1.06); }
.setcard__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #fff;
  padding-left: 4px;
  background: rgba(5,5,5,0.45);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  transition: background 0.25s ease, transform 0.25s ease;
}
.setcard__play svg {
  width: 17px;
  height: 17px;
  fill: #fff;
  margin-left: 2px;
  display: block;
}
.setcard:hover .setcard__play { background: var(--red); transform: translate(-50%, -50%) scale(1.12); }
.setcard__views {
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(5,5,5,0.55);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
}
.setcard__title {
  font-family: var(--font-display);
  font-size: clamp(15px, 1.4vw, 19px);
  text-transform: uppercase;
  line-height: 1.1;
  padding: 0 8px;
}
.sets__all {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--red);
  padding-bottom: 4px;
  align-self: flex-start;
}

/* ============ BOOKING ============ */
.booking {
  display: block;
  position: relative;
  overflow: hidden;
  padding: 0;
  min-height: 80svh;
}
.booking__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.1);
  opacity: 0.5;
}
.booking__scrim {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(5,5,5,0.25), rgba(5,5,5,0.92));
}
.booking__content {
  position: relative;
  z-index: 2;
  min-height: 80svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  text-align: center;
  padding: 80px var(--pad);
}
.booking__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 8.5vw, 130px);
  line-height: 0.9;
  text-transform: uppercase;
}
.booking__form {
  width: min(680px, 100%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}
.booking__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.bfield { display: flex; flex-direction: column; gap: 6px; }
.bfield span {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey);
}
.bfield input,
.bfield select,
.bfield textarea {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--white);
  padding: 13px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease;
  -webkit-appearance: none;
  appearance: none;
  resize: vertical;
}
.bfield input:focus,
.bfield select:focus,
.bfield textarea:focus {
  border-color: var(--red);
  background: rgba(255,255,255,0.1);
}
.bfield input::placeholder,
.bfield textarea::placeholder { color: #77756f; }
.bfield select { cursor: pointer; }
.bfield option { background: #111; color: var(--white); }
.bfield input[type="date"] { color-scheme: dark; }
.booking__submit {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #fff;
  padding: 16px;
  border: 0;
  border-radius: 999px;
  background: var(--red);
  cursor: pointer;
  box-shadow: 0 6px 26px rgba(225, 6, 0, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.booking__submit:hover { transform: scale(1.02); box-shadow: 0 8px 34px rgba(225, 6, 0, 0.6); }
.booking__alt {
  font-size: 13px;
  color: var(--grey);
  text-align: center;
}
.booking__alt a { color: var(--white); border-bottom: 1px solid var(--red); }
@media (max-width: 640px) {
  .booking__row { grid-template-columns: 1fr; }
}

/* ============ FOOTER ============ */
/* ============ TOAST ============ */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translate(-50%, 20px);
  z-index: 900;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  padding: 13px 24px;
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.7);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18), 0 12px 34px rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ============ NEWSLETTER ============ */
.newsletter {
  padding: clamp(40px, 6vh, 72px) var(--pad);
  position: relative;
}
.newsletter::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 45% 70% at 50% 50%, rgba(225, 6, 0, 0.10), transparent 70%);
  pointer-events: none;
}
.newsletter__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  padding: clamp(24px, 3vw, 40px);
}
.newsletter__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.6vw, 48px);
  text-transform: uppercase;
  line-height: 1;
}
.newsletter__sub {
  font-size: 14.5px;
  color: var(--grey);
  margin-top: 8px;
}
.newsletter__embed {
  flex: 1;
  min-width: min(360px, 100%);
  max-width: 520px;
  height: 520px;
  border-radius: 16px;
  overflow: hidden;
}
.newsletter__embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 16px;
  display: block;
}

.footer {
  padding: 48px var(--pad) 28px;
}
.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.footer__logo {
  height: 44px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.2));
}
.footer__socials { display: flex; gap: 12px; flex-wrap: wrap; }
.social {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(120deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.social img { width: 18px; height: 18px; display: block; }
.social:hover { background: var(--red); border-color: var(--red); transform: scale(1.12); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1080px) {
  .music__rail, .sets__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
  /* --- iOS stability: cap GPU memory --- */
  /* blur layers are the #1 crash cause on iPhone; swap glass blur for
     solid translucent fills everywhere except the nav */
  .event, .release, .setcard, .glasswrap, .hero__eq,
  .hero__chip, .platform, .event__cta, .event__rsvp,
  .tour__arrow, .social, .toast, .bio__photo, .press,
  .booking__cta, .contacts__group, .event__badge,
  .setcard__play, .setcard__views, .bio__photo-chip {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background-color: rgba(24, 22, 22, 0.92);
  }
  .press { background-color: rgba(18, 17, 17, 0.96); }
  /* one video is enough on a phone — booking reuses a dark gradient */
  .booking__video { display: none; }
  .booking { background: radial-gradient(ellipse at 50% 30%, #1a0505, #050505 70%); }
  .reveal { will-change: opacity, transform; }
  /* keep the red CTAs red after the blanket glass override */
  .hero__chip--red, .event__rsvp, .platform--red, .booking__submit {
    background-color: rgba(225, 6, 0, 0.92);
  }
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav { padding: 10px 16px; width: calc(100% - 24px); }
  .section { grid-template-columns: 1fr; gap: 32px; }
  .bio { grid-template-columns: 1fr; }
  .bio__photo { grid-column: auto; }
  .section__title { position: static; }
  .hero__title { font-size: clamp(64px, 19vw, 120px); }
  .hero__eq { height: 26px; margin-top: 26px; }
  .hero__bgrow--top { top: 14%; }
  .hero__bgrow--bottom { bottom: 11%; }
  .hero__bgrow { font-size: clamp(110px, 24vw, 190px); -webkit-text-stroke-width: 2px; }
  .hero__eq { height: 48px; padding: 10px 16px; }
  .section__title--bio { white-space: normal; }
  .tour__head { margin-bottom: 34px; }
  .music__rail, .sets__grid { grid-template-columns: 1fr; }
  .hero__scroll { display: none; }
  .section { padding: 56px var(--pad); gap: 26px; }
  .section__head { text-align: center; }
  .tour { padding: 56px 0; }
  .tour__head {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
  }
  .tour__carousel { padding: 10px 20px 24px; scroll-padding-left: 20px; }
  .event { flex: 0 0 min(320px, 82vw); }
  .music__players { grid-template-columns: 1fr; }
  .contacts { grid-template-columns: 1fr; }
  .live__card { width: 74vw; }
  .hero__wave { height: 90px; }
  .hero__tags {
    font-size: 10.5px;
    letter-spacing: 0.22em;
    flex-direction: column;
    gap: 12px;
  }
  .hero__tag-sep { display: none; }
  .hero__tournow {
    font-size: 12.5px;
    text-underline-offset: 6px;
  }
  .bio__cta { align-self: center; }
  .booking { min-height: 0; }
  .booking__content { min-height: 0; padding: 44px var(--pad) 52px; }
  .live { padding: 44px 0; }
  .footer__top { justify-content: center; text-align: center; }
  .footer__bottom { justify-content: center; }
}
