:root {
  --bg: #050608;
  --bg-soft: #0a0b0f;
  --fg: #f5f5f1;
  --muted: rgba(245, 245, 241, 0.56);
  --line: rgba(245, 245, 241, 0.16);
  --blue: #2351ff;
  --cyan: #00d8ff;
  --header-h: 76px;
  --gutter: clamp(20px, 3.5vw, 64px);
  --section-y: clamp(96px, 13vw, 220px);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --font-sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.45;
  overflow-x: clip;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

::selection {
  color: #000;
  background: var(--cyan);
}

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

.scroll-progress {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto 0;
  height: 2px;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.04);
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  will-change: transform;
}

.site-header {
  position: fixed;
  z-index: 900;
  inset: 0 0 auto 0;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gutter);
  mix-blend-mode: difference;
  color: #fff;
  pointer-events: none;
  transform: translate3d(0, 0, 0);
  opacity: 1;
  transition:
    transform 0.56s var(--ease),
    opacity 0.34s ease;
  will-change: transform, opacity;
}

.site-header.is-hidden {
  transform: translate3d(0, calc(-100% - 12px), 0);
  opacity: 0;
}

body.menu-open .site-header {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.site-header > * {
  pointer-events: auto;
}

.site-brand {
  display: block;
  width: clamp(130px, 12vw, 190px);
}

.header-logo,
.footer-logo {
  width: 100%;
  height: auto;
}

.menu-toggle {
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
}

.menu-toggle__icon {
  position: relative;
  width: 28px;
  height: 12px;
}

.menu-toggle__icon i {
  position: absolute;
  right: 0;
  width: 28px;
  height: 1px;
  background: currentColor;
  transition: transform 0.5s var(--ease), top 0.5s var(--ease);
}

.menu-toggle__icon i:first-child {
  top: 2px;
}

.menu-toggle__icon i:last-child {
  top: 9px;
  width: 18px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon i:first-child {
  top: 6px;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon i:last-child {
  top: 6px;
  width: 28px;
  transform: rotate(-45deg);
}

.menu-panel {
  position: fixed;
  z-index: 850;
  inset: 0;
  display: grid;
  place-items: center;
  padding: calc(var(--header-h) + 28px) var(--gutter) 36px;
  background: #050608;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-2%);
  transition: visibility 0s linear 0.7s, opacity 0.5s ease, transform 0.7s var(--ease);
}

.menu-panel.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s;
}

.menu-panel__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 50% 50%, #000 0, transparent 72%);
  opacity: 0.6;
}

.menu-panel__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1180px);
}

.eyebrow,
.section-index,
.depth-head,
.hero-kicker,
.footer-label,
.depth-card__caption {
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow,
.section-index,
.depth-head,
.hero-kicker,
.footer-label {
  color: var(--muted);
}

.menu-list {
  list-style: none;
  padding: 0;
  margin: clamp(36px, 8vh, 90px) 0;
}

.menu-list li {
  border-top: 1px solid var(--line);
}

.menu-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.menu-list a {
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  padding: 18px 0;
  font-size: clamp(34px, 6.4vw, 92px);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.055em;
  text-transform: uppercase;
  transition: color 0.25s ease, padding-left 0.45s var(--ease);
}

.menu-list a span {
  align-self: start;
  padding-top: 0.5em;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.menu-list a:hover,
.menu-list a:focus-visible {
  color: var(--cyan);
  padding-left: 12px;
}

.menu-panel__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.menu-panel__footer a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  transition: color 0.2s ease, transform 0.25s var(--ease);
}

.menu-panel__footer img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: invert(1);
  opacity: 0.72;
  transition: opacity 0.2s ease;
}

.menu-panel__footer a:hover {
  color: var(--fg);
  transform: translateY(-2px);
}

.menu-panel__footer a:hover img {
  opacity: 1;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #020306;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 3, 6, 0.55) 0%, rgba(2, 3, 6, 0.16) 46%, rgba(2, 3, 6, 0.82) 100%),
    radial-gradient(circle at 50% 50%, transparent 0 28%, rgba(1, 2, 4, 0.45) 75%);
  pointer-events: none;
}

.hero-media {
  position: absolute;
  z-index: 0;
  inset: -8%;
  opacity: 0;
  transform: scale(1.1);
  filter: saturate(0.9) contrast(1.1);
  transition: opacity 1.5s ease 1.8s, transform 2.5s var(--ease) 1.2s;
}

.is-ready .hero-media {
  opacity: 0.48;
  transform: scale(1.02);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-grid {
  position: absolute;
  z-index: 1;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: clamp(38px, 4.8vw, 76px) clamp(38px, 4.8vw, 76px);
  opacity: 0.26;
  mask-image: linear-gradient(180deg, #000, transparent 86%);
}

.hero-inner {
  position: relative;
  z-index: 3;
  width: min(100%, 1480px);
  min-height: 100svh;
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: center;
  padding: calc(var(--header-h) + 36px) var(--gutter) 30px;
}

.hero-centerpiece {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(18px, 3vh, 34px);
}

.hero-kicker {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
}

.hero-logo-wrap {
  position: relative;
  width: min(86vw, 980px);
  filter: drop-shadow(0 0 34px rgba(35, 81, 255, 0.18));
}

.hero-logo {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  overflow: visible;
}

.hero-logo path {
  fill: none;
  stroke: #fff;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

/* Salve de glitch : le logo entier flashe en blanc plein (silhouette pleine,
   pas seulement le tracé), sans aucune couleur — juste un tear/flash net. */
.hero-logo-wrap::before,
.hero-logo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  -webkit-mask-image: url("../assets/dissidans-logo.svg");
  mask-image: url("../assets/dissidans-logo.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  background: #fff;
  opacity: 0;
  pointer-events: none;
}

.hero-logo-wrap.is-glitching::before {
  animation: glitchFlash 0.32s linear 1;
}

.hero-logo-wrap.is-glitching::after {
  animation: glitchFlash 0.32s linear 1;
  animation-delay: 0.03s;
}

.hero-logo-wrap.is-glitching .hero-logo {
  animation: glitchJitter 0.32s linear 1;
}

@keyframes glitchJitter {
  0%   { transform: translate(0, 0); }
  20%  { transform: translate(2px, 0); }
  40%  { transform: translate(-2px, 0); }
  60%  { transform: translate(1px, 0); }
  80%  { transform: translate(-1px, 0); }
  100% { transform: translate(0, 0); }
}

@keyframes glitchFlash {
  0%   { opacity: 0; clip-path: inset(0 0 100% 0); }
  12%  { opacity: 1; clip-path: inset(0 0 0 0); }
  24%  { opacity: .15; clip-path: inset(38% 0 46% 0); }
  36%  { opacity: .95; clip-path: inset(0 0 0 0); }
  50%  { opacity: .2; clip-path: inset(8% 0 72% 0); }
  64%  { opacity: .8; clip-path: inset(0 0 0 0); }
  100% { opacity: 0; clip-path: inset(0 0 100% 0); }
}

.hero-bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.hero-intro {
  margin: 0;
  font-size: clamp(18px, 2.1vw, 32px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.reveal-line {
  overflow: hidden;
}

.reveal-line > span {
  display: block;
  transform: translateY(110%);
  transition: transform 1s var(--ease);
}

.is-ready .hero .reveal-line > span {
  transform: translateY(0);
  transition-delay: 1.35s;
}

.hero .hero-intro.reveal-line > span {
  transition-delay: 1.65s;
}

.scroll-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.scroll-cta i {
  position: relative;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
}

.scroll-cta i::before,
.scroll-cta i::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
}

.scroll-cta i::before {
  width: 1px;
  height: 14px;
  background: currentColor;
  transform: translate(-50%, -60%);
}

.scroll-cta i::after {
  width: 7px;
  height: 7px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translate(-50%, 10%) rotate(45deg);
}

.section {
  position: relative;
  padding: var(--section-y) var(--gutter);
}

.section-index {
  margin-bottom: clamp(48px, 8vw, 110px);
}

.statement {
  background: var(--fg);
  color: #08090b;
}

.statement .section-index {
  color: rgba(8, 9, 11, 0.46);
}

.statement-grid {
  display: grid;
  grid-template-columns: minmax(140px, 0.7fr) minmax(0, 3fr);
  gap: clamp(28px, 6vw, 110px);
  align-items: start;
}

.statement-aside {
  margin: 0;
  max-width: 250px;
  font-size: 13px;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(8, 9, 11, 0.58);
}

.kinetic-title,
.panorama-copy h2,
.lineup-head h2,
.music-title h2,
.booking-intro h2 {
  margin: 0;
  font-weight: 500;
  font-size: clamp(56px, 10vw, 164px);
  line-height: 0.82;
  letter-spacing: -0.075em;
  text-transform: uppercase;
}

.kinetic-title .accent {
  display: inline-block;
  color: var(--blue);
  transform: translateX(clamp(10px, 9vw, 160px));
}

.statement-copy {
  grid-column: 2;
  width: min(100%, 760px);
  justify-self: end;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 72px);
  margin-top: clamp(54px, 8vw, 120px);
  font-size: clamp(18px, 1.8vw, 28px);
  line-height: 1.28;
  letter-spacing: -0.025em;
}

.statement-copy p {
  margin: 0;
}

.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--blue);
  color: #fff;
}

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

.marquee-track span {
  display: block;
  padding: 24px 0 22px;
  white-space: nowrap;
  font-size: clamp(24px, 3.6vw, 64px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

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

.depth-section {
  position: relative;
  height: 450vh;
  background: #050608;
}

.depth-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  perspective: 1400px;
  perspective-origin: 50% 50%;
}

.depth-sticky::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 52%, #000, transparent 78%);
  pointer-events: none;
}

.depth-head {
  position: absolute;
  z-index: 3;
  top: calc(var(--header-h) + 16px);
  left: var(--gutter);
  right: var(--gutter);
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.depth-track {
  position: absolute;
  inset: 0 auto 0 0;
  display: flex;
  align-items: center;
  gap: clamp(28px, 5vw, 88px);
  padding: 15vh 12vw 8vh;
  width: max-content;
  will-change: transform;
  transform-style: preserve-3d;
}

.depth-card {
  position: relative;
  flex: 0 0 clamp(310px, 58vw, 860px);
  height: clamp(420px, 66vh, 720px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(8, 9, 13, 0.88);
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
  box-shadow: 0 42px 90px rgba(0, 0, 0, 0.32);
}

.depth-card--type {
  display: grid;
  align-content: space-between;
  padding: clamp(28px, 4vw, 60px);
}

.depth-card__number {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
}

.depth-card h3 {
  margin: 0;
  font-size: clamp(62px, 10vw, 150px);
  font-weight: 500;
  line-height: 0.8;
  letter-spacing: -0.08em;
}

.depth-card p {
  max-width: 520px;
  margin: 0;
  font-size: clamp(17px, 1.8vw, 25px);
  line-height: 1.28;
  color: rgba(255, 255, 255, 0.7);
}

.depth-card--blue {
  background: var(--blue);
  border-color: rgba(255, 255, 255, 0.35);
}

.depth-card--blue p,
.depth-card--blue .depth-card__number {
  color: rgba(255, 255, 255, 0.8);
}

.glyph-field {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  align-items: end;
  gap: 10px;
  height: 110px;
}

.glyph-field i {
  position: relative;
  height: calc(35% + var(--i, 0) * 7%);
  border-left: 1px solid var(--cyan);
  border-right: 1px solid rgba(255, 255, 255, 0.5);
  transform: skewY(-20deg);
}

.glyph-field i:nth-child(1) { --i: 2; }
.glyph-field i:nth-child(2) { --i: 6; }
.glyph-field i:nth-child(3) { --i: 4; }
.glyph-field i:nth-child(4) { --i: 8; }
.glyph-field i:nth-child(5) { --i: 3; }
.glyph-field i:nth-child(6) { --i: 7; }
.glyph-field i:nth-child(7) { --i: 5; }
.glyph-field i:nth-child(8) { --i: 1; }

.depth-card--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
}

.depth-card--photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.8));
}

.depth-card__caption {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 24px;
  color: rgba(255, 255, 255, 0.8);
}

.signal {
  display: flex;
  align-items: end;
  gap: 9px;
  height: 130px;
}

.signal span {
  width: 12px;
  height: 26%;
  background: #fff;
  animation: signal 1.1s ease-in-out infinite alternate;
}

.signal span:nth-child(2) { height: 74%; animation-delay: -0.2s; }
.signal span:nth-child(3) { height: 42%; animation-delay: -0.5s; }
.signal span:nth-child(4) { height: 92%; animation-delay: -0.35s; }
.signal span:nth-child(5) { height: 58%; animation-delay: -0.7s; }

@keyframes signal {
  to { transform: scaleY(0.35); opacity: 0.45; }
}

.depth-card--quote {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(28px, 4vw, 60px);
  background: var(--fg);
  color: #090a0d;
}

.depth-card--quote blockquote {
  margin: 0;
  font-size: clamp(40px, 6vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.depth-card--quote p {
  color: rgba(9, 10, 13, 0.66);
}

.text-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(9, 10, 13, 0.24);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.panorama {
  position: relative;
  height: 220vh;
  background: #040507;
}

.panorama-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  isolation: isolate;
}

.panorama-media {
  position: absolute;
  z-index: 0;
  inset: -13%;
  will-change: transform;
}

.panorama-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
  filter: saturate(0.78) contrast(1.12) brightness(0.78);
}

.panorama-shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 3, 6, 0.92) 0%, rgba(2, 3, 6, 0.46) 45%, rgba(2, 3, 6, 0.15) 75%),
    linear-gradient(180deg, rgba(2, 3, 6, 0.45), transparent 45%, rgba(2, 3, 6, 0.74));
}

.panorama-copy {
  position: relative;
  z-index: 2;
  width: min(100%, 1500px);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: var(--header-h) var(--gutter) clamp(42px, 7vw, 90px);
}

.panorama-copy h2 {
  max-width: 10ch;
  font-size: clamp(64px, 10vw, 160px);
  text-shadow: 0 14px 70px rgba(0, 0, 0, 0.35);
}

.panorama-copy .eyebrow {
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.62);
}

.lineup {
  background: var(--fg);
  color: #08090b;
}

.lineup .section-index {
  color: rgba(8, 9, 11, 0.46);
}

.lineup-head {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(260px, 0.8fr);
  align-items: end;
  gap: clamp(34px, 8vw, 120px);
  margin-bottom: clamp(70px, 10vw, 150px);
}

.lineup-head p {
  margin: 0;
  font-size: clamp(17px, 1.6vw, 24px);
  line-height: 1.35;
  color: rgba(8, 9, 11, 0.62);
}

.lineup-list {
  border-top: 1px solid rgba(8, 9, 11, 0.2);
}

.lineup-row {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr) minmax(160px, 0.35fr);
  align-items: center;
  gap: 20px;
  padding: clamp(18px, 2.2vw, 30px) 0;
  border-bottom: 1px solid rgba(8, 9, 11, 0.2);
  transition: padding-left 0.5s var(--ease), color 0.25s ease;
}

.lineup-row:hover {
  padding-left: 12px;
  color: var(--blue);
}

.lineup-row > span {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(8, 9, 11, 0.42);
}

.lineup-row strong {
  font-size: clamp(28px, 4.1vw, 66px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.lineup-row em {
  justify-self: end;
  font-style: normal;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(8, 9, 11, 0.56);
}

.crew {
  display: flex;
  justify-content: flex-end;
  gap: clamp(34px, 7vw, 100px);
  margin-top: 56px;
}

.crew p {
  margin: 0;
  font-size: 15px;
}

.crew span {
  display: block;
  margin-bottom: 7px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(8, 9, 11, 0.5);
}

.group-portrait {
  position: relative;
  width: 100%;
  height: min(92svh, 1040px);
  margin: 0;
  overflow: hidden;
  background: #050608;
}

.group-portrait img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  object-position: center 34%;
  transform: translateY(-6%);
  filter: saturate(0.72) contrast(1.08) brightness(0.84);
}

.music {
  background: var(--blue);
  color: #fff;
}

.music .section-index,
.music .eyebrow {
  color: rgba(255, 255, 255, 0.65);
}

.music-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: clamp(46px, 8vw, 140px);
  align-items: end;
}

.music-title h2 {
  font-size: clamp(64px, 9vw, 152px);
}

.music-links {
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.music-links a {
  display: grid;
  grid-template-columns: 42px 110px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  transition: padding-left 0.45s var(--ease), background 0.25s ease;
}

.music-links a:hover {
  padding-left: 12px;
}

.music-links span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
}

.music-links .social-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  transition: transform 0.45s var(--ease), background 0.25s ease;
}

.music-links .social-icon img {
  display: block;
  max-width: 25px;
  max-height: 23px;
  filter: invert(1);
}

.music-links a:hover .social-icon {
  transform: rotate(-8deg) scale(1.08);
  background: rgba(255, 255, 255, 0.1);
}

.music-links b {
  font-size: 18px;
  font-weight: 500;
}

.music-links i {
  font-style: normal;
  font-size: 26px;
}

.video-fullbleed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #000;
  line-height: 0;
}

.video-fullbleed iframe {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
}

.booking {
  overflow: hidden;
  background: #050608;
}

.booking-visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.booking-word {
  position: absolute;
  top: 3%;
  left: -2%;
  font-size: clamp(120px, 25vw, 420px);
  line-height: 0.78;
  font-weight: 500;
  letter-spacing: -0.09em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.055);
  white-space: nowrap;
  transform: rotate(-4deg);
}

.booking .section-index {
  position: relative;
  z-index: 1;
}

.booking-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.75fr);
  gap: clamp(54px, 9vw, 160px);
  align-items: start;
}

.booking-intro h2 {
  font-size: clamp(64px, 9.2vw, 150px);
}

.booking-direct {
  margin-top: clamp(50px, 8vw, 110px);
  display: grid;
  gap: 8px;
}

.booking-direct a {
  width: fit-content;
  font-size: clamp(20px, 2vw, 30px);
  letter-spacing: -0.03em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.booking-direct p {
  margin: 22px 0 0;
  color: var(--muted);
}

.contact-form {
  padding-top: 6px;
}

.field,
.field-row {
  width: 100%;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.field {
  position: relative;
  margin-bottom: 28px;
}

.field label {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.field input,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0;
  padding: 8px 0 15px;
  background: transparent;
  color: var(--fg);
  outline: none;
  resize: vertical;
  transition: border-color 0.25s ease;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--cyan);
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

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

.field.is-invalid input,
.field.is-invalid textarea {
  border-color: #ff5a5a;
}

.consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--muted);
  font-size: 12px;
  cursor: pointer;
}

.consent input {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  accent-color: var(--cyan);
}

.submit-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 18px 20px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.submit-button:hover,
.submit-button:focus-visible {
  background: var(--fg);
  color: #08090b;
  border-color: var(--fg);
}

.submit-button:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.submit-button:disabled:hover {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.submit-button i {
  font-style: normal;
  font-size: 22px;
}

.form-status {
  min-height: 1.4em;
  margin: 14px 0 0;
  color: var(--cyan);
  font-size: 12px;
}

.site-footer {
  padding: 64px var(--gutter) 28px;
  border-top: 1px solid var(--line);
  background: #050608;
}

.footer-shell {
  display: grid;
  grid-template-columns: minmax(180px, 320px) 1fr;
  align-items: end;
  gap: 24px 40px;
}

.footer-brand {
  display: block;
  width: 100%;
  grid-column: 1;
  grid-row: 1;
}

.footer-social {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
  min-width: 0;
}

.footer-social img {
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: invert(1);
  opacity: 0.72;
  transition: opacity 0.2s ease, transform 0.25s var(--ease);
}

.footer-social a:hover img {
  opacity: 1;
  transform: translateY(-2px);
}

.footer-content {
  grid-column: 1 / -1;
  grid-row: 2;
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 20px;
}

.footer-nav .footer-label {
  width: 100%;
  margin: 0 0 4px;
}

.footer-nav a {
  font-size: 13px;
  color: var(--muted);
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: var(--fg);
}

.footer-bottom {
  display: flex;
  align-items: center;
  gap: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer-bottom a {
  color: var(--muted);
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: var(--fg);
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s ease, transform 1.1s var(--ease);
}

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

@media (min-width: 761px) {
  /* Sur desktop, la position des cartes est pilotée image par image par le JS
     (scroll 3D) : on ne garde que le fondu d'ouverture pour ne pas entrer en
     conflit avec ce suivi de scroll en temps réel. */
  .depth-card.reveal {
    transition: opacity 0.9s ease;
  }
}

[data-split] {
  --split-progress: 0;
}

[data-split] .split-line {
  display: block;
  overflow: hidden;
}

[data-split] .split-line > span {
  display: block;
  transform: translateY(115%) rotate(2deg);
  transform-origin: 0 100%;
  transition: transform 1.1s var(--ease);
}

[data-split].is-visible .split-line > span {
  transform: translateY(0) rotate(0deg);
}

[data-split].is-visible .split-line:nth-child(2) > span { transition-delay: 0.08s; }
[data-split].is-visible .split-line:nth-child(3) > span { transition-delay: 0.16s; }
[data-split].is-visible .split-line:nth-child(4) > span { transition-delay: 0.24s; }

@media (max-width: 1000px) {
  .statement-grid,
  .lineup-head,
  .music-grid,
  .booking-grid {
    grid-template-columns: 1fr;
  }

  .statement-aside {
    max-width: 380px;
  }

  .statement-copy {
    grid-column: 1;
    justify-self: start;
  }

  .lineup-head p,
  .music-links,
  .contact-form {
    width: min(100%, 680px);
  }

  .music-links,
  .contact-form {
    justify-self: end;
  }

  .booking-direct {
    margin-top: 48px;
  }

  .kinetic-title,
  .panorama-copy h2,
  .lineup-head h2,
  .music-title h2,
  .booking-intro h2 {
    font-size: clamp(42px, 7.5vw, 88px);
  }

  .depth-card h3 {
    font-size: clamp(42px, 8vw, 76px);
  }
}

@media (max-width: 880px) {
  .footer-shell {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }

  .footer-brand {
    max-width: 220px;
  }

  .footer-social {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-top: 0;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-h: 66px;
  }

  .site-brand {
    width: 124px;
  }

  .menu-toggle__label {
    display: none;
  }

  .menu-list a {
    grid-template-columns: 42px 1fr;
  }

  .hero-inner {
    padding-bottom: 20px;
  }

  .hero-logo-wrap {
    width: 96vw;
  }

  .hero-bottom {
    align-items: center;
  }

  .hero-intro {
    font-size: 17px;
  }

  .scroll-cta span {
    display: none;
  }

  .scroll-cta i {
    width: 40px;
    height: 40px;
  }

  .statement-grid {
    gap: 48px;
  }

  .kinetic-title span {
    transform: none;
  }

  .statement-copy {
    grid-template-columns: 1fr;
  }

  .depth-section {
    height: auto;
    padding: 110px var(--gutter);
  }

  .depth-sticky {
    position: relative;
    height: auto;
    overflow: visible;
  }

  .depth-head {
    position: static;
    margin-bottom: 32px;
  }

  .depth-track {
    position: static;
    display: grid;
    width: 100%;
    padding: 0;
    gap: 24px;
    transform: none !important;
  }

  .depth-card {
    width: 100%;
    flex-basis: auto;
    height: min(74vh, 620px);
    transform: none !important;
  }

  .depth-card h3 {
    font-size: clamp(32px, 10vw, 54px);
  }

  .panorama-copy h2,
  .kinetic-title,
  .lineup-head h2,
  .music-title h2,
  .booking-intro h2 {
    font-size: clamp(30px, 10vw, 50px);
  }

  .lineup-row {
    grid-template-columns: 36px 1fr;
  }

  .lineup-row em {
    grid-column: 2;
    justify-self: start;
  }

  .crew {
    justify-content: flex-start;
    flex-direction: column;
  }

  .music-links a {
    grid-template-columns: 42px minmax(0, 1fr) auto;
    gap: 14px;
  }

  .music-links a > span:not(.social-icon) {
    grid-column: 2 / -1;
  }

  .music-links b {
    grid-column: 2;
  }

  .music-links i {
    grid-column: 3;
    grid-row: 2;
  }

  .group-portrait {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .group-portrait img {
    height: 100%;
    object-position: center 30%;
    transform: none;
  }

  .depth-card--photo img {
    transform: scale(1);
    object-position: center 38%;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-media {
    opacity: 0.48;
    transform: none;
  }

  .reveal-line > span,
  .reveal,
  [data-split] .split-line > span {
    opacity: 1;
    transform: none;
  }

  .depth-section {
    height: auto;
    padding: 110px var(--gutter);
  }

  .depth-sticky {
    position: relative;
    height: auto;
    overflow: visible;
  }

  .depth-head {
    position: static;
    margin-bottom: 32px;
  }

  .depth-track {
    position: static;
    display: grid;
    width: 100%;
    padding: 0;
    transform: none !important;
  }

  .depth-card {
    transform: none !important;
  }

  .panorama {
    height: auto;
  }

  .panorama-sticky {
    position: relative;
  }

  .panorama-media {
    transform: none !important;
  }
}

@media (max-width: 640px) {
  .video-fullbleed {
    aspect-ratio: 16 / 9;
  }
}
