/* ============================================================
   VARTO GRILL — « LA BRAISE »
   Refonte cinématique. Noir profond, rouge enseigne, blanc chaud.
   Typos : Anton (display), Fraunces italique (accents), Manrope (texte).
   Motion : GSAP + ScrollTrigger + Lenis (js/cinema.js).
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --noir:        #070708;
  --noir-2:      #0C0C0E;
  --noir-3:      #121214;
  --rouge:       #E11B1B;
  --rouge-vif:   #FF2A23;
  --rouge-deep:  #8E1010;
  --blanc:       #F7F2E9;   /* blanc chaud néon enseigne */
  --blanc-pur:   #FFFFFF;
  --gris:        #98918A;
  --gris-sombre: #4A4643;
  --ligne:       rgba(247, 242, 233, 0.10);
  --ligne-rouge: rgba(225, 27, 27, 0.45);

  --f-display: 'Anton', 'Arial Narrow', sans-serif;
  --f-accent:  'Fraunces', Georgia, serif;
  --f-body:    'Manrope', 'Helvetica Neue', sans-serif;

  --container: 1280px;
  --pad: clamp(20px, 4vw, 48px);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --glow-rouge: 0 0 24px rgba(255, 42, 35, 0.45), 0 0 80px rgba(225, 27, 27, 0.25);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  margin: 0;
  background: var(--noir);
  color: var(--blanc);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
::selection { background: var(--rouge); color: #fff; }

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
h1, h2, h3, h4, p { margin: 0; }

.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--pad); }
section[id] { scroll-margin-top: 70px; }

/* Grain cinéma */
body::after {
  content: '';
  position: fixed; inset: -50%;
  pointer-events: none; z-index: 9990;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.05;
  animation: grain 0.9s steps(2) infinite;
}
@keyframes grain {
  0% { transform: translate(0, 0); }
  50% { transform: translate(-2%, 1.4%); }
  100% { transform: translate(1.6%, -1%); }
}

/* ---------- Typo utilitaires ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-body); font-weight: 700;
  font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--rouge-vif);
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--rouge-vif); box-shadow: 0 0 12px var(--rouge-vif); }

.section-title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(44px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--blanc);
  margin-top: 14px;
}
.section-title em {
  font-family: var(--f-accent);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--rouge-vif);
  font-size: 0.94em;
}

.lead { color: var(--gris); font-size: 17px; max-width: 52ch; }
.lead strong { color: var(--blanc); font-weight: 600; }

/* Masques de révélation (lignes de titres) */
.mask { display: block; overflow: hidden; }
.mask > .mline { display: block; will-change: transform; }
html.js .mask > .mline { transform: translateY(110%); }
html.js [data-reveal] { opacity: 0; }

/* ---------- Curseur custom (desktop) ---------- */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999;
  border-radius: 50%; transform: translate(-50%, -50%);
  display: none;
}
@media (min-width: 981px) and (pointer: fine) {
  .cursor-dot, .cursor-ring { display: block; }
  .cursor-dot { width: 8px; height: 8px; background: var(--rouge-vif); box-shadow: 0 0 10px var(--rouge-vif); }
  .cursor-ring {
    width: 42px; height: 42px;
    border: 1px solid rgba(255, 42, 35, 0.5);
    transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out),
                background 0.3s, border-color 0.3s;
  }
  .cursor-ring.is-hover { width: 72px; height: 72px; background: rgba(225, 27, 27, 0.12); border-color: var(--rouge-vif); }
}

/* ---------- Préloader ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--noir);
  display: grid; place-items: center;
}
.preloader__word {
  font-family: var(--f-display);
  font-size: clamp(48px, 10vw, 140px);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: flex;
}
.preloader__word .ch { color: var(--gris-sombre); display: inline-block; }
.preloader__word .ch.sp { width: 0.35em; }
.preloader__bar {
  position: absolute; left: 0; bottom: 0; height: 3px; width: 100%;
  background: var(--rouge); transform-origin: left center; transform: scaleX(0);
  box-shadow: var(--glow-rouge);
}
html.no-js .preloader { display: none; }

/* ---------- Barre de progression de scroll ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 1060;
  transform: scaleX(0); transform-origin: 0 50%; will-change: transform;
  background: linear-gradient(90deg, var(--rouge), var(--rouge-vif));
  box-shadow: 0 0 12px rgba(255, 42, 35, 0.55);
}

/* ---------- Barre de navigation ---------- */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1050;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--pad);
  transition: transform 0.5s var(--ease-out);
}
.topbar.is-hidden { transform: translateY(-110%); }
.brand {
  display: inline-flex; gap: 7px; align-items: baseline;
  font-family: var(--f-display); font-size: 21px; letter-spacing: 0.06em; text-transform: uppercase;
}
.brand .v { color: var(--blanc); text-shadow: 0 0 18px rgba(247, 242, 233, 0.35); }
.brand .g { color: var(--rouge-vif); text-shadow: 0 0 18px rgba(255, 42, 35, 0.5); }
.topbar__right { display: flex; align-items: center; gap: 14px; }

.burger {
  position: relative;
  width: 52px; height: 52px; border-radius: 50%;
  border: 1px solid var(--ligne);
  background: rgba(7, 7, 8, 0.35); backdrop-filter: blur(8px);
  display: grid; place-items: center;
  transition: border-color 0.3s, background 0.3s;
}
.burger:hover { border-color: var(--ligne-rouge); }
.burger i {
  display: block; width: 20px; height: 2px; background: var(--blanc);
  transition: transform 0.4s var(--ease-out), opacity 0.3s;
}
.burger i + i { margin-top: 5px; }
.burger.is-open { background: var(--rouge); border-color: var(--rouge); }
.burger.is-open i:first-child { transform: translateY(3.5px) rotate(45deg); }
.burger.is-open i:last-child { transform: translateY(-3.5px) rotate(-45deg); }

/* ---------- Menu plein écran ---------- */
.nav-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: var(--noir-2);
  clip-path: inset(0 0 100% 0);
  visibility: hidden;
  overflow: hidden;
}
.nav-overlay::before {
  content: 'VARTO';
  position: absolute; right: -4vw; bottom: -6vw;
  font-family: var(--f-display); font-size: 34vw; line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(225, 27, 27, 0.16);
  pointer-events: none;
}
.nav-overlay__inner {
  height: 100%;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px;
  align-items: center;
  padding-top: 80px; padding-bottom: 48px;
}
.nav-overlay__links { display: flex; flex-direction: column; }
.nav-overlay__links a {
  position: relative;
  font-family: var(--f-display); text-transform: uppercase;
  font-size: clamp(38px, 6.4vh, 68px); line-height: 1.16;
  color: var(--blanc);
  display: flex; align-items: baseline; gap: 18px;
  width: fit-content;
  transition: color 0.3s;
}
.nav-overlay__links a .i {
  font-family: var(--f-body); font-size: 12px; font-weight: 700;
  letter-spacing: 0.2em; color: var(--rouge-vif);
}
.nav-overlay__links a::after {
  content: ''; position: absolute; left: 0; bottom: 6px;
  width: 100%; height: 3px; background: var(--rouge);
  transform: scaleX(0); transform-origin: left center;
  transition: transform 0.45s var(--ease-out);
}
.nav-overlay__links a:hover, .nav-overlay__links a.is-active { color: var(--rouge-vif); }
.nav-overlay__links a:hover::after { transform: scaleX(1); }
.nav-overlay__aside { display: flex; flex-direction: column; gap: 26px; }
.nav-overlay__block { border-left: 2px solid var(--rouge); padding-left: 18px; }
.nav-overlay__block .k {
  display: block; font-size: 11px; font-weight: 800;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--gris); margin-bottom: 6px;
}
.nav-overlay__block .big { font-family: var(--f-display); font-size: 30px; letter-spacing: 0.03em; }
.nav-overlay__block a:hover { color: var(--rouge-vif); }
@media (max-width: 860px) {
  .nav-overlay__inner { grid-template-columns: 1fr; gap: 30px; align-content: center; }
  .nav-overlay__links a { font-size: clamp(30px, 5.4vh, 52px); }
  .nav-overlay::before { font-size: 60vw; }
}

/* ---------- HERO ---------- */
.hero { position: relative; height: 190vh; }
.hero__sticky { position: sticky; top: 0; height: 100vh; height: 100svh; overflow: hidden; }
.hero__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.05);
}
.hero__video--mob { display: none; }
@media (max-width: 767px) {
  .hero__video--desk { display: none; }
  .hero__video--mob { display: block; }
}
.hero__scrim {
  position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(180deg, rgba(7,7,8,0.55) 0%, rgba(7,7,8,0.15) 35%, rgba(7,7,8,0.35) 70%, var(--noir) 100%);
}
.hero__vignette {
  position: absolute; inset: 0; z-index: 2;
  background: radial-gradient(120% 90% at 50% 45%, transparent 50%, rgba(7,7,8,0.8) 100%);
}
/* Film noir : voile sombre plein écran au repos, se dissipe au premier scroll */
.hero__noir {
  position: absolute; inset: 0; z-index: 3;
  background: rgba(0, 0, 0, 0.45);
}
.hero__inner {
  position: absolute; inset: 0; z-index: 4;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-bottom: clamp(48px, 9vh, 110px);
}
.hero__title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(52px, min(10.5vw, 16.5vh), 160px);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  color: var(--blanc);
  text-shadow: 0 2px 6px rgba(7, 7, 8, 0.65), 0 10px 24px rgba(7, 7, 8, 0.4);
}
.hero__title em {
  font-family: var(--f-accent); font-style: italic; font-weight: 350;
  text-transform: none; font-size: 0.92em;
  color: var(--rouge-vif);
  text-shadow: 0 2px 6px rgba(7, 7, 8, 0.65), 0 0 22px rgba(255, 42, 35, 0.5);
}
.hero-eyebrow { margin-bottom: 18px; }
.hero-sub {
  margin-top: clamp(14px, 2.4vh, 26px);
  font-size: clamp(15px, 1.6vw, 18px);
  color: #C9C2B8;
  text-shadow: 0 2px 18px rgba(7, 7, 8, 0.9);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: clamp(18px, 3vh, 32px); }

.hero-strip {
  display: flex; gap: clamp(24px, 5vw, 64px);
  margin-top: clamp(18px, 3.6vh, 44px);
  padding-top: clamp(14px, 2.4vh, 24px);
  border-top: 1px solid var(--ligne);
}
.hero-strip .stat .num {
  font-family: var(--f-display); font-size: clamp(24px, 3vw, 40px);
  color: var(--blanc); letter-spacing: 0.02em;
}
.hero-strip .stat .lbl {
  font-size: 11px; font-weight: 700; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--gris); margin-top: 4px;
}

.hero__scroll {
  position: absolute; z-index: 4; right: var(--pad); bottom: 26px;
  display: flex; align-items: center; gap: 12px;
  font-size: 11px; font-weight: 800; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gris);
}
.hero__scroll .lineV {
  width: 1px; height: 44px;
  background: linear-gradient(180deg, var(--rouge-vif), transparent);
}
@media (max-width: 640px) { .hero__scroll { display: none; } }

/* ---------- Boutons ---------- */
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 30px; border-radius: 999px;
  font-family: var(--f-body); font-weight: 800; font-size: 13px;
  letter-spacing: 0.18em; text-transform: uppercase;
  overflow: hidden;
  transition: color 0.35s, border-color 0.35s, box-shadow 0.35s, transform 0.35s var(--ease-out);
}
.btn .ico { width: 16px; height: 16px; }
.btn--primary { background: var(--rouge); color: #fff; }
.btn--primary::before {
  content: ''; position: absolute; inset: 0;
  background: var(--rouge-vif);
  transform: translateY(101%); transition: transform 0.45s var(--ease-out);
}
.btn--primary:hover::before { transform: translateY(0); }
.btn--primary:hover { box-shadow: var(--glow-rouge); }
.btn--primary > * { position: relative; z-index: 1; }
.btn--outline { border: 1px solid var(--ligne); color: var(--blanc); background: rgba(7,7,8,0.2); }
.btn--outline:hover { border-color: var(--rouge-vif); color: var(--rouge-vif); }
.btn--glass {
  border: 1px solid var(--ligne); color: var(--blanc);
  background: rgba(247, 242, 233, 0.06); backdrop-filter: blur(10px);
}
.btn--glass:hover { border-color: var(--ligne-rouge); background: rgba(225, 27, 27, 0.14); }
.btn--lg { padding: 19px 36px; }

/* ---------- Marquee ---------- */
.marquee {
  position: relative;
  padding: 26px 0;
  border-top: 1px solid var(--ligne-rouge);
  border-bottom: 1px solid var(--ligne-rouge);
  background: var(--noir);
  overflow: hidden;
}
.marquee__track { display: flex; white-space: nowrap; width: max-content; will-change: transform; }
.marquee__track span {
  font-family: var(--f-display); text-transform: uppercase;
  font-size: clamp(26px, 3.4vw, 46px); letter-spacing: 0.04em;
  color: var(--blanc);
  padding-right: 28px;
  display: inline-flex; align-items: center; gap: 28px;
}
.marquee__track span::after { content: '✕'; color: var(--rouge); font-size: 0.55em; }
.marquee__track span:nth-child(even) {
  color: transparent;
  -webkit-text-stroke: 1px rgba(247, 242, 233, 0.45);
}

/* ---------- Sections ---------- */
.section { position: relative; padding: clamp(90px, 13vh, 160px) 0; }
#carte { padding-top: clamp(50px, 7vh, 90px); }
#acces { padding-bottom: clamp(40px, 6vh, 70px); }
.section--inset { background: var(--noir-2); }

.section-head { margin-bottom: clamp(40px, 6vh, 72px); }
.section-head--split {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.section-head--center { text-align: center; }

/* ---------- Statement (texte qui s'embrase au scroll) ---------- */
.statement { position: relative; background: var(--noir); padding: clamp(90px, 14vh, 170px) 0 clamp(40px, 6vh, 70px); }
.statement__inner { max-width: 1100px; margin-inline: auto; padding-inline: var(--pad); }
.statement__txt {
  font-family: var(--f-display);
  font-size: clamp(36px, 6.4vw, 88px);
  line-height: 1.06;
  text-transform: uppercase;
  color: var(--blanc);
}
.statement__txt .w { display: inline-block; }
.statement__txt .w em {
  font-family: var(--f-accent); font-style: italic; text-transform: none; font-weight: 400;
}
.statement__sig {
  margin-top: 40px;
  font-family: var(--f-accent); font-style: italic; font-size: clamp(18px, 2.2vw, 26px);
  color: var(--gris);
}

/* ---------- Carte (aperçu grid) ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.chip {
  padding: 11px 22px; border-radius: 999px;
  border: 1px solid var(--ligne);
  font-size: 12px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gris);
  transition: all 0.3s;
}
.chip:hover { border-color: var(--ligne-rouge); color: var(--blanc); }
.chip.is-active { background: var(--rouge); border-color: var(--rouge); color: #fff; box-shadow: 0 0 20px rgba(225, 27, 27, 0.35); }

.menu-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
@media (max-width: 1020px) { .menu-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .menu-grid { grid-template-columns: 1fr; } }

.dish {
  position: relative;
  background: var(--noir-3);
  border: 1px solid var(--ligne);
  border-radius: 18px;
  overflow: hidden;
  transition: border-color 0.4s, transform 0.5s var(--ease-out), box-shadow 0.5s;
}
.dish:hover {
  border-color: var(--ligne-rouge);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), 0 0 40px rgba(225, 27, 27, 0.12);
}
.dish__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.dish__media img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.9s var(--ease-out), filter 0.6s;
}
.dish:hover .dish__media img { transform: scale(1.1); filter: saturate(1.15); }
.dish__media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(7,7,8,0.75) 100%);
}
.dish__body { padding: 20px 22px 24px; }
.dish__top { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.dish__name {
  font-family: var(--f-display); font-weight: 400;
  font-size: 21px; letter-spacing: 0.03em; text-transform: uppercase;
}
.dish__price {
  margin-left: auto;
  display: inline-flex; align-items: baseline; gap: 8px;
  font-family: var(--f-display); font-size: 21px;
  color: var(--rouge-vif);
}
.dish__menu {
  font-family: var(--f-body); font-weight: 700;
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gris);
}
.dish__desc { color: var(--gris); font-size: 14px; margin-top: 8px; }
.dish__tags { display: flex; gap: 8px; margin-top: 14px; flex-wrap: wrap; }
.dish__tags span {
  font-size: 10px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gris);
  border: 1px solid var(--ligne); border-radius: 999px; padding: 5px 10px;
}
.badge {
  font-size: 10px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase;
  border-radius: 999px; padding: 5px 11px;
}
.badge--red { background: var(--rouge); color: #fff; }
.badge--ember { background: rgba(255, 42, 35, 0.15); color: var(--rouge-vif); border: 1px solid var(--ligne-rouge); }

.menu-cta { text-align: center; margin-top: 48px; }
.menu-note { color: var(--gris); font-size: 13px; text-align: center; margin-top: 36px; }

/* ---------- Histoire ---------- */
.about-grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 6vw, 90px); align-items: center;
}
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }
/* aspect-ratio fixe + image surdimensionnée : la parallaxe (±8%) ne découvre jamais les bords */
.about-media { position: relative; border-radius: 18px; overflow: hidden; aspect-ratio: 4 / 5; }
.about-media img { position: absolute; top: -10%; left: 0; width: 100%; height: 120%; object-fit: cover; will-change: transform; }
.about-tag {
  position: absolute; left: 18px; bottom: 18px; z-index: 2;
  background: rgba(7, 7, 8, 0.72); backdrop-filter: blur(10px);
  border: 1px solid var(--ligne-rouge); border-radius: 14px;
  padding: 14px 20px;
}
.about-tag .y { font-family: var(--f-display); font-size: 30px; color: var(--rouge-vif); }
.about-tag .l { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gris); }
.pillars { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }
.pillar {
  flex: 1 1 140px;
  border: 1px solid var(--ligne); border-radius: 14px;
  padding: 20px 18px;
  transition: border-color 0.3s, background 0.3s;
}
.pillar:hover { border-color: var(--ligne-rouge); background: rgba(225, 27, 27, 0.06); }
.pillar .ico { width: 22px; height: 22px; color: var(--rouge-vif); }
.pillar .t { font-family: var(--f-display); text-transform: uppercase; font-size: 17px; letter-spacing: 0.04em; margin-top: 12px; }
.pillar .s { font-size: 12px; color: var(--gris); margin-top: 3px; }

/* ---------- Galerie (parallaxe multi-vitesses) ---------- */
.gallery { overflow: clip; }
.gallery-cols {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2vw, 24px);
  align-items: start;
}
@media (max-width: 700px) { .gallery-cols { grid-template-columns: repeat(2, 1fr); } }
.gallery-col { display: flex; flex-direction: column; gap: clamp(14px, 2vw, 24px); will-change: transform; }
.gallery-col:nth-child(2) { margin-top: clamp(40px, 8vh, 110px); }
@media (min-width: 701px) { .gallery-col:nth-child(3) { margin-top: clamp(20px, 4vh, 60px); } }
.tile { position: relative; border-radius: 16px; overflow: hidden; border: 1px solid var(--ligne); }
.tile img {
  width: 100%; aspect-ratio: 3 / 4; object-fit: cover;
  transition: transform 0.9s var(--ease-out);
}
.tile--wide img { aspect-ratio: 4 / 3; }
.tile:hover img { transform: scale(1.07); }
.tile .cap {
  position: absolute; left: 14px; bottom: 12px; z-index: 2;
  font-size: 11px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--blanc);
  text-shadow: 0 2px 12px rgba(0,0,0,0.8);
}
.tile::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(7,7,8,0.7) 100%);
}

/* ---------- Avis ---------- */
.reviews-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 30px; flex-wrap: wrap; margin-bottom: 48px;
}
.gscore { display: flex; align-items: center; gap: 18px; }
.gscore .num { font-family: var(--f-display); font-size: 72px; line-height: 1; color: var(--blanc); }
.gscore .meta { display: flex; flex-direction: column; gap: 5px; }
.gscore .stars { display: flex; gap: 3px; color: var(--rouge-vif); }
.gscore .stars svg, .review__stars svg { width: 15px; height: 15px; }
.gscore .stars .off, .review__stars .off { color: var(--gris-sombre); }
.gscore .count { font-size: 13px; color: var(--gris); }
.gscore .glogo { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 700; color: var(--gris); }
.gscore .glogo svg { width: 15px; height: 15px; }

.tw { display: flex; flex-direction: column; gap: 18px; overflow: hidden; }
.tw__row { display: flex; gap: 18px; width: max-content; will-change: transform; }
.tw__row .review { width: min(420px, 84vw); flex-shrink: 0; }
.review {
  background: var(--noir-3);
  border: 1px solid var(--ligne); border-radius: 16px;
  padding: 24px;
  transition: border-color 0.3s;
}
.review:hover { border-color: var(--ligne-rouge); }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 18px; }
.review__top { display: flex; align-items: center; gap: 12px; }
.review__av {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--rouge); color: #fff;
  font-family: var(--f-display); font-size: 19px;
}
.review__who { display: flex; flex-direction: column; }
.review__name { font-weight: 700; font-size: 14px; }
.review__when { font-size: 12px; color: var(--gris); }
.review__stars { display: inline-flex; gap: 3px; color: var(--rouge-vif); margin-top: 12px; }
.review__text { color: var(--gris); font-size: 14px; margin-top: 10px; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: clamp(36px, 6vw, 90px); align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.info-list { display: flex; flex-direction: column; gap: 4px; margin-top: 34px; }
.info-row {
  display: flex; gap: 16px; align-items: center;
  padding: 16px 0; border-bottom: 1px solid var(--ligne);
}
.info-row .ic {
  width: 44px; height: 44px; flex-shrink: 0;
  display: grid; place-items: center;
  border: 1px solid var(--ligne-rouge); border-radius: 50%;
  color: var(--rouge-vif);
}
.info-row .ic svg { width: 18px; height: 18px; }
.info-row .k { font-size: 11px; font-weight: 800; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gris); }
.info-row .v { font-size: 15px; margin-top: 2px; }
.info-row .v a:hover { color: var(--rouge-vif); }
.hours { margin-top: 34px; }
.hours-row {
  display: flex; justify-content: space-between;
  padding: 10px 14px; border-radius: 10px;
  font-size: 14px; color: var(--gris);
}
.hours-row .d { font-weight: 600; }
.hours-row.is-today { background: rgba(225, 27, 27, 0.12); color: var(--blanc); border: 1px solid var(--ligne-rouge); }
.hours-row.is-closed .h { color: var(--rouge-vif); font-weight: 700; }

.call-card {
  position: relative;
  background:
    radial-gradient(120% 100% at 100% 0%, rgba(225, 27, 27, 0.16), transparent 55%),
    var(--noir-3);
  border: 1px solid var(--ligne-rouge); border-radius: 22px;
  padding: clamp(28px, 4vw, 44px);
  overflow: hidden;
}
.call-card__eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 11px; font-weight: 800; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--rouge-vif);
}
.call-card__eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--rouge-vif); box-shadow: 0 0 12px var(--rouge-vif); }
.call-card__title {
  font-family: var(--f-display); text-transform: uppercase; font-weight: 400;
  font-size: clamp(32px, 4vw, 48px); line-height: 1; margin-top: 16px;
}
.call-card__sub { color: var(--gris); margin-top: 14px; }
.call-card__cta { width: 100%; margin-top: 16px; }
.call-card__foot {
  display: flex; align-items: center; gap: 9px;
  margin-top: 20px; font-size: 13px; color: var(--gris);
}
.call-card__foot svg { width: 15px; height: 15px; color: var(--rouge-vif); }

/* ---------- Accès / carte ---------- */
.map-wrap { position: relative; border-radius: 22px; overflow: hidden; border: 1px solid var(--ligne); }
.map-static {
  position: relative; z-index: 1;
  display: block; width: 100%; height: clamp(420px, 60vh, 560px);
  margin: 0; padding: 0; border: 0; border-radius: 0;
  font: inherit; cursor: pointer; pointer-events: auto;
  background:
    radial-gradient(60% 60% at 30% 35%, rgba(225, 27, 27, 0.10), transparent 70%),
    var(--noir-3);
  overflow: hidden;
  transition: opacity 0.4s var(--ease-out), visibility 0.4s;
}
.map-static.is-hidden { opacity: 0; visibility: hidden; position: absolute; inset: 0; pointer-events: none; }
.map-embed {
  position: relative; z-index: 1;
  width: 100%; height: clamp(420px, 60vh, 560px); border: 0; display: none;
  background: var(--noir-3);
  filter: grayscale(1) invert(0.92) contrast(0.9) brightness(0.9) sepia(0.15);
}
.map-embed.is-active { display: block; }
.map-static__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--ligne) 1px, transparent 1px),
    linear-gradient(90deg, var(--ligne) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(80% 80% at 50% 50%, #000 55%, transparent 100%);
}
.map-static__pin {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 76px; height: 76px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--rouge); box-shadow: var(--glow-rouge);
  transition: transform 0.4s var(--ease-out);
}
.map-static__pin i { width: 32px; height: 32px; color: #fff; }
.map-static:hover .map-static__pin { transform: translate(-50%, -50%) scale(1.08); }
.map-static__cta {
  position: absolute; left: 50%; bottom: clamp(24px, 6vh, 48px); transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px;
  background: rgba(7, 7, 8, 0.75); backdrop-filter: blur(10px);
  border: 1px solid var(--ligne-rouge);
  font-weight: 800; font-size: 12.5px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--blanc);
  transition: border-color 0.3s, color 0.3s;
}
.map-static__cta .ico { width: 15px; height: 15px; color: var(--rouge-vif); }
.map-static:hover .map-static__cta { border-color: var(--rouge-vif); color: var(--rouge-vif); }
.map-card {
  position: absolute; top: 20px; left: 20px; z-index: 2;
  width: min(340px, calc(100% - 40px));
  background: rgba(7, 7, 8, 0.88); backdrop-filter: blur(14px);
  border: 1px solid var(--ligne-rouge); border-radius: 18px;
  padding: 22px;
  display: flex; flex-direction: column; gap: 14px;
}
.map-card__addr { display: flex; gap: 12px; font-size: 14px; line-height: 1.5; }
.map-card__addr .ic {
  width: 38px; height: 38px; flex-shrink: 0;
  display: grid; place-items: center;
  border: 1px solid var(--ligne-rouge); border-radius: 50%; color: var(--rouge-vif);
}
.map-card__addr .ic svg { width: 16px; height: 16px; }
.map-card__hours { display: flex; gap: 9px; align-items: flex-start; font-size: 12.5px; color: var(--gris); }
.map-card__hours svg { width: 14px; height: 14px; color: var(--rouge-vif); margin-top: 2px; }
@media (max-width: 560px) {
  .map-card { position: static; width: 100%; border-radius: 0; border-left: 0; border-right: 0; border-bottom: 0; }
}

/* ---------- Footer ---------- */
.footer { position: relative; padding: clamp(60px, 10vh, 110px) 0 34px; background: var(--noir-2); overflow: hidden; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px;
  padding-bottom: 40px; border-bottom: 1px solid var(--ligne);
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid p { color: var(--gris); font-size: 14px; margin-top: 14px; max-width: 34ch; }
.footer-grid h4 {
  font-size: 11px; font-weight: 800; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gris); margin-bottom: 16px;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-grid ul a { font-size: 14px; color: var(--blanc); transition: color 0.3s; }
.footer-grid ul a:hover { color: var(--rouge-vif); }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding-top: 22px;
  font-size: 12px; color: var(--gris);
}

/* ---------- Flottants ---------- */
.fab-call {
  position: fixed; right: 20px; bottom: 20px; z-index: 950;
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--rouge); color: #fff;
  border-radius: 999px; padding: 15px 22px;
  font-weight: 800; font-size: 13px; letter-spacing: 0.12em;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.5), 0 0 26px rgba(225, 27, 27, 0.4);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}
.fab-call:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 16px 44px rgba(0,0,0,0.55), var(--glow-rouge); }
.fab-call .ico { width: 16px; height: 16px; }
@media (max-width: 640px) { .fab-call .fab-call__txt { display: none; } .fab-call { padding: 16px; } }

.toast {
  position: fixed; left: 50%; bottom: 26px; z-index: 1200;
  transform: translate(-50%, calc(100% + 40px));
  display: flex; align-items: center; gap: 10px;
  background: var(--noir-3); border: 1px solid var(--ligne-rouge);
  border-radius: 999px; padding: 14px 24px;
  font-size: 14px;
  transition: transform 0.5s var(--ease-out);
}
.toast.show { transform: translate(-50%, 0); }
.toast svg { width: 16px; height: 16px; color: var(--rouge-vif); }

/* ---------- Page carte (menu.html) ---------- */
.page-hero {
  position: relative;
  padding: clamp(150px, 24vh, 240px) 0 clamp(60px, 9vh, 110px);
  background:
    radial-gradient(90% 70% at 50% 0%, rgba(225, 27, 27, 0.14), transparent 60%),
    var(--noir);
  overflow: hidden;
}
.page-hero h1 {
  font-family: var(--f-display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(52px, 10vw, 150px); line-height: 0.92;
}
.page-hero h1 em {
  font-family: var(--f-accent); font-style: italic; text-transform: none;
  color: var(--rouge-vif); font-size: 0.93em;
}
.page-hero .lead { margin-top: 24px; }
.page-hero .container { position: relative; z-index: 2; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html.js .mask > .mline { transform: none; }
  html.js [data-reveal] { opacity: 1; }
  body::after { animation: none; }
  .hero { height: auto; }
  .hero__sticky { position: relative; height: 100svh; }
  .preloader { display: none; }
}
