/* =============================================================
   STEAK FACTORY — Design System
   Palette : noir / anthracite / rouge braise / doré / blanc chaud
   Fonts   : Oswald (titres) · Barlow (corps) · Great Vibes (accent)
   ============================================================= */

/* ---------- 1. Tokens ---------- */
:root {
  /* Couleurs */
  --sf-black:        #0E0E0F;
  --sf-anthracite:   #1A1B1E;
  --sf-surface:      #232427;
  --sf-surface-2:    #2C2D31;
  --sf-red:          #8E1B1B;   /* action / braise */
  --sf-red-bright:   #C0392B;   /* hover / urgence */
  --sf-gold:         #C9A24B;   /* accent premium   */
  --sf-gold-soft:    #E4C87E;
  --sf-cream:        #F4EFE6;   /* texte principal  */
  --sf-muted:        #9A9691;   /* texte secondaire */
  --sf-line:         rgba(201,162,75,.22); /* filets dorés */
  --sf-line-soft:    rgba(255,255,255,.08);

  /* Typo */
  --font-display: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body:    'Barlow', system-ui, sans-serif;
  --font-script:  'Great Vibes', cursive;

  /* Rythme */
  --container: 1200px;
  --radius: 4px;
  --shadow: 0 18px 50px rgba(0,0,0,.45);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- 2. Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }   /* prioritaire sur .form-grid/.notice-group */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--sf-cream);
  background: var(--sf-black);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

h1,h2,h3,h4,h5 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  margin: 0 0 .5em;
  letter-spacing: .02em;
  text-transform: uppercase;
}
h1 { font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
h3 { font-size: 1.5rem; }
p  { margin: 0 0 1.1rem; }

/* ---------- 3. Layout utils ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.section { padding: 96px 0; position: relative; }
.section--tight { padding: 64px 0; }
.bg-anthracite { background: var(--sf-anthracite); }
.bg-surface    { background: var(--sf-surface); }
.text-center   { text-align: center; }
.text-gold     { color: var(--sf-gold); }
.text-red      { color: var(--sf-red-bright); }
.muted         { color: var(--sf-muted); }

/* ---------- 4. Signature : eyebrow, titres, filet doré ---------- */
.eyebrow {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .35em;
  font-size: .8rem;
  font-weight: 500;
  color: var(--sf-gold);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.eyebrow::before,
.eyebrow.eyebrow--both::after {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--sf-gold);
  opacity: .7;
}
.script {
  font-family: var(--font-script);
  text-transform: none;
  color: var(--sf-gold-soft);
  font-size: 1.6em;
  letter-spacing: 0;
  line-height: 1;
}
.section-title { margin-bottom: 14px; }
.section-title span { color: var(--sf-red-bright); }
.section-intro { max-width: 620px; color: var(--sf-muted); font-size: 1.05rem; }
.center .section-intro { margin-inline: auto; }

/* filet doré décoratif façon "ligne de découpe" */
.rule-gold {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sf-gold) 50%, transparent);
  opacity: .5;
  border: 0;
  margin: 0;
}

/* ---------- 5. Boutons ---------- */
.btn {
  --btn-bg: var(--sf-red);
  --btn-color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .92rem;
  padding: 15px 32px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: var(--btn-bg);
  color: var(--btn-color);
  position: relative;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}
.btn:hover {
  background: var(--sf-red-bright);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(192,57,43,.35);
  color: #fff;
}
.btn--gold  { --btn-bg: var(--sf-gold); --btn-color: #17130a; }
.btn--gold:hover { background: var(--sf-gold-soft); box-shadow: 0 12px 30px rgba(201,162,75,.35); }
.btn--ghost {
  --btn-bg: transparent; --btn-color: var(--sf-cream);
  border-color: var(--sf-line);
}
.btn--ghost:hover { background: rgba(255,255,255,.06); border-color: var(--sf-gold); color: #fff; box-shadow: none; }
.btn--sm { padding: 11px 22px; font-size: .82rem; }
.btn--block { width: 100%; }

/* ---------- 6. Top bar ---------- */
.topbar {
  background: #090909;
  border-bottom: 1px solid var(--sf-line-soft);
  font-size: .85rem;
  color: var(--sf-muted);
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; min-height: 42px; gap: 20px; }
.topbar a:hover { color: var(--sf-gold); }
.topbar-info { display: flex; gap: 26px; align-items: center; }
.topbar-info i { color: var(--sf-gold); margin-right: 7px; }
.topbar-social { display: flex; gap: 16px; }

/* ---------- 7. Header / navigation ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(14,14,15,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--sf-line-soft);
  transition: background .3s var(--ease);
}
.site-header.is-scrolled { background: rgba(9,9,10,.98); box-shadow: 0 6px 24px rgba(0,0,0,.4); }
.navbar { display: flex; align-items: center; justify-content: space-between; min-height: 84px; gap: 24px; }
.brand img { height: 58px; width: auto; }
.nav-menu { display: flex; align-items: center; gap: 30px; }
.nav-menu > li > a {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: .95rem;
  font-weight: 500;
  color: var(--sf-cream);
  padding: 8px 0;
  position: relative;
}
.nav-menu > li > a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--sf-red-bright);
  transition: width .3s var(--ease);
}
.nav-menu > li > a:hover,
.nav-menu > li > a.active { color: #fff; }
.nav-menu > li > a:hover::after,
.nav-menu > li > a.active::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 14px; }

/* burger */
.nav-toggle {
  display: none; background: none; border: 0; padding: 8px;
  flex-direction: column; gap: 5px;
}
.nav-toggle span { width: 26px; height: 2px; background: var(--sf-cream); transition: .3s var(--ease); }

/* ---------- 8. Off-canvas mobile ---------- */
.mobile-nav {
  position: fixed; inset: 0 0 0 auto; width: min(84vw, 340px);
  background: var(--sf-anthracite);
  border-left: 1px solid var(--sf-line);
  transform: translateX(100%);
  transition: transform .35s var(--ease);
  z-index: 200; padding: 28px 26px; overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav .close { position: absolute; top: 18px; right: 20px; background: none; border: 0; color: var(--sf-cream); font-size: 1.6rem; }
.mobile-nav ul { margin: 40px 0 26px; }
.mobile-nav li a {
  display: block; padding: 14px 0;
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .08em;
  border-bottom: 1px solid var(--sf-line-soft); font-size: 1.05rem;
}
.mobile-nav li a:hover { color: var(--sf-gold); }
.nav-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.6); opacity: 0; visibility: hidden; transition: .3s; z-index: 150; }
.nav-overlay.open { opacity: 1; visibility: visible; }

/* ---------- 9. Réservation express (mini formulaire) ---------- */
.express {
  background: linear-gradient(180deg, var(--sf-surface), var(--sf-anthracite));
  border: 1px solid var(--sf-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 14px;
  align-items: end;
}
.express label { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; color: var(--sf-gold); margin-bottom: 7px; font-family: var(--font-display); }
.field {
  width: 100%; padding: 13px 14px;
  background: var(--sf-black); color: var(--sf-cream);
  border: 1px solid var(--sf-line-soft); border-radius: var(--radius);
  font-family: var(--font-body); font-size: .95rem;
}
.field:focus { outline: none; border-color: var(--sf-gold); }

/* ---------- 10. Footer ---------- */
.site-footer { background: #0A0A0B; padding-top: 72px; position: relative; }
.site-footer::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--sf-gold), transparent); opacity: .5; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 56px; }
.footer-col h4 { font-size: 1.05rem; letter-spacing: .12em; color: var(--sf-cream); margin-bottom: 22px; }
.footer-col img.f-logo { height: 76px; margin-bottom: 18px; }
.footer-col p { color: var(--sf-muted); font-size: .95rem; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: var(--sf-muted); font-size: .95rem; }
.footer-links a:hover { color: var(--sf-gold); padding-left: 4px; }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 14px; color: var(--sf-muted); font-size: .95rem; }
.footer-contact i { color: var(--sf-red-bright); margin-top: 4px; }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
  width: 40px; height: 40px; display: grid; place-items: center;
  border: 1px solid var(--sf-line); border-radius: 50%; color: var(--sf-cream);
}
.footer-social a:hover { background: var(--sf-red); border-color: var(--sf-red); color: #fff; }
.footer-bottom { border-top: 1px solid var(--sf-line-soft); padding: 22px 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; color: var(--sf-muted); font-size: .85rem; }
.footer-bottom a { color: var(--sf-muted); }
.footer-bottom a:hover { color: var(--sf-gold); }

/* newsletter mini */
.news-form { display: flex; gap: 8px; margin-top: 14px; }
.news-form .field { flex: 1; }

/* ---------- 11. Barre mobile fixe (Réserver/Appeler/Itinéraire/WhatsApp) ---------- */
.mobile-bar { display: none; }

/* ---------- 12. Responsive ---------- */
@media (max-width: 992px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .express { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .topbar { display: none; }
  .nav-menu, .nav-cta .btn { display: none; }
  .nav-toggle { display: flex; }
  .navbar { min-height: 70px; }
  .brand img { height: 48px; }
  .section { padding: 68px 0; }
  .express { grid-template-columns: 1fr 1fr; }

  .mobile-bar {
    display: grid; grid-template-columns: repeat(4, 1fr);
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 120;
    background: rgba(9,9,10,.97); backdrop-filter: blur(8px);
    border-top: 1px solid var(--sf-line);
  }
  .mobile-bar a {
    display: flex; flex-direction: column; align-items: center; gap: 4px;
    padding: 10px 4px; font-size: .68rem; text-transform: uppercase; letter-spacing: .05em;
    color: var(--sf-cream); font-family: var(--font-display);
  }
  .mobile-bar a i { font-size: 1.15rem; }
  .mobile-bar a.res { background: var(--sf-red); color: #fff; }
  .mobile-bar a.wa i { color: #25D366; }
  body { padding-bottom: 64px; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .express { grid-template-columns: 1fr; }
}

/* accessibilité : focus visible + reduced motion */
:focus-visible { outline: 2px solid var(--sf-gold); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* =============================================================
   SECTIONS PAGE D'ACCUEIL
   ============================================================= */

/* ---------- Hero vidéo ---------- */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden; background: #0b0b0c; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(120% 90% at 72% 18%, rgba(142,27,27,.5), transparent 55%),
    radial-gradient(90% 80% at 12% 95%, rgba(201,162,75,.16), transparent 60%),
    linear-gradient(180deg, rgba(9,9,10,.55) 0%, rgba(9,9,10,.72) 55%, #0b0b0c 100%);
}
.hero-inner { position: relative; z-index: 2; max-width: 760px; padding: 90px 0; }
.hero .script { display: block; font-size: 2.4rem; margin-bottom: 4px; }
.hero h1 { margin: 0 0 .35em; }
.hero .lead { font-size: 1.22rem; color: var(--sf-cream); max-width: 560px; margin-bottom: 34px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 44px; }
.hero .express-wrap { max-width: 940px; }

.badge-live {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .15em;
  font-size: .78rem; color: var(--sf-gold);
  border: 1px solid var(--sf-line); border-radius: 40px; padding: 7px 16px; margin-bottom: 24px;
}
.badge-live .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sf-red-bright); animation: pulse 2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(192,57,43,.6)} 70%{box-shadow:0 0 0 10px rgba(192,57,43,0)} 100%{box-shadow:0 0 0 0 rgba(192,57,43,0)} }

/* ---------- Emplacement photo élégant ---------- */
.ph {
  position: relative; overflow: hidden; border-radius: var(--radius);
  background:
    radial-gradient(140% 120% at 30% 0%, rgba(142,27,27,.22), transparent 60%),
    linear-gradient(160deg, var(--sf-surface), var(--sf-anthracite));
  border: 1px solid var(--sf-line);
  display: grid; place-items: center; text-align: center; color: var(--sf-muted);
}
.ph::after { content: ""; position: absolute; inset: 10px; border: 1px solid var(--sf-line-soft); border-radius: 2px; pointer-events: none; }
.ph i { font-size: 2rem; color: var(--sf-gold); opacity: .7; margin-bottom: 8px; display: block; }
.ph span { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .12em; font-size: .72rem; }
.ph.has-img { background: #111; }
.ph img { width: 100%; height: 100%; object-fit: cover; }
.ph-16x9 { aspect-ratio: 16/9; }
.ph-4x3  { aspect-ratio: 4/3; }
.ph-1x1  { aspect-ratio: 1/1; }
.ph-3x4  { aspect-ratio: 3/4; }

/* ---------- Concept (split image / texte) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split .ph-4x3 { min-height: 420px; }
.split-media { position: relative; }
.split-media .stamp {
  position: absolute; right: -18px; bottom: -18px; width: 128px; height: 128px; border-radius: 50%;
  background: var(--sf-red); color: #fff; display: grid; place-items: center; text-align: center;
  font-family: var(--font-display); text-transform: uppercase; line-height: 1.15; font-size: .85rem;
  box-shadow: var(--shadow); border: 3px solid var(--sf-gold);
}
.split-media .stamp b { font-size: 1.7rem; display: block; }

/* ---------- Grille de features (pourquoi / engagements) ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.feature {
  background: var(--sf-anthracite); border: 1px solid var(--sf-line-soft); border-radius: var(--radius);
  padding: 30px 26px; transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.feature:hover { transform: translateY(-4px); border-color: var(--sf-line); }
.feature .ic { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; background: rgba(142,27,27,.18); color: var(--sf-gold); font-size: 1.4rem; margin-bottom: 18px; }
.feature h3 { font-size: 1.15rem; margin-bottom: 8px; }
.feature p { color: var(--sf-muted); font-size: .95rem; margin: 0; }

/* ---------- Trio viandes / buffet / desserts ---------- */
.showcase { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.showcase-card { position: relative; border-radius: var(--radius); overflow: hidden; }
.showcase-card .ph-4x3 { min-height: 300px; border-radius: 0; }
.showcase-card .body { padding: 24px 22px; background: var(--sf-anthracite); border: 1px solid var(--sf-line-soft); border-top: 0; }
.showcase-card h3 { color: var(--sf-cream); margin-bottom: 8px; }
.showcase-card p { color: var(--sf-muted); font-size: .95rem; margin: 0; }

/* ---------- Galerie ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 14px; }
.gallery-grid a { overflow: hidden; border-radius: var(--radius); position: relative; }
.gallery-grid a.tall { grid-row: span 2; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery-grid a:hover img { transform: scale(1.07); }
.gallery-grid a .zoom { position: absolute; inset: 0; display: grid; place-items: center; background: rgba(9,9,10,.55); opacity: 0; transition: .3s; color: var(--sf-gold); font-size: 1.4rem; }
.gallery-grid a:hover .zoom { opacity: 1; }

/* ---------- Avis clients ---------- */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review {
  background: var(--sf-anthracite); border: 1px solid var(--sf-line-soft); border-radius: var(--radius);
  padding: 30px 28px; position: relative;
}
.review .stars { color: var(--sf-gold); margin-bottom: 14px; letter-spacing: 2px; }
.review p { font-style: italic; color: var(--sf-cream); }
.review .who { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.review .who .av { width: 44px; height: 44px; border-radius: 50%; background: var(--sf-red); display: grid; place-items: center; font-family: var(--font-display); color: #fff; }
.review .who b { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .05em; font-size: .95rem; }
.review .quote-ic { position: absolute; top: 22px; right: 26px; font-size: 2.4rem; color: var(--sf-line); }

/* ---------- Compteur / preuve sociale ---------- */
.counter {
  background:
    linear-gradient(rgba(9,9,10,.86), rgba(9,9,10,.9)),
    radial-gradient(90% 120% at 50% 0%, rgba(142,27,27,.35), transparent 60%), var(--sf-black);
  border-top: 1px solid var(--sf-line); border-bottom: 1px solid var(--sf-line);
}
.counter-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.counter .num { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.4rem,4vw,3.4rem); color: var(--sf-gold); line-height: 1; }
.counter .lbl { text-transform: uppercase; letter-spacing: .14em; font-size: .82rem; color: var(--sf-cream); margin-top: 10px; font-family: var(--font-display); }
.counter .sep { width: 44px; height: 2px; background: var(--sf-red); margin: 12px auto 0; }

/* ---------- Évènements ---------- */
.events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.event-card { background: var(--sf-anthracite); border: 1px solid var(--sf-line-soft); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .3s var(--ease); }
.event-card:hover { transform: translateY(-4px); }
.event-media { position: relative; }
.event-media .ph-16x9 { border-radius: 0; border: 0; }
.event-badge { position: absolute; top: 14px; left: 14px; font-family: var(--font-display); text-transform: uppercase; letter-spacing: .08em; font-size: .72rem; padding: 6px 12px; border-radius: 3px; color: #fff; }
.event-badge.nouveau { background: var(--sf-red); }
.event-badge.places_limitees { background: var(--sf-gold); color: #17130a; }
.event-badge.complet { background: #444; }
.event-date { position: absolute; bottom: 14px; right: 14px; background: rgba(9,9,10,.85); border: 1px solid var(--sf-line); border-radius: 4px; text-align: center; padding: 6px 12px; }
.event-date b { display: block; font-family: var(--font-display); font-size: 1.3rem; color: var(--sf-gold); line-height: 1; }
.event-date span { font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; color: var(--sf-muted); }
.event-body { padding: 24px 22px; display: flex; flex-direction: column; flex: 1; }
.event-body h3 { font-size: 1.25rem; margin-bottom: 10px; }
.event-body p { color: var(--sf-muted); font-size: .93rem; }
.event-meta { display: flex; gap: 18px; margin: 14px 0 20px; font-size: .82rem; color: var(--sf-muted); font-family: var(--font-display); text-transform: uppercase; letter-spacing: .05em; }
.event-meta i { color: var(--sf-gold); margin-right: 6px; }
.event-body .btn { margin-top: auto; }

/* ---------- Bandeau CTA ---------- */
.cta-band {
  position: relative; text-align: center; padding: 96px 0;
  background:
    linear-gradient(rgba(9,9,10,.82), rgba(9,9,10,.88)),
    radial-gradient(80% 140% at 50% 0%, rgba(142,27,27,.5), transparent), var(--sf-black);
  border-top: 1px solid var(--sf-line);
}
.cta-band h2 { font-size: clamp(2.2rem,4vw,3.4rem); margin-bottom: 14px; }
.cta-band p { color: var(--sf-cream); max-width: 560px; margin: 0 auto 30px; font-size: 1.1rem; }
.cta-band .btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Carte + horaires ---------- */
.info-split { display: grid; grid-template-columns: 1.2fr 1fr; gap: 0; border: 1px solid var(--sf-line); border-radius: var(--radius); overflow: hidden; }
.info-map { min-height: 460px; background: var(--sf-surface); }
.info-map iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(.3) contrast(1.05); }
.info-hours { background: var(--sf-anthracite); padding: 44px 40px; }
.info-hours h3 { margin-bottom: 24px; }
.hours-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--sf-line-soft); font-size: .95rem; }
.hours-row:last-child { border-bottom: 0; }
.hours-row .day { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .05em; }
.hours-row .h { color: var(--sf-muted); }
.hours-row.today { color: var(--sf-gold); }
.hours-row.today .h { color: var(--sf-gold); }
.hours-row .closed { color: var(--sf-red-bright); }
.info-hours .addr { margin-top: 26px; color: var(--sf-muted); font-size: .95rem; }
.info-hours .addr i { color: var(--sf-red-bright); width: 20px; }

/* ---------- CTA après section (mini) ---------- */
.section-cta { text-align: center; margin-top: 46px; }

/* ---------- Responsive accueil ---------- */
@media (max-width: 992px) {
  .feature-grid, .counter-grid { grid-template-columns: repeat(2, 1fr); }
  .showcase, .reviews-grid, .events-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 34px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .info-split { grid-template-columns: 1fr; }
  .info-map { min-height: 320px; }
}
@media (max-width: 560px) {
  .feature-grid, .counter-grid, .gallery-grid { grid-template-columns: 1fr; }
  .hero .script { font-size: 1.9rem; }
}

/* =============================================================
   PAGE INTÉRIEURE + RÉSERVATION
   ============================================================= */

/* Bandeau de page */
.page-hero {
  position: relative; text-align: center; padding: 84px 0 74px; overflow: hidden;
  background:
    radial-gradient(90% 130% at 50% 0%, rgba(142,27,27,.45), transparent 60%),
    linear-gradient(180deg, #141312, var(--sf-black));
  border-bottom: 1px solid var(--sf-line);
}
.page-hero-overlay { position: absolute; inset: 0; background: repeating-linear-gradient(115deg, rgba(0,0,0,.3) 0 3px, transparent 3px 7px); opacity: .12; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); margin: 6px 0 12px; }
.page-hero p { color: var(--sf-muted); max-width: 520px; margin: 0 auto; font-size: 1.08rem; }

/* Layout réservation */
.res-layout { display: grid; grid-template-columns: 1.7fr 1fr; gap: 40px; align-items: start; }
.res-form { background: var(--sf-anthracite); border: 1px solid var(--sf-line-soft); border-radius: var(--radius); padding: 40px; }
.form-legend { font-size: 1.05rem; letter-spacing: .1em; color: var(--sf-gold); margin: 28px 0 18px; padding-bottom: 10px; border-bottom: 1px solid var(--sf-line-soft); }
.form-legend:first-child { margin-top: 0; }
.form-legend .opt { color: var(--sf-muted); font-size: .78rem; letter-spacing: .05em; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; }
.form-group--full { grid-column: 1 / -1; }
.form-group label { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .08em; font-size: .78rem; color: var(--sf-cream); margin-bottom: 8px; }
.res-form textarea.field { resize: vertical; min-height: 90px; font-family: var(--font-body); }
.field.is-error { border-color: var(--sf-red-bright); }
.err { color: var(--sf-red-bright); font-size: .8rem; margin-top: 6px; }

/* Pills service */
.pill-group { display: flex; gap: 10px; }
.pill { flex: 1; position: relative; cursor: pointer; }
.pill input { position: absolute; opacity: 0; }
.pill span {
  display: block; text-align: center; padding: 12px 8px; border-radius: var(--radius);
  border: 1px solid var(--sf-line-soft); background: var(--sf-black); color: var(--sf-muted);
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .05em; font-size: .82rem; transition: .2s var(--ease);
}
.pill input:checked + span { background: var(--sf-red); border-color: var(--sf-red); color: #fff; }
.pill input:focus-visible + span { outline: 2px solid var(--sf-gold); outline-offset: 2px; }

/* Cases à cocher */
.check-line { display: flex; align-items: center; gap: 12px; cursor: pointer; text-transform: none; letter-spacing: 0; font-family: var(--font-body); color: var(--sf-cream); font-size: .96rem; }
.check-line input { width: 20px; height: 20px; accent-color: var(--sf-red); flex: none; }
.check-line i { color: var(--sf-gold); }
.birthday-toggle { margin: 22px 0 4px; padding: 16px 20px; background: var(--sf-black); border: 1px solid var(--sf-line-soft); border-radius: var(--radius); }

/* Blocs conditionnels */
.conditional { margin-top: 16px; padding: 20px; background: var(--sf-black); border: 1px dashed var(--sf-line); border-radius: var(--radius); }

/* Notice grande tablée / alertes */
.notice-group { display: flex; gap: 14px; align-items: flex-start; margin: 20px 0 0; padding: 16px 20px; background: rgba(201,162,75,.1); border: 1px solid var(--sf-line); border-radius: var(--radius); color: var(--sf-cream); font-size: .92rem; }
.notice-group i { color: var(--sf-gold); font-size: 1.2rem; margin-top: 2px; }
.alert { display: flex; align-items: center; gap: 12px; padding: 16px 20px; border-radius: var(--radius); margin-bottom: 26px; font-size: .95rem; }
.alert-error { background: rgba(192,57,43,.14); border: 1px solid rgba(192,57,43,.4); color: #f4b6ae; }
.alert-error i { color: var(--sf-red-bright); }
.form-note { color: var(--sf-muted); font-size: .82rem; margin-top: 16px; }

/* Bannière évènement */
.event-banner { display: flex; align-items: center; gap: 16px; padding: 18px 24px; margin-bottom: 26px; background: linear-gradient(90deg, rgba(142,27,27,.2), transparent); border: 1px solid var(--sf-line); border-left: 3px solid var(--sf-red); border-radius: var(--radius); }
.event-banner i { font-size: 1.6rem; color: var(--sf-gold); }
.event-banner strong { display: block; font-family: var(--font-display); text-transform: uppercase; letter-spacing: .05em; }
.event-banner span { color: var(--sf-muted); font-size: .9rem; }

/* Colonne réassurance */
.res-aside { position: sticky; top: 110px; }
.reassure { background: linear-gradient(180deg, var(--sf-surface), var(--sf-anthracite)); border: 1px solid var(--sf-line); border-radius: var(--radius); padding: 32px 30px; }
.reassure h3 { font-size: 1.3rem; margin-bottom: 20px; }
.reassure-list { margin-bottom: 26px; }
.reassure-list li { display: flex; align-items: center; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--sf-line-soft); color: var(--sf-cream); font-size: .95rem; }
.reassure-list li:last-child { border-bottom: 0; }
.reassure-list i { color: var(--sf-gold); width: 22px; text-align: center; }
.reassure-contact { border-top: 1px solid var(--sf-line-soft); padding-top: 22px; }
.reassure-contact p { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .06em; font-size: .85rem; margin-bottom: 12px; }

/* Confirmation */
.res-success { max-width: 640px; margin: 0 auto; text-align: center; padding: 20px; }
.res-success .check { width: 90px; height: 90px; border-radius: 50%; background: var(--sf-red); display: grid; place-items: center; margin: 0 auto 26px; font-size: 2.4rem; color: #fff; border: 3px solid var(--sf-gold); }
.res-success h2 { margin-bottom: 14px; }
.res-success p { color: var(--sf-muted); font-size: 1.05rem; margin-bottom: 30px; }
.res-success-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 900px) {
  .res-layout { grid-template-columns: 1fr; }
  .res-aside { position: static; order: -1; }
  .res-form { padding: 28px 22px; }
  .form-grid { grid-template-columns: 1fr; }
  .pill-group { flex-direction: row; }
}

/* =============================================================
   PAGES : CARTE, GALERIE, ÉVÈNEMENTS, CONTACT
   ============================================================= */

/* ---------- Formules ---------- */
.formules-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.formule {
  position: relative; background: var(--sf-anthracite); border: 1px solid var(--sf-line-soft);
  border-radius: var(--radius); padding: 32px 26px; text-align: center; display: flex; flex-direction: column;
}
.formule--featured { border-color: var(--sf-gold); box-shadow: 0 0 0 1px var(--sf-gold), var(--shadow); }
.formule-tag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--sf-gold); color: #17130a; font-family: var(--font-display); text-transform: uppercase; letter-spacing: .08em; font-size: .72rem; padding: 5px 14px; border-radius: 20px; }
.formule h3 { font-size: 1.2rem; margin-bottom: 12px; }
.formule-price { font-family: var(--font-display); font-weight: 700; font-size: 2.4rem; color: var(--sf-gold); line-height: 1; }
.formule-when { color: var(--sf-muted); font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; margin: 8px 0 20px; }
.formule ul { text-align: left; margin-bottom: 24px; flex: 1; }
.formule li { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--sf-line-soft); font-size: .92rem; color: var(--sf-cream); }
.formule li i { color: var(--sf-red-bright); font-size: .82rem; }
.menu-note { text-align: center; color: var(--sf-muted); font-size: .85rem; margin-top: 30px; max-width: 720px; margin-inline: auto; }

/* ---------- Carte détaillée ---------- */
.menu-cats { display: grid; grid-template-columns: 1fr 1fr; gap: 40px 56px; }
.menu-cat h3 { display: flex; align-items: center; gap: 12px; font-size: 1.3rem; padding-bottom: 14px; margin-bottom: 18px; border-bottom: 1px solid var(--sf-line); }
.menu-cat h3 i { color: var(--sf-gold); }
.menu-items li { display: flex; align-items: baseline; gap: 8px; padding: 11px 0; }
.mi-name { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .04em; font-size: .98rem; color: var(--sf-cream); white-space: nowrap; }
.mi-dots { flex: 1; border-bottom: 1px dotted var(--sf-line); transform: translateY(-3px); }
.mi-desc { color: var(--sf-muted); font-size: .88rem; text-align: right; font-style: italic; }

/* ---------- Galerie ---------- */
.gallery-filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px; }
.filter-btn {
  background: transparent; border: 1px solid var(--sf-line-soft); color: var(--sf-muted);
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .08em; font-size: .82rem;
  padding: 9px 20px; border-radius: 30px; transition: .2s var(--ease);
}
.filter-btn:hover { color: var(--sf-cream); border-color: var(--sf-line); }
.filter-btn.active { background: var(--sf-red); border-color: var(--sf-red); color: #fff; }
.gallery-masonry { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gal-item { position: relative; overflow: hidden; border-radius: var(--radius); display: block; cursor: pointer; }
.gal-item .ph { border-radius: var(--radius); }
.gal-item img { transition: transform .5s var(--ease); }
.gal-item:hover img { transform: scale(1.07); }
.gal-item .zoom { position: absolute; inset: 0; display: grid; place-items: center; background: rgba(9,9,10,.55); opacity: 0; transition: .3s; color: var(--sf-gold); font-size: 1.4rem; }
.gal-item:hover .zoom { opacity: 1; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 300; background: rgba(6,6,7,.94); display: flex; align-items: center; justify-content: center; padding: 30px; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: var(--radius); box-shadow: var(--shadow); }
.lightbox-close { position: absolute; top: 22px; right: 30px; background: none; border: 0; color: var(--sf-cream); font-size: 2.4rem; line-height: 1; }
.lightbox-close:hover { color: var(--sf-gold); }

/* ---------- Évènements ---------- */
.events-grid--full { grid-template-columns: repeat(3, 1fr); }
.events-empty { text-align: center; max-width: 560px; margin: 0 auto; padding: 30px 0; }
.events-empty i { font-size: 3rem; color: var(--sf-gold); opacity: .6; margin-bottom: 20px; }
.events-empty h3 { margin-bottom: 12px; }
.events-empty p { color: var(--sf-muted); }

/* ---------- Contact ---------- */
.contact-layout { display: grid; grid-template-columns: 1.6fr 1fr; gap: 40px; align-items: start; margin-bottom: 40px; }
.contact-info { position: sticky; top: 110px; }
.contact-list { margin-bottom: 24px; }
.contact-list li { display: flex; gap: 14px; align-items: flex-start; padding: 12px 0; border-bottom: 1px solid var(--sf-line-soft); color: var(--sf-cream); font-size: .95rem; }
.contact-list li:last-child { border-bottom: 0; }
.contact-list i { color: var(--sf-red-bright); margin-top: 4px; width: 20px; text-align: center; }
.contact-map { border: 1px solid var(--sf-line); border-radius: var(--radius); overflow: hidden; min-height: 380px; }
.contact-map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; filter: grayscale(.3) contrast(1.05); }

@media (max-width: 992px) {
  .formules-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-cats { grid-template-columns: 1fr; gap: 32px; }
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); }
  .events-grid--full { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info { position: static; order: -1; }
}
@media (max-width: 560px) {
  .formules-grid { grid-template-columns: 1fr; }
  .gallery-masonry { grid-template-columns: 1fr 1fr; }
  .mi-desc { display: none; }
}

/* ---------- Pages légales ---------- */
.legal-content { max-width: 820px; margin: 0 auto; }
.legal-content h2 { font-size: 1.4rem; color: var(--sf-gold); margin: 40px 0 16px; padding-bottom: 10px; border-bottom: 1px solid var(--sf-line-soft); }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { font-size: 1.05rem; color: var(--sf-cream); margin: 24px 0 10px; }
.legal-content p, .legal-content li { color: var(--sf-muted); font-size: 1rem; line-height: 1.75; }
.legal-content ul { margin: 0 0 18px; padding-left: 22px; list-style: disc; }
.legal-content li { margin-bottom: 8px; }
.legal-content a { color: var(--sf-gold); text-decoration: underline; }
.legal-content strong { color: var(--sf-cream); }
.legal-content .todo { color: var(--sf-red-bright); font-style: italic; }
.legal-updated { color: var(--sf-muted); font-size: .85rem; margin-top: 40px; padding-top: 18px; border-top: 1px solid var(--sf-line-soft); }
