/* ═══════════════════════════════════════════════
   Le CabaRé | Grignan — Styles
   Concept : Nuit de cabaret + braise + maquette
   ═══════════════════════════════════════════════ */

/* ── VARIABLES ── */
:root {
  --night: #0B0B14;
  --night-light: #12121f;
  --ember: #e69500;
  --ember-dark: #cc8400;
  --gold: #D4A04A;
  --gold-light: #e8c06a;
  --orange: #e69500;
  --orange-light: #ffb52e;
  --cream: #F5EDE0;
  --cream-dim: rgba(245, 237, 224, 0.6);
  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body: 'Inter', -apple-system, sans-serif;
  --nav-h: 64px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
body {
  font-family: var(--ff-body);
  background: var(--night);
  color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; transition: color .3s; }
a:hover { color: var(--gold-light); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── GRAIN OVERLAY (subtle, static PNG noise) ── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.04;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAAElBMVEUAAAAAAAAAAAAAAAAAAAAAAADgKxmiAAAABnRSTlMFChMYHSLoaCwAAAA3SURBVDjLY2AYBaNgGAMWKBg0GBQYGA5wMBxgYDjAwHCAgeEAA8MBBoYDDAwHkNgHGBhGwcADAFEeByFCijLRAAAAAElFTkSuQmCC");
  background-repeat: repeat;
  background-size: 48px 48px;
}

/* ── CONTAINER ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── TYPOGRAPHY ── */
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  margin-bottom: 1.5rem;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}
.section-title--left { text-align: left; }
.section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ember);
  margin-bottom: 0.75rem;
}
.section-label--center { text-align: center; }

/* ── "Ré" ACCENT (spotlight pulse) ── */
.re-accent {
  color: var(--ember);
  position: relative;
  display: inline-block;
}
.re-accent::after {
  content: '';
  position: absolute;
  inset: -4px -6px;
  border-radius: 4px;
  background: radial-gradient(ellipse, rgba(230, 149, 0, 0.25) 0%, transparent 70%);
  animation: reGlow 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes reGlow {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}
.re-accent--hero::after {
  background: radial-gradient(ellipse, rgba(230, 149, 0, 0.35) 0%, transparent 70%);
}

/* ── BTN ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all .35s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform .5s var(--ease-out);
}
.btn:hover::before { transform: translateX(100%); }
.btn--primary {
  background: var(--ember);
  color: #fff;
  border: 2px solid var(--ember);
}
.btn--primary:hover {
  background: var(--ember-dark);
  border-color: var(--ember-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(230, 149, 0, 0.3);
}
.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn--outline:hover {
  background: var(--gold);
  color: var(--night);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 160, 74, 0.2);
}
.btn--sm { padding: 10px 20px; font-size: 0.85rem; }

/* ═══════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background .4s, box-shadow .4s;
}
.nav--scrolled {
  background: rgba(11, 11, 20, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4), 0 1px 0 rgba(230, 149, 0, 0.12);
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: center;
}
.nav__logo-img {
  height: 48px;
  width: auto;
  border-radius: 6px;
  box-shadow: 0 2px 12px rgba(230, 149, 0, 0.15);
  transition: transform .3s var(--ease-out), box-shadow .3s;
}
.nav__logo-img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(230, 149, 0, 0.25);
}
.nav__logo:hover { opacity: 0.9; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__links a {
  color: var(--cream-dim);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color .3s;
}
.nav__links a:hover { color: var(--gold); }
.nav__social {
  display: flex;
  gap: 12px;
}
.nav__social a { color: var(--cream-dim); }
.nav__social a:hover { color: var(--gold); }
.nav__cta {
  background: var(--ember) !important;
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 5px;
  font-weight: 600 !important;
  transition: background .3s, transform .3s !important;
}
.nav__cta:hover {
  background: var(--ember-dark) !important;
  transform: translateY(-1px);
}

/* Mobile actions (CTA + burger) */
.nav__mobile-actions {
  display: none;
  align-items: center;
  gap: 12px;
}
.nav__mobile-cta {
  display: none;
  padding: 7px 16px;
  background: var(--ember);
  color: #fff !important;
  border-radius: 5px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background .3s;
}
.nav__mobile-cta:hover { background: var(--ember-dark); }

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: transform .3s, opacity .3s;
}
.nav__burger--open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger--open span:nth-child(2) { opacity: 0; }
.nav__burger--open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════════
   HERO — PARALLAX
   ═══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--night);
}

/* Couches parallax */
.hero__layer {
  position: absolute;
  inset: -60px;
  will-change: transform;
  pointer-events: none;
}
.hero__layer--bg {
  background:
    radial-gradient(ellipse at 20% 80%, rgba(230, 149, 0, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(212, 160, 74, 0.08) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 100%, rgba(230, 149, 0, 0.06) 0%, transparent 40%);
}
/* Photo fond */
.hero__layer--photo {
  inset: -40px;
}
.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(0.25) saturate(0.8) contrast(1.1);
}
/* Overlay cinématique chaud */
.hero__layer--photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 11, 20, 0.6) 0%, rgba(11, 11, 20, 0.1) 40%, rgba(11, 11, 20, 0.7) 100%),
    radial-gradient(ellipse at 50% 60%, rgba(230, 149, 0, 0.15) 0%, transparent 60%);
  mix-blend-mode: normal;
}

.hero__layer--glow {
  background:
    radial-gradient(circle at 50% 65%, rgba(230, 149, 0, 0.25) 0%, transparent 45%),
    radial-gradient(circle at 25% 80%, rgba(212, 160, 74, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 75% 30%, rgba(230, 149, 0, 0.1) 0%, transparent 35%),
    radial-gradient(circle at 50% 100%, rgba(230, 149, 0, 0.12) 0%, transparent 30%);
  animation: glowPulse 6s ease-in-out infinite alternate;
}
@keyframes glowPulse {
  0%   { opacity: 0.7; }
  100% { opacity: 1; }
}
.hero__layer--embers {
  inset: 0;
  overflow: hidden;
}

.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 24px;
  animation: heroFadeIn 1s .2s var(--ease-out) both;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(25px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero__sub {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(10px);
  animation: heroFadeUp .6s var(--ease-out) 0.1s forwards;
}
.hero__title {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
/* ── Hero letters drop animation ── */
.hero__letters {
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
  margin: 0 auto;
}
.hero__letter {
  height: clamp(50px, 10vw, 110px);
  width: auto;
  display: block;
  margin-left: clamp(-38px, -7vw, -20px);
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
  opacity: 0;
  transform: translateY(-80px) rotate(-8deg);
  animation: letterDrop 0.6s var(--ease-bounce) calc(0.3s + var(--i) * 0.12s) forwards;
}
.hero__letter:first-child {
  margin-left: 0;
}
@media (hover: hover) and (min-width: 769px) {
  .hero__letter {
    transition: transform .3s var(--ease-bounce), filter .3s;
    cursor: default;
  }
  .hero__letter:hover {
    transform: translateY(-30px) rotate(-10deg) scale(1.3);
    filter: drop-shadow(0 12px 40px rgba(230, 149, 0, 0.7)) brightness(1.3);
  }
}
.hero__letter--space {
  margin-left: clamp(-20px, -3vw, -6px);
}
.hero__letter--bar {
  height: clamp(6px, 1.2vw, 14px);
  margin: 0 clamp(-2px, -0.3vw, 0px);
  align-self: center;
}
@keyframes letterDrop {
  0% {
    opacity: 0;
    transform: translateY(-80px) rotate(-8deg);
  }
  60% {
    opacity: 1;
    transform: translateY(6px) rotate(1deg);
  }
  80% {
    transform: translateY(-3px) rotate(-0.5deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
  }
}
.hero__tagline {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--cream-dim);
  font-weight: 300;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(10px);
  animation: heroFadeUp .6s var(--ease-out) 2.1s forwards;
}
.hero__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(10px);
  animation: heroFadeUp .6s var(--ease-out) 2.4s forwards;
}
@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}
.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeInUp 1s 2s forwards;
}
@keyframes fadeInUp {
  to { opacity: 0.6; }
}

/* ═══════════════════════════════════════════════
   TRIAD — "En 10 secondes"
   ═══════════════════════════════════════════════ */
.triad {
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}
.triad__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 3rem;
}

/* Photos ambiance sous les 3 box */
.triad__photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 3rem;
}
.triad__photo {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  cursor: pointer;
}
.triad__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s var(--ease-out), filter .5s;
  filter: brightness(0.85) saturate(0.9);
}
.triad__photo:hover img {
  transform: scale(1.05);
  filter: brightness(1) saturate(1);
}
@media (max-width: 600px) {
  .triad__photos {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.triad__card {
  background: var(--night-light);
  border: 1px solid rgba(212, 160, 74, 0.1);
  border-radius: 12px;
  padding: 40px 28px;
  text-align: center;
  transition: transform .4s var(--ease-out), border-color .4s, box-shadow .4s;
}
.triad__card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 160, 74, 0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.triad__card--accent {
  border-color: rgba(230, 149, 0, 0.25);
  background: linear-gradient(160deg, var(--night-light) 0%, rgba(230, 149, 0, 0.06) 100%);
}
.triad__card--accent:hover { border-color: rgba(230, 149, 0, 0.45); }
.triad__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.5rem;
  color: var(--gold);
}
.triad__card--accent .triad__icon { color: var(--ember); }
.triad__icon svg { width: 100%; height: 100%; }
.triad__card h3 {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
.triad__card p {
  color: var(--cream-dim);
  font-size: 0.95rem;
}

/* ═══════════════════════════════════════════════
   ASYM GRID — Table & Bar
   ═══════════════════════════════════════════════ */
/* Section divider (warm orange line) */
.triad::after,
.table-section::after,
.bar-section::after,
.events-section::after,
.nuit-section::after,
.lere-section::after,
.maquette-section::after {
  content: '';
  display: block;
  width: 80px;
  height: 2px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.4;
}

.table-section,
.bar-section {
  padding: 100px 0;
  position: relative;
}
.bar-section {
  background: linear-gradient(180deg, var(--night) 0%, var(--night-light) 50%, var(--night) 100%);
}
.asym-grid {
  display: grid;
  grid-template-columns: 45% 1fr;
  gap: 60px;
  align-items: center;
}
.asym-grid--reverse {
  grid-template-columns: 1fr 45%;
}
.asym-grid--reverse .asym-grid__content { order: -1; }

.asym-grid__visual {
  position: relative;
}
.placeholder-img,
.real-img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  position: relative;
}
.real-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease-out);
}
.real-img:hover img {
  transform: scale(1.03);
}
.placeholder-img::after,
.real-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(212, 160, 74, 0.15);
  border-radius: 12px;
  pointer-events: none;
}
.asym-grid__content p {
  color: var(--cream-dim);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  max-width: 480px;
}
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 2rem;
}
.tag-list li {
  padding: 6px 16px;
  border: 1px solid rgba(212, 160, 74, 0.25);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════════════
   LA NUIT
   ═══════════════════════════════════════════════ */
.nuit-section {
  padding: 120px 0;
  position: relative;
  text-align: center;
  overflow: hidden;
}
.nuit-section__glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 149, 0, 0.1) 0%, transparent 60%);
  pointer-events: none;
  animation: pulseGlow 6s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%, 100% { opacity: 0.5; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.15); }
}
.nuit-section__intro {
  max-width: 600px;
  margin: 0 auto 3rem;
  color: var(--cream-dim);
  font-size: 1.05rem;
}

/* Affiches soirées */
.nuit-posters {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 700px;
  margin: 0 auto 48px;
}
.nuit-poster {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  transition: transform .4s var(--ease-out), box-shadow .4s;
  position: relative;
}
.nuit-poster:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 50px rgba(230, 149, 0, 0.2), 0 8px 24px rgba(230, 149, 0, 0.15);
}
.nuit-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Agenda */
.agenda {
  max-width: 100%;
  margin: 0 auto;
  background: linear-gradient(145deg, var(--night-light) 0%, rgba(230, 149, 0, 0.04) 100%);
  border: 1px solid rgba(230, 149, 0, 0.15);
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}
.agenda__title {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--orange);
  letter-spacing: 0.02em;
}
.agenda__grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.agenda__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  border-radius: 10px;
  background: rgba(255,255,255,0.02);
  border-left: 3px solid var(--orange);
  transition: background .3s, transform .3s, box-shadow .3s;
}
.agenda__item:hover {
  background: rgba(230, 149, 0, 0.06);
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.agenda__item--highlight { border-left-color: var(--ember); }
.agenda__date {
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  min-width: 85px;
}
.agenda__item--highlight .agenda__date { color: var(--ember); }
.agenda__desc {
  color: var(--cream-dim);
  font-size: 0.9rem;
}
.agenda__note {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--cream-dim);
}
.agenda__note a { color: var(--ember); font-weight: 500; }

/* Agenda series descriptions */
.agenda__series {
  margin-bottom: 1.5rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(230, 149, 0, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 4px 24px;
}
.agenda__series p {
  font-size: 0.82rem;
  color: var(--cream-dim);
  margin-bottom: 0;
  line-height: 1.5;
}
.agenda__series strong {
  color: var(--gold);
  font-weight: 600;
}

/* Event cards — rich layout with poster */
/* ── Carousel wrapper ── */
.carousel-wrap {
  position: relative;
  margin: 0 -36px;
  padding: 0 48px;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(212, 160, 74, 0.3);
  background: rgba(11, 11, 20, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--gold);
  font-size: 1.6rem;
  cursor: pointer;
  transition: background .25s, border-color .25s, opacity .25s;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.carousel-btn:hover {
  background: rgba(212, 160, 74, 0.15);
  border-color: var(--gold);
}
.carousel-btn--prev { left: 0px; }
.carousel-btn--next { right: 0px; }
.carousel-btn.is-hidden { opacity: 0; pointer-events: none; }

/* ── Horizontal scroll track ── */
.event-cards {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 8px 4px;
  scrollbar-width: none;
}
.event-cards::-webkit-scrollbar { display: none; }

/* ── Vertical card layout ── */
.event-card {
  display: flex;
  flex-direction: column;
  min-width: 220px;
  max-width: 220px;
  padding: 0;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212, 160, 74, 0.1);
  border-top: 3px solid var(--orange);
  transition: background .3s, transform .3s, box-shadow .3s;
  scroll-snap-align: start;
  flex-shrink: 0;
  overflow: hidden;
}
.event-card:hover {
  background: rgba(230, 149, 0, 0.07);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}
.event-card--highlight {
  border-top-color: var(--ember);
  background: rgba(230, 149, 0, 0.04);
}
.event-card__poster {
  width: 100%;
  height: 280px;
  overflow: hidden;
  flex-shrink: 0;
}
.event-card__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s var(--ease-out);
}
.event-card:hover .event-card__poster img {
  transform: scale(1.05);
}
.event-card__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px 16px;
}
.event-card__date {
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.event-card--highlight .event-card__date { color: var(--ember); }
.event-card__name {
  font-family: var(--ff-display);
  font-size: 1rem;
  color: var(--cream);
  font-weight: 600;
}
.event-card__artist {
  font-size: 0.85rem;
  color: var(--cream-dim);
}
.event-card__artist strong {
  color: var(--cream);
  font-weight: 500;
}
.event-card__meta {
  display: flex;
  gap: 10px;
  font-size: 0.72rem;
  color: rgba(245, 237, 224, 0.45);
  margin-top: 2px;
}
.event-card__detail {
  font-size: 0.75rem;
  color: var(--ember);
  font-style: italic;
  margin-top: 2px;
}

/* ── Responsive carousel ── */
@media (max-width: 768px) {
  .carousel-wrap {
    margin: 0 -16px;
    padding: 0 40px;
  }
}
@media (max-width: 480px) {
  .event-card {
    min-width: 180px;
    max-width: 180px;
  }
  .event-card__poster { height: 230px; }
  .event-card__info { padding: 10px 12px 14px; }
  .event-card__name { font-size: 0.9rem; }
  .carousel-btn { width: 36px; height: 36px; font-size: 1.3rem; }
  .carousel-wrap {
    margin: 0 -8px;
    padding: 0 32px;
  }
}

/* ═══════════════════════════════════════════════
   LA CARTE — iframe embed
   ═══════════════════════════════════════════════ */
.carte-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--night-light) 0%, var(--night) 100%);
}

/* ── Menu Card ── */
.menu-card {
  max-width: 700px;
  margin: 2.5rem auto 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(212, 160, 74, 0.2);
  background: var(--night-light);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(212, 160, 74, 0.08);
}
.menu-card__header {
  text-align: center;
  padding: 2.5rem 2rem 1.8rem;
  background: linear-gradient(135deg, rgba(212, 160, 74, 0.08) 0%, rgba(230, 149, 0, 0.04) 100%);
  border-bottom: 1px solid rgba(212, 160, 74, 0.12);
  position: relative;
}
.menu-card__header::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.menu-card__badge {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--night);
  background: var(--gold);
  padding: 4px 16px;
  border-radius: 20px;
  margin-bottom: 1rem;
}
.menu-card__title {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.menu-card__subtitle {
  font-size: 0.85rem;
  color: var(--cream-dim);
  font-style: italic;
}

/* ── Menu Body ── */
.menu-card__body {
  padding: 2rem 2.5rem 2.5rem;
}

/* ── Menu Item ── */
.menu-item {
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(245, 237, 224, 0.06);
}
.menu-item:last-of-type { border-bottom: none; }
.menu-item__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.4rem;
}
.menu-item__name {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--cream);
}
.menu-item__tag {
  color: var(--gold);
  font-weight: 700;
}
.menu-item__price {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ember);
  white-space: nowrap;
  flex-shrink: 0;
}
.menu-item__desc {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--cream-dim);
}

/* ── Menu Divider ── */
.menu-divider {
  height: 1px;
  margin: 0.5rem 0;
  background: linear-gradient(90deg, transparent, rgba(212, 160, 74, 0.25), transparent);
}

/* ── Extras ── */
.menu-extras__title {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
  margin-top: 0.5rem;
}
.menu-extras {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 2rem;
}
.menu-extra {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.85rem;
  color: var(--cream-dim);
  padding: 0.35rem 0;
}
.menu-extra__price {
  color: var(--ember);
  font-weight: 600;
  font-size: 0.9rem;
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .menu-card__body { padding: 1.5rem 1.2rem 2rem; }
  .menu-card__header { padding: 2rem 1.2rem 1.5rem; }
  .menu-card__title { font-size: 1.4rem; }
  .menu-extras { grid-template-columns: 1fr; }
  .menu-item__name { font-size: 1rem; }
  .menu-item__price { font-size: 1.1rem; }
}

/* ═══════════════════════════════════════════════
   DETAIL LIST — Food & Drinks details
   ═══════════════════════════════════════════════ */
.detail-list {
  margin: 1.5rem 0;
}
.detail-list__item {
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(212, 160, 74, 0.08);
}
.detail-list__item:last-child { border-bottom: none; }
.detail-list__heading {
  font-family: var(--ff-display);
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.detail-list__item p {
  color: var(--cream-dim);
  font-size: 0.92rem;
  line-height: 1.5;
}

/* Alcohol legal warning */
.alcool-warning {
  font-size: 0.75rem;
  font-style: italic;
  color: rgba(245, 237, 224, 0.35);
  margin-top: 1rem;
}

/* ═══════════════════════════════════════════════
   EVENTS — Privatisation & Entreprise
   ═══════════════════════════════════════════════ */
.events-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.events-banner {
  background: linear-gradient(145deg, var(--night-light) 0%, rgba(230, 149, 0, 0.04) 100%);
  border: 1px solid rgba(230, 149, 0, 0.15);
  border-radius: 16px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}
.events-banner__icon {
  opacity: 0.12;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .events-banner {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }
  .events-banner__icon { display: none; }
}

/* ═══════════════════════════════════════════════
   EVENT MODAL
   ═══════════════════════════════════════════════ */
.event-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s var(--ease-out);
}
.event-modal--visible {
  opacity: 1;
  pointer-events: auto;
}
.event-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.event-modal__content {
  position: relative;
  max-width: 720px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  background: linear-gradient(160deg, var(--night-light) 0%, rgba(230, 149, 0, 0.05) 100%);
  border: 1px solid rgba(230, 149, 0, 0.2);
  border-radius: 20px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
  transform: translateY(30px) scale(0.95);
  transition: transform .4s var(--ease-out);
}
.event-modal--visible .event-modal__content {
  transform: translateY(0) scale(1);
}
.event-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255,255,255,0.08);
  border: none;
  color: var(--cream);
  font-size: 1.6rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: background .2s;
}
.event-modal__close:hover { background: rgba(255,255,255,0.15); }
.event-modal__layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 0;
}
.event-modal__img-wrap {
  border-radius: 20px 0 0 20px;
  overflow: hidden;
  background: var(--night);
}
.event-modal__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 340px;
}
.event-modal__img-wrap {
  cursor: zoom-in;
  position: relative;
}
.event-modal__zoom-hint {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.55);
  color: var(--cream);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .25s;
  pointer-events: none;
}
.event-modal__img-wrap:hover .event-modal__zoom-hint {
  opacity: 1;
}
.event-modal__details {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.event-modal__date {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ember);
}
.event-modal__name {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  color: var(--cream);
  margin: 0;
}
.event-modal__artist {
  font-size: 1rem;
  color: var(--gold);
  font-weight: 500;
}
.event-modal__meta {
  display: flex;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--cream-dim);
  padding: 8px 0;
  border-top: 1px solid rgba(230, 149, 0, 0.1);
  border-bottom: 1px solid rgba(230, 149, 0, 0.1);
}
.event-modal__desc {
  font-size: 0.92rem;
  color: var(--cream-dim);
  line-height: 1.6;
  margin: 8px 0 16px;
}
.event-card { cursor: pointer; }
@media (max-width: 600px) {
  .event-modal__layout {
    grid-template-columns: 1fr;
  }
  .event-modal__img-wrap {
    border-radius: 20px 20px 0 0;
    max-height: 300px;
  }
  .event-modal__details { padding: 24px 20px; }
  .event-modal__name { font-size: 1.25rem; }
}

/* Footer alcohol mention */
.footer__alcool {
  font-size: 0.7rem;
  color: rgba(245, 237, 224, 0.25);
  font-style: italic;
  text-align: center;
  margin-top: 8px;
}

/* ═══════════════════════════════════════════════
   LE RÉ — Timeline
   ═══════════════════════════════════════════════ */
.lere-section {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--night) 0%, var(--night-light) 100%);
  overflow: hidden;
}
.timeline {
  position: relative;
  margin-top: 3rem;
  padding-left: 40px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--ember));
  border-radius: 2px;
}
.timeline__item {
  position: relative;
  padding: 0 0 48px 32px;
}
.timeline__item:last-child { padding-bottom: 0; }
.timeline__item::before {
  content: '';
  position: absolute;
  left: -34px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--night);
  box-shadow: 0 0 0 2px var(--gold);
}
.timeline__item--highlight::before {
  background: var(--ember);
  box-shadow: 0 0 0 2px var(--ember), 0 0 20px rgba(230, 149, 0, 0.4);
}
.timeline__year {
  display: inline-block;
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.timeline__item--highlight .timeline__year { color: var(--ember); }
.timeline__content p {
  color: var(--cream-dim);
  font-size: 0.95rem;
  line-height: 1.7;
}
.timeline__content strong { color: var(--cream); }

/* ═══════════════════════════════════════════════
   MODE MAQUETTE
   ═══════════════════════════════════════════════ */
.maquette-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.maquette-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.maquette-teaser__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.village-svg {
  width: 100%;
  max-width: 420px;
  height: auto;
  filter: drop-shadow(0 4px 20px rgba(212, 160, 74, 0.15));
  opacity: 0.85;
  transition: opacity .4s, filter .4s;
}
.village-svg:hover {
  opacity: 1;
  filter: drop-shadow(0 6px 30px rgba(212, 160, 74, 0.25));
}
.maquette-teaser__text p {
  color: var(--cream-dim);
  font-size: 1rem;
  margin-bottom: 1rem;
}
.maquette-stats {
  display: flex;
  gap: 32px;
  margin: 1.2rem 0;
}
.maquette-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.maquette-stat .counter {
  font-size: 2rem;
  line-height: 1.1;
  display: block;
}
.maquette-stat small {
  font-size: 0.75rem;
  color: var(--cream-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 2px;
}
@media (max-width: 600px) {
  .maquette-stats { gap: 20px; justify-content: center; }
  .maquette-stat .counter { font-size: 1.5rem; }
}
.maquette-teaser__hint {
  color: var(--gold) !important;
  font-style: italic;
  font-size: 0.9rem !important;
}
.santon-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
}
.santon-float {
  width: 120px;
  animation: santonFloat 4s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(212, 160, 74, 0.3));
}
@keyframes santonFloat {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-15px) rotate(2deg); }
}

/* Easter egg santon caché */
.easter-egg-santon {
  position: absolute;
  bottom: 30px;
  right: 8%;
  opacity: 0.15;
  transition: opacity .3s, transform .3s;
  cursor: pointer;
  padding: 8px;
}
.easter-egg-santon:hover {
  opacity: 0.6;
  transform: scale(1.2) rotate(10deg);
}

/* Mode maquette actif */
body.maquette-mode {
  animation: shrinkPage 3s var(--ease-out) forwards;
}
@keyframes shrinkPage {
  0% { transform: scale(1); filter: none; }
  30% { transform: scale(0.6) perspective(600px) rotateX(5deg); filter: sepia(0.3) saturate(1.5); }
  70% { transform: scale(0.6) perspective(600px) rotateX(5deg); filter: sepia(0.3) saturate(1.5); }
  100% { transform: scale(1); filter: none; }
}

.maquette-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity .5s;
}
.maquette-overlay--visible {
  opacity: 1;
}
.maquette-overlay__msg {
  background: rgba(11, 11, 20, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid var(--gold);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  max-width: 400px;
  transform: scale(0.8);
  transition: transform .5s var(--ease-bounce);
}
.maquette-overlay--visible .maquette-overlay__msg {
  transform: scale(1);
}
.maquette-overlay__msg img {
  margin: 0 auto 16px;
  filter: drop-shadow(0 0 12px rgba(212, 160, 74, 0.5));
}
.maquette-overlay__msg p {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gold);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════
   AVIS
   ═══════════════════════════════════════════════ */
.avis-section {
  padding: 100px 0;
  background: var(--night-light);
}
/* Rating summary */
.avis-section__rating {
  text-align: center;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.avis-stars {
  font-size: 1.5rem;
  color: var(--orange);
  letter-spacing: 2px;
}
.avis-score {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--cream);
}
.avis-source {
  font-size: 0.85rem;
  color: var(--cream-dim);
}
.avis-card__stars {
  font-size: 0.95rem;
  color: var(--orange);
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
}
/* Carousel dots (hidden desktop, shown mobile) */
.avis-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.avis-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(245, 237, 224, 0.2);
  transition: background .3s, transform .3s;
}
.avis-dot--active {
  background: var(--orange);
  transform: scale(1.25);
}

/* Triad dots — hidden on desktop */
.triad__dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.triad-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(245, 237, 224, 0.2);
  transition: background .3s, transform .3s;
}
.triad-dot--active {
  background: var(--gold);
  transform: scale(1.25);
}

.avis-cta {
  display: block;
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--orange);
  transition: color .3s;
}
.avis-cta:hover { color: var(--orange-light); }

.avis-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 3rem;
}
.avis-card {
  background: var(--night);
  border: 1px solid rgba(230, 149, 0, 0.08);
  border-radius: 14px;
  padding: 32px;
  transition: transform .4s var(--ease-out), border-color .4s, box-shadow .4s;
}
.avis-card:hover {
  transform: translateY(-4px);
  border-color: rgba(230, 149, 0, 0.22);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
}
.avis-card p {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--cream);
  margin-bottom: 1rem;
}
.avis-card cite {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 500;
}

/* ═══════════════════════════════════════════════
   INFOS PRATIQUES
   ═══════════════════════════════════════════════ */
.infos-section {
  padding: 100px 0;
}
.infos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 3rem;
}
.infos-card {
  background: var(--night-light);
  border: 1px solid rgba(230, 149, 0, 0.1);
  border-radius: 16px;
  padding: 40px;
  transition: border-color .4s, box-shadow .4s;
}
.infos-card:hover {
  border-color: rgba(230, 149, 0, 0.25);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}
.infos-card h3 {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--orange);
}
.horaires-table {
  width: 100%;
  border-collapse: collapse;
}
.horaires-table td {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.9rem;
}
.horaires-table td:first-child {
  font-weight: 500;
  color: var(--cream);
}
.horaires-table td:last-child {
  text-align: right;
  color: var(--cream-dim);
}
.horaires-table .ferme {
  color: var(--ember);
  font-weight: 600;
}
.infos-card address {
  font-style: normal;
  color: var(--cream-dim);
  font-size: 0.95rem;
  line-height: 1.8;
}
.infos-phone {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream);
}
.infos-card a {
  color: var(--gold);
}
.infos-ctas {
  display: flex;
  gap: 12px;
  margin-top: 2rem;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════
   MAP
   ═══════════════════════════════════════════════ */
.map-section {
  position: relative;
}
.map-wrapper {
  position: relative;
  overflow: hidden;
}
.map-wrapper iframe {
  display: block;
  filter: grayscale(0.6) brightness(0.7) contrast(1.1);
  transition: filter .4s;
}
.map-wrapper:hover iframe {
  filter: grayscale(0.2) brightness(0.85);
}
.map-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 20px 32px;
  background: var(--night-light);
  color: var(--cream-dim);
  font-size: 0.9rem;
}

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
.footer {
  padding: 16px 0;
  border-top: 1px solid rgba(230, 149, 0, 0.12);
}
.footer__mini {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__copy {
  color: rgba(245, 237, 224, 0.35);
  font-size: 0.75rem;
}
.footer__mini-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer__mini-links a {
  color: rgba(245, 237, 224, 0.35);
  font-size: 0.75rem;
  transition: color .3s;
}
.footer__mini-links a:hover { color: var(--gold); }
.footer__sep {
  color: rgba(245, 237, 224, 0.2);
  font-size: 0.75rem;
}
.footer__social {
  display: flex;
  gap: 12px;
}
.footer__social a {
  color: rgba(245, 237, 224, 0.35);
  transition: color .3s;
}
.footer__social a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════
   OVERLAY RÉSERVATION
   ═══════════════════════════════════════════════ */
.overlay {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s, visibility .5s;
}
.overlay--visible {
  opacity: 1;
  visibility: visible;
}
.overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 11, 20, 0.92);
  backdrop-filter: blur(20px);
}
.overlay__content {
  position: relative;
  text-align: center;
  padding: 48px;
  transform: scale(0.9) translateY(20px);
  transition: transform .5s var(--ease-bounce);
}
.overlay--visible .overlay__content {
  transform: scale(1) translateY(0);
}
.overlay__close {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  color: var(--cream-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color .3s, transform .3s;
}
.overlay__close:hover {
  color: var(--cream);
  transform: rotate(90deg);
}
.overlay__label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 2rem;
}
.overlay__phone {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.neon-digit {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 900;
  color: var(--ember);
  text-shadow:
    0 0 10px rgba(230, 149, 0, 0.5),
    0 0 40px rgba(230, 149, 0, 0.2);
  opacity: 0;
  transform: translateY(20px);
  animation: neonIn .5s calc(var(--i) * 0.08s + .3s) var(--ease-bounce) forwards;
}
.neon-space { width: 16px; }
@keyframes neonIn {
  to { opacity: 1; transform: translateY(0); }
}
.overlay__copy {
  margin-bottom: 1rem;
}
.overlay__copied {
  font-size: 0.85rem;
  color: var(--gold);
  opacity: 0;
  transition: opacity .3s;
}
.overlay__copied--show { opacity: 1; }
.overlay__sub {
  font-size: 0.8rem;
  color: var(--cream-dim);
  margin-top: 1rem;
}

/* ═══════════════════════════════════════════════
   LIGHTBOX
   ═══════════════════════════════════════════════ */
.lightbox-trigger { cursor: pointer; position: relative; }
.lightbox-trigger::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(0,0,0,0);
  transition: background .3s;
  border-radius: inherit;
}
.lightbox-trigger::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: 44px;
  height: 44px;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: transform .3s var(--ease-out), opacity .3s;
  border-radius: 50%;
  background: rgba(230, 149, 0, 0.85);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2.5' stroke-linecap='round'%3E%3Ccircle cx='10' cy='10' r='7'/%3E%3Cpath d='M21 21l-5.2-5.2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
  pointer-events: none;
}
.lightbox-trigger:hover::before {
  background: rgba(0,0,0,0.2);
}
.lightbox-trigger:hover::after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s, visibility .35s;
}
.lightbox--visible {
  opacity: 1;
  visibility: visible;
}
.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(16px);
}
.lightbox__img {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  transform: scale(0.92);
  transition: transform .4s var(--ease-out);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox--visible .lightbox__img {
  transform: scale(1);
}
.lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  z-index: 2;
  font-size: 2.5rem;
  color: var(--cream-dim);
  transition: color .3s, transform .3s;
}
.lightbox__close:hover {
  color: #fff;
  transform: rotate(90deg);
}
.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  font-size: 3rem;
  color: var(--cream-dim);
  transition: color .3s, transform .3s;
  padding: 8px;
}
.lightbox__prev { left: 16px; }
.lightbox__next { right: 16px; }
.lightbox__prev:hover,
.lightbox__next:hover {
  color: #fff;
  transform: translateY(-50%) scale(1.2);
}

/* ═══════════════════════════════════════════════
   REVEAL ANIMATIONS
   ═══════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s calc(var(--delay, 0s)) var(--ease-out),
              transform .8s calc(var(--delay, 0s)) var(--ease-out);
}
.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal-left--visible,
.reveal-right--visible {
  opacity: 1;
  transform: translateX(0);
}

/* ═══════════════════════════════════════════════
   GLOBAL PARTICLES
   ═══════════════════════════════════════════════ */
.global-particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

/* ═══════════════════════════════════════════════
   ANIMATED GRADIENT BACKGROUNDS
   ═══════════════════════════════════════════════ */
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.nuit-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(230, 149, 0, 0.04) 0%, transparent 40%, rgba(212, 160, 74, 0.03) 70%, transparent 100%);
  background-size: 200% 200%;
  animation: gradientShift 14s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}
.bar-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(230, 149, 0, 0.04) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 80%, rgba(212, 160, 74, 0.03) 0%, transparent 50%);
  background-size: 200% 200%;
  animation: gradientShift 18s ease-in-out infinite reverse;
  pointer-events: none;
  z-index: -1;
}
.triad::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(230, 149, 0, 0.03) 0%, transparent 50%);
  background-size: 200% 200%;
  animation: gradientShift 16s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}

/* ═══════════════════════════════════════════════
   ANIMATED SECTION DIVIDERS
   ═══════════════════════════════════════════════ */
.triad::after,
.table-section::after,
.bar-section::after,
.events-section::after,
.nuit-section::after,
.lere-section::after,
.maquette-section::after {
  width: 0;
  opacity: 0;
  transition: width 1.2s var(--ease-out), opacity 0.8s var(--ease-out);
}
.triad.section--visible::after,
.table-section.section--visible::after,
.bar-section.section--visible::after,
.events-section.section--visible::after,
.nuit-section.section--visible::after,
.lere-section.section--visible::after,
.maquette-section.section--visible::after {
  width: 120px;
  opacity: 0.5;
}

/* ═══════════════════════════════════════════════
   FLOATING DECORATIVE ELEMENTS
   ═══════════════════════════════════════════════ */
@keyframes floatDecor {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-20px) rotate(5deg); }
}
.deco {
  position: absolute;
  pointer-events: none;
  opacity: 0.06;
  z-index: 0;
}
.deco--circle {
  width: 80px;
  height: 80px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  animation: floatDecor 10s ease-in-out infinite;
}
.deco--ring {
  width: 120px;
  height: 120px;
  border: 1px solid var(--ember);
  border-radius: 50%;
  animation: floatDecor 14s ease-in-out infinite reverse;
}
.deco--line {
  width: 1px;
  height: 100px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  animation: floatDecor 12s ease-in-out infinite;
}

/* ═══════════════════════════════════════════════
   INTERACTIVE CARD GLOW
   ═══════════════════════════════════════════════ */
.triad__card,
.avis-card,
.infos-card {
  position: relative;
  overflow: hidden;
}
.triad__card > *,
.avis-card > *,
.infos-card > * {
  position: relative;
  z-index: 1;
}
.triad__card::before,
.avis-card::before,
.infos-card::before {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 149, 0, 0.12) 0%, transparent 70%);
  left: var(--glow-x, 50%);
  top: var(--glow-y, 50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  z-index: 0;
}
.triad__card:hover::before,
.avis-card:hover::before,
.infos-card:hover::before {
  opacity: 1;
}

/* ═══════════════════════════════════════════════
   WORD REVEAL ANIMATION
   ═══════════════════════════════════════════════ */
.section-title .word-anim {
  display: inline-block;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .5s calc(var(--wi) * 0.06s + var(--delay, 0s)) var(--ease-out),
              transform .5s calc(var(--wi) * 0.06s + var(--delay, 0s)) var(--ease-out);
}
.section-title.has-word-anim.reveal {
  transform: none;
}
.reveal--visible .word-anim,
.section-title.reveal--visible .word-anim {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════
   COUNTER STYLE
   ═══════════════════════════════════════════════ */
.counter {
  font-family: var(--ff-display);
  font-weight: 700;
  color: var(--ember);
  font-variant-numeric: tabular-nums;
  font-size: inherit;
  display: inline;
}

/* ═══════════════════════════════════════════════
   REDUCED MOTION
   ═══════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .global-particles,
  .deco,
  .nuit-section__glow,
  .nuit-section::before,
  .bar-section::before,
  .triad::before {
    animation: none !important;
    display: none;
  }
  .section-title .word-anim {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .ember-particle {
    display: none !important;
  }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 900px) {
  .nav__mobile-actions { display: flex; }
  .nav__mobile-cta { display: inline-flex; }
  .nav__burger { display: flex; }
  .nav__links {
    position: fixed;
    top: 0; right: 0;
    width: min(320px, 85vw);
    height: 100vh;
    background: rgba(11, 11, 20, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 32px;
    gap: 24px;
    transform: translateX(100%);
    transition: transform .4s var(--ease-out);
  }
  .nav__links--open { transform: translateX(0); }
  .nav__social { width: 100%; }

  /* Triad carrousel mobile */
  .triad__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-bottom: 8px;
    scrollbar-width: none;
  }
  .triad__grid::-webkit-scrollbar { display: none; }
  .triad__card {
    flex: 0 0 80%;
    scroll-snap-align: center;
  }

  /* Lettres hero moins serrées sur mobile */
  .hero__letter {
    margin-left: clamp(-18px, -3.5vw, -8px);
  }
  .hero__letter--space {
    margin-left: clamp(-10px, -1.5vw, -4px);
  }
  .asym-grid,
  .asym-grid--reverse {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .asym-grid--reverse .asym-grid__content { order: 0; }
  .maquette-teaser { grid-template-columns: 1fr; }
  /* Avis carousel mobile */
  .avis-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-bottom: 8px;
    scrollbar-width: none;
  }
  .avis-grid::-webkit-scrollbar { display: none; }
  .avis-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
  }
  .avis-dots { display: flex; }
  .triad__dots { display: flex; }
  .avis-section__rating { flex-direction: column; gap: 4px; }
  .infos-grid { grid-template-columns: 1fr; }
  .map-bar { justify-content: center; text-align: center; }
  .nuit-posters { grid-template-columns: 1fr 1fr; gap: 16px; max-width: 500px; }

  .hero__title { font-size: clamp(2.5rem, 12vw, 4.5rem); }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .triad, .table-section, .bar-section, .nuit-section,
  .lere-section, .maquette-section, .avis-section, .infos-section {
    padding: 80px 0;
  }
  .hero__ctas { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; }
  .infos-ctas { flex-direction: column; }
  .overlay__content { padding: 32px 20px; }
  .neon-digit { font-size: 2.2rem; }
  .neon-space { width: 10px; }
  .footer__mini { flex-direction: column; gap: 8px; }
}
