@font-face {
  font-family: 'Alte Haas';
  src: url('assets/fonts/AlteHaasGroteskBold.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: 'Alte Haas';
  src: url('assets/fonts/AlteHaasGroteskRegular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:root {
  --black: #252122;
  --white: #ffffff;
  --red: #e63231;
  --gold: #d89e30;
  --grey-light: #d8d9d9;
  --grey: #a5a4a5;
  --ease: cubic-bezier(.16,.84,.44,1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Alte Haas', Helvetica, Arial, sans-serif;
  font-weight: 700;
  overflow-x: hidden;
  cursor: default;
}

img { display: block; max-width: 100%; }

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

.section-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 6vw;
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 24px;
}

/* grain overlay */
.grain {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.cursor-dot {
  position: fixed;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  pointer-events: none;
  z-index: 998;
  transform: translate(-50%, -50%);
  transition: width .2s var(--ease), height .2s var(--ease), background .2s;
  display: none;
}
@media (hover:hover) and (pointer:fine) {
  .cursor-dot { display: block; }
}
.cursor-dot.big { width: 40px; height: 40px; background: rgba(230,50,49,0.4); }

/* NAV */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 6vw;
  mix-blend-mode: difference;
}
.nav-logo img { height: 22px; }
.nav-links { display: flex; gap: 40px; }
.nav-links a {
  font-size: 13px;
  letter-spacing: 0.15em;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0%; height: 1px;
  background: var(--white);
  transition: width .3s var(--ease);
}
.nav-links a:hover::after { width: 100%; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; z-index: 501; }
.nav-toggle span {
  display: block; width: 26px; height: 2px; background: var(--white); margin: 6px 0;
}

/* HERO */
.hero {
  position: relative;
  height: 100svh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.3) contrast(1.1);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(37,33,34,0.55) 0%, rgba(37,33,34,0.35) 40%, rgba(37,33,34,0.9) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 5vw;
}
.hero-logo-wrap { will-change: transform; }
.hero-logo {
  width: min(85vw, 900px);
  margin: 0 auto;
}
.hero-socials {
  margin-top: 36px;
  display: flex;
  justify-content: center;
  gap: 28px;
}
.hero-socials a {
  width: 22px;
  height: 22px;
  color: var(--white);
  opacity: 0.85;
  transition: opacity .25s, transform .25s var(--ease);
}
.hero-socials a svg { width: 100%; height: 100%; display: block; }
.hero-socials a:hover { opacity: 1; transform: translateY(-3px); color: var(--gold); }
.scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.scroll-cue span {
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--grey-light);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: var(--grey);
  overflow: hidden;
  position: relative;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: -40px; left: 0;
  width: 100%; height: 40px;
  background: var(--white);
  animation: scrollDown 1.8s infinite ease-in-out;
}
@keyframes scrollDown {
  0% { top: -40px; }
  60% { top: 40px; }
  100% { top: 40px; }
}

/* MARQUEE */
.marquee {
  background: var(--red);
  color: var(--black);
  overflow: hidden;
  padding: 16px 0;
  white-space: nowrap;
  transform: rotate(-1.2deg);
  margin: -18px 0;
  position: relative;
  z-index: 3;
}
.marquee-track {
  display: inline-flex;
  gap: 60px;
  animation: marquee 18s linear infinite;
}
.marquee-track span,
.marquee-track a {
  font-size: clamp(16px, 2.4vw, 28px);
  letter-spacing: 0.05em;
  padding-right: 60px;
  color: var(--black);
}
.marquee-underline { text-decoration: underline; text-underline-offset: 4px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ABOUT */
.about {
  position: relative;
  padding: 180px 0 140px;
  overflow: hidden;
}
.about-mark {
  position: absolute;
  left: -8vw;
  top: 10%;
  width: 24vw;
  max-width: 320px;
  opacity: 0.07;
  filter: invert(1);
  z-index: 0;
  pointer-events: none;
  will-change: transform;
}
.about-title {
  font-size: clamp(32px, 5.5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 64px;
  max-width: 900px;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 8vw;
  align-items: start;
}
.about-text p {
  font-family: 'Alte Haas', sans-serif;
  font-weight: 400;
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.65;
  color: var(--grey-light);
  margin-bottom: 24px;
  text-align: justify;
}
.about-text .lang-fr { display: none; }
.about-text.show-fr .lang-en { display: none; }
.about-text.show-fr .lang-fr { display: block; }
.lang-toggle {
  margin-top: 12px;
  background: none;
  border: 1px solid var(--grey);
  color: var(--white);
  font-family: inherit;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.15em;
  padding: 10px 20px;
  cursor: pointer;
  transition: background .25s, color .25s, border-color .25s;
}
.lang-toggle:hover { background: var(--white); color: var(--black); border-color: var(--white); }
.about-photo { overflow: hidden; }
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: grayscale(0.5) contrast(1.05);
  transition: filter .4s;
}
.about-photo:hover img { filter: grayscale(0) contrast(1.1); }

/* MUSIC */
.music {
  padding: 140px 0 40px;
  background: #1c1919;
  position: relative;
  overflow: hidden;
}
.music-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: 50% auto;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  filter: grayscale(0.3) brightness(0.4);
  transition: opacity .6s ease, transform .8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none;
}
.music-bg.active { opacity: 1; transform: scale(1); }
.music-bg.no-transition { transition: none; }
.music-title {
  font-size: clamp(48px, 10vw, 140px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--red);
  margin-bottom: 28px;
}
.music-desc {
  max-width: 560px;
  font-family: 'Alte Haas', sans-serif;
  font-weight: 400;
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.65;
  color: var(--grey-light);
  margin-bottom: 72px;
}
.music-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 6vw;
  align-items: center;
}
.music-cover {
  aspect-ratio: 1/1;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}
.music-cover img { width: 100%; height: 100%; object-fit: cover; }
.music-links { display: flex; flex-direction: column; }
.platform-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 4px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  font-size: clamp(20px, 3vw, 34px);
  letter-spacing: -0.01em;
  transition: padding-left .3s var(--ease), color .3s;
}
.platform-link i { font-style: normal; font-weight: 400; transition: transform .3s var(--ease); }
.platform-link:hover { color: var(--gold); padding-left: 20px; }
.platform-link:hover i { transform: rotate(45deg) translate(2px,-2px); }

/* TRACKLIST (standalone, in MUSIC section) */
.tracklist { list-style: none; }
.tracklist-standalone {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 48px;
}
.track-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 4px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  cursor: pointer;
  transition: background .2s;
}
.track-row:hover { background: rgba(255,255,255,0.03); }
.track-row.active { color: var(--red); }
.track-row.active .track-name { color: var(--red); }
.track-play-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--grey);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, border-color .2s;
}
.track-row:hover .track-play-icon,
.track-row.active .track-play-icon { background: var(--red); border-color: var(--red); }
.track-play-icon svg { width: 12px; height: 12px; }
.track-index {
  font-family: 'Alte Haas', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: var(--grey);
  width: 20px;
}
.track-name {
  flex: 1;
  min-width: 0;
  font-size: clamp(14px, 1.6vw, 18px);
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.track-tag {
  flex-shrink: 0;
  font-family: 'Alte Haas', sans-serif;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--grey);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 4px 10px;
  border-radius: 100px;
}
.music-links { display: flex; flex-direction: column; }

/* VIDEOS */
.videos { position: relative; padding: 40px 0 140px; background: #1c1919; overflow: hidden; }
.videos-title {
  font-size: clamp(36px, 6vw, 76px);
  line-height: 0.95;
  margin-bottom: 16px;
}
.videos-desc {
  font-family: 'Alte Haas', sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--grey-light);
  margin-bottom: 48px;
  max-width: 480px;
}
.video-carousel {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 6vw;
}
.video-carousel-track {
  list-style: none;
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 4px 0 12px;
  scrollbar-width: none;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}
.video-carousel-track::-webkit-scrollbar { display: none; }
.video-carousel-track.dragging { cursor: grabbing; }
.video-carousel-track.touch-scroll {
  touch-action: pan-x;
  cursor: default;
  -webkit-overflow-scrolling: touch;
}
.video-card {
  flex: 0 0 clamp(240px, 28vw, 340px);
  cursor: pointer;
}
.video-card-thumb {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 10px;
  overflow: hidden;
  background: #111;
}
.video-card-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.2) brightness(0.85);
  transition: transform .5s var(--ease), filter .3s;
}
.video-card:hover .video-card-thumb img {
  transform: scale(1.06);
  filter: grayscale(0) brightness(1);
}
.video-card-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(28,25,25,0.7);
  border: 1px solid rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s, border-color .25s;
}
.video-card:hover .video-card-play { background: var(--red); border-color: var(--red); }
.video-card-play svg { width: 16px; height: 16px; margin-left: 3px; }
.video-card-title {
  margin-top: 14px;
  font-size: 16px;
  letter-spacing: -0.01em;
  transition: color .25s;
}
.video-card:hover .video-card-title { color: var(--red); }

/* VIDEO LIGHTBOX */
.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease);
  padding: 24px;
}
.video-lightbox.open { opacity: 1; pointer-events: auto; }
.video-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5,4,4,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.video-lightbox-card {
  position: relative;
  z-index: 1;
  width: min(900px, 100%);
  transform: scale(0.96);
  transition: transform .3s var(--ease);
}
.video-lightbox.open .video-lightbox-card { transform: scale(1); }
.video-lightbox-close {
  position: absolute;
  top: -44px; right: 0;
  width: 28px; height: 28px;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
}
.video-lightbox-close svg { width: 100%; height: 100%; }
.video-lightbox-close:hover { color: var(--red); }
.video-lightbox-player {
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
}
.video-lightbox-player iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* FLOATING PLAYER CARD */
.playerbar {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 600;
  transform: translate(-50%, 0);
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 10px 16px;
  border-radius: 100px;
  background: rgba(37,33,34,0.55);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  max-width: calc(100vw - 32px);
  opacity: 1;
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.playerbar.idle {
  opacity: 0;
  transform: translate(-50%, 12px);
  pointer-events: none;
}
.playerbar.no-track {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 12px);
}
.playerbar-track-info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  min-width: 0;
  max-width: 190px;
}
.playerbar-cover {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
  transition: transform .2s var(--ease);
}
.playerbar-cover:hover { transform: scale(1.06); }
.playerbar-cover img { width: 100%; height: 100%; object-fit: cover; }
.playerbar-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.playerbar-title {
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.playerbar-artist {
  font-family: 'Alte Haas', sans-serif;
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--grey-light);
}
.playerbar-center {
  display: flex;
  align-items: center;
  gap: 14px;
}
.playerbar-controls { display: flex; align-items: center; gap: 12px; }
.playerbar-btn {
  background: none;
  border: none;
  color: var(--grey-light);
  cursor: pointer;
  width: 16px; height: 16px;
  transition: color .2s;
}
.playerbar-btn svg { width: 100%; height: 100%; }
.playerbar-btn:hover { color: var(--white); }
.playerbar-play {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .2s var(--ease), background .2s;
  flex-shrink: 0;
}
.playerbar-play svg { width: 15px; height: 15px; }
.playerbar-play:hover { transform: scale(1.08); background: var(--gold); }
.playerbar-progress-row {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 200px;
}
.playerbar-time {
  font-family: 'Alte Haas', sans-serif;
  font-weight: 400;
  font-size: 10px;
  color: var(--grey-light);
  width: 30px;
  flex-shrink: 0;
}
.playerbar-time:last-child { text-align: right; }
.playerbar-progress {
  position: relative;
  flex: 1;
  height: 18px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.playerbar-progress::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 50%;
  height: 4px;
  transform: translateY(-50%);
  border-radius: 2px;
  background: rgba(255,255,255,0.2);
  transition: height .15s var(--ease);
}
.playerbar-progress:hover::before { height: 6px; }
.playerbar-progress-fill {
  position: relative;
  z-index: 1;
  height: 4px;
  border-radius: 2px;
  width: 0%;
  background: var(--red);
  transition: width .1s linear, height .15s var(--ease);
}
.playerbar-progress:hover .playerbar-progress-fill { height: 6px; }
.playerbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.playerbar-platform {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  transition: transform .2s var(--ease), background .2s;
}
.playerbar-platform svg { width: 100%; height: 100%; }
.playerbar-platform:hover { transform: scale(1.1); background: var(--gold); }
.playerbar-close {
  width: 20px; height: 20px;
  background: none;
  border: none;
  color: var(--grey-light);
  cursor: pointer;
  transition: color .2s;
}
.playerbar-close svg { width: 100%; height: 100%; }
.playerbar-close:hover { color: var(--white); }
.playerbar-volume {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 90px;
}
.vol-icon { width: 15px; height: 15px; color: var(--grey-light); flex-shrink: 0; }
.playerbar-volume input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  outline: none;
}
.playerbar-volume input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
}
.playerbar-volume input[type="range"]::-moz-range-thumb {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--white);
  border: none;
  cursor: pointer;
}

/* TOUR */
.tour { padding: 100px 0 140px; }
.tour-title {
  font-size: clamp(36px, 6vw, 76px);
  line-height: 0.95;
  margin-bottom: 48px;
}
.tour-list { border-top: 1px solid rgba(255,255,255,0.12); }
.tour-row {
  display: grid;
  grid-template-columns: 140px 1fr 200px 110px;
  align-items: center;
  gap: 20px;
  padding: 26px 4px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  transition: background .25s;
  cursor: pointer;
}
.tour-row:hover { background: rgba(255,255,255,0.03); }
.tour-date {
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--gold);
}
.tour-venue {
  font-size: clamp(17px, 2vw, 22px);
}
.tour-city {
  font-family: 'Alte Haas', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--grey-light);
}
.tour-tix {
  justify-self: end;
  font-size: 12px;
  letter-spacing: 0.15em;
  border: 1px solid var(--grey);
  padding: 10px 18px;
  transition: background .25s, color .25s, border-color .25s;
}
.tour-tix:hover { background: var(--white); color: var(--black); border-color: var(--white); }

.tour-archive { margin-top: 80px; }
.tour-archive-label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--grey);
  margin-bottom: 24px;
}

/* TOUR DATE MODAL */
.event-modal {
  position: fixed;
  inset: 0;
  z-index: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s var(--ease);
  padding: 24px;
}
.event-modal.open { opacity: 1; pointer-events: auto; }
.event-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10,9,9,0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.event-modal-card {
  position: relative;
  z-index: 1;
  width: min(440px, 100%);
  max-height: 86vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 32px;
  border-radius: 28px;
  background: rgba(28,25,25,0.75);
  backdrop-filter: blur(28px) saturate(150%);
  -webkit-backdrop-filter: blur(28px) saturate(150%);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  transform: translateY(16px) scale(0.97);
  transition: transform .35s var(--ease);
}
.event-modal.open .event-modal-card { transform: translateY(0) scale(1); }
.event-modal-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 22px; height: 22px;
  background: none;
  border: none;
  color: var(--grey-light);
  cursor: pointer;
}
.event-modal-close svg { width: 100%; height: 100%; }
.event-modal-close:hover { color: var(--white); }
.event-modal-tag {
  font-family: 'Alte Haas', sans-serif;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--gold);
}
.event-modal-title { font-size: 28px; line-height: 1.1; max-width: 320px; }
.event-modal-venue {
  font-size: 15px;
  color: var(--grey-light);
}
.event-modal-address {
  font-family: 'Alte Haas', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: var(--grey);
}
.event-modal-image {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  margin-top: 8px;
  border-radius: 10px;
}
.event-modal-image img { width: 100%; height: 100%; object-fit: cover; }
.event-modal-link {
  margin-top: 10px;
  align-self: stretch;
  text-align: center;
  background: var(--gold);
  color: var(--black);
  font-size: 13px;
  letter-spacing: 0.1em;
  padding: 16px;
  border-radius: 100px;
  transition: background .25s, transform .2s var(--ease);
}
.event-modal-link:hover { background: var(--white); transform: translateY(-2px); }

/* NEWSLETTER */
.newsletter {
  position: relative;
  padding: 140px 0;
  background: #0d0b0b;
  overflow: hidden;
  text-align: center;
}
.newsletter-bg-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.newsletter-bg-video {
  width: 46%;
  max-width: 460px;
  height: auto;
  opacity: 0.45;
  filter: grayscale(0.2);
  will-change: transform;
}
.newsletter-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(13,11,11,0.35) 0%, rgba(13,11,11,0.92) 75%);
}
.newsletter-inner { position: relative; z-index: 1; }
.newsletter-title {
  font-size: clamp(40px, 8vw, 100px);
  line-height: 0.9;
  margin-bottom: 20px;
}
.newsletter-sub {
  max-width: 440px;
  margin: 0 auto 40px;
  font-family: 'Alte Haas', sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 1.6;
  color: var(--grey-light);
}
.newsletter-form {
  display: flex;
  align-items: center;
  gap: 6px;
  max-width: 440px;
  margin: 0 auto;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 100px;
  padding: 6px 6px 6px 24px;
  backdrop-filter: blur(10px);
}
.newsletter-form input {
  flex: 1;
  min-width: 0;
  background: none;
  border: none;
  color: var(--white);
  font-family: 'Alte Haas', sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.03em;
  padding: 12px 0;
}
.newsletter-form input::placeholder { color: var(--grey-light); }
.newsletter-form input:focus { outline: none; }
.newsletter-form button {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  border: none;
  cursor: pointer;
  transition: background .25s, transform .2s var(--ease);
}
.newsletter-form button svg { width: 16px; height: 16px; }
.newsletter-form button:hover { background: var(--gold); transform: scale(1.06); }
.newsletter-msg {
  margin-top: 20px;
  font-family: 'Alte Haas', sans-serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--gold);
  min-height: 18px;
}

/* LIVE */
.live {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}
.live-video {
  position: absolute;
  left: 0; right: 0;
  top: -5%;
  width: 100%; height: 110%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.2);
  will-change: transform;
}
.live-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(37,33,34,0.35) 0%, rgba(37,33,34,0.35) 100%);
}
.live-inner { padding: 100px 6vw; }
.live-title {
  font-size: clamp(40px, 7vw, 96px);
  line-height: 0.95;
  margin-bottom: 28px;
}
.live-desc {
  max-width: 520px;
  font-family: 'Alte Haas', sans-serif;
  font-weight: 400;
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.65;
  color: var(--grey-light);
  margin-bottom: 36px;
}
.live-event-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: none;
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--white);
  font-family: inherit;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  padding: 18px 30px;
  border-radius: 100px;
  cursor: pointer;
  transition: background .25s, border-color .25s, transform .2s var(--ease);
}
.live-event-btn svg { width: 14px; height: 14px; }
.live-event-btn:hover { background: var(--red); border-color: var(--red); transform: translateY(-2px); }

/* EVENT HORIZON LIVE MODAL */
.live-event-modal {
  position: fixed;
  inset: 0;
  z-index: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s var(--ease);
  padding: 24px;
}
.live-event-modal.open { opacity: 1; pointer-events: auto; }
.live-event-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5,4,4,0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.live-event-card {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  max-height: 88vh;
  overflow-y: auto;
  border-radius: 24px;
  background: rgba(20,18,18,0.7);
  backdrop-filter: blur(30px) saturate(150%);
  -webkit-backdrop-filter: blur(30px) saturate(150%);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 40px 100px rgba(0,0,0,0.6);
  transform: scale(0.96);
  transition: transform .4s var(--ease);
}
.live-event-modal.open .live-event-card { transform: scale(1); }
.live-event-close {
  position: absolute;
  top: 18px; right: 18px;
  z-index: 2;
  width: 26px; height: 26px;
  background: rgba(0,0,0,0.4);
  border-radius: 50%;
  border: none;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.live-event-close svg { width: 60%; height: 60%; }
.live-event-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  clip-path: inset(50% 0 50% 0);
  transition: clip-path .9s cubic-bezier(0.65, 0, 0.35, 1);
}
.live-event-modal.open .live-event-image { clip-path: inset(0 0 0 0); }
.live-event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.15);
  transition: transform 1.2s cubic-bezier(0.16,.84,.44,1);
}
.live-event-modal.open .live-event-image img { transform: scale(1); }
.live-event-text {
  padding: 28px 32px 32px;
}
.live-event-eyebrow {
  display: block;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 10px;
}
.live-event-text h3 {
  font-size: clamp(24px, 4vw, 34px);
  margin-bottom: 14px;
}
.live-event-text p {
  font-family: 'Alte Haas', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  color: var(--grey-light);
}

/* CONTACT */
.contact { padding: 160px 0 0; }
.contact-title {
  font-size: clamp(38px, 8vw, 120px);
  line-height: 0.9;
  margin-bottom: 20px;
}
.contact-sub {
  max-width: 520px;
  font-family: 'Alte Haas', sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.6;
  color: var(--grey-light);
  margin-bottom: 40px;
}
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 120px;
}
.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  padding: 20px 32px;
  border-radius: 100px;
  cursor: pointer;
  transition: background .25s, color .25s, transform .2s var(--ease), border-color .25s;
}
.contact-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.contact-btn-primary { background: var(--gold); color: var(--black); border: none; }
.contact-btn-primary:hover { background: var(--white); transform: translateY(-2px); }
.contact-btn-secondary { background: none; color: var(--white); border: 1px solid rgba(255,255,255,0.3); }
.contact-btn-secondary:hover { border-color: var(--white); transform: translateY(-2px); }

/* CONTACT MODAL */
.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 750;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s var(--ease);
  padding: 24px;
}
.contact-modal.open { opacity: 1; pointer-events: auto; }
.contact-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10,9,9,0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.contact-modal-card {
  position: relative;
  z-index: 1;
  width: min(460px, 100%);
  max-height: 86vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 32px;
  border-radius: 28px;
  background: rgba(28,25,25,0.85);
  backdrop-filter: blur(30px) saturate(150%);
  -webkit-backdrop-filter: blur(30px) saturate(150%);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  transform: translateY(16px) scale(0.97);
  transition: transform .35s var(--ease);
}
.contact-modal.open .contact-modal-card { transform: translateY(0) scale(1); }
.contact-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.contact-modal-head h3 { font-size: 24px; }
.contact-modal-close {
  width: 22px; height: 22px;
  background: none;
  border: none;
  color: var(--grey-light);
  cursor: pointer;
  flex-shrink: 0;
}
.contact-modal-close svg { width: 100%; height: 100%; }
.contact-modal-close:hover { color: var(--white); }
.contact-modal-sub {
  font-family: 'Alte Haas', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: var(--grey-light);
  margin-top: -10px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: 'Alte Haas', sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--grey-light);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  color: var(--white);
  font-family: 'Alte Haas', sans-serif;
  font-weight: 400;
  font-size: 14px;
  padding: 12px 14px;
  resize: vertical;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { outline: none; border-color: var(--gold); }
.contact-form-submit {
  margin-top: 6px;
  background: var(--gold);
  color: var(--black);
  border: none;
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  padding: 16px;
  border-radius: 100px;
  cursor: pointer;
  transition: background .25s, transform .2s var(--ease);
}
.contact-form-submit:hover { background: var(--white); transform: translateY(-2px); }
.contact-form-msg {
  font-family: 'Alte Haas', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: var(--gold);
  min-height: 16px;
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 70px 6vw 50px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
.footer-socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background .25s, color .25s, border-color .25s, transform .25s var(--ease);
}
.footer-socials a svg { width: 18px; height: 18px; }
.footer-socials a:hover { background: var(--white); color: var(--black); border-color: var(--white); transform: translateY(-3px); }
.footer-logo { height: 20px; }
.footer-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-copy { font-size: 11px; letter-spacing: 0.12em; color: var(--grey); }
.footer-time {
  font-family: 'Alte Haas', sans-serif;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--grey);
}
.time-blink { animation: timeBlink 1s step-start infinite; }
@keyframes timeBlink { 50% { opacity: 0; } }

/* EXPANDED PLAYER MODAL */
.player-modal {
  position: fixed;
  inset: 0;
  z-index: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s var(--ease);
}
.player-modal.open { opacity: 1; pointer-events: auto; }
.player-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10,9,9,0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.player-modal-card {
  position: relative;
  z-index: 1;
  width: min(420px, 90vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding: 36px 28px 30px;
  border-radius: 28px;
  background: rgba(37,33,34,0.6);
  backdrop-filter: blur(26px) saturate(150%);
  -webkit-backdrop-filter: blur(26px) saturate(150%);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  transform: translateY(16px) scale(0.97);
  transition: transform .35s var(--ease);
}
.player-modal.open .player-modal-card { transform: translateY(0) scale(1); }
.player-modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 22px; height: 22px;
  background: none;
  border: none;
  color: var(--grey-light);
  cursor: pointer;
  transition: color .2s;
}
.player-modal-close svg { width: 100%; height: 100%; }
.player-modal-close:hover { color: var(--white); }
.player-modal-cover {
  width: 260px;
  height: 260px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.player-modal-cover img { width: 100%; height: 100%; object-fit: cover; }
.player-modal-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.player-modal-tag {
  font-family: 'Alte Haas', sans-serif;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--grey);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 4px 12px;
  border-radius: 100px;
}
.player-modal-title {
  font-size: 20px;
  line-height: 1.3;
  max-width: 340px;
}
.player-modal-meta {
  font-family: 'Alte Haas', sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--grey-light);
}
.player-modal-progress-row {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}
.player-modal-time {
  font-family: 'Alte Haas', sans-serif;
  font-weight: 400;
  font-size: 11px;
  color: var(--grey-light);
  width: 32px;
  flex-shrink: 0;
}
.player-modal-time:last-child { text-align: right; }
.player-modal-progress {
  position: relative;
  flex: 1;
  height: 20px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.player-modal-progress::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 50%;
  height: 4px;
  transform: translateY(-50%);
  border-radius: 2px;
  background: rgba(255,255,255,0.2);
  transition: height .15s var(--ease);
}
.player-modal-progress:hover::before { height: 6px; }
.player-modal-progress-fill {
  position: relative;
  z-index: 1;
  height: 4px;
  border-radius: 2px;
  width: 0%;
  background: var(--red);
  transition: width .1s linear, height .15s var(--ease);
}
.player-modal-progress:hover .player-modal-progress-fill { height: 6px; }
.player-modal-controls { display: flex; align-items: center; gap: 24px; }
.player-modal-controls .playerbar-btn { width: 20px; height: 20px; }
.player-modal-controls .playerbar-play { width: 50px; height: 50px; }
.player-modal-controls .playerbar-play svg { width: 20px; height: 20px; }
.player-modal-platforms {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 4px;
  border-top: 1px solid rgba(255,255,255,0.1);
  width: 100%;
  justify-content: center;
  padding-top: 20px;
}
.player-modal-platforms a {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px;
  transition: transform .2s var(--ease), background .2s;
}
.player-modal-platforms a svg { width: 100%; height: 100%; }
.player-modal-platforms a:hover { transform: scale(1.1); background: var(--gold); }

/* reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* responsive */
@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 84px; right: 20px;
    width: min(320px, calc(100vw - 40px));
    max-height: calc(100vh - 110px);
    background: rgba(28,25,25,0.8);
    backdrop-filter: blur(30px) saturate(150%);
    -webkit-backdrop-filter: blur(30px) saturate(150%);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 28px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 28px;
    gap: 0;
    opacity: 0;
    transform: translateY(-14px) scale(0.97);
    pointer-events: none;
    transition: opacity .3s var(--ease), transform .3s var(--ease);
    overflow-y: auto;
  }
  .nav-links.open { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
  .nav-links a {
    font-size: 19px;
    padding: 16px 2px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .nav-links a:last-of-type { border-bottom: none; }
  .nav-links a.active { color: var(--gold); }
  .nav-links a::after { display: none; }
  .nav-toggle { display: block; z-index: 501; }
  .nav-toggle.open span:first-child { transform: translateY(4px) rotate(45deg); }
  .nav-toggle.open span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .nav-toggle span { transition: transform .25s var(--ease); }
  #nav { mix-blend-mode: normal; }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-photo { order: -1; aspect-ratio: 4/5; }
  .music-grid { grid-template-columns: 1fr; gap: 48px; }
  .live-overlay { background: linear-gradient(180deg, rgba(37,33,34,0.6) 0%, rgba(37,33,34,0.95) 80%); }

  .tour-row { grid-template-columns: 1fr; gap: 8px; text-align: left; }
  .tour-tix { justify-self: start; }
  .contact-actions { flex-direction: column; align-items: stretch; }
  .video-carousel { padding: 0 5vw; }
  .video-card { flex-basis: 74vw; }

  .playerbar {
    bottom: 16px;
    left: 16px;
    right: 16px;
    transform: none;
    max-width: none;
    flex-wrap: wrap;
    border-radius: 24px;
    padding: 12px 16px;
  }
  .playerbar.idle { transform: translateY(12px); }
  .playerbar-track-info { max-width: none; flex: 1; }
  .playerbar-center { order: 3; width: 100%; flex-wrap: wrap; }
  .playerbar-progress-row { width: 100%; }
  .playerbar-right { flex-wrap: wrap; justify-content: flex-end; }
  .playerbar-volume { width: 70px; }

  .track-name { white-space: normal; font-size: 14px; }
  .track-tag { display: none; }
}

/* MERCH — COMING SOON PAGE */
.merch-soon {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 6vw 80px;
  position: relative;
  overflow: hidden;
}
.merch-soon-mark {
  position: absolute;
  top: 50%; left: 50%;
  width: 60vw;
  max-width: 700px;
  transform: translate(-50%, -50%);
  opacity: 0.04;
  animation: markSpin 30s linear infinite;
}
.merch-soon .eyebrow {
  position: relative;
  z-index: 1;
  font-size: 13px;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 24px;
}
.merch-soon h1 {
  position: relative;
  z-index: 1;
  font-size: clamp(56px, 14vw, 180px);
  line-height: 0.88;
  margin-bottom: 32px;
}
.merch-soon p {
  position: relative;
  z-index: 1;
  max-width: 480px;
  font-family: 'Alte Haas', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--grey-light);
  margin-bottom: 40px;
}
.merch-back-link {
  position: relative;
  z-index: 1;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--grey-light);
  border-bottom: 1px solid var(--grey);
  padding-bottom: 4px;
  transition: color .2s, border-color .2s;
}
.merch-back-link:hover { color: var(--white); border-color: var(--white); }
.nav-links a.active { color: var(--gold); }

/* BADGE */
.badge {
  display: inline-flex;
  align-items: center;
  font-family: 'Alte Haas', sans-serif;
  font-weight: 400;
  font-size: 9px;
  letter-spacing: 0.12em;
  padding: 3px 8px;
  border-radius: 100px;
  vertical-align: middle;
  line-height: 1.6;
}
.badge-default { background: var(--gold); color: var(--black); }
.badge-secondary { background: rgba(255,255,255,0.12); color: var(--grey-light); }
.badge-destructive { background: var(--red); color: var(--white); }
.badge-outline { background: none; border: 1px solid currentColor; color: inherit; opacity: 0.7; }
.nav-links a .badge { margin-left: 6px; }
