/* ============================================================
   v2.css — Le Raidd Bar · Redesign 2026
   Feuille de style partagée pour toutes les pages v2
   ============================================================ */

/* ──────────────────────────────────────────────────────────
   TOKENS
────────────────────────────────────────────────────────── */
:root {
  --black:    #080808;
  --black-2:  #111111;
  --black-3:  #1a1a1a;
  --white:    #ffffff;
  --w70:      rgba(255,255,255,.70);
  --w40:      rgba(255,255,255,.40);
  --w15:      rgba(255,255,255,.15);
  --w10:      rgba(255,255,255,.10);
  --w05:      rgba(255,255,255,.05);
  --red:      #E8192C;
  --red-h:    #c7141f;
  --gold:     #F5C030;
  --gold-d:   #c89a1a;
  --g10:      rgba(245,192,48,.10);
  --g20:      rgba(245,192,48,.20);
  --g30:      rgba(245,192,48,.30);
  --border:   rgba(255,255,255,.08);
  --border-h: rgba(255,255,255,.15);
  --f-display:'Bebas Neue', sans-serif;
  --f-title:  'Poppins', sans-serif;
  --f-body:   'Barlow', sans-serif;
  --nav-h:    72px;

  /* Couleurs types événements */
  --c-drag:   #9B47F0;
  --c-bff:    #E8469A;
  --c-safado: #F07832;
  --c-live:   #3282F0;
  --c-biere:  #F5C030;
  --c-fever:  #E8192C;
  --c-strip:  #96192C;
}

/* ──────────────────────────────────────────────────────────
   RESET & BASE
────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--f-body);
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }

/* ──────────────────────────────────────────────────────────
   UTILITAIRES
────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-title);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

h2.section-title {
  font-family: var(--f-title);
  font-size: clamp(1.9rem, 3.8vw, 3.2rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--white);
}
h2.section-title em { font-style: normal; color: var(--red); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-title);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: 13px 26px;
  border: none;
  cursor: pointer;
  transition: all .2s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn-red    { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-h); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--white); border: 1px solid var(--border-h); }
.btn-outline:hover { border-color: var(--white); background: var(--w05); }
.btn-sm     { padding: 8px 16px; font-size: 11px; }

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ──────────────────────────────────────────────────────────
   NAVIGATION
────────────────────────────────────────────────────────── */
#main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: transform .35s cubic-bezier(.4,0,.2,1), background .3s;
}
#main-nav.scrolled {
  background: rgba(8,8,8,.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
#main-nav.always-bg {
  background: rgba(8,8,8,.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
#main-nav.hidden { transform: translateY(-100%); }

.nav-inner {
  display: flex;
  align-items: center;
  height: var(--nav-h);
}
.nav-logo {
  font-family: var(--f-display);
  font-size: 26px;
  letter-spacing: .01em;
  flex-shrink: 0;
  line-height: 1;
}
.nav-logo .logo-bar { color: var(--red); }

.nav-links {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
  list-style: none;
  gap: 2px;
}
.nav-links a {
  display: block;
  padding: 8px 11px;
  font-family: var(--f-title);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--w70);
  transition: color .2s;
}
.nav-links a:hover,
.nav-links a.active { color: #fff; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  margin-left: auto;
}
.nav-lang {
  display: flex;
  gap: 5px;
  font-family: var(--f-title);
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--w40);
}
.nav-lang a { transition: color .2s; }
.nav-lang a:hover,
.nav-lang a.active { color: #fff; }
.nav-lang span { color: var(--border-h); }
.nav-cta { padding: 9px 20px; font-size: 11px; }

/* Burger */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  border: 1px solid var(--border-h);
  padding: 8px;
  flex-shrink: 0;
  background: none;
}
.nav-burger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: #fff;
  transition: transform .3s, opacity .3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu drawer */
.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(8,8,8,.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  z-index: 999;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}
.mobile-menu.open { opacity: 1; transform: none; pointer-events: all; }
.mobile-menu-inner {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
}
.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-family: var(--f-title);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--w70);
  border-bottom: 1px solid var(--border);
  transition: color .2s;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: #fff; }
.mobile-menu-lang {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 20px;
}
.mobile-menu-lang a {
  padding: 7px 14px;
  border: 1px solid var(--border);
  color: var(--w40);
  font-family: var(--f-title);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: all .2s;
}
.mobile-menu-lang a.active,
.mobile-menu-lang a:hover { border-color: var(--gold); color: var(--gold); }

/* ──────────────────────────────────────────────────────────
   HERO (homepage)
────────────────────────────────────────────────────────── */
#hero { padding-top: var(--nav-h); background: var(--black); }
.hero-video-wrap {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}
.hero-video-box {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.hero-video-box video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero-video-box img.hero-fallback {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: none;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,.9) 0%, rgba(8,8,8,.15) 45%, transparent 100%);
}
.hero-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 36px 48px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}
.hero-text { flex: 1; }
.hero-title {
  font-family: var(--f-display);
  font-size: clamp(4rem, 9vw, 8.5rem);
  line-height: .88;
  letter-spacing: -.01em;
  color: #fff;
  animation: fadeUp .9s ease both;
}
.hero-location {
  display: block;
  font-family: var(--f-title);
  font-size: 24px;
  font-weight: 300;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--w70);
  margin-top: 12px;
  animation: fadeUp .9s .1s ease both;
}
.hero-cta-wrap {
  flex-shrink: 0;
  animation: fadeUp .9s .2s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}
.hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 18px 0 24px;
  font-family: var(--f-title);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--w40);
}
.hero-scroll-line {
  width: 1px; height: 32px;
  background: linear-gradient(to bottom, var(--w40), transparent);
  animation: scrollLine 1.8s infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  49%  { transform: scaleY(1); transform-origin: top; }
  50%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ──────────────────────────────────────────────────────────
   À PROPOS (homepage)
────────────────────────────────────────────────────────── */
#about { padding: 90px 0; border-top: 1px solid var(--border); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 56px;
}
.about-desc { font-size: 16px; color: var(--w70); line-height: 1.72; }
.about-link { color: var(--gold); border-bottom: 1px solid var(--g30); transition: border-color .2s; }
.about-link:hover { border-color: var(--gold); }
.about-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}
.about-card {
  padding: 36px 30px 34px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: background .2s;
}
.about-card:hover { background: var(--black-2); }
.about-card-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
.about-card:hover .about-card-bar { transform: scaleX(1); }
.about-card + .about-card { border-left: 1px solid var(--border); }
.about-icon {
  width: 44px; height: 44px;
  background: var(--g10);
  border: 1px solid var(--g20);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 22px;
  flex-shrink: 0;
}
.about-card-title { font-family: var(--f-title); font-size: 15px; font-weight: 600; margin-bottom: 10px; }
.about-card-text  { font-size: 14px; color: var(--w70); line-height: 1.65; }

/* ──────────────────────────────────────────────────────────
   ACTUALITÉS
────────────────────────────────────────────────────────── */
#news { padding: 80px 0; border-top: 1px solid var(--border); }
.news-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
}
.news-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
  scrollbar-width: none;
}
.news-track::-webkit-scrollbar { display: none; }
.news-card {
  flex-shrink: 0;
  width: 275px;
  scroll-snap-align: start;
  background: var(--black-2);
  border: 1px solid var(--border);
  padding: 22px;
  position: relative;
  overflow: hidden;
  transition: border-color .2s, background .2s;
}
.news-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.news-card:hover { border-color: var(--border-h); background: var(--black-3); }
.news-card:hover::after { transform: scaleX(1); }
.news-date {
  display: inline-block;
  font-family: var(--f-title);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--g10);
  padding: 4px 10px;
  margin-bottom: 12px;
}
.news-text { font-size: 14px; color: var(--w70); line-height: 1.62; }
.news-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.news-tag {
  display: inline-block;
  font-family: var(--f-title);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 9px;
  border: 1px solid rgba(255,255,255,.15);
  color: var(--w40);
}

/* ──────────────────────────────────────────────────────────
   PROGRAMME — homepage (calendar2)
────────────────────────────────────────────────────────── */
#events { padding: 80px 0; border-top: 1px solid var(--border); }
.events-hd {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 24px;
}

/* Featured 16:9 */
.event-featured {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  width: 100%;
  margin-bottom: 10px;
}
.event-featured .ev-img-wrap {
  aspect-ratio: 16/9;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.event-featured .ev-img-wrap img,
.event-featured .ev-ph {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.event-featured:hover .ev-img-wrap img,
.event-featured:hover .ev-ph { transform: scale(1.03); }

/* Badge date featured — 3 lignes empilées */
.ev-date-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--red);
  color: #fff;
  padding: 8px 13px;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  gap: 1px;
  z-index: 2;
}
.ev-date-badge .bd-day {
  font-family: var(--f-title);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.ev-date-badge .bd-num {
  font-family: var(--f-display);
  font-size: 36px;
  letter-spacing: -.01em;
  line-height: 1.05;
}
.ev-date-badge .bd-mon {
  font-family: var(--f-title);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-top: -5px;
}

/* Overlay featured (gradient + nom) */
.ev-ovr {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,.88) 0%, rgba(8,8,8,.18) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
}
.ev-name {
  font-family: var(--f-display);
  font-size: clamp(26px, 4.5vw, 54px);
  letter-spacing: .04em;
  line-height: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Sub-grid 4:5 */
.events-sub-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  align-items: start;
}
.event-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  background: var(--black-2);
  align-self: start;
  min-width: 0;
}
/* Cartouche date — au-dessus de l'image, largeur auto */
.ev-card-date {
  align-self: flex-start;
  font-family: var(--f-title);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
  background: var(--red);
  padding: 4px 8px;
  margin-bottom: 5px;
  white-space: nowrap;
}
/* Image */
.event-card .ev-img-wrap {
  aspect-ratio: 1/1;
  width: 100%;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.event-card .ev-img-wrap img,
.event-card .ev-ph {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.event-card:hover .ev-img-wrap img,
.event-card:hover .ev-ph { transform: scale(1.05); }
/* Nom sous l'image */
.ev-card-name {
  padding: 7px 8px;
  font-family: var(--f-title);
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background: var(--black-2);
  letter-spacing: .02em;
  text-transform: uppercase;
}

/* Placeholder gradient (affiché uniquement si pas d'image) */
.ev-ph {
  position: absolute; inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-size: clamp(14px, 1.6vw, 22px);
  letter-spacing: .08em;
  color: rgba(255,255,255,.07);
  text-align: center;
  padding: 8px;
}
.event-featured .ev-ph { font-size: clamp(48px, 8vw, 110px); letter-spacing: .06em; }

/* Fonds gradient pour les placeholders */
.ev-bg1 { background: linear-gradient(155deg,#1a0a14,#3a0e1e); }
.ev-bg2 { background: linear-gradient(155deg,#0a0a1c,#1a1250); }
.ev-bg3 { background: linear-gradient(155deg,#0c1a0a,#122a10); }
.ev-bg4 { background: linear-gradient(155deg,#1a1008,#2e2414); }
.ev-bg5 { background: linear-gradient(155deg,#0a0a1c,#1c0040); }
.ev-bg6 { background: linear-gradient(155deg,#180808,#420010); }
.ev-bg7 { background: linear-gradient(155deg,#0c0c0c,#251a00); }

/* ──────────────────────────────────────────────────────────
   CARTE DES BOISSONS
────────────────────────────────────────────────────────── */
#menu { padding: 80px 0; border-top: 1px solid var(--border); background: var(--black-2); }
.menu-hd { margin-bottom: 28px; }
.menu-hh {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--g10);
  border: 1px solid var(--g20);
  padding: 10px 18px;
  margin-top: 16px;
  font-size: 13px;
  color: var(--w70);
}
.menu-hh strong { color: var(--gold); font-family: var(--f-title); font-weight: 600; }

.menu-tabs-wrap { position: relative; margin-bottom: 34px; }
.menu-tabs-wrap::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 1px;
  width: 56px;
  background: linear-gradient(to left, var(--black-2), transparent);
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s;
}
.menu-tabs-wrap.has-overflow::after { opacity: 1; }
.menu-tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.menu-tabs::-webkit-scrollbar { display: none; }
.menu-tab {
  flex-shrink: 0;
  padding: 12px 18px;
  font-family: var(--f-title);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--w40);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color .2s, border-color .2s;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}
.menu-tab:hover { color: var(--w70); }
.menu-tab.active { color: var(--gold); border-bottom-color: var(--gold); }

.menu-panel { display: none; }
.menu-panel.active {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 0;
}
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 15px 18px;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  gap: 12px;
  transition: background .15s;
}
.menu-item:hover { background: var(--black-3); }
.menu-item-info  { flex: 1; min-width: 0; }
.menu-item-name  { font-size: 14px; color: #fff; font-weight: 300; }
.menu-item-name.isnew::after {
  content: 'NEW';
  display: inline-block;
  font-family: var(--f-title);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--gold);
  background: var(--g10);
  padding: 2px 6px;
  margin-left: 8px;
  vertical-align: middle;
}
.menu-item-desc {
  display: block;
  font-size: 11px;
  color: var(--w40);
  margin-top: 3px;
  line-height: 1.5;
}
.menu-item-price {
  font-family: var(--f-title);
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 1px;
}
.menu-item-price sup,
.price-normal sup,
.price-hh sup {
  font-size: .6em;
  vertical-align: 0.6em;
  line-height: 0;
}
/* Prix barrés Happy Hour */
.price-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1px;
  flex-shrink: 0;
}
.price-normal {
  font-family: var(--f-title);
  font-size: 11px;
  font-weight: 400;
  color: var(--w40);
  text-decoration: line-through;
  white-space: nowrap;
}
.price-hh {
  font-family: var(--f-title);
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}

/* Widget2MenuLive — états dynamiques selon heure HH */
/* Par défaut (HH inactif) : prix normal affiché en or, pas de barré */
.menu-item-live .price-normal {
  text-decoration: none;
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
}
/* HH actif : prix barré + prix HH affiché */
.menu-item-live.hh-active .price-normal {
  text-decoration: line-through;
  color: var(--w40);
  font-size: 11px;
  font-weight: 400;
}
.menu-item-live.hh-active .price-hh { display: block !important; }

/* ──────────────────────────────────────────────────────────
   GALERIE PHOTO — homepage
────────────────────────────────────────────────────────── */
#photos { padding: 80px 0; border-top: 1px solid var(--border); }
.photos-hd {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 24px;
}
.photos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 192px;
  gap: 4px;
}
.photo-item { overflow: hidden; position: relative; cursor: pointer; }
.photo-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.photo-item:nth-child(5) { grid-column: span 2; }
.photo-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease, filter .3s;
}
.photo-item:hover img { transform: scale(1.05); filter: brightness(.55); }
.photo-ovr {
  position: absolute; inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s;
}
.photo-item:hover .photo-ovr { opacity: 1; }
.photo-icon {
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,.55);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ──────────────────────────────────────────────────────────
   LIGHTBOX (galerie)
────────────────────────────────────────────────────────── */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(8,8,8,.97);
  z-index: 9900;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.lightbox.active { opacity: 1; pointer-events: all; }
.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  display: block;
  transition: opacity .2s;
}
.lightbox-img.loading { opacity: 0; }
.lightbox-close {
  position: absolute;
  top: 20px; right: 26px;
  font-size: 22px;
  color: var(--w70);
  cursor: pointer;
  line-height: 1;
  font-family: var(--f-title);
  font-weight: 300;
  transition: color .2s;
}
.lightbox-close:hover { color: #fff; }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border: 1px solid var(--border-h);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--w70);
  transition: border-color .2s, background .2s, color .2s;
}
.lightbox-nav:hover { border-color: var(--white); background: var(--w05); color: #fff; }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--f-title);
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--w40);
}

/* ──────────────────────────────────────────────────────────
   SHOWER BOYS — homepage
────────────────────────────────────────────────────────── */
#gogos { padding: 80px 0; border-top: 1px solid var(--border); background: var(--black-2); }
.gogos-hd {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 44px;
}
.gogos-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.gogo-card { display: flex; flex-direction: column; align-items: center; text-align: center; }
.gogo-img-ring {
  width: 160px; height: 160px;
  border-radius: 50%;
  padding: 3px;
  background: var(--border);
  margin-bottom: 16px;
  transition: background .3s;
}
.gogo-card:hover .gogo-img-ring {
  background: linear-gradient(135deg, var(--gold), var(--gold-d));
}
.gogo-img-inner {
  width: 100%; height: 100%;
  border-radius: 50%;
  overflow: hidden;
  background: var(--black-3);
}
.gogo-img-inner img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: transform .5s ease;
}
.gogo-card:hover .gogo-img-inner img { transform: scale(1.07); }
.gogo-name {
  font-family: var(--f-title);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.gogo-role { font-size: 12px; color: var(--w40); font-weight: 300; margin-top: 3px; }

/* ──────────────────────────────────────────────────────────
   RÉSERVATION — homepage
────────────────────────────────────────────────────────── */
#reservation { padding: 80px 0; border-top: 1px solid var(--border); }
.resa-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.resa-intro {
  font-size: 15px;
  color: var(--w70);
  line-height: 1.7;
  margin: 22px 0 28px;
  padding: 20px 22px;
  background: var(--g10);
  border-left: 3px solid var(--gold);
}
.resa-intro strong { color: var(--gold); }
.resa-steps { display: flex; flex-direction: column; }
.resa-step {
  display: flex;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.step-n {
  flex-shrink: 0;
  width: 32px; height: 32px;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-title);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}
.step-txt { font-size: 14px; color: var(--w70); line-height: 1.6; padding-top: 4px; }
.step-txt strong { color: #fff; font-weight: 400; }
.resa-note { margin-top: 18px; font-size: 12px; color: var(--w40); line-height: 1.7; }
.resa-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.resa-img-wrap { position: relative; }
.resa-img-wrap img { width: 100%; height: 500px; object-fit: cover; filter: brightness(.75); }
.resa-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: rgba(8,8,8,.92);
  border: 1px solid var(--border);
  padding: 16px 20px;
  backdrop-filter: blur(8px);
}
.resa-badge-val {
  font-family: var(--f-title);
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.resa-badge-lbl { font-size: 11px; color: var(--w70); font-weight: 300; margin-top: 5px; }

/* ──────────────────────────────────────────────────────────
   PAGE HEADER (pages secondaires)
────────────────────────────────────────────────────────── */
.page-header-simple {
  padding-top: var(--nav-h);
  background: var(--black-2);
  border-bottom: 1px solid var(--border);
}
.page-header-simple .page-header-inner {
  padding: 48px 0 44px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}
.page-header-hero {
  position: relative;
  padding-top: var(--nav-h);
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  background: var(--black);
}
.page-header-bg { position: absolute; inset: 0; }
.page-header-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
  opacity: .35;
  filter: saturate(.6);
}
.page-header-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--black) 0%, rgba(8,8,8,.5) 60%, rgba(8,8,8,.2) 100%);
}
.page-header-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 56px 0;
}
.page-title {
  font-family: var(--f-display);
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  line-height: .9;
  letter-spacing: -.01em;
  color: #fff;
}
.page-title-hero {
  font-family: var(--f-display);
  font-size: clamp(3.5rem, 7vw, 7rem);
  line-height: .9;
  letter-spacing: -.01em;
  color: #fff;
}
.page-meta {
  font-family: var(--f-title);
  font-size: 12px;
  color: var(--w40);
  letter-spacing: .08em;
  margin-top: 10px;
}
.page-subtitle { margin-top: 14px; font-size: 15px; color: var(--w70); max-width: 480px; line-height: 1.7; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-title);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--w40);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--w40); transition: color .2s; }
.breadcrumb a:hover { color: var(--w70); }
.breadcrumb-sep { color: var(--border-h); }

/* ──────────────────────────────────────────────────────────
   PAGE EVENTS — bandeau featured + filtres + grille
────────────────────────────────────────────────────────── */
.featured-track-wrap { position: relative; }
.featured-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  align-items: start;
}
.feat-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  background: var(--black-2);
  align-self: start;
  min-width: 0;
}
/* Barre dorée en haut */
.feat-gold-bar { height: 2px; background: var(--gold); flex-shrink: 0; }
/* Image */
.feat-card .feat-img {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
  background: var(--black-3);
  flex-shrink: 0;
}
.feat-card .feat-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.feat-card:hover .feat-img img { transform: scale(1.04); }
/* Badge date 3 lignes — superposé sur l'image */
.feat-date-badge {
  position: absolute;
  top: 10px; left: 10px;
  z-index: 2;
  background: var(--red);
  color: #fff;
  padding: 6px 11px;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  gap: 1px;
}
.feat-date-badge .bd-day {
  font-family: var(--f-title);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.feat-date-badge .bd-num {
  font-family: var(--f-display);
  font-size: 28px;
  letter-spacing: -.01em;
  line-height: 1.05;
  margin-top: -2px;
}
.feat-date-badge .bd-mon {
  font-family: var(--f-title);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-top: -4px;
}
/* Nom sous l'image */
.feat-name {
  padding: 7px 9px;
  font-family: var(--f-title);
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background: var(--black-2);
  letter-spacing: .02em;
  text-transform: uppercase;
}

/* Filter pills */
.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0 28px; }
.filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  font-family: var(--f-title);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  color: var(--w40);
  cursor: pointer;
  transition: all .2s;
  background: none;
}
.filter-pill:hover { border-color: var(--border-h); color: var(--w70); }
.filter-pill.active { border-color: var(--white); color: #fff; background: var(--w05); }
.filter-pill[data-filter="all"].active { border-color: var(--gold); color: var(--gold); }
.pill-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Grille 4 colonnes */
/* Programme section header (between featured and grid) */
.prog-section-hd {
  padding: 48px 0 12px;
  border-top: 1px solid var(--border);
}

.prog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.prog-col { background: var(--black); display: flex; flex-direction: column; }
.prog-col-hd {
  background: var(--black-2);
  padding: 10px 14px;
  font-family: var(--f-title);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
  position: sticky;
  top: var(--nav-h);
  z-index: 10;
}
.prog-cell {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  transition: background .15s, opacity .3s;
  position: relative;
}
.prog-cell:last-child { border-bottom: none; }
.prog-cell:hover { background: var(--black-2); }
.prog-cell.filtered-out { opacity: .12; }
.prog-cell.is-special { border-left: 2px solid var(--gold); padding-left: 12px; }
.pc-date { flex-shrink: 0; width: 36px; text-align: center; }
.pc-day {
  display: block;
  font-family: var(--f-title);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--w40);
  line-height: 1;
}
.pc-num {
  display: block;
  font-family: var(--f-display);
  font-size: 24px;
  line-height: 1;
  color: #fff;
  margin-top: 1px;
}
.pc-thumb {
  flex-shrink: 0;
  width: 36px; height: 36px;
  overflow: hidden;
  background: var(--black-3);
}
.pc-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pc-info { flex: 1; min-width: 0; }
.pc-name {
  font-family: var(--f-title);
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1.2;
  margin-bottom: 5px;
}
.pc-badges { display: flex; align-items: center; gap: 5px; margin-top: 5px; }
.type-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--f-title);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 2px 6px;
  color: var(--w40);
  background: var(--w05);
}
.type-badge-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--w40); flex-shrink: 0; }
.special-badge {
  font-family: var(--f-title);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--gold);
}
.no-results {
  padding: 48px;
  text-align: center;
  font-family: var(--f-title);
  font-size: 13px;
  color: var(--w40);
  display: none;
}
.no-results.visible { display: block; }

/* ──────────────────────────────────────────────────────────
   GALERIE PHOTO — page complète (masonry)
────────────────────────────────────────────────────────── */
#gallery { padding: 48px 0 80px; }
.masonry { columns: 4; column-gap: 4px; }
.photo-item-m {
  break-inside: avoid;
  margin-bottom: 4px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: block;
  background: var(--black-3);
}
.photo-item-m img { width: 100%; height: auto; display: block; transition: transform .5s ease, filter .35s; }
.photo-item-m::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(8,8,8,.5);
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}
.photo-item-m:hover::after { opacity: 1; }
.photo-item-m:hover img { transform: scale(1.04); }
.photo-expand {
  position: absolute; inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s;
  z-index: 1;
  pointer-events: none;
}
.photo-item-m:hover .photo-expand { opacity: 1; }
.expand-icon {
  width: 48px; height: 48px;
  border: 1px solid rgba(255,255,255,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  backdrop-filter: blur(4px);
  background: rgba(8,8,8,.3);
}

/* ──────────────────────────────────────────────────────────
   SHOWER BOYS — page complète
────────────────────────────────────────────────────────── */
.boys-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.boy-card { position: relative; overflow: hidden; background: var(--black-3); }
.boy-img-wrap { aspect-ratio: 1/1; overflow: hidden; position: relative; }
.boy-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .6s ease, filter .4s;
  filter: saturate(.85);
}
.boy-card:hover .boy-img-wrap img { transform: scale(1.06); filter: saturate(1); }
.boy-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,.92) 0%, rgba(8,8,8,.4) 40%, transparent 70%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
  transition: background .4s;
}
.boy-card:hover .boy-overlay {
  background: linear-gradient(to top, rgba(8,8,8,.96) 0%, rgba(8,8,8,.55) 50%, rgba(8,8,8,.1) 100%);
}
.boy-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
  z-index: 2;
}
.boy-card:hover::before { transform: scaleX(1); }
.boy-name {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 2.8vw, 2.8rem);
  letter-spacing: .02em;
  line-height: 1;
  color: #fff;
  transform: translateY(4px);
  transition: transform .3s ease;
}
.boy-card:hover .boy-name { transform: translateY(0); }
.boy-role {
  font-family: var(--f-title);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 6px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .3s .05s ease, transform .3s .05s ease;
}
.boy-card:hover .boy-role { opacity: 1; transform: translateY(0); }
.boy-num {
  position: absolute;
  top: 16px; right: 16px;
  font-family: var(--f-display);
  font-size: 13px;
  letter-spacing: .1em;
  color: rgba(255,255,255,.2);
  line-height: 1;
  transition: color .3s;
  z-index: 2;
}
.boy-card:hover .boy-num { color: var(--gold); }
/* Show infos section */
.about-show-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
}
.about-show-text { padding: 56px 52px; border-right: 1px solid var(--border); }
.about-show-text p { font-size: 15px; color: var(--w70); line-height: 1.8; margin-bottom: 20px; }
.about-show-text p:last-child { margin-bottom: 0; }
.about-show-stats { padding: 56px 52px; display: flex; flex-direction: column; justify-content: center; }
.show-stat {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: baseline;
  gap: 18px;
}
.show-stat:first-child { padding-top: 0; }
.show-stat:last-child  { border-bottom: none; padding-bottom: 0; }
.show-stat-val {
  font-family: var(--f-display);
  font-size: 52px;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -.01em;
  flex-shrink: 0;
}
.show-stat-lbl { font-family: var(--f-title); font-size: 12px; color: var(--w70); line-height: 1.5; }
.show-stat-lbl strong { display: block; font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 2px; }

/* ──────────────────────────────────────────────────────────
   ABOUT US — page article
────────────────────────────────────────────────────────── */
.article-wrap { padding: 72px 0 96px; }
.article-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 80px;
  align-items: start;
}
.article-body p { font-size: 16px; color: var(--w70); line-height: 1.82; margin-bottom: 24px; }
.article-body p:last-child { margin-bottom: 0; }
.article-pullquote {
  border-left: 3px solid var(--gold);
  padding: 20px 28px;
  margin: 40px 0;
  background: var(--g10);
}
.article-pullquote p {
  font-family: var(--f-title);
  font-size: 17px;
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.6;
  margin: 0;
}
.article-sub { margin-top: 52px; padding-top: 48px; border-top: 1px solid var(--border); }
.article-sub-title {
  font-family: var(--f-title);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 22px;
  line-height: 1.2;
}
.article-sub-title em { font-style: normal; color: var(--red); }
.name-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--f-title);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--g10);
  border: 1px solid var(--g20);
  color: var(--gold);
  padding: 4px 10px;
  margin: 0 2px;
}
/* Timeline */
.article-timeline { list-style: none; margin: 32px 0; }
.article-timeline li { display: flex; gap: 20px; padding-bottom: 28px; position: relative; }
.article-timeline li::before {
  content: '';
  position: absolute;
  left: 7px; top: 16px; bottom: 0;
  width: 1px;
  background: var(--border);
}
.article-timeline li:last-child::before { display: none; }
.tl-dot {
  flex-shrink: 0;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--black-2);
  border: 2px solid var(--gold);
  margin-top: 4px;
}
.tl-year {
  font-family: var(--f-title);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.tl-text { font-size: 15px; color: var(--w70); line-height: 1.72; }
/* Sidebar */
.sidebar-sticky { position: sticky; top: calc(var(--nav-h) + 24px); }
.sidebar-card {
  background: var(--black-2);
  border: 1px solid var(--border);
  padding: 28px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}
.sidebar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
}
.sidebar-card-title {
  font-family: var(--f-title);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.sidebar-social-list { display: flex; flex-direction: column; gap: 0; }
.sidebar-social-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  color: var(--w70);
  transition: color .2s;
  font-size: 13px;
}
.sidebar-social-item:last-child { border-bottom: none; }
.sidebar-social-item:hover { color: #fff; }
.sidebar-social-handle { margin-left: auto; font-size: 11px; color: var(--w40); font-family: var(--f-title); }

/* ──────────────────────────────────────────────────────────
   FAQ — accordion
────────────────────────────────────────────────────────── */
#faq { padding: 72px 0 96px; }
.faq-category { margin-bottom: 56px; }
.faq-category:last-child { margin-bottom: 0; }
.faq-cat-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 4px;
}
.faq-cat-icon {
  width: 38px; height: 38px;
  background: var(--g10);
  border: 1px solid var(--g20);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.faq-cat-title { font-family: var(--f-title); font-size: 16px; font-weight: 700; color: #fff; }
.faq-cat-count { margin-left: auto; font-family: var(--f-title); font-size: 11px; color: var(--w40); letter-spacing: .08em; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.faq-question-text {
  font-family: var(--f-title);
  font-size: 14px;
  font-weight: 600;
  color: var(--w70);
  line-height: 1.4;
  transition: color .2s;
}
.faq-item.open .faq-question-text,
.faq-question:hover .faq-question-text { color: #fff; }
.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s, background .2s, transform .3s;
  color: var(--w40);
}
.faq-item.open .faq-icon {
  border-color: var(--gold);
  background: var(--g10);
  color: var(--gold);
  transform: rotate(45deg);
}
.faq-question:hover .faq-icon { border-color: var(--border-h); color: var(--w70); }
.faq-answer { overflow: hidden; max-height: 0; transition: max-height .4s cubic-bezier(.4,0,.2,1), opacity .3s; opacity: 0; }
.faq-item.open .faq-answer { opacity: 1; }
.faq-answer-inner { padding: 0 0 24px; font-size: 15px; color: var(--w70); line-height: 1.78; }
.faq-answer-inner strong { color: #fff; font-weight: 600; }
.faq-answer-inner a { color: var(--gold); border-bottom: 1px solid var(--g30); transition: border-color .2s; }
.faq-answer-inner a:hover { border-color: var(--gold); }
.faq-answer-inner p + p { margin-top: 12px; }
.faq-cta-band {
  margin-top: 80px;
  padding: 52px;
  background: var(--black-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.faq-cta-band h3 {
  font-family: var(--f-title);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.faq-cta-band p { font-size: 14px; color: var(--w70); }
.faq-cta-btns { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }

/* ──────────────────────────────────────────────────────────
   CARROUSEL PARTENAIRES
────────────────────────────────────────────────────────── */
.partners-band {
  padding: 22px 0;
  overflow: hidden;
  position: relative;
  background: var(--black-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}
.partners-band::before,
.partners-band::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.partners-band::before {
  left: 0;
  background: linear-gradient(to right, var(--black-2) 30%, transparent);
}
.partners-band::after {
  right: 0;
  background: linear-gradient(to left, var(--black-2) 30%, transparent);
}
.partners-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: partnersScroll 30s linear infinite;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.partners-track:hover { animation-play-state: paused; }
@keyframes partnersScroll {
  from { transform: translateZ(0) translateX(0); }
  to   { transform: translateZ(0) translateX(-50%); }
}
.partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 44px;
  flex-shrink: 0;
  opacity: .55;
  transition: opacity .35s;
  border-right: 1px solid var(--border);
}
.partner-item:last-child { border-right: none; }
.partner-item:hover { opacity: 1; }
.partner-logo {
  display: block;
  height: 32px;
  width: auto;
  max-width: 140px;
}


/* ──────────────────────────────────────────────────────────
   PAGE EMPLOIS / WIDGET JOBS V2
────────────────────────────────────────────────────────── */
.jobs-hero { position: relative; height: 520px; overflow: hidden; }
.jobs-hero img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; display: block; }
.jobs-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(8,8,8,.88) 0%, rgba(8,8,8,.45) 55%, transparent 100%); }
.jobs-hero-content { position: absolute; top: 50%; left: 0; transform: translateY(-50%); padding: 0 48px; max-width: 660px; }
.jobs-hero-content .section-label { margin-bottom: 14px; }
.jobs-hero-title { font-family: var(--f-title); font-size: clamp(2rem, 3.6vw, 3.2rem); font-weight: 900; line-height: 1.1; color: #fff; margin-bottom: 16px; }
.jobs-hero-title em { font-style: normal; color: var(--red); }
.jobs-hero-sub { font-size: 15px; line-height: 1.7; color: rgba(255,255,255,.7); max-width: 460px; margin-bottom: 28px; }

.jobs-why { padding: 80px 0; background: var(--black); border-bottom: 1px solid var(--border); }
.jobs-why-hd { margin-bottom: 48px; }
.reasons-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.reason-card { background: var(--black-2); padding: 36px 32px; position: relative; border-top: 2px solid transparent; transition: border-color .2s; }
.reason-card:hover { border-top-color: var(--gold); }
.reason-num { font-family: var(--f-display); font-size: 72px; line-height: 1; color: rgba(245,192,48,.07); position: absolute; top: 20px; right: 24px; }
.reason-icon { width: 44px; height: 44px; background: rgba(245,192,48,.08); border: 1px solid rgba(245,192,48,.15); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.reason-icon svg { color: var(--gold); }
.reason-title { font-family: var(--f-title); font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.reason-desc { font-size: 14px; line-height: 1.72; color: rgba(255,255,255,.7); }

.jobs-section { padding: 80px 0; background: var(--black-2); }
.jobs-hd { margin-bottom: 40px; }
.jobs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; }
.job-card { background: var(--black); padding: 36px; display: flex; flex-direction: column; gap: 18px; border-top: 2px solid var(--border); transition: border-color .2s; }
.job-card:hover { border-top-color: var(--red); }
.job-badge { display: inline-flex; align-items: center; gap: 6px; font-family: var(--f-title); font-size: 9px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; padding: 4px 10px; align-self: flex-start; }
.job-badge.open { color: var(--gold); background: rgba(245,192,48,.08); border: 1px solid rgba(245,192,48,.15); }
.job-badge.closed { color: rgba(255,255,255,.4); background: transparent; border: 1px solid var(--border); }
.job-title { font-family: var(--f-title); font-size: 21px; font-weight: 700; color: #fff; line-height: 1.2; }
.job-subtitle { font-family: var(--f-title); font-size: 13px; font-weight: 600; color: var(--gold); letter-spacing: .06em; }
.job-desc { font-size: 14px; line-height: 1.75; color: rgba(255,255,255,.7); flex: 1; }
.job-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.job-tag { font-family: var(--f-title); font-size: 10px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.4); border: 1px solid var(--border); padding: 4px 10px; }
.job-cta { display: inline-flex; align-items: center; gap: 8px; background: var(--red); color: #fff; font-family: var(--f-title); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 12px 20px; text-decoration: none; align-self: flex-start; transition: opacity .2s; }
.job-cta:hover { opacity: .85; }
.job-cta-secondary { display: inline-flex; align-items: center; gap: 8px; border: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.7); font-family: var(--f-title); font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; padding: 11px 20px; text-decoration: none; align-self: flex-start; transition: border-color .2s, color .2s; }
.job-cta-secondary:hover { border-color: #fff; color: #fff; }

@media (max-width: 900px) {
  .reasons-grid { grid-template-columns: 1fr; }
  .jobs-grid { grid-template-columns: 1fr; }
  .jobs-hero-content { padding: 0 24px; }
}
@media (max-width: 768px) {
  .jobs-hero { height: 420px; }
  .jobs-hero-overlay { background: rgba(8,8,8,.78); }
  .job-card { padding: 24px; }
  .reason-card { padding: 28px 24px; }
}

/* ──────────────────────────────────────────────────────────
   PAGES LÉGALES (mentions légales, confidentialité)
────────────────────────────────────────────────────────── */
.legal-content {
  max-width: 760px;
}
.legal-intro {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,.7);
  margin-bottom: 12px;
}
.legal-section-title {
  font-family: var(--f-title);
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  margin: 48px 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.legal-subsection {
  font-family: var(--f-title);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin: 24px 0 10px;
}
.legal-content p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,.65);
  margin-bottom: 10px;
}
.legal-content strong { color: rgba(255,255,255,.9); }
.legal-content a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.legal-content a:hover { color: #fff; }
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 13px;
}
.legal-table th, .legal-table td {
  padding: 10px 14px;
  border: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}
.legal-table th {
  width: 220px;
  color: rgba(255,255,255,.5);
  font-weight: 600;
  background: rgba(255,255,255,.03);
  white-space: nowrap;
}
.legal-table td { color: rgba(255,255,255,.8); }
.legal-list {
  padding-left: 20px;
  margin: 10px 0 16px;
}
.legal-list li {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,.65);
  margin-bottom: 8px;
}
.legal-list li strong { color: rgba(255,255,255,.9); }

@media (max-width: 768px) {
  .legal-table th { width: 120px; white-space: normal; }
  .legal-section-title { font-size: 16px; }
}

/* ──────────────────────────────────────────────────────────
   FOOTER
────────────────────────────────────────────────────────── */
footer { background: var(--black-2); border-top: 1px solid var(--border); padding: 64px 0 0; }
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-logo {
  font-family: var(--f-display);
  font-size: 28px;
  letter-spacing: .01em;
  margin-bottom: 10px;
  line-height: 1;
}
.footer-logo span { color: var(--red); }
.footer-tagline { font-size: 13px; color: var(--w40); line-height: 1.65; margin-bottom: 22px; }
.footer-socials { display: flex; gap: 8px; }
.soc-btn {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--w40);
  transition: border-color .2s, color .2s;
}
.soc-btn:hover { border-color: var(--w40); color: #fff; }
.footer-col-title {
  font-family: var(--f-title);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-info { font-size: 14px; color: var(--w70); line-height: 1.9; }
.footer-info strong { color: #fff; font-weight: 400; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  color: var(--w70);
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-links a::before { content: ''; width: 10px; height: 1px; background: var(--w40); flex-shrink: 0; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy { font-size: 12px; color: var(--w40); }
.footer-nav { display: flex; gap: 24px; }
.footer-nav a { font-size: 12px; color: var(--w40); transition: color .2s; }
.footer-nav a:hover { color: #fff; }

/* ──────────────────────────────────────────────────────────
   RESPONSIVE
────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .prog-grid        { grid-template-columns: repeat(2, 1fr); }
  .featured-track   { grid-template-columns: repeat(2, 1fr); }
  .events-sub-grid  { grid-template-columns: repeat(3, 1fr); align-items: start; }
}
@media (max-width: 1024px) {
  .container        { padding: 0 28px; }
  .hero-video-wrap  { padding: 0 28px; }
  .about-grid       { grid-template-columns: 1fr; }
  .about-cards      { grid-template-columns: 1fr; }
  .about-card + .about-card { border-left: none; border-top: 1px solid var(--border); }
  .gogos-grid       { grid-template-columns: repeat(2, 1fr); }
  .resa-inner       { grid-template-columns: 1fr; gap: 32px; }
  .resa-img-wrap    { display: none; }
  .footer-top       { grid-template-columns: 1fr 1fr; gap: 32px; }
  .article-grid     { grid-template-columns: 1fr; gap: 48px; }
  .sidebar-sticky   { position: static; }
  .about-show-inner { grid-template-columns: 1fr; }
  .about-show-text  { border-right: none; border-bottom: 1px solid var(--border); }
  .boys-grid        { grid-template-columns: repeat(2, 1fr); }
  .masonry          { columns: 3; }
}
@media (max-width: 768px) {
  .container        { padding: 0 18px; }
  .hero-video-wrap  { padding: 0; }
  .nav-links, .nav-lang { display: none; }
  .nav-burger       { display: flex; }

  /* ── Hero mobile : contenu sous la vidéo ── */
  .hero-video-box   { overflow: visible; }
  .hero-video-box video,
  .hero-video-box img.hero-fallback {
    height: auto;
    aspect-ratio: 16/9;
    position: static;
  }
  .hero-overlay     { display: none; }
  .hero-content {
    position: static;
    padding: 22px 18px 0;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    background: var(--black);
  }
  .hero-title       { font-size: clamp(2.6rem, 11vw, 4.5rem); }
  .hero-location    { font-size: 14px; letter-spacing: .22em; margin-top: 6px; }
  .hero-cta-wrap    { flex-shrink: 0; }

  /* ── Espacement sections réduit ── */
  #about, #news, #events, #menu, #photos, #gogos, #reservation { padding: 48px 0; }

  /* ── Cards events ── */
  .photos-grid      { grid-template-columns: repeat(2, 1fr); }
  .photo-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .photo-item:nth-child(5) { grid-column: span 1; }
  .gogo-img-ring    { width: 120px; height: 120px; }
  .partner-item    { padding: 0 20px; }
  .prog-grid        { grid-template-columns: 1fr; }
  .prog-col-hd      { position: static; }
  .featured-track   { grid-template-columns: repeat(2, 1fr); }
  .filter-bar       { gap: 6px; }
  .filter-pill      { padding: 7px 12px; font-size: 9px; }
  .news-header, .events-hd, .photos-hd, .gogos-hd { flex-direction: column; align-items: flex-start; gap: 14px; }
  .page-header-simple .page-header-inner { flex-direction: column; align-items: flex-start; gap: 16px; }

  /* ── Espacement header carte ── */
  .page-header-simple .page-header-inner { padding: 24px 0 20px; }

  /* ── Densité carte des boissons ── */
  .menu-item { padding: 10px 12px; gap: 8px; }
  .menu-item-name { font-size: 13px; }
  .menu-item-desc { font-size: 11px; }
  .menu-item-price { font-size: 13px; }

  /* ── Espace sous carrousel partenaires ── */
  .partners-band { margin-bottom: 16px; }

  /* ── Footer 2 colonnes ── */
  .footer-top       { grid-template-columns: 1fr 1fr; gap: 28px; }
  footer            { padding-top: 40px; }
  .footer-bottom    { flex-direction: column; gap: 12px; text-align: center; }

  /* ── Divers ── */
  .about-show-text  { padding: 36px 28px; }
  .about-show-stats { padding: 36px 28px; }
  .faq-cta-band     { flex-direction: column; align-items: flex-start; padding: 32px 24px; }
  .boy-role         { opacity: 1; transform: none; }
  .masonry          { columns: 2; column-gap: 3px; }
  .photo-item-m     { margin-bottom: 3px; }
}
@media (max-width: 420px) {
  .masonry { columns: 1; }
}
