﻿*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; cursor: none; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
}

/* ══════════════════════════════════════════
   BACKGROUND FIXE
══════════════════════════════════════════ */
.bg-fixed {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: url('../img/stage.webp') center center / cover, var(--color-bg);
  background-blend-mode: multiply;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

/* ══════════════════════════════════════════
   CURSEUR
══════════════════════════════════════════ */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 32px; height: 32px;
  border: 1.5px solid rgba(var(--rgb-warm),0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 999999;
  transform: translate(-50%, -50%);
  transition: width var(--transition-fast), height var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
}
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 4px; height: 4px;
  background: rgba(var(--rgb-warm),0.8);
  border-radius: 50%;
  pointer-events: none;
  z-index: 999999;
  transform: translate(-50%, -50%);
}
.cursor.is-hovering {
  width: 52px; height: 52px;
  border-color: rgba(var(--rgb-warm),1);
  background: rgba(var(--rgb-warm),0.06);
}
.cursor-dot.is-hovering {
  transform: translate(-50%, -50%) scale(0);
}

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9000;
  height: 68px;
  display: flex;
  align-items: center;
  padding: 0 48px;
  transition: background .4s ease, border-color .4s ease, backdrop-filter .4s ease;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(12,10,8,0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: rgba(var(--rgb-warm),0.08);
}
.navbar-logo {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-name {
  font-family: var(--font-serif);
  font-weight: var(--fw-black);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: var(--color-text);
  text-shadow: 0 0 6px rgba(var(--rgb-ivory),0.4), 0 0 18px rgba(var(--rgb-warm),0.15);
  line-height: 1;
}
.logo-sub strong { font-weight: var(--fw-black); }
.logo-sub {
  font-family: var(--font-sans);
  font-weight: var(--fw-light);
  font-size: 0.615rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-body);
  line-height: 1;
}
.navbar-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0 auto;
}
.navbar-links a {
  font-family: var(--font-sans);
  font-weight: var(--fw-regular);
  font-size: var(--fs-sm);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(var(--rgb-warm),0.55);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.navbar-links a:hover,
.navbar-links a.active {
  color: rgba(var(--rgb-ivory),0.95);
  font-weight: var(--fw-black);
  text-shadow: 0 0 10px rgba(var(--rgb-ivory),0.9), 0 0 30px rgba(var(--rgb-warm),0.55), 0 0 60px rgba(var(--rgb-warm),0.2);
}
.navbar-cta {
  font-family: var(--font-sans);
  font-weight: var(--fw-semi);
  font-size: var(--fs-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(var(--rgb-ivory),0.75);
  border: 1px solid rgba(var(--rgb-warm),0.3);
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  flex-shrink: 0;
  transition: color var(--transition-base), border-color var(--transition-base), background var(--transition-base);
}
.navbar-cta:hover {
  color: var(--color-text);
  border-color: rgba(var(--rgb-warm),0.7);
  background: rgba(var(--rgb-warm),0.05);
}
.navbar-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px; height: 32px;
  background: none;
  border: none;
  padding: 4px;
  margin-left: auto;
}
.hamburger-line {
  width: 100%;
  height: 1px;
  background: rgba(var(--rgb-warm),0.7);
  transition: transform .35s ease, opacity .35s ease, width .35s ease;
  transform-origin: center;
}
.navbar-hamburger.open .hamburger-line:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.navbar-hamburger.open .hamburger-line:nth-child(2) { opacity: 0; width: 0; }
.navbar-hamburger.open .hamburger-line:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Overlay mobile */
.navbar-overlay {
  position: fixed;
  inset: 0;
  z-index: 8999;
  background: rgba(10,8,6,0.97);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease;
}
.navbar-overlay.open { opacity: 1; pointer-events: all; }
.overlay-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 48px;
}
.overlay-links a {
  font-family: var(--font-serif);
  font-weight: var(--fw-bold);
  font-size: 2rem;
  color: rgba(var(--rgb-ivory),0.75);
  text-decoration: none;
  letter-spacing: 0.04em;
  padding: 10px 0;
  transition: color var(--transition-fast);
  display: block;
}
.overlay-links a:hover { color: var(--color-text); }
.overlay-divider {
  width: 40px; height: 1px;
  background: rgba(var(--rgb-warm),0.2);
  margin-bottom: 32px;
}
.overlay-social {
  display: flex;
  gap: 14px;
  margin-bottom: 32px;
}
.overlay-social a,
.overlay-social .soon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid rgba(var(--rgb-warm),0.18);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: border-color var(--transition-fast), background var(--transition-fast);
  position: relative;
}
.overlay-social a:hover { border-color: rgba(var(--rgb-warm),0.5); background: rgba(var(--rgb-warm),0.05); }
.overlay-social svg { width: 16px; height: 16px; fill: rgba(var(--rgb-warm),0.5); transition: fill var(--transition-fast); }
.overlay-social a:hover svg { fill: rgba(var(--rgb-warm),0.9); }
.overlay-social .soon { border-color: rgba(var(--rgb-warm),0.08); }
.overlay-social .soon svg { fill: rgba(var(--rgb-warm),0.2); }
.overlay-social .soon::after {
  content: 'Prochainement';
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(20,16,12,0.95);
  border: 1px solid rgba(var(--rgb-warm),0.15);
  color: rgba(var(--rgb-warm),0.6);
  font-family: var(--font-sans);
  font-weight: var(--fw-regular);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}
.overlay-social .soon:hover::after { opacity: 1; }
.overlay-cta {
  font-family: var(--font-sans);
  font-weight: var(--fw-semi);
  font-size: var(--fs-sm);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(var(--rgb-ivory),0.75);
  border: 1px solid rgba(var(--rgb-warm),0.3);
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: color var(--transition-base), border-color var(--transition-base);
}
.overlay-cta:hover { color: var(--color-text); border-color: rgba(var(--rgb-warm),0.7); }
.overlay-logo {
  position: absolute;
  bottom: 40px;
  left: 0; right: 0;
  text-align: center;
}
.overlay-logo-name {
  font-family: var(--font-serif);
  font-weight: var(--fw-black);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: rgba(var(--rgb-ivory),0.25);
}
.overlay-logo-sub {
  font-family: var(--font-sans);
  font-weight: var(--fw-thin);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(var(--rgb-warm),0.15);
  display: block;
  margin-top: 4px;
}

/* ══════════════════════════════════════════
   SECTION HEADER
══════════════════════════════════════════ */
#header {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  perspective: 1000px;
  perspective-origin: 50% 50%;
}

/* Symboles ESP */
.esp {
  position: absolute;
  pointer-events: none;
  opacity: calc(0.5 * var(--show-esp));
}
.esp svg { display: block; }
.esp-1 { animation: drift1 38s ease-in-out infinite alternate; animation-delay: 0s; }
.esp-2 { animation: drift2 44s ease-in-out infinite alternate; animation-delay: -18s; }
.esp-3 { animation: drift3 31s ease-in-out infinite alternate; animation-delay: -8s; }
.esp-4 { animation: drift4 50s ease-in-out infinite alternate; animation-delay: -35s; }
.esp-5 { animation: drift5 36s ease-in-out infinite alternate; animation-delay: -22s; }
@keyframes drift1 { 0% { transform: translate(2vw,  2vh);  } 100% { transform: translate(78vw, 82vh); } }
@keyframes drift2 { 0% { transform: translate(80vw, 3vh);  } 100% { transform: translate(5vw,  78vh); } }
@keyframes drift3 { 0% { transform: translate(40vw, 85vh); } 100% { transform: translate(88vw,  5vh); } }
@keyframes drift4 { 0% { transform: translate(85vw, 75vh); } 100% { transform: translate(2vw,   5vh); } }
@keyframes drift5 { 0% { transform: translate(3vw,  50vh); } 100% { transform: translate(90vw, 45vh); } }

/* Texte central */
.hero {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
  pointer-events: none;
  width: 600px;
}
.hero-text-wrap { position: relative; min-height: 7rem; }
.hero-title {
  font-family: var(--font-serif);
  font-weight: var(--fw-black);
  font-size: 2rem;
  line-height: 1.25;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-shadow: 0 0 6px rgba(var(--rgb-ivory),0.75), 0 0 18px rgba(var(--rgb-warm),0.35), 0 0 45px rgba(200,190,170,0.15);
  animation: titleCycle 18s linear infinite;
  will-change: opacity;
}
.hero-reveal {
  position: absolute;
  top: 0; left: 0; width: 100%;
  opacity: 0;
  animation: revealCycle 18s linear infinite;
  will-change: opacity;
  pointer-events: none;
}
.hero-reveal .scroll-hint { pointer-events: all; }
.hero-bienvenue {
  font-family: var(--font-sans);
  font-weight: var(--fw-regular);
  font-size: 0.75rem;
  letter-spacing: 0.45em;
  color: rgba(var(--rgb-warm),0.6);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.hero-cabinet {
  font-family: var(--font-serif);
  font-weight: var(--fw-black);
  font-size: 2rem;
  line-height: 1.25;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-shadow: 0 0 6px rgba(var(--rgb-ivory),0.75), 0 0 18px rgba(var(--rgb-warm),0.35), 0 0 45px rgba(200,190,170,0.15);
}
.scroll-hint {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(var(--rgb-warm),0.5);
  text-decoration: none;
  pointer-events: all;
}
.scroll-hint span {
  font-family: var(--font-sans);
  font-weight: var(--fw-regular);
  font-size: var(--fs-xs);
  letter-spacing: 0.35em;
  text-transform: uppercase;
}
.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 1.5px solid rgba(var(--rgb-warm),0.5);
  border-bottom: 1.5px solid rgba(var(--rgb-warm),0.5);
  transform: rotate(45deg);
  animation: scrollBounce 1.6s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.6; }
  50%       { transform: rotate(45deg) translateY(5px); opacity: 1; }
}
.hero-sub {
  font-family: var(--font-sans);
  font-weight: var(--fw-regular);
  font-size: 0.75rem;
  letter-spacing: 0.45em;
  color: var(--color-text-muted);
  margin-top: 1.4rem;
}
@keyframes titleCycle {
  0%  { opacity: 1; } 30% { opacity: 1; } 44% { opacity: 0; } 86% { opacity: 0; } 100% { opacity: 1; }
}
@keyframes revealCycle {
  0%  { opacity: 0; } 50% { opacity: 0; } 62% { opacity: 1; } 72% { opacity: 1; } 86% { opacity: 0; } 100% { opacity: 0; }
}

/* Liquid Glass */
.liquidGlass-wrapper {
  position: relative;
  display: flex;
  overflow: hidden;
  box-shadow: 0 6px 6px rgba(0,0,0,0.2), 0 0 20px rgba(0,0,0,0.1);
}
.liquidGlass-effect {
  position: absolute;
  z-index: 0;
  inset: 0;
  backdrop-filter: blur(3px);
  filter: url(#glass-distortion);
  overflow: hidden;
  isolation: isolate;
}
.liquidGlass-tint { z-index: 1; position: absolute; inset: 0; background: rgba(255,255,255,0.25); }
.liquidGlass-shine {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  box-shadow: inset 2px 2px 1px 0 rgba(255,255,255,0.5), inset -1px -1px 1px 1px rgba(255,255,255,0.5);
}

/* Cartes */
.card-scene {
  position: absolute;
  animation: lgc-float 20s linear infinite;
}
.card-shadow {
  position: absolute;
  width: 260px; height: 260px;
  border-radius: var(--radius-card);
  background: rgba(0,0,0,0.3);
  filter: blur(36px);
  top: 60px;
  animation: lgc-shadow 20s linear infinite;
  pointer-events: none;
}
.lg-card {
  width: 260px; height: 260px;
  border-radius: var(--radius-card);
  flex-direction: column;
  position: relative;
}
.lg-card, .lg-card > div { border-radius: var(--radius-card); }
.lg-card .liquidGlass-effect { inset: -40px; }
.lg-card .liquidGlass-tint {
  background: linear-gradient(135deg, rgba(200,235,228,0.07) 0%, rgba(180,220,215,0.04) 50%, rgba(210,238,232,0.06) 100%);
}
.lg-card .liquidGlass-shine {
  box-shadow:
    inset 0 0 0 0.75px rgba(140,210,200,0.55),
    inset 2.5px 2.5px 0 0 rgba(255,255,255,0.92),
    inset 1px 1px 10px 0 rgba(255,255,255,0.35),
    inset -1.5px -1.5px 0 0 rgba(120,195,185,0.4),
    inset -1px -1px 6px 0 rgba(160,215,205,0.2);
}
.liquidGlass-reflection {
  position: absolute;
  inset: 0; z-index: 2;
  border-radius: inherit;
  background: linear-gradient(118deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.07) 30%, transparent 55%, rgba(160,220,210,0.04) 100%);
  pointer-events: none;
}
.fog-overlay {
  position: absolute;
  inset: 0; z-index: 5;
  border-radius: var(--radius-card);
  overflow: hidden;
  pointer-events: none;
}
.fog-overlay svg { position: absolute; inset: 0; width: 100%; height: 100%; }

/* Positions des cartes */
.card-hand       { left: calc(50vw - 130px);  top: calc(50vh - 410px); animation-delay: 0s;   }
.card-scorpion   { left: calc(50vw + 136px);  top: calc(50vh - 217px); animation-delay: -6s;  }
.card-brain      { left: calc(50vw + 35px);   top: calc(50vh + 96px);  animation-delay: -11s; }
.card-hook       { left: calc(50vw - 295px);  top: calc(50vh + 96px);  animation-delay: -4s;  }
.card-chandelier { left: calc(50vw - 396px);  top: calc(50vh - 217px); animation-delay: -15s; }
.card-brain      .card-shadow { animation-delay: -11s; }
.card-hook       .card-shadow { animation-delay: -4s;  }
.card-scorpion   .card-shadow { animation-delay: -6s;  }
.card-chandelier .card-shadow { animation-delay: -15s; }

@keyframes lgc-float {
  0%   { transform: rotateX(18deg) rotateY(-14deg) rotateZ(5deg)   translateZ(45px) translateY(0px);   }
  8%   { transform: rotateX(14deg) rotateY(-6deg)  rotateZ(2deg)   translateZ(52px) translateY(-12px); }
  18%  { transform: rotateX(8deg)  rotateY(6deg)   rotateZ(-3deg)  translateZ(62px) translateY(-28px); }
  30%  { transform: rotateX(4deg)  rotateY(16deg)  rotateZ(-8deg)  translateZ(72px) translateY(-42px); }
  42%  { transform: rotateX(10deg) rotateY(22deg)  rotateZ(-12deg) translateZ(68px) translateY(-38px); }
  54%  { transform: rotateX(20deg) rotateY(18deg)  rotateZ(-8deg)  translateZ(58px) translateY(-22px); }
  65%  { transform: rotateX(26deg) rotateY(8deg)   rotateZ(2deg)   translateZ(50px) translateY(-10px); }
  76%  { transform: rotateX(22deg) rotateY(-4deg)  rotateZ(8deg)   translateZ(44px) translateY(-4px);  }
  88%  { transform: rotateX(20deg) rotateY(-10deg) rotateZ(6deg)   translateZ(46px) translateY(-2px);  }
  100% { transform: rotateX(18deg) rotateY(-14deg) rotateZ(5deg)   translateZ(45px) translateY(0px);   }
}
@keyframes lgc-shadow {
  0%   { opacity: 0.45; transform: scaleX(0.84) scaleY(0.34) translateY(0px);  }
  30%  { opacity: 0.22; transform: scaleX(0.72) scaleY(0.22) translateY(18px); }
  65%  { opacity: 0.42; transform: scaleX(0.83) scaleY(0.33) translateY(3px);  }
  100% { opacity: 0.45; transform: scaleX(0.84) scaleY(0.34) translateY(0px);  }
}

#cards-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  will-change: transform;
  opacity: var(--show-cards);
}

/* ══════════════════════════════════════════
   SECTION PRÉSENTATION
══════════════════════════════════════════ */
#presentation {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-bottom: 80px;
}
#presentation::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 140px;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
  pointer-events: none;
}
.section-eyebrow {
  font-family: var(--font-sans);
  font-weight: var(--fw-regular);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(var(--rgb-warm),0.6);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-serif);
  font-weight: var(--fw-black);
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text);
  text-shadow: 0 0 6px rgba(var(--rgb-ivory),0.6), 0 0 20px rgba(var(--rgb-warm),0.25);
  margin-bottom: 56px;
}
.universes {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
}
.universe {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 280px;
}
.universe-name {
  font-family: var(--font-serif);
  font-weight: var(--fw-black);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(var(--rgb-ivory),0.92);
  margin-top: 22px;
  margin-bottom: 10px;
}
.universe-desc {
  font-family: var(--font-sans);
  font-weight: var(--fw-regular);
  font-size: var(--fs-md);
  color: var(--color-text-secondary);
  text-align: center;
  max-width: 200px;
  line-height: 1.75;
}
.door-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.door-img {
  display: block;
  height: 320px;
  width: auto;
  transition: filter .45s ease, transform .45s ease;
  mask-image: linear-gradient(to bottom, black 55%, transparent 98%), linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 55%, transparent 98%), linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-composite: intersect;
  -webkit-mask-composite: source-in;
  filter: grayscale(1) sepia(0.28) brightness(1.75) contrast(0.78) saturate(0.6);
}
.door-wrap:hover .door-img { transform: scale(1.03); }
.door-glow {
  position: absolute;
  bottom: 4px; left: 10%; right: 10%;
  height: 6px;
  background: var(--glow);
  filter: blur(8px);
  opacity: .25;
  transition: opacity .4s ease;
  border-radius: 50%;
  pointer-events: none;
}
.door-glow::after {
  content: '';
  position: absolute;
  bottom: -14px; left: -30%; right: -30%;
  height: 30px;
  background: var(--glow);
  filter: blur(18px);
  opacity: .18;
}
.door-wrap:hover .door-glow { opacity: .8; }

.u-mentalisme { --glow: rgba(var(--rgb-accent-mentalisme),0.9); }
.u-mentalisme .universe-name { text-shadow: 0 0 14px rgba(var(--rgb-accent-mentalisme),0.45); }
.u-mentalisme .door-wrap:hover .door-img {
  filter: grayscale(1) sepia(1) hue-rotate(var(--hue-mentalisme)) brightness(1.2) saturate(1.3) drop-shadow(0 0 22px rgba(var(--rgb-accent-mentalisme),0.6));
}
.u-illusion { --glow: rgba(var(--rgb-accent-illusion),0.9); }
.u-illusion .universe-name { text-shadow: 0 0 14px rgba(var(--rgb-accent-illusion),0.45); }
.u-illusion .door-img { height: 360px; }
.u-illusion .door-wrap:hover .door-img {
  filter: grayscale(1) brightness(0.75) sepia(0.6) hue-rotate(var(--hue-illusion)) saturate(3.5) contrast(1.2) drop-shadow(0 0 22px rgba(var(--rgb-accent-illusion),0.65));
}
.u-hypnose { --glow: rgba(var(--rgb-accent-hypnose),0.9); }
.u-hypnose .universe-name { text-shadow: 0 0 14px rgba(var(--rgb-accent-hypnose),0.45); }
.u-hypnose .door-wrap:hover .door-img {
  filter: grayscale(1) sepia(1) hue-rotate(var(--hue-hypnose)) brightness(1.4) saturate(2) drop-shadow(0 0 22px rgba(var(--rgb-accent-hypnose),0.6));
}

.skip-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(var(--rgb-warm),0.5);
  text-decoration: none;
  transition: color var(--transition-slow);
  z-index: 2;
}
.skip-hint:hover { color: rgba(var(--rgb-warm),0.85); }
.skip-hint span {
  font-family: var(--font-sans);
  font-weight: var(--fw-regular);
  font-size: var(--fs-xs);
  letter-spacing: 0.35em;
  text-transform: uppercase;
}
.skip-arrow {
  width: 20px; height: 20px;
  border-right: 1.5px solid rgba(var(--rgb-warm),0.5);
  border-bottom: 1.5px solid rgba(var(--rgb-warm),0.5);
  transform: rotate(45deg);
  animation: scrollBounce 1.6s ease-in-out infinite;
}
.skip-hint:hover .skip-arrow { border-color: rgba(var(--rgb-warm),0.85); }

/* ══════════════════════════════════════════
   SECTION MANIFESTE
══════════════════════════════════════════ */
#manifeste {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 80px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 80px;
}
.manifeste-left {
  flex: 0 0 380px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: sticky;
  top: 120px;
}
.manifeste-eyebrow {
  font-family: var(--font-sans);
  font-weight: var(--fw-regular);
  font-size: var(--fs-sm);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.manifeste-title {
  font-family: var(--font-serif);
  font-weight: var(--fw-black);
  font-size: 3.2rem;
  line-height: 1.1;
  color: var(--color-text);
  text-shadow: 0 0 6px rgba(var(--rgb-ivory),0.5), 0 0 24px rgba(var(--rgb-warm),0.2);
}
.manifeste-rule { width: 48px; height: 1px; background: rgba(var(--rgb-warm),0.3); }
.manifeste-name {
  font-family: var(--font-sans);
  font-weight: var(--fw-semi);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(var(--rgb-warm),0.55);
}
.manifeste-divider {
  width: 1px;
  align-self: stretch;
  background: linear-gradient(to bottom, transparent, rgba(var(--rgb-warm),0.2) 20%, rgba(var(--rgb-warm),0.2) 80%, transparent);
  flex-shrink: 0;
}
.manifeste-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.manifeste-pull {
  font-family: var(--font-serif);
  font-weight: var(--fw-bold);
  font-size: 1.35rem;
  line-height: 1.55;
  color: rgba(var(--rgb-ivory),0.92);
  text-shadow: 0 0 30px rgba(var(--rgb-warm),0.1);
}
.manifeste-body { display: flex; flex-direction: column; gap: 24px; }
.manifeste-body p {
  font-family: var(--font-sans);
  font-weight: var(--fw-light);
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(var(--rgb-warm),0.72);
}
.manifeste-body strong { font-weight: var(--fw-semi); color: rgba(var(--rgb-ivory),0.9); }
.disciplines { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.manifeste-notice {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  border-left: 1px solid rgba(var(--rgb-warm),0.2);
}
.notice-marker {
  font-family: var(--font-sans);
  font-weight: var(--fw-semi);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: rgba(var(--rgb-warm),0.4);
  padding-top: 3px;
  flex-shrink: 0;
}
.manifeste-notice p {
  font-family: var(--font-sans);
  font-weight: var(--fw-regular);
  font-size: 0.78rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
}
.discipline-tag {
  font-family: var(--font-sans);
  font-weight: var(--fw-regular);
  font-size: var(--fs-sm);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(var(--rgb-warm),0.5);
  border: 1px solid rgba(var(--rgb-warm),0.18);
  padding: 6px 16px;
  border-radius: var(--radius-sm);
}

/* ══════════════════════════════════════════
   SECTION FAQ
══════════════════════════════════════════ */
#faq {
  max-width: 820px;
  margin: 0 auto;
  padding: 120px 40px 100px;
}
.faq-header { margin-bottom: 64px; }
.faq-eyebrow {
  font-family: var(--font-sans);
  font-weight: var(--fw-regular);
  font-size: var(--fs-sm);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  display: block;
  margin-bottom: 14px;
}
.faq-title {
  font-family: var(--font-serif);
  font-weight: var(--fw-black);
  font-size: 2.6rem;
  line-height: 1.15;
  color: var(--color-text);
  text-shadow: 0 0 6px rgba(var(--rgb-ivory),0.5), 0 0 24px rgba(var(--rgb-warm),0.2);
}
.faq-list { list-style: none; display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid rgba(var(--rgb-warm),0.12); }
.faq-item:last-child { border-bottom: 1px solid rgba(var(--rgb-warm),0.12); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  text-align: left;
}
.faq-question h3,
.faq-question .faq-q-label {
  font-family: var(--font-serif);
  font-weight: var(--fw-bold);
  font-size: 1.05rem;
  line-height: 1.4;
  color: var(--color-text-secondary);
  transition: color var(--transition-base);
}
.faq-item.open .faq-question h3,
.faq-item.open .faq-question .faq-q-label,
.faq-question:hover h3,
.faq-question:hover .faq-q-label { color: var(--color-text); }
.faq-icon {
  flex-shrink: 0;
  width: 20px; height: 20px;
  position: relative;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: rgba(var(--rgb-warm),0.5);
  border-radius: 1px;
  transition: transform .35s ease, opacity .35s ease;
}
.faq-icon::before { width: 14px; height: 1px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq-icon::after  { width: 1px; height: 14px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq-item.open .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .38s cubic-bezier(.4,0,.2,1);
}
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-answer-inner { overflow: hidden; }
.faq-answer-inner p {
  font-family: var(--font-sans);
  font-weight: var(--fw-light);
  font-size: var(--fs-md);
  line-height: 1.85;
  color: var(--color-text-body);
  padding-bottom: 28px;
  max-width: 680px;
}
.faq-answer-inner strong { font-weight: var(--fw-semi); color: var(--color-text-secondary); }

/* ══════════════════════════════════════════
   SECTION PRESTATIONS
══════════════════════════════════════════ */
#prestations {
  max-width: 1100px;
  margin: 0 auto;
  padding: 120px 60px 100px;
}
.prestations-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 80px;
  gap: 40px;
}
.prestations-eyebrow {
  font-family: var(--font-sans);
  font-weight: var(--fw-regular);
  font-size: var(--fs-sm);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  display: block;
  margin-bottom: 14px;
}
.prestations-title {
  font-family: var(--font-serif);
  font-weight: var(--fw-black);
  font-size: 2.6rem;
  line-height: 1.15;
  color: var(--color-text);
  text-shadow: 0 0 6px rgba(var(--rgb-ivory),0.5), 0 0 24px rgba(var(--rgb-warm),0.2);
}
.prestations-intro {
  font-family: var(--font-sans);
  font-weight: var(--fw-light);
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(var(--rgb-warm),0.55);
  max-width: 300px;
  text-align: right;
  flex-shrink: 0;
}
.prestations-cols {
  display: grid;
  grid-template-columns: 56px 220px 1fr 200px;
  gap: 0 40px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(var(--rgb-warm),0.1);
}
.col-label {
  font-family: var(--font-sans);
  font-weight: var(--fw-regular);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-text-ghost);
}
.prestations-list { list-style: none; }
.prestation-item {
  display: grid;
  grid-template-columns: 56px 220px 1fr 200px;
  gap: 0 40px;
  align-items: stretch;
  padding: 36px 0;
  border-bottom: 1px solid rgba(var(--rgb-warm),0.08);
}
.prestation-item:hover .prestation-index { color: rgba(var(--rgb-ivory),0.18); }
.prestation-item:hover .prestation-name {
  color: var(--color-text);
  text-shadow: 0 0 6px rgba(var(--rgb-ivory),0.4), 0 0 20px rgba(var(--rgb-warm),0.12);
}
.prestation-index {
  font-family: var(--font-serif);
  font-weight: var(--fw-black);
  font-size: var(--fs-md);
  color: rgba(var(--rgb-ivory),0.07);
  padding-top: 4px;
  transition: color var(--transition-slow);
  letter-spacing: 0.05em;
}
.prestation-name {
  font-family: var(--font-serif);
  font-weight: var(--fw-bold);
  font-size: 1.2rem;
  line-height: 1.3;
  color: rgba(var(--rgb-ivory),0.82);
  transition: color var(--transition-slow), text-shadow var(--transition-slow);
}
.prestation-desc {
  font-family: var(--font-sans);
  font-weight: var(--fw-light);
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(var(--rgb-warm),0.55);
}
.prestation-aside {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
}
.prestation-tags { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }
.prestation-tag {
  font-family: var(--font-sans);
  font-weight: var(--fw-regular);
  font-size: var(--fs-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(var(--rgb-warm),0.35);
  border: 1px solid rgba(var(--rgb-warm),0.1);
  padding: 3px 10px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}
.prestation-cta {
  font-family: var(--font-sans);
  font-weight: var(--fw-semi);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(var(--rgb-ivory),0.75);
  border: 1px solid rgba(var(--rgb-warm),0.3);
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: color var(--transition-base), border-color var(--transition-base), background var(--transition-base);
  white-space: nowrap;
}
.prestation-cta:hover {
  color: var(--color-text);
  border-color: rgba(var(--rgb-warm),0.7);
  background: rgba(var(--rgb-warm),0.05);
}

/* ══════════════════════════════════════════
   SECTION FOOTER
══════════════════════════════════════════ */
#footer {
  position: relative;
  border-top: 1px solid rgba(var(--rgb-warm),0.06);
}
.footer-body {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 60px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  border-bottom: 1px solid rgba(var(--rgb-warm),0.1);
}
.footer-brand { display: flex; flex-direction: column; gap: 20px; }
.footer-brand-name {
  font-family: var(--font-serif);
  font-weight: var(--fw-black);
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text);
  text-shadow: 0 0 6px rgba(var(--rgb-ivory),0.5), 0 0 20px rgba(var(--rgb-warm),0.2);
  line-height: 1.2;
}
.footer-brand-sub {
  font-family: var(--font-sans);
  font-weight: var(--fw-light);
  font-size: 0.78rem;
  color: rgba(var(--rgb-warm),0.4);
  line-height: 1.7;
  max-width: 240px;
}
.footer-social { display: flex; gap: 16px; margin-top: 8px; }
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border: 1px solid rgba(var(--rgb-warm),0.18);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: border-color var(--transition-base), background var(--transition-base);
}
.footer-social a:hover { border-color: rgba(var(--rgb-warm),0.5); background: rgba(var(--rgb-warm),0.05); }
.footer-social svg { width: 15px; height: 15px; fill: rgba(var(--rgb-warm),0.5); transition: fill var(--transition-base); }
.footer-social a:hover svg { fill: rgba(var(--rgb-warm),0.9); }
.footer-social .soon {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  border: 1px solid rgba(var(--rgb-warm),0.08);
  border-radius: var(--radius-sm);
  position: relative;
}
.footer-social .soon svg { fill: rgba(var(--rgb-warm),0.2); }
.footer-social .soon::after {
  content: 'Prochainement';
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(30,28,24,0.95);
  border: 1px solid rgba(var(--rgb-warm),0.15);
  color: rgba(var(--rgb-warm),0.6);
  font-family: var(--font-sans);
  font-weight: var(--fw-regular);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}
.footer-social .soon:hover::after { opacity: 1; }
.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav-title {
  font-family: var(--font-sans);
  font-weight: var(--fw-semi);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(var(--rgb-warm),0.35);
  margin-bottom: 6px;
}
.footer-nav a {
  font-family: var(--font-sans);
  font-weight: var(--fw-light);
  font-size: 0.88rem;
  color: rgba(var(--rgb-warm),0.55);
  text-decoration: none;
  transition: color var(--transition-fast);
  line-height: 1;
}
.footer-nav a:hover { color: rgba(var(--rgb-ivory),0.9); }
.footer-contact { display: flex; flex-direction: column; gap: 20px; }
.footer-contact-title {
  font-family: var(--font-sans);
  font-weight: var(--fw-semi);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(var(--rgb-warm),0.35);
}
.footer-contact-text {
  font-family: var(--font-sans);
  font-weight: var(--fw-light);
  font-size: 0.85rem;
  line-height: 1.75;
  color: rgba(var(--rgb-warm),0.5);
}
.footer-cta {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: var(--fw-semi);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(var(--rgb-ivory),0.75);
  border: 1px solid rgba(var(--rgb-warm),0.3);
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: color var(--transition-base), border-color var(--transition-base), background var(--transition-base);
  align-self: flex-start;
}
.footer-cta:hover { color: var(--color-text); border-color: rgba(var(--rgb-warm),0.7); background: rgba(var(--rgb-warm),0.05); }
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-legal { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-legal a {
  font-family: var(--font-sans);
  font-weight: var(--fw-light);
  font-size: 0.72rem;
  color: rgba(var(--rgb-warm),0.28);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.footer-legal a:hover { color: rgba(var(--rgb-warm),0.6); }
.footer-copy {
  font-family: var(--font-sans);
  font-weight: var(--fw-light);
  font-size: 0.72rem;
  color: rgba(var(--rgb-warm),0.22);
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero { width: 90vw; }
  .hero-title, .hero-cabinet { font-size: 1.4rem; }

  .lg-card { width: 130px; height: 130px; border-radius: 1.25rem; }
  .lg-card > div { border-radius: 1.25rem; }
  .lg-card .liquidGlass-effect { inset: -20px; }
  .card-shadow { width: 130px; height: 130px; border-radius: 1.25rem; top: 30px; filter: blur(18px); }
  .card-hand       { left: calc(50vw - 65px);  top: calc(50vh - 340px); }
  .card-scorpion   { left: calc(50vw + 110px); top: calc(50vh - 200px); }
  .card-brain      { left: calc(50vw + 80px);  top: calc(50vh + 130px); }
  .card-hook       { left: calc(50vw - 210px); top: calc(50vh + 130px); }
  .card-chandelier { left: calc(50vw - 240px); top: calc(50vh - 200px); }

  .esp svg { width: 65px; height: 65px; }

  .navbar { padding: 0 24px; }
  .navbar-links, .navbar-cta { display: none; }
  .navbar-hamburger { display: flex; }
  .overlay-links a { font-size: 1.6rem; }

  .universes { flex-direction: column; align-items: center; gap: 48px; }
  .universe { width: auto; }
  #presentation { padding-bottom: 160px; }

  #manifeste {
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 24px;
    gap: 36px;
  }
  .manifeste-left { flex: none; width: 100%; position: static; }
  .manifeste-title { font-size: 2rem; }
  .manifeste-pull { font-size: 1.15rem; }
  .manifeste-body p { font-size: var(--fs-md); }
  .manifeste-divider { width: 48px; height: 1px; align-self: auto; background: linear-gradient(to right, rgba(var(--rgb-warm),0.2), transparent); }

  #faq { padding: 80px 24px; }
  .faq-title { font-size: 2rem; }
  .faq-question h3 { font-size: var(--fs-md); }
  .faq-question { padding: 22px 0; }

  #prestations { padding: 80px 24px; }
  .prestations-title { font-size: 2rem; }
  .prestations-header { flex-direction: column; align-items: flex-start; margin-bottom: 48px; }
  .prestations-intro { text-align: left; max-width: 100%; }
  .prestations-cols { display: none; }
  .prestation-item { grid-template-columns: 1fr; gap: 10px; padding: 24px 0; }
  .prestation-index { display: none; }
  .prestation-desc  { padding-left: 0; }
  .prestation-aside { padding-left: 0; flex-direction: column; align-items: flex-start; }
  .prestation-tags  { flex-direction: row; flex-wrap: wrap; }

  .footer-body { grid-template-columns: 1fr; padding: 48px 24px 40px; gap: 40px; }
  .footer-brand { flex-direction: column; }
  .footer-bottom { padding: 20px 24px; flex-direction: column; align-items: flex-start; gap: 12px; }

  /* Centrage de "Comprendre l'expérience" sur mobile */
  .skip-hint {
    left: 0;
    right: 0;
    transform: none;
    width: 100%;
    align-items: center;
  }

  /* Découvrir : remonter pour ne pas toucher CAMERON LYON */
  .scroll-hint { margin-top: 0.8rem; }
}

/* Curseur custom désactivé sur écrans tactiles */
@media (hover: none) {
  *, *::before, *::after { cursor: auto; }
  .cursor, .cursor-dot { display: none; }
}
