/* ============================================================
   TOMIOKARI — dark / premium static site
   ============================================================ */

:root {
  --font-display: "Playfair Display", Georgia, serif;
  --font-sans: "Inter", system-ui, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --maxw: 1400px;
}

/* ===== PALETTE — electric violet + cyan ===== */
:root {
  --ink-950: #07070c;
  --ink-900: #0b0b12;
  --ink-850: #101018;
  --ink-800: #15151f;
  --ink-700: #22222e;
  --bone: #ecebf3;
  --smoke: #8a8899;

  --gold: #7c5cff;
  --gold-soft: #a99bff;
  --gold-deep: #5b3fd6;
  --accent2: #22d3ee;
  --accent2-soft: #7ceaf7;

  --gold-rgb: 124 92 255;
  --gold-deep-rgb: 91 63 214;
  --accent2-rgb: 34 211 238;
  --ink-rgb: 7 7 12;

  --accent-grad: linear-gradient(120deg, #7c5cff, #22d3ee);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}
/* Lenis drives scrolling; disable native smooth to avoid conflicts */
html.lenis {
  scroll-behavior: auto;
}

body {
  background: var(--ink-950);
  color: var(--bone);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

::selection {
  background: var(--gold);
  color: var(--ink-950);
}

::-webkit-scrollbar {
  width: 9px;
}
::-webkit-scrollbar-track {
  background: var(--ink-950);
}
::-webkit-scrollbar-thumb {
  background: var(--ink-700);
  border-radius: 999px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* ---------- Helpers ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) {
  .container {
    padding: 0 40px;
  }
}
@media (min-width: 1024px) {
  .container {
    padding: 0 64px;
  }
}

.eyebrow {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--gold);
}

.rule {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: rgb(var(--gold-rgb) / 0.6);
  vertical-align: middle;
  margin-right: 12px;
}

.link-underline {
  position: relative;
  display: inline-block;
}
.link-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.5s var(--ease);
}
.link-underline:hover::after {
  width: 100%;
}

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 0;
  padding: 15px 30px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  cursor: pointer;
  transition: color 0.4s var(--ease), border-color 0.4s var(--ease),
    transform 0.5s var(--ease);
}
/* Fill that slides in from the left on hover */
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.45s var(--ease);
}
.btn:hover::before {
  transform: scaleX(1);
}
.btn--gold {
  border: 1px solid rgb(var(--gold-rgb) / 0.5);
  background: transparent;
  color: var(--gold);
}
.btn--gold::before {
  background: var(--gold);
}
.btn--gold:hover {
  border-color: var(--gold);
  color: var(--ink-950);
}
.btn--ghost {
  border: 1px solid rgba(244, 241, 234, 0.22);
  background: transparent;
  color: rgba(244, 241, 234, 0.85);
}
.btn--ghost::before {
  background: var(--bone);
}
.btn--ghost:hover {
  border-color: var(--bone);
  color: var(--ink-950);
}

/* ---------- Film grain ---------- */
.grain {
  position: fixed;
  inset: -50%;
  z-index: 60;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 8s steps(4) infinite;
}
@keyframes grain {
  0%,
  100% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(-2%, 1%);
  }
  50% {
    transform: translate(1%, -1%);
  }
  75% {
    transform: translate(-1%, -2%);
  }
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Scroll-scrubbed word reveal (About — sticky pinned) */
.scrub .sw {
  display: inline-block;
}
@media (min-width: 1024px) {
  .about--scrub {
    padding: 0;
    height: 200vh;
  }
  .about--scrub .about__pin {
    position: sticky;
    top: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
  }
  .scrub .sw {
    opacity: 0.14;
    transition: opacity 0.35s linear;
  }
  .scrub .sw.is-lit {
    opacity: 1;
  }
}

/* Image wipe reveal (Gallery) — curtain overlay retracts left→right.
   (A clip-path on the card itself would zero its IntersectionObserver
   area and it would never trigger, so we clip an overlay instead.) */
.card-reveal {
  opacity: 1;
  transform: none;
}
.card-reveal::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background: var(--ink-950);
  transform-origin: right center;
  transition: transform 0.9s var(--ease);
}
.card-reveal.is-visible::after {
  transform: scaleX(0);
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--maxw);
  z-index: 50;
  border-radius: 0;
  border: 1px solid transparent;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
  transition: top 0.55s var(--ease), width 0.55s var(--ease),
    border-radius 0.55s var(--ease), background 0.55s var(--ease),
    border-color 0.55s var(--ease), box-shadow 0.55s var(--ease);
}
.nav.is-scrolled {
  top: 16px;
  width: calc(100% - 32px);
  border-radius: 20px;
  border-color: rgba(255, 255, 255, 0.09);
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.5);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  transition: height 0.55s var(--ease);
}
.nav.is-scrolled .nav__inner {
  height: 62px;
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.3em;
  color: var(--bone);
}
.nav__mark {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  color: var(--gold);
  transition: transform 0.9s var(--ease);
}
/* un disque, ça tourne — seul mouvement accordé à la marque */
.nav__brand:hover .nav__mark {
  transform: rotate(180deg);
}
.nav__links {
  display: none;
  align-items: center;
  gap: 36px;
}
.nav__link {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--smoke);
}
.nav__link:hover {
  color: var(--bone);
}
.nav__cta {
  display: none;
}
@media (min-width: 768px) {
  .nav__links,
  .nav__cta {
    display: inline-flex;
  }
}
/* Nav CTA — compact solid pill, distinct from the squared hero buttons */
.nav__cta {
  padding: 11px 24px;
  border-radius: 999px;
  border-color: transparent;
  background: var(--gold);
  color: var(--ink-950);
  letter-spacing: 0.28em;
}
.nav__cta::before {
  display: none;
}
.nav__cta:hover {
  background: var(--gold-soft);
  border-color: transparent;
  color: var(--ink-950);
}

.nav__burger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--bone);
  transition: transform 0.3s var(--ease);
}
.nav.is-open .nav__burger span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}
.nav.is-open .nav__burger span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}
@media (min-width: 768px) {
  .nav__burger {
    display: none;
  }
}

.nav__drawer {
  overflow: hidden;
  max-height: 0;
  background: rgba(5, 5, 5, 0.96);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  transition: max-height 0.5s var(--ease);
}
.nav.is-open .nav__drawer {
  max-height: 420px;
}
.nav__drawer .container {
  display: flex;
  flex-direction: column;
  padding-top: 16px;
  padding-bottom: 24px;
}
.nav__drawer-link {
  padding: 12px 0;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--smoke);
}
.nav__drawer-link:hover {
  color: var(--bone);
}
.nav__drawer-cta {
  margin-top: 12px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100svh;
  overflow: hidden;
}
.hero__glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero__glow-a,
.hero__glow-b {
  position: absolute;
  border-radius: 999px;
  filter: blur(130px);
}
.hero__glow-a {
  left: -160px;
  top: 25%;
  width: 46rem;
  height: 46rem;
  background: rgb(var(--gold-rgb) / 0.09);
}
.hero__glow-b {
  right: -128px;
  bottom: 0;
  width: 38rem;
  height: 38rem;
  background: rgb(var(--accent2-rgb) / 0.06);
  filter: blur(120px);
}

/* Hero photo */
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
/* Full-bleed cinematic carousel — deeply darkened B&W slides that
   crossfade with a slow Ken Burns zoom; no panel, so no separating edge */
.hero__slides {
  position: absolute;
  inset: 0;
}
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  filter: grayscale(1) brightness(0.5) contrast(1.08);
  opacity: 0;
  will-change: opacity, transform;
  transition: opacity 1.5s ease;
}
.hero__slide.is-active {
  opacity: 1;
}
@keyframes kenburns {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1.16);
  }
}
@media (min-width: 1024px) {
  .hero__slide {
    background-position: center 38%;
  }
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      to top,
      rgb(var(--ink-rgb)) 4%,
      rgb(var(--ink-rgb) / 0.3) 48%,
      rgb(var(--ink-rgb) / 0.55) 100%
    ),
    linear-gradient(
      to right,
      rgb(var(--ink-rgb) / 0.72) 0%,
      rgb(var(--ink-rgb) / 0.35) 50%,
      rgb(var(--ink-rgb) / 0.5) 100%
    );
}
@media (min-width: 1024px) {
  .hero__media::after {
    background: linear-gradient(
        to right,
        rgb(var(--ink-rgb)) 0%,
        rgb(var(--ink-rgb) / 0.62) 34%,
        rgb(var(--ink-rgb) / 0.3) 66%,
        rgb(var(--ink-rgb) / 0.42) 100%
      ),
      linear-gradient(
        to top,
        rgb(var(--ink-rgb)) 3%,
        rgb(var(--ink-rgb) / 0.12) 46%,
        rgb(var(--ink-rgb) / 0.5) 100%
      );
  }
}

.hero__vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(
    ellipse at 50% 44%,
    transparent 40%,
    rgb(var(--ink-rgb) / 0.5) 94%
  );
}
/* Carousel navigation dots */
.hero__dots {
  position: absolute;
  left: 24px;
  bottom: 30px;
  z-index: 5;
  display: flex;
  gap: 10px;
}
.hero__dot {
  width: 26px;
  height: 3px;
  padding: 0;
  border: none;
  border-radius: 2px;
  background: rgba(236, 235, 243, 0.25);
  cursor: pointer;
  transition: background 0.4s var(--ease), width 0.4s var(--ease);
}
.hero__dot:hover {
  background: rgba(236, 235, 243, 0.5);
}
.hero__dot.is-active {
  width: 40px;
  background: var(--gold);
}
@media (min-width: 1024px) {
  .hero__dots {
    left: 64px;
    bottom: 40px;
  }
}

.hero__side {
  position: absolute;
  top: 50%;
  z-index: 5;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--smoke);
  display: none;
}
.hero__side--left {
  left: 24px;
  transform: translateY(-50%) rotate(180deg);
}
.hero__side--right {
  right: 24px;
}
@media (min-width: 1024px) {
  .hero__side {
    display: block;
  }
}

.hero__inner {
  position: relative;
  z-index: 10;
  padding-top: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(3.4rem, 15vw, 13rem);
  line-height: 0.86;
  letter-spacing: -0.02em;
  color: var(--bone);
}
.hero__tagline {
  margin-top: 32px;
  max-width: 36rem;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.25rem, 2.6vw, 1.7rem);
  line-height: 1.4;
  color: var(--smoke);
}
.hero__actions {
  margin-top: 44px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  z-index: 5;
  transform: translateX(-50%);
  text-align: center;
  animation: fadeIn 1s var(--ease) 1.4s both;
}
.hero__scroll span:first-child {
  display: block;
  margin-bottom: 8px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--smoke);
}
.hero__scroll-line {
  display: block;
  width: 1px;
  height: 40px;
  margin: 0 auto;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, var(--ink-850), var(--ink-900));
  padding: 34px 0;
}
/* wrapper receives the scroll-velocity skew (JS) */
.marquee__skew {
  will-change: transform;
}
.marquee__track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 34px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
}
.marquee:hover .marquee__track {
  animation-play-state: paused;
}
.mqw {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.6rem, 3.4vw, 2.3rem);
  letter-spacing: 0.01em;
  color: var(--bone);
  transition: color 0.4s var(--ease), -webkit-text-stroke-color 0.4s var(--ease);
}
/* outlined words — poster / editorial contrast */
.mqw--out {
  color: transparent;
  -webkit-text-stroke: 1px rgba(236, 235, 243, 0.35);
}
.marquee:hover .mqw--out {
  -webkit-text-stroke-color: var(--gold);
}
.marquee:hover .mqw {
  color: var(--gold);
}
.mqs {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--gold);
  animation: sepSpin 7s linear infinite;
}
@keyframes sepSpin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}
.marquee__fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 96px;
  pointer-events: none;
}
.marquee__fade--l {
  left: 0;
  background: linear-gradient(to right, var(--ink-900), transparent);
}
.marquee__fade--r {
  right: 0;
  background: linear-gradient(to left, var(--ink-900), transparent);
}

/* ============================================================
   SECTIONS (generic)
   ============================================================ */
.section {
  padding: 112px 0;
}
@media (min-width: 768px) {
  .section {
    padding: 160px 0;
  }
}
.section--alt {
  background: var(--ink-900);
}
.section__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 64px;
}
.section__title {
  margin-top: 16px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  color: var(--bone);
}
.section__intro {
  max-width: 24rem;
  font-size: 14px;
  color: var(--smoke);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about__grid {
  display: grid;
  gap: 64px;
}
@media (min-width: 1024px) {
  .about__grid {
    grid-template-columns: 5fr 1fr 6fr;
  }
  .about__body {
    grid-column: 3;
  }
}
.about__lead {
  margin-top: 24px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.75rem, 4vw, 3rem);
  line-height: 1.15;
  color: var(--bone);
}
.about__text {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--smoke);
}
.about__stats {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 32px;
}
@media (min-width: 640px) {
  .about__stats {
    grid-template-columns: repeat(4, 1fr);
  }
}
.stat {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 16px;
}
.stat__k {
  display: block;
  margin-bottom: 6px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--smoke);
}
.stat__v {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  color: var(--gold);
}
.stat__l {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--smoke);
}

/* ============================================================
   LIST / ROWS (sets)
   ============================================================ */
.list {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.4s var(--ease);
}
.row:last-child {
  border-bottom: none;
}
@media (min-width: 768px) {
  .row {
    gap: 40px;
    padding: 28px 16px;
  }
}
.row:hover {
  background: rgba(255, 255, 255, 0.02);
}
.row__num {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  color: rgba(154, 150, 142, 0.5);
}
.row__play {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgb(var(--gold-rgb) / 0.3);
  color: var(--gold);
  font-size: 12px;
  transition: all 0.5s var(--ease);
}
@media (min-width: 768px) {
  .row__play {
    width: 56px;
    height: 56px;
  }
}
.row:hover .row__play {
  background: var(--gold);
  color: var(--ink-950);
}
.row__main {
  flex: 1;
  min-width: 0;
}
.row__title {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.875rem);
  color: var(--bone);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.4s var(--ease);
}
.row:hover .row__title {
  color: var(--gold);
}
.row__meta {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  color: var(--smoke);
}
.tag {
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--smoke);
  transition: all 0.4s var(--ease);
}
@media (max-width: 639px) {
  .row .tag {
    display: none;
  }
}
.tag--gold {
  border-color: rgb(var(--gold-rgb) / 0.4);
  color: var(--gold);
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery__link {
  font-size: 14px;
  color: var(--gold);
}
.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 768px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
}
.card {
  position: relative;
  overflow: hidden;
  background: var(--ink-800);
  aspect-ratio: 4 / 5;
}
.card--tall {
  grid-row: span 2;
  aspect-ratio: 3 / 5;
}
.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: transform 0.9s var(--ease), filter 0.9s var(--ease);
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(5, 5, 5, 0.7),
    transparent 60%
  );
  opacity: 0.6;
  transition: opacity 0.5s var(--ease);
}
.card:hover img {
  transform: scale(1.04);
  filter: grayscale(0);
}
.card:hover::before {
  opacity: 0.3;
}
.card figcaption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 2;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--bone);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.5s var(--ease);
}
.card:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   SHOWS
   ============================================================ */
.shows__title {
  margin-bottom: 64px;
}
.show {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: center;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.4s var(--ease);
}
.show:last-child {
  border-bottom: none;
}
.show:hover {
  background: rgba(255, 255, 255, 0.02);
}
.show__date {
  grid-column: span 3;
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 3vw, 1.5rem);
  color: var(--gold);
}
.show__city {
  grid-column: span 5;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--bone);
}
.show__venue {
  grid-column: 1 / -1;
  order: 3;
  font-size: 14px;
  color: var(--smoke);
}
.show .tag {
  grid-column: span 4;
  justify-self: end;
}
@media (min-width: 768px) {
  .show__date {
    grid-column: span 2;
  }
  .show__city {
    grid-column: span 3;
  }
  .show__venue {
    grid-column: span 5;
    order: 0;
  }
  .show .tag {
    grid-column: span 2;
  }
}
.show:hover .tag--gold {
  background: var(--gold);
  color: var(--ink-950);
}
a.show {
  text-decoration: none;
}
.shows__note {
  margin-top: 32px;
  font-size: 14px;
  color: var(--smoke);
}
.shows__note a {
  color: var(--gold);
}

/* ============================================================
   BOOKING
   ============================================================ */
.booking {
  position: relative;
  overflow: hidden;
  padding: 112px 0;
}
@media (min-width: 768px) {
  .booking {
    padding: 176px 0;
  }
}
.booking__glow {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 40rem;
  height: 40rem;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: rgb(var(--gold-rgb) / 0.06);
  filter: blur(120px);
  pointer-events: none;
}
.booking__inner {
  position: relative;
  z-index: 10;
  text-align: center;
}
.booking__title {
  margin: 24px auto 0;
  max-width: 56rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.6rem, 7vw, 6rem);
  line-height: 0.95;
  color: var(--bone);
}
.booking__title em {
  font-style: italic;
  color: var(--gold);
}
.booking__text {
  margin: 32px auto 0;
  max-width: 36rem;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--smoke);
}
.booking__actions {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.booking__mail {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  color: var(--bone);
  transition: color 0.4s var(--ease);
}
.booking__mail:hover {
  color: var(--gold);
}
.booking__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--ink-950);
  padding: 64px 0;
}
.footer__top {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media (min-width: 768px) {
  .footer__top {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}
.footer__brand {
  font-family: var(--font-display);
  font-size: 30px;
  letter-spacing: 0.2em;
  color: var(--bone);
}
.footer__tag {
  margin-top: 16px;
  max-width: 20rem;
  font-size: 14px;
  color: var(--smoke);
}
.footer__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
}
.footer__socials a {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--smoke);
}
.footer__socials a:hover {
  color: var(--bone);
}
.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: rgba(154, 150, 142, 0.7);
}
@media (min-width: 640px) {
  .footer__bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.footer__watermark {
  margin-top: 40px;
  text-align: center;
}
.footer__watermark span {
  font-family: var(--font-display);
  font-size: 15px;
  font-style: italic;
  letter-spacing: 0.04em;
  color: rgba(154, 150, 142, 0.55);
  transition: color 0.4s ease;
}
.footer__watermark em {
  font-style: italic;
  font-weight: 500;
  color: rgba(214, 210, 202, 0.85);
}
.footer__watermark:hover span {
  color: rgba(214, 210, 202, 0.8);
}

/* ============================================================
   MAJESTIC LAYER — intro, cursor, progress, hero motion
   ============================================================ */

/* ---------- Scroll progress bar ---------- */
.progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  height: 2px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold), var(--accent2));
  box-shadow: 0 0 14px rgb(var(--gold-rgb) / 0.7);
  will-change: transform;
}

/* ---------- Intro / preloader ---------- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  background: var(--ink-950);
  transition: opacity 0.8s var(--ease), visibility 0.8s var(--ease);
}
.loader__inner {
  display: flex;
  align-items: baseline;
  gap: 16px;
  overflow: hidden;
}
.loader__word {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 5rem);
  letter-spacing: 0.16em;
  color: var(--bone);
  transform: translateY(110%);
  animation: loaderWord 1s var(--ease) 0.15s forwards;
}
.loader__count {
  font-size: 12px;
  letter-spacing: 0.35em;
  color: var(--gold);
  opacity: 0;
  animation: fadeIn 0.6s var(--ease) 0.5s forwards;
}
.loader__bar {
  position: relative;
  width: min(240px, 60vw);
  height: 1px;
  background: rgba(244, 241, 234, 0.12);
  overflow: hidden;
}
.loader__bar i {
  position: absolute;
  inset: 0;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: var(--gold);
}
@keyframes loaderWord {
  to {
    transform: translateY(0);
  }
}
.is-loaded .loader {
  opacity: 0;
  visibility: hidden;
}

/* Lock scroll while intro plays */
.is-loading,
.is-loading body {
  overflow: hidden;
}

/* ---------- Custom DJ cursor (spinning vinyl) ---------- */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 300;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.is-loaded .cursor {
  opacity: 1;
}
/* positioning anchor — JS translates this to the pointer */
.cursor__ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  transform: translate(-50%, -50%);
}
/* the vinyl record */
.cursor__vinyl {
  position: absolute;
  left: 0;
  top: 0;
  width: 34px;
  height: 34px;
  margin: -17px 0 0 -17px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: radial-gradient(circle, #0a0a0e 0 24%, transparent 25%),
    repeating-radial-gradient(
      circle,
      rgba(255, 255, 255, 0.07) 0 1px,
      transparent 1px 3px
    ),
    #050507;
  box-shadow: 0 0 16px rgb(var(--gold-rgb) / 0.25), 0 2px 8px rgba(0, 0, 0, 0.6);
  animation: vinylSpin 3.6s linear infinite;
  transition: width 0.3s var(--ease), height 0.3s var(--ease),
    margin 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
/* rotating sheen so the spin is visible */
.cursor__vinyl::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: conic-gradient(
    from 0deg,
    transparent 0 68%,
    rgba(255, 255, 255, 0.14) 84%,
    transparent 100%
  );
}
/* center label */
.cursor__label {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 13px;
  height: 13px;
  margin: -6.5px 0 0 -6.5px;
  border-radius: 999px;
  background: var(--gold);
}
/* label print mark (makes rotation obvious) */
.cursor__label::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 1.5px;
  width: 2px;
  height: 3.5px;
  margin-left: -1px;
  border-radius: 1px;
  background: var(--accent2);
}
/* spindle hole */
.cursor__label::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 3px;
  height: 3px;
  margin: -1.5px 0 0 -1.5px;
  border-radius: 999px;
  background: #050507;
}
@keyframes vinylSpin {
  to {
    transform: rotate(360deg);
  }
}
/* the record spins faster while a set is playing */
body.is-playing .cursor__vinyl {
  animation-duration: 1.4s;
  box-shadow: 0 0 22px rgb(var(--gold-rgb) / 0.4), 0 2px 8px rgba(0, 0, 0, 0.6);
}
/* hover / press states */
.cursor.is-hover .cursor__vinyl {
  width: 52px;
  height: 52px;
  margin: -26px 0 0 -26px;
  box-shadow: 0 0 26px rgb(var(--gold-rgb) / 0.45), 0 2px 8px rgba(0, 0, 0, 0.6);
}
.cursor.is-down .cursor__vinyl {
  width: 28px;
  height: 28px;
  margin: -14px 0 0 -14px;
}
/* Hide the native cursor only on precise-pointer devices with JS */
@media (hover: hover) and (pointer: fine) {
  html.js.is-loaded,
  html.js.is-loaded a,
  html.js.is-loaded button {
    cursor: none;
  }
}

/* ---------- Now Playing pill (audio-reactive) ---------- */
.np {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 55;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px 10px 13px;
  border-radius: 999px;
  border: 1px solid rgb(var(--gold-rgb) / 0.32);
  background: rgba(11, 11, 18, 0.72);
  backdrop-filter: blur(14px);
  max-width: 72vw;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
body.is-playing .np {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.np__eq {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  width: 17px;
  height: 15px;
  flex-shrink: 0;
}
.np__eq i {
  flex: 1;
  height: 30%;
  border-radius: 1px;
  background: var(--gold);
}
.np__eq i:nth-child(2),
.np__eq i:nth-child(4) {
  background: var(--accent2);
}
body.is-playing .np__eq i {
  animation: eqbar2 0.8s ease-in-out infinite;
}
body.is-playing .np__eq i:nth-child(1) {
  animation-delay: -0.2s;
}
body.is-playing .np__eq i:nth-child(2) {
  animation-delay: -0.55s;
}
body.is-playing .np__eq i:nth-child(3) {
  animation-delay: -0.35s;
}
body.is-playing .np__eq i:nth-child(4) {
  animation-delay: -0.7s;
}
@keyframes eqbar2 {
  0%,
  100% {
    height: 22%;
  }
  50% {
    height: 100%;
  }
}
.np__label {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  min-width: 0;
}
.np__tag {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold);
}
.np__title {
  font-size: 12.5px;
  color: var(--bone);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 46vw;
}

/* ---------- Hero equalizer signature ---------- */
.hero__eq {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 34px;
  margin-top: 40px;
}
.hero__eq i {
  width: 3px;
  height: 20%;
  border-radius: 2px;
  background: linear-gradient(to top, var(--gold), var(--accent2));
  opacity: 0.85;
  animation: heroEq 1.4s ease-in-out infinite;
}
@keyframes heroEq {
  0%,
  100% {
    height: 15%;
  }
  50% {
    height: 100%;
  }
}
body.is-playing .hero__eq i {
  animation-duration: 0.55s;
}
/* marquee gains energy while a set plays */
body.is-playing .marquee__track {
  animation-duration: 24s;
}
.marquee__track {
  transition: none;
}
@media (max-width: 600px) {
  .hero__eq {
    height: 26px;
    margin-top: 30px;
  }
}

/* ---------- Hero cursor spotlight ---------- */
.hero__spot {
  position: absolute;
  left: 0;
  top: 0;
  width: 620px;
  height: 620px;
  margin: -310px 0 0 -310px;
  border-radius: 999px;
  background: radial-gradient(
    circle,
    rgb(var(--gold-rgb) / 0.14),
    rgb(var(--gold-rgb) / 0) 62%
  );
  transform: translate(50vw, 40vh);
  will-change: transform;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.is-loaded .hero__spot {
  opacity: 1;
}

/* ---------- Breathing hero glows ---------- */
.hero__glow-a {
  animation: breathe 9s ease-in-out infinite;
}
.hero__glow-b {
  animation: breathe 11s ease-in-out infinite reverse;
}
@keyframes breathe {
  0%,
  100% {
    transform: scale(1) translate(0, 0);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.18) translate(2%, -3%);
    opacity: 1;
  }
}

/* ---------- Hero title — letter mask reveal ---------- */
.hero__title {
  display: flex;
  flex-wrap: wrap;
}
.ht {
  display: inline-block;
  overflow: hidden;
  padding: 0.12em 0;
  margin: -0.12em 0;
}
.ht > span {
  display: inline-block;
  will-change: transform;
  background: linear-gradient(
    100deg,
    var(--bone) 40%,
    #ffffff 48%,
    var(--gold-soft) 52%,
    var(--bone) 60%
  );
  background-size: 300% 100%;
  background-position: 150% 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: heroSheen 7s linear infinite;
}
@keyframes heroSheen {
  0% {
    background-position: 150% 0;
  }
  100% {
    background-position: -150% 0;
  }
}
html.js .ht > span {
  transform: translateY(115%);
}
html.js.is-ready .ht > span {
  transform: translateY(0);
  transition: transform 1.05s cubic-bezier(0.16, 1, 0.3, 1);
}
html.js.is-ready .ht:nth-child(1) > span {
  transition-delay: 0.05s;
}
html.js.is-ready .ht:nth-child(2) > span {
  transition-delay: 0.13s;
}
html.js.is-ready .ht:nth-child(3) > span {
  transition-delay: 0.21s;
}
html.js.is-ready .ht:nth-child(4) > span {
  transition-delay: 0.29s;
}
html.js.is-ready .ht:nth-child(5) > span {
  transition-delay: 0.37s;
}
/* subtle gold glow on the wordmark */
.hero__title {
  text-shadow: 0 0 60px rgb(var(--gold-rgb) / 0.12);
}

/* ---------- Magnetic buttons ---------- */
.btn {
  will-change: transform;
}

/* ---------- Section title accent line (draws in on reveal) ---------- */
.section__title::after {
  content: "";
  display: block;
  width: 68px;
  height: 2px;
  margin-top: 24px;
  background: linear-gradient(90deg, var(--gold), var(--accent2));
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 1.1s var(--ease) 0.15s;
}
.reveal.is-visible .section__title::after {
  transform: scaleX(1);
}

/* ---------- Living scroll cue ---------- */
.hero__scroll-line {
  transform-origin: top center;
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,
  100% {
    transform: scaleY(0.35);
    opacity: 0.35;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

/* ---------- Custom SoundCloud player ---------- */
/* ---------- Coverflow (sets showcase) ---------- */
.coverflow {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.cf__stage {
  position: relative;
  width: 100%;
  height: clamp(300px, 44vw, 480px);
  overflow: hidden;
  perspective: 1600px;
}
.cf__card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(220px, 30vw, 360px);
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--ink-850);
  overflow: hidden;
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: transform 0.6s var(--ease), opacity 0.6s var(--ease);
  will-change: transform, opacity;
}
.cf__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) brightness(0.72);
  transition: filter 0.6s var(--ease);
}
.cf__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 5, 5, 0.88), transparent 55%);
  opacity: 0.9;
  transition: opacity 0.6s var(--ease);
}
.cf__card.is-active img {
  filter: grayscale(0) brightness(1);
}
.cf__card.is-active::after {
  opacity: 0.55;
}
.cf__meta {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 5px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s var(--ease) 0.15s, transform 0.5s var(--ease) 0.15s;
}
.cf__card.is-active .cf__meta {
  opacity: 1;
  transform: none;
}
.cf__t {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  line-height: 1.2;
  color: var(--bone);
}
.cf__s {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--gold);
}
.cf__engine {
  position: absolute;
  width: 1px;
  height: 1px;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
  border: 0;
}
.cf__player {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.cf__now {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.2;
  color: var(--bone);
  text-align: center;
}
.cf__scrub {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
}
.cf__time {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--smoke);
  font-variant-numeric: tabular-nums;
  min-width: 34px;
  text-align: center;
}
/* Zone de saisie large (confort tactile) autour d'un rail fin */
.cf__bar {
  position: relative;
  flex: 1;
  height: 26px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  /* le doigt scrolle verticalement, l'horizontal nous revient */
  touch-action: pan-y;
  -webkit-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
@media (hover: none) {
  .cf__bar {
    height: 34px;
  }
}
.cf__rail {
  position: relative;
  display: block;
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  overflow: hidden;
  transition: height 0.25s var(--ease);
}
.cf__bar:hover .cf__rail,
.cf__bar:focus-visible .cf__rail,
.cf__bar.is-drag .cf__rail {
  height: 6px;
}
.cf__fill {
  display: block;
  height: 100%;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: var(--gold);
  border-radius: 999px;
}
/* pas de transition pendant le glissement : la poignée colle au doigt */
.cf__bar:not(.is-drag) .cf__fill {
  transition: transform 0.12s linear;
}
.cf__knob {
  position: absolute;
  top: 50%;
  left: 0;
  width: 13px;
  height: 13px;
  margin-left: -6.5px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgb(var(--gold-rgb) / 0.18);
  transform: translateY(-50%) scale(0);
  transition: transform 0.25s var(--ease);
  pointer-events: none;
}
.cf__bar:hover .cf__knob,
.cf__bar:focus-visible .cf__knob,
.cf__bar.is-drag .cf__knob {
  transform: translateY(-50%) scale(1);
}
@media (hover: none) {
  .cf__knob {
    transform: translateY(-50%) scale(1);
  }
}
.cf__bar.is-drag .cf__knob {
  transform: translateY(-50%) scale(1.25);
}
.cf__bar:focus-visible {
  outline: 1px solid rgb(var(--gold-rgb) / 0.6);
  outline-offset: 4px;
}
.cf__bar.is-off {
  opacity: 0.45;
  cursor: default;
}
.cf__transport {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.cf__ctrl {
  padding: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: none;
  color: var(--smoke);
  cursor: pointer;
  transition: color 0.35s var(--ease), transform 0.35s var(--ease);
}
.cf__ctrl:hover {
  color: var(--bone);
  transform: translateY(-2px);
}
.cf__ctrl svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}
.cf__ctrl--play {
  color: var(--gold);
}
.cf__ctrl--play:hover {
  color: var(--gold-soft);
}
.cf__ctrl--play svg {
  width: 32px;
  height: 32px;
}
.cf__ctrl--play .i-pause {
  display: none;
}
.cf__ctrl--play[data-state="playing"] .i-play {
  display: none;
}
.cf__ctrl--play[data-state="playing"] .i-pause {
  display: inline;
}

/* Boutons ±10 s */
.cf__ctrl--skip {
  position: relative;
}
.cf__ctrl--skip svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cf__ctrl--skip .cf__arc:last-child {
  fill: currentColor;
  stroke: none;
}
.cf__ctrl--skip b {
  position: absolute;
  left: 50%;
  top: 55%;
  transform: translate(-50%, -50%);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0;
  pointer-events: none;
}
.cf__ctrl:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.cf__ctrl:disabled:hover {
  color: var(--smoke);
  transform: none;
}
.cf__hint {
  margin-top: -6px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--smoke);
  opacity: 0.6;
  text-align: center;
}
.cf__hint kbd {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0;
  color: var(--bone);
}

/* ---------- Coverflow sur mobile ---------- */
@media (max-width: 600px) {
  .coverflow {
    gap: 22px;
  }
  .cf__transport {
    gap: 18px;
  }
  .cf__ctrl {
    padding: 10px;
  }
  .cf__ctrl svg {
    width: 20px;
    height: 20px;
  }
  .cf__ctrl--play svg {
    width: 30px;
    height: 30px;
  }
  .cf__ctrl--skip svg {
    width: 22px;
    height: 22px;
  }
  .cf__scrub {
    gap: 10px;
  }
  .cf__time {
    font-size: 10px;
    min-width: 30px;
  }
  .cf__meta {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }
}
@media (max-width: 420px) {
  .cf__hint {
    display: none;
  }
  .cf__transport {
    gap: 12px;
  }
}

.player {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, var(--ink-850), var(--ink-950));
  box-shadow: 0 40px 100px -50px rgba(0, 0, 0, 0.95);
  overflow: hidden;
}
@media (min-width: 768px) {
  .player {
    flex-direction: row;
    align-items: stretch;
    min-height: 400px;
  }
}

/* Artwork panel */
.player__art {
  position: relative;
  flex-shrink: 0;
  width: 100%;
  height: 320px;
  overflow: hidden;
  background: radial-gradient(
      circle at 30% 30%,
      rgb(var(--gold-rgb) / 0.22),
      rgb(var(--gold-rgb) / 0) 60%
    ),
    linear-gradient(150deg, var(--ink-700), var(--ink-950));
}
@media (min-width: 768px) {
  .player__art {
    width: 340px;
    height: auto;
  }
}
@media (min-width: 1024px) {
  .player__art {
    width: 400px;
  }
}
.player__art img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 0.9s var(--ease), transform 6s var(--ease);
}
.player__art.has-art img {
  opacity: 1;
  transform: scale(1);
}
.player__art.has-art.is-playing img {
  transform: scale(1.08);
}
.player__art-ph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  letter-spacing: 0.15em;
  color: rgba(244, 241, 234, 0.18);
  transition: opacity 0.6s ease;
}
.player__art.has-art .player__art-ph {
  opacity: 0;
}
.player__art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(5, 5, 5, 0) 55%,
    rgba(5, 5, 5, 0.55) 100%
  );
}
@media (min-width: 768px) {
  .player__art::after {
    background: linear-gradient(
      90deg,
      rgba(5, 5, 5, 0) 60%,
      rgba(10, 10, 11, 0.9) 100%
    );
  }
}
/* moving shine across the artwork */
.player__art-shine {
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(
    100deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.08) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-18deg);
  animation: artShine 6s ease-in-out infinite;
}
@keyframes artShine {
  0%,
  70% {
    left: -60%;
  }
  100% {
    left: 130%;
  }
}

/* Artwork size toggle button */
.player__artbtn {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(244, 241, 234, 0.25);
  background: rgba(5, 5, 5, 0.45);
  backdrop-filter: blur(6px);
  color: var(--bone);
  cursor: pointer;
  transition: all 0.35s var(--ease);
}
.player__artbtn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink-950);
}
.player__artbtn svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.player__artbtn .i-shrink {
  display: none;
}
.player.art-lg .player__artbtn .i-expand {
  display: none;
}
.player.art-lg .player__artbtn .i-shrink {
  display: block;
}

/* Enlarged artwork state */
.player.art-lg .player__art {
  height: 420px;
}
@media (min-width: 768px) {
  .player.art-lg {
    min-height: 520px;
  }
  .player.art-lg .player__art {
    width: 480px;
    height: auto;
  }
}
@media (min-width: 1024px) {
  .player.art-lg .player__art {
    width: 580px;
  }
}
.player__art {
  transition: width 0.5s var(--ease), height 0.5s var(--ease);
}

.player__body {
  flex: 1;
  min-width: 0;
  padding: 26px 26px 12px;
}
@media (min-width: 768px) {
  .player__body {
    padding: 32px 40px 16px;
  }
}

.player__bar {
  display: flex;
  align-items: center;
  gap: 20px;
}
.player__play {
  position: relative;
  flex-shrink: 0;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  border: 1px solid rgb(var(--gold-rgb) / 0.4);
  background: rgb(var(--gold-rgb) / 0.06);
  color: var(--gold);
  cursor: pointer;
  transition: all 0.4s var(--ease);
}
@media (min-width: 768px) {
  .player__play {
    width: 66px;
    height: 66px;
  }
}
.player__play:hover {
  background: var(--gold);
  color: var(--ink-950);
  box-shadow: 0 0 30px rgb(var(--gold-rgb) / 0.4);
}
.player__play svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  transform: translate(-50%, -50%);
  fill: currentColor;
}
.player__play .i-play {
  margin-left: 2px;
}
.player__play[data-state="paused"] .i-pause,
.player__play[data-state="playing"] .i-play {
  display: none;
}
.player__meta {
  flex: 1;
  min-width: 0;
}
.player__ey {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--gold);
}
.player__title {
  display: block;
  margin-top: 6px;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.6rem);
  color: var(--bone);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.player__time {
  flex-shrink: 0;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--smoke);
  font-variant-numeric: tabular-nums;
}
.player__time b {
  color: var(--bone);
  font-weight: 500;
}
.player__sep {
  margin: 0 6px;
  opacity: 0.5;
}
@media (max-width: 560px) {
  .player__time {
    display: none;
  }
}

.player__seek {
  display: block;
  width: 100%;
  height: 3px;
  margin: 22px 0 8px;
  padding: 0;
  border: none;
  background: rgba(244, 241, 234, 0.1);
  cursor: pointer;
  position: relative;
}
.player__seek-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--accent2));
  box-shadow: 0 0 10px rgb(var(--gold-rgb) / 0.5);
}
.player__seek-fill::after {
  content: "";
  position: absolute;
  right: -4px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold-soft);
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.player:hover .player__seek-fill::after {
  opacity: 1;
}

.player__list {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  max-height: 340px;
  overflow-y: auto;
}
.trk {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: background 0.35s var(--ease);
}
.trk:hover {
  background: rgba(255, 255, 255, 0.03);
}
.trk__num {
  width: 22px;
  font-family: var(--font-display);
  font-size: 15px;
  color: rgba(154, 150, 142, 0.55);
}
.trk__title {
  flex: 1;
  min-width: 0;
  font-size: 15px;
  color: var(--smoke);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.35s var(--ease);
}
.trk:hover .trk__title {
  color: var(--bone);
}
.trk__dur {
  font-size: 12px;
  color: var(--smoke);
  font-variant-numeric: tabular-nums;
}
.trk.is-active .trk__title {
  color: var(--gold);
}
.trk.is-active .trk__num {
  color: var(--gold);
}
/* animated equalizer on the active track */
.trk__eq {
  display: none;
  align-items: flex-end;
  gap: 2px;
  width: 16px;
  height: 14px;
}
.trk.is-active .trk__eq {
  display: flex;
}
.trk.is-active .trk__num {
  display: none;
}
.trk__eq i {
  width: 3px;
  background: var(--gold);
  animation: eq 1s ease-in-out infinite;
}
.trk__eq i:nth-child(1) {
  animation-delay: -0.4s;
}
.trk__eq i:nth-child(2) {
  animation-delay: -0.7s;
}
.trk__eq i:nth-child(3) {
  animation-delay: -0.2s;
}
@keyframes eq {
  0%,
  100% {
    height: 30%;
  }
  50% {
    height: 100%;
  }
}
.trk.is-active.is-paused .trk__eq i {
  animation-play-state: paused;
}

/* hidden SoundCloud engine */
.player__frame {
  position: absolute;
  width: 1px;
  height: 1px;
  left: -9999px;
  top: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
.sets__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.sets__foot-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--smoke);
}
.sets__foot-link {
  font-size: 14px;
  color: var(--gold);
}

/* ============================================================
   MOBILE POLISH
   ============================================================ */
@media (max-width: 900px) {
  .about__grid {
    gap: 40px;
  }
}
@media (max-width: 600px) {
  .section {
    padding: 88px 0;
  }
  .hero__inner {
    padding-top: 72px;
  }
  .hero__tagline {
    margin-top: 24px;
  }
  .hero__actions {
    margin-top: 30px;
    gap: 12px;
  }
  .hero__actions .btn {
    flex: 1;
    min-width: 0;
  }
  .section__head {
    margin-bottom: 44px;
  }
  .np {
    left: 12px;
    bottom: 12px;
    padding: 8px 14px 8px 11px;
  }
  .np__title {
    max-width: 38vw;
  }
  .player__body {
    padding: 22px 20px 8px;
  }
  .player__bar {
    gap: 14px;
  }
  .booking__buttons {
    width: 100%;
    flex-direction: column;
  }
  .booking__buttons .btn {
    width: 100%;
  }
  .footer__socials {
    gap: 10px 24px;
  }
}
@media (max-width: 380px) {
  .hero__title {
    font-size: clamp(3rem, 20vw, 5rem);
  }
  .np__tag {
    display: none;
  }
}

/* Larger tap targets on touch devices */
@media (hover: none) {
  .nav__link,
  .nav__drawer-link,
  .footer__socials a {
    padding-top: 6px;
    padding-bottom: 6px;
  }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  html.js .ht > span {
    transform: none;
    background: none;
    -webkit-text-fill-color: var(--bone);
    animation: none;
  }
  .loader {
    display: none;
  }
  .cursor {
    display: none;
  }
  .hero__spot {
    display: none;
  }
  html.js.is-loaded,
  html.js.is-loaded a,
  html.js.is-loaded button {
    cursor: auto !important;
  }
}

/* ============================================================
   BOOKING — formulaire multi-étapes + calendrier
   ============================================================ */
.bk {
  position: relative;
  margin: 56px auto 0;
  max-width: 58rem;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, var(--ink-850), var(--ink-950));
  box-shadow: 0 40px 100px -50px rgba(0, 0, 0, 0.95);
  padding: 28px 20px 24px;
}
@media (min-width: 768px) {
  .bk {
    padding: 44px 44px 32px;
  }
}
/* liseré doré en haut du panneau */
.bk::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: var(--accent-grad);
  opacity: 0.7;
}

/* ---------- Étapes ---------- */
.bk__steps {
  display: flex;
  gap: 24px;
  list-style: none;
}
.bk__step {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--smoke);
  transition: color 0.5s var(--ease), opacity 0.5s var(--ease);
  opacity: 0.45;
}
.bk__step.is-active,
.bk__step.is-done {
  opacity: 1;
  color: var(--gold);
}
.bk__step-n {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.06em;
}
@media (max-width: 560px) {
  .bk__step-l {
    display: none;
  }
  .bk__steps {
    gap: 18px;
  }
}
.bk__rail {
  display: block;
  margin: 14px 0 32px;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.bk__rail > i {
  display: block;
  height: 100%;
  width: 33.33%;
  background: var(--accent-grad);
  transition: width 0.7s var(--ease);
}

/* ---------- Panneaux ---------- */
.bk__panel {
  display: none;
}
.bk__panel.is-active {
  display: block;
  animation: bkIn 0.55s var(--ease) both;
}
@keyframes bkIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
}
.bk__set {
  border: 0;
  margin-bottom: 28px;
}
.bk__legend {
  padding: 0;
  margin-bottom: 18px;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--smoke);
}

/* ---------- Cartes type d'événement ---------- */
/* 5 cartes : paliers explicites plutôt qu'auto-fit, pour ne jamais laisser
   de case vide — le fond clair de la grille transparaîtrait dans le trou. */
.bk__types {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.bk__types .bk__type:last-child {
  grid-column: span 2;
}
@media (min-width: 560px) {
  .bk__types {
    grid-template-columns: repeat(3, 1fr);
  }
  .bk__types .bk__type:nth-child(4) {
    grid-column: span 2;
  }
  .bk__types .bk__type:last-child {
    grid-column: span 1;
  }
}
@media (min-width: 900px) {
  .bk__types {
    grid-template-columns: repeat(5, 1fr);
  }
  .bk__types .bk__type:nth-child(4),
  .bk__types .bk__type:last-child {
    grid-column: span 1;
  }
}
.bk__type {
  position: relative;
  cursor: pointer;
  background: var(--ink-950);
}
.bk__type input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.bk__type-in {
  display: block;
  height: 100%;
  padding: 18px 16px;
  transition: background 0.4s var(--ease);
}
.bk__type-in b {
  display: block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--bone);
  transition: color 0.4s var(--ease);
}
/* description : phrase courante, pas un label système — donc pas de
   capitales espacées, qui la rendaient plus lourde que son propre titre */
.bk__type-in i {
  display: block;
  margin-top: 6px;
  font-style: normal;
  font-size: 12px;
  line-height: 1.45;
  letter-spacing: 0.01em;
  color: var(--smoke);
}
.bk__type:hover .bk__type-in {
  background: rgba(255, 255, 255, 0.03);
}
.bk__type input:checked + .bk__type-in {
  background: rgb(var(--gold-rgb) / 0.12);
}
.bk__type input:checked + .bk__type-in b {
  color: var(--gold);
}
.bk__type input:focus-visible + .bk__type-in {
  outline: 1px solid var(--gold);
  outline-offset: -1px;
}

/* ---------- Champs ---------- */
.bk__row {
  display: grid;
  gap: 20px;
  margin-bottom: 22px;
}
@media (min-width: 640px) {
  .bk__row {
    grid-template-columns: 1fr 1fr;
  }
}
.bk__field {
  min-width: 0;
}
.bk__label {
  display: block;
  margin-bottom: 9px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--smoke);
}
.bk__label span {
  color: var(--gold);
}
.bk__input,
.bk__select select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.02);
  color: var(--bone);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.bk__input::placeholder {
  color: var(--smoke);
  opacity: 0.5;
}
.bk__input:focus,
.bk__select select:focus {
  outline: none;
  border-color: var(--gold);
  background: rgb(var(--gold-rgb) / 0.05);
}
.bk__input--area {
  resize: vertical;
  min-height: 104px;
  line-height: 1.6;
}
.bk__input.is-bad,
.bk__select.is-bad select {
  border-color: #ff6b6b;
}
.bk__select {
  position: relative;
}
.bk__select select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 38px;
  cursor: pointer;
}
.bk__select::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  width: 7px;
  height: 7px;
  margin-top: -5px;
  border-right: 1px solid var(--smoke);
  border-bottom: 1px solid var(--smoke);
  transform: rotate(45deg);
  pointer-events: none;
}
.bk__select select option {
  background: var(--ink-850);
  color: var(--bone);
}
.bk__input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  opacity: 0.45;
  cursor: pointer;
}

/* ---------- Calendrier ---------- */
.bk__cal {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.015);
  padding: 18px;
}
.bk__cal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.bk__cal-month {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 3vw, 1.4rem);
  font-weight: 500;
  color: var(--gold);
  text-transform: capitalize;
}
.bk__cal-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
  background: transparent;
  color: var(--bone);
  cursor: pointer;
  transition: border-color 0.4s var(--ease), color 0.4s var(--ease);
}
.bk__cal-nav svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.bk__cal-nav:hover:not(:disabled) {
  border-color: var(--gold);
  color: var(--gold);
}
.bk__cal-nav:disabled {
  opacity: 0.22;
  cursor: not-allowed;
}
.bk__cal-dow,
.bk__cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}
.bk__cal-dow {
  margin-bottom: 8px;
}
.bk__cal-dow span {
  text-align: center;
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--smoke);
}
.bk__day {
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.06);
  color: var(--bone);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  cursor: pointer;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease),
    background 0.3s var(--ease);
}
.bk__day--pad {
  background: transparent;
  border-color: transparent;
  cursor: default;
  pointer-events: none;
}
.bk__day:hover:not(:disabled) {
  border-color: var(--gold);
  color: var(--gold);
}
.bk__day:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 1px;
}
/* un jour réservable est une tuile pleine, un jour fermé n'est qu'un
   chiffre nu : c'est le contraste plein/vide qui porte l'information */
.bk__day:disabled {
  cursor: not-allowed;
  color: rgba(255, 255, 255, 0.17);
  background: transparent;
  border-color: transparent;
}
.bk__day--taken {
  color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.025);
}
.bk__day--taken::after {
  content: "";
  position: absolute;
  left: 20%;
  right: 20%;
  top: 50%;
  height: 1px;
  background: rgb(var(--gold-rgb) / 0.55);
  transform: rotate(-20deg);
}
.bk__day--today {
  border-color: rgba(255, 255, 255, 0.28);
}
/* aujourd'hui n'est doré que s'il est réellement réservable */
.bk__day--today:not(:disabled) {
  border-color: rgb(var(--gold-rgb) / 0.5);
}
.bk__day.is-sel {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink-950);
  font-weight: 500;
}
.bk__legendlist {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  list-style: none;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--smoke);
}
.bk__legendlist li {
  display: flex;
  align-items: center;
  gap: 7px;
}
/* chaque pastille est une miniature de la case qu'elle décrit —
   avant, « Disponible » était un bloc blanc opaque qui ne correspondait
   à aucun jour réellement affiché dans la grille */
.bk__dot {
  position: relative;
  flex: 0 0 auto;
  width: 13px;
  height: 13px;
  border: 1px solid transparent;
}
.bk__dot--free {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.24);
}
.bk__dot--taken {
  background: rgba(255, 255, 255, 0.025);
  border-color: rgba(255, 255, 255, 0.1);
}
.bk__dot--taken::after {
  content: "";
  position: absolute;
  left: 1px;
  right: 1px;
  top: 50%;
  height: 1px;
  background: rgb(var(--gold-rgb) / 0.75);
  transform: rotate(-20deg);
}
.bk__dot--off {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.12);
}
.bk__picked {
  margin-top: 16px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--smoke);
}
.bk__picked strong {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: capitalize;
  color: var(--gold);
}

/* ---------- Récap ---------- */
.bk__recap {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  margin-bottom: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.bk__recap:empty {
  display: none;
}
.bk__chip {
  flex: 1 1 auto;
  padding: 12px 16px;
  background: var(--ink-950);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--smoke);
}
.bk__chip b {
  display: block;
  margin-top: 5px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: capitalize;
  color: var(--gold);
}

/* ---------- Case à cocher ---------- */
.bk__check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 22px;
  cursor: pointer;
}
.bk__check input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.bk__check-box {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.bk__check input:checked + .bk__check-box {
  border-color: var(--gold);
  background: var(--gold)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12.5l5.5 5.5L20 7'/%3E%3C/svg%3E")
    center / 11px no-repeat;
}
.bk__check input:focus-visible + .bk__check-box {
  outline: 1px solid var(--gold);
  outline-offset: 2px;
}
.bk__check.is-bad .bk__check-box {
  border-color: #ff6b6b;
}
.bk__check-txt {
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--smoke);
}

/* ---------- Honeypot ---------- */
.bk__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ---------- Erreurs ---------- */
.bk__err {
  margin-top: 8px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #ff8080;
}
.bk__err:empty {
  margin: 0;
}
.bk__err--form {
  margin-top: 16px;
  text-align: right;
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 12.5px;
}

/* ---------- Navigation ---------- */
.bk__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 32px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.bk__nav .btn {
  padding: 14px 26px;
  letter-spacing: 0.25em;
}
@media (max-width: 480px) {
  .bk__nav .btn {
    padding: 13px 18px;
    font-size: 11px;
    letter-spacing: 0.14em;
  }
}
.bk__sending {
  display: none;
  width: 12px;
  height: 12px;
  border: 1.5px solid currentColor;
  border-top-color: transparent;
  border-radius: 999px;
  animation: bkSpin 0.7s linear infinite;
}
@keyframes bkSpin {
  to {
    transform: rotate(360deg);
  }
}
.bk.is-sending #bkSubmit {
  pointer-events: none;
  opacity: 0.55;
}
.bk.is-sending .bk__sending {
  display: inline-block;
}

/* ---------- Succès ---------- */
.bk__done {
  text-align: center;
  padding: 36px 0 16px;
  animation: bkIn 0.6s var(--ease) both;
}
.bk__done-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 1px solid rgb(var(--gold-rgb) / 0.4);
  border-radius: 999px;
  background: rgb(var(--gold-rgb) / 0.08);
}
.bk__done-mark svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.bk__done-title {
  margin-top: 22px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.6rem, 4vw, 2.25rem);
  color: var(--bone);
}
.bk__done-text {
  margin: 14px auto 30px;
  max-width: 32rem;
  font-size: 14px;
  color: var(--smoke);
}

/* ---------- Contact direct sous le formulaire ---------- */
.booking__or {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--smoke);
}
.booking__actions {
  margin-top: 72px;
}

/* ---------- [hidden] : neutralise les display ci-dessus ---------- */
.bk__steps[hidden],
.bk__rail[hidden],
.bk__done[hidden] {
  display: none;
}
