/* ============================================================
   LE 666 – Feuille de style principale
   Design: Brasserie Chic Industrielle
   Palette: Bleu ardoise (#1a2530) + Rouge vif (#C0392B) + Crème (#F5F0E8)
   Fonts: Playfair Display + Lato + Dancing Script
   ============================================================ */

/* ── Variables ── */
:root {
  --slate-dark:   #1a2530;
  --slate-mid:    #212f3d;
  --slate-light:  #2c3e50;
  --rouge-vif:    #C0392B;
  --rouge-light:  #e74c3c;
  --rouge-dark:   #922b21;
  --creme:        #F5F0E8;
  --creme-dark:   #e8e0d0;
  --text-muted:   rgba(245,240,232,0.55);
  --border-rouge: rgba(192,57,43,0.25);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', Arial, sans-serif;
  --font-script:  'Dancing Script', cursive;

  --transition: 0.3s ease;
  --radius: 6px;
  --container-max: 1280px;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background-color: var(--slate-dark);
  color: var(--creme);
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; transition: color var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--slate-dark); }
::-webkit-scrollbar-thumb { background: var(--rouge-vif); border-radius: 3px; }

/* ── Utilitaires ── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.btn-rouge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--rouge-vif);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.75rem 1.75rem;
  border: 2px solid var(--rouge-vif);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.btn-rouge:hover { background: transparent; color: var(--rouge-vif); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--rouge-vif);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.75rem 1.75rem;
  border: 2px solid var(--rouge-vif);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.btn-outline:hover { background: var(--rouge-vif); color: #fff; }

.section-title {
  font-family: var(--font-display);
  color: var(--creme);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
}
.section-title::after {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  background: var(--rouge-vif);
  margin-top: 0.75rem;
}
.section-title.centered::after { margin-left: auto; margin-right: auto; }

.ornament {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--rouge-vif);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
}
.ornament::before, .ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--rouge-vif));
}
.ornament::after { background: linear-gradient(to left, transparent, var(--rouge-vif)); }

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: padding var(--transition), background var(--transition), box-shadow var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  padding: 0.6rem 0;
  background: rgba(26,37,48,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-color: var(--border-rouge);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.logo-img {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid var(--rouge-vif);
  object-fit: cover;
  transition: border-color var(--transition);
}
.header-logo:hover .logo-img { border-color: var(--rouge-light); }
.logo-text { display: none; }
@media (min-width: 640px) { .logo-text { display: block; } }
.logo-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--rouge-vif);
  line-height: 1;
}
.logo-sub {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 2px;
}
.header-nav {
  display: none;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 1100px) { .header-nav { display: flex; } }
.nav-link {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.75);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--rouge-vif);
  transition: width var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--rouge-vif); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.header-cta { display: none; }
@media (min-width: 1100px) { .header-cta { display: inline-flex; font-size: 0.7rem; padding: 0.6rem 1.25rem; } }

/* Burger */
.burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
@media (min-width: 1100px) { .burger { display: none; } }
.burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--creme);
  transition: transform var(--transition), opacity var(--transition);
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0;
  background: rgba(26,37,48,0.97);
  border-top: 1px solid var(--border-rouge);
  padding: 1rem 0;
}
.mobile-nav.open { display: flex; }
.mobile-nav-link {
  padding: 0.85rem 1.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-left: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}
.mobile-nav-link:hover, .mobile-nav-link.active {
  color: var(--rouge-vif);
  border-color: var(--rouge-vif);
  background: rgba(192,57,43,0.07);
}
.mobile-cta { margin: 0.75rem 1.5rem 0.25rem; text-align: center; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 1s ease;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26,37,48,0.55) 0%, rgba(26,37,48,0.25) 50%, rgba(26,37,48,1) 100%);
}
#fire-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  mix-blend-mode: screen;
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 1rem;
  max-width: 900px;
}
.hero-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}
.hero-logo-glow {
  position: relative;
}
.hero-logo-glow::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: rgba(192,57,43,0.2);
  filter: blur(16px);
  animation: pulse-glow 2.5s ease-in-out infinite;
}
.hero-logo-img {
  position: relative;
  width: 110px; height: 110px;
  border-radius: 50%;
  border: 3px solid var(--rouge-vif);
  object-fit: cover;
  box-shadow: 0 0 30px rgba(192,57,43,0.4);
}
.hero-ornament {
  margin: 0 auto 1.5rem;
  max-width: 280px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 900;
  color: var(--creme);
  line-height: 1;
  margin-bottom: 0.75rem;
  opacity: 0;
}
.hero-title .accent { color: var(--rouge-vif); font-style: italic; }
.hero-subtitle {
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 2.5rem;
  opacity: 0;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  opacity: 0;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}
.hero-scroll svg { margin-top: 2px; }

/* ── SPOTLIGHT ÉVÉNEMENT ── */
.spotlight-section {
  position: relative;
  padding: 5rem 0;
  background: var(--slate-mid);
  overflow: hidden;
}
.spotlight-glow {
  position: absolute;
  top: 50%; left: 65%;
  width: 500px; height: 500px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(192,57,43,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.spotlight-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .spotlight-grid { grid-template-columns: 1fr 340px; gap: 4rem; }
}
.spotlight-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rouge-vif);
  border: 1px solid var(--border-rouge);
  border-radius: 50px;
  background: rgba(192,57,43,0.08);
  animation: spotlight-pulse 3s ease-in-out infinite;
}
@keyframes spotlight-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(192,57,43,0); }
  50%      { box-shadow: 0 0 20px 2px rgba(192,57,43,0.15); }
}
.spotlight-ornament { max-width: 320px; margin-bottom: 1rem; }
.spotlight-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--creme);
  margin-bottom: 1rem;
}
.spotlight-amp {
  font-family: var(--font-script);
  font-style: normal;
  font-weight: 400;
  color: var(--rouge-vif);
  font-size: 1.1em;
}
.spotlight-lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.75rem;
  max-width: 520px;
}
.spotlight-meta {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
}
.spotlight-meta li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.spotlight-meta svg { color: var(--rouge-vif); flex-shrink: 0; }
.spotlight-meta strong { color: var(--creme); font-weight: 600; }

.spotlight-poster { display: flex; justify-content: center; }
@media (min-width: 1024px) { .spotlight-poster { justify-content: flex-end; } }
.spotlight-poster-frame {
  position: relative;
  display: block;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 300px;
  box-shadow:
    0 20px 50px rgba(0,0,0,0.45),
    0 0 0 1px rgba(192,57,43,0.3);
  transition: transform var(--transition), box-shadow var(--transition);
}
.spotlight-poster-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(192,57,43,0.6), rgba(245,130,32,0.3)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}
.spotlight-poster-frame:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow:
    0 28px 60px rgba(0,0,0,0.5),
    0 0 30px rgba(192,57,43,0.2);
}
.spotlight-poster-frame img {
  width: 100%;
  height: auto;
  display: block;
}
.spotlight-poster-hint {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem;
  background: linear-gradient(to top, rgba(26,37,48,0.95), transparent);
  color: var(--creme);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition);
  z-index: 2;
}
.spotlight-poster-frame:hover .spotlight-poster-hint {
  opacity: 1;
  transform: translateY(0);
}

/* Lightbox affiche */
.fete-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10,14,18,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.fete-lightbox.open { display: flex; }
.fete-lightbox-img {
  max-width: min(420px, 90vw);
  max-height: 90vh;
  width: auto;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  animation: fete-lightbox-in 0.35s ease;
}
@keyframes fete-lightbox-in {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}
.fete-lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none;
  border: none;
  color: var(--creme);
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity var(--transition);
}
.fete-lightbox-close:hover { opacity: 1; }

/* ── BENTO GRID ── */
.bento-section { padding: 5rem 0; background: var(--slate-dark); }
.bento-header { text-align: center; margin-bottom: 3rem; }
.bento-header .ornament { max-width: 300px; margin: 0 auto 1rem; }
.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .bento-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
  }
  .bento-large { grid-column: span 2; grid-row: span 2; }
  .bento-wide  { grid-column: span 3; }
}
.bento-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 200px;
  cursor: pointer;
}
@media (min-width: 768px) {
  .bento-large { min-height: 420px; }
  .bento-wide  { min-height: 260px; }
}
.bento-card img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.bento-card:hover img { transform: scale(1.06); }
.bento-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,37,48,0.92) 0%, rgba(26,37,48,0.3) 60%, transparent 100%);
}
.bento-wide .bento-card-overlay {
  background: linear-gradient(to right, rgba(26,37,48,0.92) 0%, rgba(26,37,48,0.5) 50%, transparent 100%);
}
.bento-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
}
.bento-wide .bento-card-content {
  top: 0; bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 500px;
}
.bento-tag {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--rouge-vif);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.bento-card-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--creme);
  margin-bottom: 0.4rem;
}
.bento-large .bento-card-title { font-size: 1.6rem; }
.bento-wide .bento-card-title  { font-size: 1.8rem; }
.bento-card-desc { color: var(--text-muted); font-size: 0.85rem; }

/* ── SECTIONS CONTENU ── */
.content-section { padding: 5rem 0; }
.bg-mid { background: var(--slate-mid); }
.content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) { .content-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.content-grid.reverse .content-img { order: -1; }
@media (min-width: 1024px) { .content-grid.reverse .content-img { order: 0; } }

.content-ornament { max-width: 280px; margin-bottom: 1.25rem; }
.content-text p { color: var(--text-muted); margin-bottom: 1rem; line-height: 1.8; }
.feature-list { margin: 1.5rem 0; display: flex; flex-direction: column; gap: 0.6rem; }
.feature-item { display: flex; align-items: center; gap: 0.75rem; color: var(--text-muted); font-size: 0.9rem; }
.feature-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--rouge-vif); flex-shrink: 0; }
.feature-icons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 1.5rem 0; }
.feature-icon-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  border: 1px solid var(--border-rouge);
  border-radius: var(--radius);
  background: rgba(192,57,43,0.04);
  transition: border-color var(--transition);
}
.feature-icon-card:hover { border-color: rgba(192,57,43,0.5); }
.feature-icon-card svg { color: var(--rouge-vif); }
.feature-icon-label { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); }

.content-img { position: relative; }
.content-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  height: 480px;
}
.content-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.img-badge {
  position: absolute;
  padding: 1.25rem 1.5rem;
  background: var(--slate-dark);
  border: 1px solid var(--border-rouge);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.img-badge-bottom { bottom: -1.5rem; left: -1.5rem; }
.img-badge-top    { top: -1.5rem; right: -1.5rem; }
.img-badge-value {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--rouge-vif);
  line-height: 1;
}
.img-badge-label { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); margin-top: 3px; }

/* ── ÉVÉNEMENTS ── */
.events-section { padding: 5rem 0; background: var(--slate-mid); }
.events-header { text-align: center; margin-bottom: 3rem; }
.events-header .ornament { max-width: 300px; margin: 0 auto 1rem; }
.events-header p { color: var(--text-muted); max-width: 600px; margin: 1.25rem auto 0; }
.events-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
@media (min-width: 768px) { .events-grid { grid-template-columns: repeat(4, 1fr); } }
.event-card {
  padding: 2rem 1.5rem;
  border: 1px solid var(--border-rouge);
  border-radius: var(--radius);
  background: rgba(26,37,48,0.7);
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}
.event-card:hover { border-color: rgba(192,57,43,0.5); transform: translateY(-5px); }
.event-icon { color: var(--rouge-vif); margin-bottom: 1rem; display: flex; justify-content: center; }
.event-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--creme);
  margin-bottom: 0.5rem;
}
.event-desc { color: var(--text-muted); font-size: 0.85rem; }
.events-cta { text-align: center; margin-top: 3rem; }

/* ── CTA FINAL ── */
.cta-section { padding: 5rem 0; background: var(--slate-dark); }
.cta-box {
  max-width: 700px;
  margin: 0 auto;
  padding: 3.5rem 2rem;
  border: 1px solid var(--border-rouge);
  border-radius: var(--radius);
  text-align: center;
  background: linear-gradient(135deg, rgba(192,57,43,0.07), rgba(33,47,61,0.5));
}
.cta-box .ornament { max-width: 260px; margin: 0 auto 1rem; }
.cta-box h2 { font-family: var(--font-display); font-size: 2rem; margin-bottom: 0.75rem; }
.cta-box p { color: var(--text-muted); margin-bottom: 2rem; }
.cta-btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ── PAGE MENU ── */
.page-header {
  position: relative;
  padding: 8rem 0 4rem;
  text-align: center;
  overflow: hidden;
}
.page-header-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(4px);
  opacity: 0.2;
}
.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--slate-mid) 0%, var(--slate-mid) 100%);
  opacity: 0.85;
}
.page-header-content { position: relative; z-index: 2; }
.page-header .ornament { max-width: 280px; margin: 0 auto 1rem; }
.page-header h1 { font-family: var(--font-display); font-size: clamp(2.5rem, 6vw, 4rem); font-weight: 900; }
.page-header h1 .accent { color: var(--rouge-vif); font-style: italic; }
.page-header p { color: var(--text-muted); max-width: 500px; margin: 1rem auto 0; }

/* Tabs menu */
.menu-tabs-bar {
  position: sticky;
  top: 64px;
  z-index: 100;
  background: rgba(26,37,48,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-rouge);
}
.menu-tabs {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
}
.menu-tabs::-webkit-scrollbar { display: none; }
.menu-tab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.1rem 1.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  cursor: pointer;
  transition: color var(--transition), border-color var(--transition);
}
.menu-tab:hover, .menu-tab.active { color: var(--rouge-vif); border-bottom-color: var(--rouge-vif); }
.menu-tab svg { color: var(--text-muted); transition: color var(--transition); }
.menu-tab:hover svg, .menu-tab.active svg { color: var(--rouge-vif); }

/* Menu content */
.menu-content { padding: 3rem 0 5rem; }
.menu-panel { display: none; }
.menu-panel.active { display: block; }
.menu-section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.menu-section-header svg { color: var(--rouge-vif); }
.menu-section-header h2 { font-family: var(--font-display); font-size: 1.8rem; }
.menu-section-header .divider { flex: 1; height: 1px; background: linear-gradient(to right, rgba(192,57,43,0.4), transparent); }
.menu-items-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 768px) { .menu-items-grid { grid-template-columns: repeat(2, 1fr); } }
.menu-item {
  padding: 1.5rem;
  border: 1px solid var(--border-rouge);
  border-radius: var(--radius);
  background: rgba(33,47,61,0.5);
  transition: border-color var(--transition);
}
.menu-item:hover { border-color: rgba(192,57,43,0.45); }
.menu-item-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; margin-bottom: 0.5rem; }
.menu-item-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--creme);
  transition: color var(--transition);
}
.menu-item:hover .menu-item-name { color: var(--rouge-vif); }
.menu-item-price { color: var(--rouge-vif); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; flex-shrink: 0; }
.menu-item-desc { color: var(--text-muted); font-size: 0.85rem; line-height: 1.6; }
.menu-item-divider { height: 1px; background: linear-gradient(to right, rgba(192,57,43,0.2), transparent); margin-top: 0.75rem; }
.menu-note {
  margin-top: 3rem;
  padding: 2rem;
  border: 1px solid var(--border-rouge);
  border-radius: var(--radius);
  background: rgba(192,57,43,0.04);
  text-align: center;
}
.menu-note p { color: var(--text-muted); font-style: italic; font-size: 0.9rem; margin-bottom: 1rem; }

/* ── PAGE CONTACT ── */
.contact-section { padding: 3rem 0 5rem; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 2fr 3fr; } }
.contact-cards { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-card {
  padding: 1.5rem;
  border: 1px solid var(--border-rouge);
  border-radius: var(--radius);
  background: rgba(33,47,61,0.7);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: border-color var(--transition);
}
.contact-card:hover { border-color: rgba(192,57,43,0.45); }
.contact-card-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(192,57,43,0.1);
  border: 1px solid var(--border-rouge);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--rouge-vif);
}
.contact-card-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.contact-card-body { color: var(--text-muted); font-size: 0.875rem; line-height: 1.7; }
.contact-card-body a:hover { color: var(--rouge-vif); }
.contact-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--rouge-vif);
  font-size: 0.75rem;
  margin-top: 0.5rem;
}
.contact-card-link:hover { text-decoration: underline; }
.contact-cta-card {
  padding: 1.5rem;
  border: 1px solid rgba(192,57,43,0.4);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(192,57,43,0.12), rgba(33,47,61,0.7));
}
.contact-cta-card h3 { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 0.5rem; }
.contact-cta-card p { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 1rem; }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid rgba(255,255,255,0.05); }
.hours-table td { padding: 0.4rem 0; font-size: 0.85rem; }
.hours-table td:first-child { color: var(--text-muted); }
.hours-table td:last-child { text-align: right; }
.hours-closed { color: rgba(192,57,43,0.7); font-style: italic; }
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-rouge);
  height: 100%;
  min-height: 500px;
}
.map-wrap iframe { width: 100%; height: 100%; min-height: 500px; border: none; display: block; }
.map-caption { color: var(--text-muted); font-size: 0.75rem; text-align: center; margin-top: 0.75rem; }

/* ── FOOTER ── */
.site-footer { background: var(--slate-dark); border-top: 1px solid var(--border-rouge); }
.footer-main { padding: 4rem 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
.footer-logo { width: 72px; height: 72px; border-radius: 50%; border: 2px solid var(--rouge-vif); object-fit: cover; margin-bottom: 1rem; }
.footer-desc { color: var(--text-muted); font-size: 0.875rem; max-width: 260px; margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: 0.75rem; }
.social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-rouge);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rouge-vif);
  transition: background var(--transition), color var(--transition);
}
.social-link:hover { background: var(--rouge-vif); color: #fff; }
.footer-heading {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--creme);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-rouge);
}
.footer-links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.875rem;
  transition: color var(--transition);
}
.footer-links a::before { content: ''; width: 16px; height: 1px; background: rgba(192,57,43,0.4); transition: width var(--transition); }
.footer-links a:hover { color: var(--rouge-vif); }
.footer-links a:hover::before { width: 24px; }
.footer-contact-list { display: flex; flex-direction: column; gap: 1rem; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 0.75rem; color: var(--text-muted); font-size: 0.875rem; }
.footer-contact-list li svg { color: var(--rouge-vif); flex-shrink: 0; margin-top: 2px; }
.footer-contact-list a:hover { color: var(--rouge-vif); }
.footer-bottom { border-top: 1px solid rgba(192,57,43,0.1); padding: 1rem 0; }
.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: center;
  text-align: center;
}
@media (min-width: 640px) { .footer-bottom-inner { flex-direction: row; justify-content: space-between; text-align: left; } }
.footer-bottom p { color: rgba(245,240,232,0.2); font-size: 0.75rem; }
.footer-separator { color: rgba(245,240,232,0.25); }
.footer-agency-link {
  color: rgba(245,240,232,0.55);
  border-bottom: 1px solid transparent;
  transition: color var(--transition), border-color var(--transition), text-shadow var(--transition);
}
.footer-agency-link:hover {
  color: var(--rouge-vif);
  border-color: rgba(192,57,43,0.65);
  text-shadow: 0 0 10px rgba(192,57,43,0.35);
}

/* Ajustements mobile footer */
@media (max-width: 639px) {
  .site-footer .container { padding: 0 1rem; }
  .footer-main { padding: 2.75rem 0 2.25rem; }
  .footer-grid { gap: 2rem; }
  .footer-heading { margin-bottom: 0.9rem; padding-bottom: 0.55rem; }
  .footer-links { gap: 0.6rem; }
  .footer-contact-list { gap: 0.8rem; }
  .footer-contact-list li { font-size: 0.9rem; }
  .footer-bottom { padding: 1.25rem 0 1.5rem; }
  .footer-bottom-inner { gap: 0.65rem; }
  .footer-bottom p {
    line-height: 1.55;
    font-size: 0.8rem;
    color: rgba(245,240,232,0.42);
  }
  .footer-separator { display: none; }
  .footer-agency-link {
    display: inline-block;
    margin-top: 0.2rem;
    overflow-wrap: anywhere;
  }
}

/* ── ANIMATIONS ── */
@keyframes pulse-glow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.08); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* AOS overrides pour thème sombre */
[data-aos] { opacity: 0; }
[data-aos].aos-animate { opacity: 1; }

/* ── PAGES CONTENU (actualites/avis/realisations) ── */
.listing-section { padding: 3rem 0 5rem; }
.content-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .content-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .content-cards-grid { grid-template-columns: repeat(3, 1fr); }
}

.content-card {
  border: 1px solid var(--border-rouge);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(33,47,61,0.6);
  display: flex;
  flex-direction: column;
}
.content-card-image-link { display: block; }
.content-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.content-card-body { padding: 1.2rem; }
.content-card-meta {
  color: var(--text-muted);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.content-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.content-card-title a:hover { color: var(--rouge-vif); }
.content-card-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.1rem;
  line-height: 1.75;
}

.pagination-bar {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 0.6rem;
}
.pagination-link {
  min-width: 38px;
  height: 38px;
  border: 1px solid var(--border-rouge);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--text-muted);
}
.pagination-link.active,
.pagination-link:hover {
  color: #fff;
  background: var(--rouge-vif);
  border-color: var(--rouge-vif);
}
.pagination-link.disabled {
  opacity: 0.35;
  pointer-events: none;
}
.pagination-link-nav {
  font-size: 1.2rem;
  line-height: 1;
}
.pagination-ellipsis {
  min-width: 28px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

.empty-state-card {
  border: 1px solid var(--border-rouge);
  border-radius: var(--radius);
  padding: 2.5rem 1.5rem;
  text-align: center;
  background: rgba(192,57,43,0.04);
}
.empty-state-card .section-title::after { margin-left: auto; margin-right: auto; }
.empty-state-card p { color: var(--text-muted); margin-top: 1rem; }

.detail-section { padding: 3rem 0 5rem; }
.detail-card {
  border: 1px solid var(--border-rouge);
  border-radius: var(--radius);
  background: rgba(33,47,61,0.6);
  padding: 1.5rem;
}
.detail-hero-image {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}
.detail-content {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.detail-content p { margin-bottom: 1rem; }
.detail-richtext * { max-width: 100%; }
.detail-richtext h2, .detail-richtext h3, .detail-richtext h4 { color: var(--creme); }

.reviews-summary {
  text-align: center;
  border: 1px solid var(--border-rouge);
  border-radius: var(--radius);
  padding: 1.6rem;
  margin-bottom: 1.6rem;
  background: rgba(192,57,43,0.04);
}
.reviews-score {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--rouge-vif);
  line-height: 1;
}
.reviews-stars {
  color: #f1c40f;
  margin: 0.5rem 0;
  letter-spacing: 0.1em;
}
.reviews-summary p { color: var(--text-muted); font-size: 0.9rem; }

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
.review-card {
  border: 1px solid var(--border-rouge);
  border-radius: var(--radius);
  background: rgba(33,47,61,0.6);
  padding: 1.2rem;
}
.review-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.4rem;
}
.review-card-head h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
}
.review-card-head a:hover { color: var(--rouge-vif); }
.review-stars { color: #f1c40f; letter-spacing: 0.08em; }

/* ── Galerie photos réalisations ── */
.photo-gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .photo-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .photo-gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
.photo-gallery-item {
  border: 1px solid var(--border-rouge);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(33,47,61,0.6);
  padding: 0;
  cursor: pointer;
}
.photo-gallery-image {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.photo-gallery-item:hover .photo-gallery-image {
  transform: scale(1.04);
}

.photo-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 4000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem 4rem;
}
.photo-lightbox.open { display: flex; }
.photo-lightbox-image {
  max-width: min(1200px, 100%);
  max-height: 80vh;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.2);
}
.photo-lightbox-caption {
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  background: rgba(0,0,0,0.45);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-size: 0.85rem;
}
.photo-lightbox-close,
.photo-lightbox-nav {
  position: absolute;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(0,0,0,0.45);
  color: #fff;
  cursor: pointer;
}
.photo-lightbox-close {
  top: 1rem;
  right: 1.2rem;
  font-size: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
}
.photo-lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.6rem;
}
.photo-lightbox-nav.prev { left: 1rem; }
.photo-lightbox-nav.next { right: 1rem; }
