/* =========================================================================
   CHŒUR À CORPS – Feuille de style globale
   Univers : Cabaret de l'étrange
   Palette inspirée de l'affiche officielle
   ========================================================================= */

/* ---------- POLICES LOCALES ---------- */
@font-face {
  font-family: 'Forum';
  src: url('fonts/Forum-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Avant Garde';
  src: url('fonts/ITCAvantGardeStdXLt.otf') format('opentype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Avant Garde';
  src: url('fonts/ITCAvantGardeStdBk.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Avant Garde';
  src: url('fonts/ITCAvantGardeStdMd.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Avant Garde';
  src: url('fonts/ITCAvantGardeStdDemi.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Avant Garde';
  src: url('fonts/ITCAvantGardeStdBold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ---------- 1. VARIABLES ---------- */
:root {
  /* Couleurs – palette inspirée de l'affiche, ambiance moins sombre */
  --noir: #1a1015;             /* fond principal – noir tirant légèrement sur le bordeaux */
  --noir-doux: #221620;        /* fond secondaire (sections) */
  --noir-velours: #2a1a24;     /* fond chaud (cards, footer) */
  --noir-fond: #100a0e;        /* très foncé pour contrastes */

  --rose: #d6217a;             /* rose magenta vif (titre affiche) */
  --rose-clair: #ff5ea3;
  --rose-fonce: #9c1556;
  --rose-glow: rgba(214, 33, 122, 0.5);

  --or: #d4a356;               /* or chaud orangé (faisceau affiche) */
  --or-clair: #f4d390;
  --or-fonce: #8a6f3a;

  --bordeaux: #6b1828;         /* bordeaux velours (rideaux) */
  --bordeaux-fonce: #4a0f1c;
  --bordeaux-clair: #a02838;

  --blanc-casse: #f5ecdf;      /* blanc cassé chaud */
  --gris: #998a93;             /* gris légèrement rosé */
  --gris-fonce: #4a3a45;

  /* Typographie */
  --font-display: 'Forum', 'Cormorant Garamond', Georgia, serif;
  --font-cabaret: 'Avant Garde', 'Bebas Neue', sans-serif;
  --font-body: 'Avant Garde', 'Inter', system-ui, sans-serif;

  /* Tailles */
  --container: 1200px;
  --container-narrow: 900px;

  /* Transitions */
  --t-fast: 0.2s ease;
  --t-med: 0.4s ease;
  --t-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- 2. RESET & BASE ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  color: var(--blanc-casse);
  background: var(--noir);
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* Texture grain discrète sur tout le site */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

a { color: var(--rose-clair); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--rose); }

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

::selection { background: var(--or); color: var(--noir); }

/* ---------- 3. TYPOGRAPHIE ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  color: var(--blanc-casse);
}

.eyebrow {
  font-family: var(--font-cabaret);
  letter-spacing: 0.4em;
  font-size: 0.78rem;
  color: var(--rose);
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 1.2rem;
  text-shadow: 0 0 12px rgba(214, 33, 122, 0.4);
}

.eyebrow::before, .eyebrow::after {
  content: '–';
  margin: 0 0.6rem;
  color: var(--rose-fonce);
}

.h-display {
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: -0.005em;
}

.h-cabaret {
  font-family: var(--font-cabaret);
  font-style: normal;
  letter-spacing: 0.15em;
  font-weight: 400;
}

/* ---------- 4. CONTENEURS ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}
.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 2rem;
}

section { padding: 6rem 0; position: relative; }
section.compact { padding: 4rem 0; }

/* ---------- 5. ORNEMENTS ---------- */
.ornament-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin: 2rem 0;
}
.ornament-divider::before,
.ornament-divider::after {
  content: '';
  height: 1px;
  width: 80px;
  background: linear-gradient(90deg, transparent, var(--or-fonce), transparent);
}
.ornament-divider .diamond {
  width: 8px; height: 8px;
  background: var(--or);
  transform: rotate(45deg);
  box-shadow: 0 0 12px rgba(201, 169, 97, 0.4);
}

.section-number {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 9rem;
  color: var(--or);
  opacity: 0.06;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* ---------- 6. BOUTONS ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-cabaret);
  letter-spacing: 0.25em;
  font-size: 0.85rem;
  text-transform: uppercase;
  padding: 1.1rem 2.4rem;
  border: 1px solid var(--rose);
  color: var(--rose);
  background: transparent;
  cursor: pointer;
  transition: all var(--t-med);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 0 12px rgba(214, 33, 122, 0.15);
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--rose);
  transform: translateY(100%);
  transition: transform var(--t-med);
  z-index: -1;
}
.btn:hover { color: var(--blanc-casse); box-shadow: 0 0 25px rgba(214, 33, 122, 0.5); }
.btn:hover::before { transform: translateY(0); }

.btn-filled {
  background: var(--rose);
  color: var(--blanc-casse);
  box-shadow: 0 0 25px rgba(214, 33, 122, 0.35);
}
.btn-filled::before { background: var(--rose-clair); }
.btn-filled:hover { color: var(--blanc-casse); border-color: var(--rose-clair); box-shadow: 0 0 35px rgba(214, 33, 122, 0.6); }

.btn-or {
  border-color: var(--or);
  color: var(--or);
}
.btn-or::before { background: var(--or); }
.btn-or:hover { color: var(--noir); }

.btn-bordeaux {
  border-color: var(--bordeaux);
  color: var(--rose-clair);
}
.btn-bordeaux::before { background: var(--bordeaux); }

/* ---------- 7. NAVIGATION ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 0;
  background: rgba(26, 16, 21, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(214, 33, 122, 0.2);
  transition: all var(--t-med);
}
.nav.scrolled {
  padding: 0.6rem 0;
  background: rgba(26, 16, 21, 0.95);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--blanc-casse);
  letter-spacing: 0.02em;
  text-decoration: none;
  display: flex;
  align-items: center;
}
.nav-logo-img {
  height: 80px;
  width: auto;
  transition: height var(--t-med);
  display: block;
}
.nav.scrolled .nav-logo-img {
  height: 56px;
}
.nav-logo span {
  color: var(--or);
  font-style: normal;
  font-family: var(--font-cabaret);
  font-size: 0.85em;
  letter-spacing: 0.2em;
}
.nav-menu {
  display: flex;
  gap: 1.3rem;
  list-style: none;
  align-items: center;
  flex-wrap: nowrap;
}
.nav-menu a {
  color: var(--blanc-casse);
  font-family: var(--font-cabaret);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  position: relative;
  padding: 0.4rem 0;
  white-space: nowrap;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--rose);
  box-shadow: 0 0 8px rgba(214, 33, 122, 0.5);
  transition: width var(--t-med);
}
.nav-menu a:hover::after,
.nav-menu a.active::after { width: 100%; }
.nav-menu a.active { color: var(--rose-clair); }

.nav-cta {
  background: var(--rose);
  color: var(--blanc-casse) !important;
  padding: 0.7rem 1.4rem;
  border-radius: 0;
  box-shadow: 0 0 18px rgba(214, 33, 122, 0.5);
  text-shadow: none;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--rose-clair); box-shadow: 0 0 28px rgba(214, 33, 122, 0.7); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--or);
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--or);
  transition: all var(--t-fast);
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(85%, 380px);
    background: var(--noir-doux);
    border-left: 1px solid rgba(214, 33, 122, 0.25);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 5.5rem 2.5rem 2rem;
    gap: 1.2rem;
    transform: translateX(100%);
    transition: transform var(--t-slow);
    overflow-y: auto;
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-menu a {
    font-size: 1rem;
    letter-spacing: 0.2em;
  }
  .nav-menu .nav-cta {
    margin-top: 1rem;
    align-self: stretch;
    text-align: center;
  }
}

/* ---------- 8. FOOTER ---------- */
.footer {
  background: var(--noir-velours);
  border-top: 1px solid rgba(201, 169, 97, 0.2);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--or), transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer h4 {
  font-family: var(--font-cabaret);
  letter-spacing: 0.25em;
  font-size: 0.9rem;
  color: var(--or);
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 0.6rem; font-size: 0.95rem; }
.footer ul a { color: var(--blanc-casse); opacity: 0.8; }
.footer ul a:hover { color: var(--or); opacity: 1; }
.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--or-clair);
  margin-top: 1rem;
}
.footer-bottom {
  border-top: 1px solid rgba(201, 169, 97, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--gris);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-socials {
  display: flex;
  gap: 1.2rem;
}
.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid rgba(201, 169, 97, 0.3);
  color: var(--or);
  transition: all var(--t-fast);
}
.footer-socials a:hover {
  background: var(--or);
  color: var(--noir);
  border-color: var(--or);
}

@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { justify-content: center; text-align: center; }
}

/* ---------- 9. HERO (utilisé sur plusieurs pages) ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 0 4rem;
  background:
    radial-gradient(ellipse 70% 50% at center bottom, rgba(214, 33, 122, 0.18), transparent 60%),
    radial-gradient(ellipse 60% 40% at center top, rgba(212, 163, 86, 0.1), transparent 70%),
    linear-gradient(180deg, var(--noir-doux), var(--noir));
}
.hero-compact { min-height: 60vh; padding: 10rem 0 5rem; }

.hero-stage {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1000px;
  height: 60%;
  pointer-events: none;
  opacity: 0.35;
}
/* Faisceau lumineux derrière le titre */
.spotlight {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(214, 33, 122, 0.22), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 0.95;
  margin-bottom: 1.5rem;
  letter-spacing: -0.005em;
  color: var(--rose);
  text-shadow: 0 0 30px rgba(214, 33, 122, 0.5);
}
.hero-title .line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: rise 1.2s var(--t-slow) forwards;
}
.hero-title .line:nth-child(1) { animation-delay: 0.2s; }
.hero-title .line:nth-child(2) {
  animation-delay: 0.5s;
  color: var(--rose);
  font-style: italic;
  letter-spacing: 0.02em;
  font-size: 1em;
  text-shadow: 0 0 30px rgba(214, 33, 122, 0.5);
}

@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

.hero-subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--or-clair);
  opacity: 0;
  animation: rise 1.2s 0.9s var(--t-slow) forwards;
  margin-bottom: 2.5rem;
}

.hero-cta {
  opacity: 0;
  animation: rise 1.2s 1.2s var(--t-slow) forwards;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- 10. CURTAIN (rideau d'ouverture du site) ---------- */
.curtain {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  display: flex;
}
.curtain-left, .curtain-right {
  flex: 1;
  background: linear-gradient(180deg, var(--bordeaux-fonce), var(--bordeaux), var(--bordeaux-fonce));
  background-size: 100% 200%;
  position: relative;
  transition: transform 1.4s cubic-bezier(0.86, 0, 0.07, 1);
}
.curtain-left { transform: translateX(0); }
.curtain-right { transform: translateX(0); }
.curtain.open .curtain-left { transform: translateX(-101%); }
.curtain.open .curtain-right { transform: translateX(101%); }

/* Plis du rideau */
.curtain-left::after, .curtain-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    rgba(0, 0, 0, 0) 0,
    rgba(0, 0, 0, 0) 30px,
    rgba(0, 0, 0, 0.25) 40px,
    rgba(0, 0, 0, 0) 60px
  );
  opacity: 0.7;
}

/* ---------- 11. SCROLL INDICATOR ---------- */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-cabaret);
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  color: var(--or-fonce);
  opacity: 0;
  animation: fadeIn 1s 2s forwards;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.scroll-indicator::after {
  content: '';
  width: 1px; height: 30px;
  background: linear-gradient(180deg, var(--or-fonce), transparent);
  animation: scrollPulse 2s infinite;
}
@keyframes fadeIn { to { opacity: 1; } }
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.4); transform-origin: top; opacity: 0.3; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ---------- 12. UTILITIES ---------- */
.text-center { text-align: center; }
.text-gold { color: var(--or); }
.italic { font-style: italic; }

/* Apparition au scroll */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Pull quote */
.pullquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.4;
  color: var(--or-clair);
  text-align: center;
  max-width: 800px;
  margin: 3rem auto;
  position: relative;
  padding: 2rem 3rem;
}
.pullquote::before, .pullquote::after {
  content: '«';
  font-size: 3rem;
  color: var(--or);
  position: absolute;
  left: 0; top: 0;
  line-height: 1;
}
.pullquote::after {
  content: '»';
  left: auto; right: 0;
  top: auto; bottom: 0;
  align-self: end;
}

/* Badge de section */
.badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  border: 1px solid var(--or-fonce);
  font-family: var(--font-cabaret);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--or);
}

/* =========================================================================
   AMBIANCE MYSTÉRIEUSE – touches globales
   ========================================================================= */

/* Curseur personnalisé sur les éléments interactifs */
.btn, .nav-menu a, .nav-cta {
  cursor: pointer;
}

/* Vignette discrète sur les bords du site (effet projecteur) */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9997;
  background:
    radial-gradient(ellipse at center, transparent 50%, rgba(0, 0, 0, 0.2) 100%);
}

/* Ornement décoratif "œil mystérieux" qui apparaît parfois */
.mystery-eye {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: middle;
  opacity: 0.6;
}

/* Texte avec apparition lettre par lettre (pour les phrases-clés) */
.text-veiled {
  font-family: var(--font-display);
  font-style: italic;
  letter-spacing: 0.05em;
  position: relative;
  display: inline-block;
}
.text-veiled::after {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 50%;
  height: 1px;
  background: var(--or);
  transform: scaleX(0);
  transition: transform 0.8s ease;
}
.text-veiled:hover::after { transform: scaleX(1); }

/* Effet "flicker" léger sur certains titres (comme une bougie) */
@keyframes flicker {
  0%, 100% { opacity: 1; }
  43% { opacity: 1; }
  44% { opacity: 0.92; }
  45% { opacity: 1; }
  46% { opacity: 0.95; }
  47% { opacity: 1; }
}
.flicker {
  animation: flicker 8s infinite;
}

/* Bandeau mystère qui peut être ajouté */
.mystery-band {
  background: var(--noir-velours);
  padding: 3rem 0;
  border-top: 1px solid var(--or-fonce);
  border-bottom: 1px solid var(--or-fonce);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.mystery-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 60px,
      rgba(201, 169, 97, 0.03) 60px,
      rgba(201, 169, 97, 0.03) 61px
    );
}
.mystery-band-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  color: var(--or-clair);
  position: relative;
  z-index: 1;
}
.mystery-band-text::before,
.mystery-band-text::after {
  content: '⁂';
  color: var(--or);
  margin: 0 1.5rem;
  font-size: 0.7em;
  opacity: 0.7;
}

/* =========================================================================
   NOTES DE MUSIQUE FLOTTANTES – s'allument et s'éteignent
   ========================================================================= */
.floating-notes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}
.fnote {
  position: absolute;
  color: var(--rose);
  opacity: 0;
  font-family: 'Forum', serif;
  animation: note-pulse 6s infinite ease-in-out;
  text-shadow: 0 0 14px rgba(214, 33, 122, 0.6);
  user-select: none;
}
@keyframes note-pulse {
  0%, 100% { opacity: 0; transform: translateY(0) rotate(-5deg); }
  20% { opacity: 0.4; transform: translateY(-6px) rotate(-2deg); }
  50% { opacity: 0.8; transform: translateY(-10px) rotate(2deg); }
  80% { opacity: 0.3; transform: translateY(-15px) rotate(5deg); }
}

/* Variante pour fond plus discret */
.floating-notes.subtle .fnote {
  color: var(--or-fonce);
  text-shadow: 0 0 8px rgba(201, 169, 97, 0.3);
}
@keyframes note-pulse-subtle {
  0%, 100% { opacity: 0; }
  50% { opacity: 0.5; }
}
.floating-notes.subtle .fnote {
  animation-name: note-pulse-subtle;
}

/* =========================================================================
   EFFET VOILE – se lève au survol
   ========================================================================= */
.veiled {
  position: relative;
  overflow: hidden;
}
.veiled::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg,
      rgba(122, 31, 43, 0.3) 0%,
      rgba(10, 10, 10, 0.6) 50%,
      rgba(10, 10, 10, 0.85) 100%);
  pointer-events: none;
  transition: opacity 0.8s ease, transform 0.8s ease;
  z-index: 2;
}
.veiled:hover::after {
  opacity: 0;
  transform: translateY(-100%);
}
.veiled .veil-hint {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-cabaret);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--or);
  text-transform: uppercase;
  z-index: 3;
  opacity: 0.7;
  pointer-events: none;
  transition: opacity 0.4s ease;
  white-space: nowrap;
}
.veil-hint::before { content: '✦ '; }
.veil-hint::after { content: ' ✦'; }
.veiled:hover .veil-hint { opacity: 0; }

/* Variante pour les portraits choristes : voile par défaut + reveal au hover */
.ch-portrait.with-veil::before {
  content: '✦';
  position: absolute;
  bottom: 0.8rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--or);
  z-index: 4;
  font-size: 0.8rem;
  text-shadow: 0 0 8px rgba(0,0,0,0.8);
  pointer-events: none;
  opacity: 0.8;
  transition: opacity 0.4s ease;
}

/* Accessibilité – texte visible uniquement par lecteurs d'écran */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* =========================================================================
   MODE DARK / LIGHT — Switch entre les deux univers du Cabaret
   ========================================================================= */

/* Bouton de switch */
.mode-switch {
  position: fixed;
  top: 1.5rem;
  right: 5.5rem;
  z-index: 999;
  background: rgba(20, 12, 18, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(214, 33, 122, 0.4);
  color: var(--blanc-casse);
  padding: 0.6rem 1rem;
  font-family: var(--font-cabaret);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--t-fast);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 2px;
}
.mode-switch:hover {
  border-color: var(--rose);
  background: rgba(214, 33, 122, 0.2);
  box-shadow: 0 0 20px rgba(214, 33, 122, 0.4);
}
.mode-switch-icon {
  font-size: 0.9rem;
  transition: transform var(--t-med);
}
.mode-switch:hover .mode-switch-icon {
  transform: rotate(180deg);
}
.mode-switch-label {
  font-weight: 500;
}

/* En mobile, le bouton devient plus compact */
@media (max-width: 900px) {
  .mode-switch {
    top: 1rem;
    right: 5rem;
    padding: 0.5rem 0.8rem;
    font-size: 0.6rem;
  }
  .mode-switch-label { display: none; }
}

/* =========================================================================
   MODE DARK — Univers secret : noir & bordeaux (aucun rose)
   ========================================================================= */
body.mode-dark {
  /* Bordeaux profond remplace TOUT le rose */
  --rose: #6b1828;
  --rose-clair: #8a2033;
  --rose-fonce: #3d0d15;
  /* Noirs plus profonds */
  --noir: #000000;
  --noir-doux: #060306;
  --noir-velours: #030103;
  /* Or plus terne, plus discret */
  --or: #6d5a30;
  --or-clair: #8a7340;
  /* Blanc cassé légèrement plus froid */
  --blanc-casse: #d5c9b3;
}

/* Fond général plus profond */
body.mode-dark {
  background: #000000;
}

/* Nav très sombre */
body.mode-dark .nav {
  background: rgba(0, 0, 0, 0.9);
  border-bottom: 1px solid rgba(107, 24, 40, 0.25);
}
body.mode-dark .nav.scrolled {
  background: rgba(0, 0, 0, 0.97);
  border-bottom: 1px solid rgba(107, 24, 40, 0.35);
}

/* Textes accents : bordeaux au lieu de rose */
body.mode-dark .h-display em,
body.mode-dark .eyebrow,
body.mode-dark .hero-title-text,
body.mode-dark .hero-dates-text,
body.mode-dark .nav-menu a.active,
body.mode-dark .archive-link,
body.mode-dark .archive-year,
body.mode-dark .archive-img-label,
body.mode-dark .btn-filled,
body.mode-dark .nav-cta {
  color: #d5c9b3;
}

/* Boutons : bordeaux au lieu de rose */
body.mode-dark .btn-filled,
body.mode-dark .nav-cta,
body.mode-dark .cta-btn,
body.mode-dark .pdf-download-link,
body.mode-dark .btn-redirect,
body.mode-dark .construction-btn {
  background: #6b1828 !important;
  border-color: #8a2033 !important;
  color: #f0e6d8 !important;
  box-shadow: 0 0 25px rgba(107, 24, 40, 0.4) !important;
}
body.mode-dark .btn-filled:hover,
body.mode-dark .nav-cta:hover {
  background: #8a2033 !important;
  box-shadow: 0 8px 30px rgba(107, 24, 40, 0.6) !important;
}

/* Retirer TOUTES les ombres roses / halos roses */
body.mode-dark .h-display,
body.mode-dark .h-display em,
body.mode-dark .hero-title,
body.mode-dark .hero-title-text,
body.mode-dark .hero-dates-text,
body.mode-dark .eyebrow {
  text-shadow: 0 0 20px rgba(107, 24, 40, 0.35);
}

/* Bordures, filets : bordeaux terne */
body.mode-dark .filet,
body.mode-dark .ornament-divider,
body.mode-dark hr,
body.mode-dark .archive-card,
body.mode-dark .equipe-card,
body.mode-dark .offre-card,
body.mode-dark .support-item,
body.mode-dark .prev-creations li {
  border-color: rgba(107, 24, 40, 0.35) !important;
}

/* Backgrounds radiaux : retirer le rose */
body.mode-dark .hero-affiche,
body.mode-dark .cta-tournee,
body.mode-dark .cta-sponsoring,
body.mode-dark .hero {
  background:
    radial-gradient(ellipse 80% 60% at 70% 30%, rgba(107, 24, 40, 0.22), transparent 60%),
    radial-gradient(ellipse 70% 50% at 20% 80%, rgba(60, 15, 20, 0.15), transparent 60%),
    linear-gradient(135deg, #060306 0%, #000000 60%, #030103 100%) !important;
}

/* Spotlight rose → spotlight ambre chaud très discret */
body.mode-dark .spotlight {
  background: radial-gradient(ellipse at center, rgba(138, 115, 64, 0.08) 0%, transparent 60%);
}

/* Notes flottantes : bordeaux discret au lieu de rose */
body.mode-dark .fnote {
  color: rgba(138, 32, 51, 0.4) !important;
  text-shadow: 0 0 10px rgba(107, 24, 40, 0.3) !important;
}

/* Cadenas / éléments décoratifs roses → couleur or terne */
body.mode-dark .cadenas,
body.mode-dark .diamond {
  color: #8a7340 !important;
}

/* Le bouton switch lui-même en mode dark */
body.mode-dark .mode-switch {
  border-color: rgba(138, 115, 64, 0.4);
  color: #d5c9b3;
}
body.mode-dark .mode-switch:hover {
  border-color: #8a7340;
  background: rgba(107, 24, 40, 0.25);
  box-shadow: 0 0 15px rgba(107, 24, 40, 0.3);
}
body.mode-dark .mode-switch::after {
  border-color: rgba(107, 24, 40, 0.4);
  color: #d5c9b3;
}

/* Countdown / éléments dorés en mode dark : garder l'or (chaleureux) */
body.mode-dark .countdown,
body.mode-dark .construction-dates-label,
body.mode-dark .construction-dates-venue {
  color: #8a7340;
}

/* Transition entre les deux modes */
body {
  transition: background 0.6s ease;
}
body * {
  transition: color 0.4s ease, background-color 0.4s ease, border-color 0.4s ease;
}

/* Bascule d'affiche */
.affiche-swap {
  position: relative;
  cursor: pointer;
}
.affiche-swap img {
  transition: opacity 0.7s ease;
}
.affiche-dark-img {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

/* ROLLOVER : au survol de l'affiche, on montre la version dark */
.affiche-swap:hover .affiche-light-img,
.affiche-swap.affiche-tap-active .affiche-light-img { opacity: 0; }
.affiche-swap:hover .affiche-dark-img,
.affiche-swap.affiche-tap-active .affiche-dark-img { opacity: 1; }

/* En mode dark global, c'est l'inverse : hover révèle la light */
body.mode-dark .affiche-light-img { opacity: 0; }
body.mode-dark .affiche-dark-img { opacity: 1; }
body.mode-dark .affiche-swap:hover .affiche-light-img { opacity: 1; }
body.mode-dark .affiche-swap:hover .affiche-dark-img { opacity: 0; }

/* Petit indice visuel sur l'affiche (hint qui invite à survoler) */
.affiche-swap::after {
  content: '◐ Passer la souris pour découvrir…';
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #ffd6ec;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.75rem;
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(214, 33, 122, 0.4);
  border-radius: 2px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
  z-index: 10;
}
/* Le hint apparaît au chargement de la page pendant quelques secondes */
.affiche-swap.hint-visible::after {
  opacity: 1;
  transform: translateX(-50%) translateY(-4px);
}
/* Le hint disparaît quand on survole */
.affiche-swap:hover::after {
  opacity: 0 !important;
}
body.mode-dark .affiche-swap::after {
  content: '◐ Passer la souris pour revenir…';
}
@media (max-width: 700px) {
  .affiche-swap::after { display: none; }
}

/* Tooltip du bouton switch */
.mode-switch::after {
  content: 'Découvrir l\'autre monde…';
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  color: var(--rose-clair);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.75rem;
  text-transform: none;
  letter-spacing: 0.05em;
  padding: 0.5rem 0.9rem;
  border: 1px solid rgba(214, 33, 122, 0.3);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-fast);
}
.mode-switch:hover::after {
  opacity: 1;
}
body.mode-dark .mode-switch::after {
  content: 'Retour au monde apparent…';
}
@media (max-width: 900px) {
  .mode-switch::after { display: none; }
}

/* =========================================================================
   v28 — ANNONCE « DATES SUPPLÉMENTAIRES » + STATUTS COMPLET / NOUVEAU
   ========================================================================= */

/* ---------- Bandeau d'annonce ---------- */
.annonce-dates {
  position: relative;
  background: linear-gradient(90deg, rgba(107, 24, 40, 0.35), rgba(26, 16, 21, 0.9) 45%, rgba(107, 24, 40, 0.35));
  border-top: 1px solid rgba(212, 163, 86, 0.35);
  border-bottom: 1px solid rgba(212, 163, 86, 0.35);
  padding: 2.2rem 0;
  overflow: hidden;
}
.annonce-dates-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.2rem 2rem;
  text-align: center;
}
.annonce-pastille {
  display: inline-block;
  font-family: var(--font-cabaret);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--noir);
  background: var(--or);
  padding: 0.45rem 1rem;
  white-space: nowrap;
}
.annonce-dates-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.15rem, 2.4vw, 1.7rem);
  color: var(--blanc-casse);
  line-height: 1.5;
  margin: 0;
}
.annonce-dates-text strong {
  color: var(--or-clair);
  font-style: normal;
  font-weight: 400;
}
.annonce-dates-sub {
  width: 100%;
  font-family: var(--font-cabaret);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gris);
  margin: 0;
}

/* ---------- Étiquettes de statut (communes) ---------- */
.badge-complet,
.badge-nouveau {
  display: inline-block;
  font-family: var(--font-cabaret);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  white-space: nowrap;
  line-height: 1;
}
.badge-complet {
  color: var(--gris);
  border: 1px solid rgba(153, 138, 147, 0.4);
  background: rgba(0, 0, 0, 0.35);
}
.badge-nouveau {
  color: var(--noir);
  background: var(--or);
  border: 1px solid var(--or);
}

body.mode-dark .annonce-dates {
  background: linear-gradient(90deg, rgba(107, 24, 40, 0.45), #000000 45%, rgba(107, 24, 40, 0.45));
  border-top-color: rgba(138, 115, 64, 0.4);
  border-bottom-color: rgba(138, 115, 64, 0.4);
}
body.mode-dark .annonce-pastille,
body.mode-dark .badge-nouveau {
  background: #8a7340;
  border-color: #8a7340;
  color: #000000;
}
body.mode-dark .annonce-dates-text strong { color: #8a7340; }

@media (max-width: 700px) {
  .annonce-dates { padding: 1.8rem 0; }
  .annonce-dates-inner { gap: 0.9rem; }
}

/* =========================================================================
   v29 — « COMPLET » plus lisible : on affirme au lieu d'estomper
   ========================================================================= */
.badge-complet,
.bil-etat,
.tag-complet {
  color: #f5ecdf !important;
  background: #6b1828 !important;
  border-color: #6b1828 !important;
}
