/* =============================================================
   PIZZAS POPEYE — Finale V3 "Wow"
   Cinematic premium stylesheet — feu de bois · Pignans · Var
   ============================================================= */

/* ---------- DESIGN TOKENS ---------- */
:root {
  --c-bg:        #0B0400;
  --c-bg-2:      #14080A;
  --c-bg-3:      #1B0E08;
  --c-charcoal:  #221410;
  --c-ember:     #2B1610;
  --c-fire:      #E8530A;
  --c-fire-soft: #FF6B1F;
  --c-fire-glow: #FF8438;
  --c-brick:     #C0271B;
  --c-gold:      #D4960F;
  --c-gold-soft: #E8B23A;
  --c-cream:     #FAF0DC;
  --c-cream-dim: rgba(250, 240, 220, 0.78);
  --c-cream-mute:rgba(250, 240, 220, 0.55);
  --c-line:      rgba(250, 240, 220, 0.10);
  --c-line-strong: rgba(250, 240, 220, 0.22);

  --f-display: "Bebas Neue", "Impact", system-ui, sans-serif;
  --f-serif:   "Playfair Display", "Lora", Georgia, serif;
  --f-body:    "Lora", Georgia, serif;
  --f-ui:      "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --pad: clamp(1.25rem, 3vw, 2rem);
  --gap: clamp(1.25rem, 2.5vw, 2rem);
  --radius: 6px;
  --radius-lg: 14px;
  --radius-xl: 22px;

  --ease:     cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast: 220ms;
  --t-med: 480ms;
  --t-slow: 900ms;

  --shadow-md:   0 18px 50px -20px rgba(0,0,0,0.6);
  --shadow-glow: 0 0 80px -10px rgba(232, 83, 10, 0.45);
  --shadow-card: 0 30px 80px -30px rgba(0,0,0,0.8), 0 0 0 1px rgba(250,240,220,0.05);
}

/* ---------- RESET ---------- */
*,*::before,*::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: clip;
  max-width: 100vw;
}
body {
  margin: 0;
  font-family: var(--f-body);
  background: var(--c-bg);
  color: var(--c-cream-dim);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: clip;
  max-width: 100vw;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
:focus-visible { outline: 2px solid var(--c-fire); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--c-fire); color: var(--c-cream); }

/* ---------- AMBIANT BACKGROUND ---------- */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  background:
    radial-gradient(1100px 700px at 80% -10%, rgba(232,83,10,0.12), transparent 60%),
    radial-gradient(900px 600px at 0% 110%, rgba(192,39,27,0.08), transparent 60%),
    radial-gradient(700px 700px at 120% 50%, rgba(212,150,15,0.04), transparent 60%);
  z-index: 0;
}
body::after {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9000;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.7 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ---------- TYPOGRAPHY ---------- */
h1,h2,h3,h4 {
  font-family: var(--f-display);
  font-weight: 400;
  color: var(--c-cream);
  margin: 0 0 0.75rem;
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
h1 { font-size: clamp(3.6rem, 11vw, 9.6rem); letter-spacing: 0.04em; }
h2 { font-size: clamp(2.2rem, 5.5vw, 4.8rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); letter-spacing: 0.04em; }
h4 { font-size: 1.05rem; letter-spacing: 0.16em; color: var(--c-gold); }
p  { margin: 0 0 1rem; }

.eyebrow {
  display: inline-block;
  font-family: var(--f-ui);
  font-size: 0.78rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--c-gold);
  font-weight: 600;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid rgba(212, 150, 15, 0.4);
  margin-bottom: 1.4rem;
}
.divider {
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--c-gold), transparent);
  margin: 1.4rem 0 1.6rem;
}
.divider--center { margin-left: auto; margin-right: auto; background: linear-gradient(90deg, transparent, var(--c-gold), transparent); }

blockquote {
  margin: 1.25rem 0;
  padding: 1rem 1.5rem;
  border-left: 2px solid var(--c-fire);
  font-family: var(--f-serif);
  font-style: italic;
  color: var(--c-cream);
  font-size: 1.15rem;
  line-height: 1.55;
}

/* Gold-fire gradient text utility */
.text-gradient {
  background: linear-gradient(180deg, #FFF6E5 0%, #F0CFA0 55%, #C97B2C 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------- LAYOUT ---------- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--pad);
  position: relative;
  z-index: 2;
}
.section {
  position: relative;
  padding: clamp(4rem, 10vw, 9rem) 0;
  z-index: 2;
}
.section--alt      { background: linear-gradient(180deg, var(--c-bg) 0%, var(--c-bg-2) 60%, var(--c-bg) 100%); }
.section--charcoal { background: linear-gradient(180deg, var(--c-bg-2), var(--c-bg-3)); }
.section-title { text-align: center; max-width: 760px; margin: 0 auto 3.5rem; }
.section-title p { color: var(--c-cream-dim); font-size: 1.05rem; }
.text-center { text-align: center; }

/* ---------- BUTTONS ---------- */
.btn {
  --bg: var(--c-fire);
  --col: var(--c-cream);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.6rem;
  font-family: var(--f-ui);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--bg);
  color: var(--col);
  border: 1px solid var(--bg);
  border-radius: 4px;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease), background-color var(--t-fast) var(--ease);
  box-shadow: 0 12px 30px -12px rgba(232, 83, 10, 0.6);
  will-change: transform;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.22) 50%, transparent 70%);
  transform: translateX(-110%);
  transition: transform 700ms var(--ease-out);
  z-index: -1;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 20px 44px -12px rgba(232, 83, 10, 0.8); }
.btn:hover::before { transform: translateX(110%); }
.btn:active { transform: translateY(0); }

.btn--primary { --bg: var(--c-fire); }
.btn--primary:hover { background: var(--c-fire-glow); border-color: var(--c-fire-glow); }

.btn--gold {
  --bg: var(--c-gold);
  color: #1A0A02;
  box-shadow: 0 12px 30px -12px rgba(212, 150, 15, 0.6);
}
.btn--gold:hover { background: var(--c-gold-soft); border-color: var(--c-gold-soft); }

.btn--ghost {
  background: transparent;
  border: 1px solid var(--c-line-strong);
  color: var(--c-cream);
  box-shadow: none;
}
.btn--ghost:hover {
  background: rgba(250, 240, 220, 0.06);
  border-color: var(--c-cream);
  transform: translateY(-2px);
}
.btn--lg { padding: 1.1rem 2rem; font-size: 0.9rem; }

/* Pulsing fire CTA (signature button) */
.btn--ember::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(120deg, var(--c-fire), var(--c-gold), var(--c-fire));
  background-size: 220% 100%;
  filter: blur(14px);
  opacity: 0.6;
  z-index: -2;
  animation: emberShift 5s linear infinite;
}
@keyframes emberShift { 0%{background-position:0% 0;} 100%{background-position:220% 0;} }

/* ---------- NAVIGATION ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.1rem 0;
  background: linear-gradient(180deg, rgba(11, 4, 0, 0.55), transparent);
  transition: background-color var(--t-med) var(--ease), padding var(--t-med) var(--ease), backdrop-filter var(--t-med) var(--ease);
}
.nav.is-scrolled {
  background: rgba(11, 4, 0, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--c-line);
}
.nav__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  gap: 2rem;
}
.brand {
  font-family: var(--f-display);
  font-size: 1.4rem;
  letter-spacing: 0.18em;
  color: var(--c-cream);
  text-transform: uppercase;
  margin-right: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.brand strong {
  font-weight: 400;
  background: linear-gradient(180deg, var(--c-gold-soft), var(--c-fire));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nav__menu { display: flex; align-items: center; gap: 2rem; }
.nav__menu a {
  position: relative;
  font-family: var(--f-ui);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-cream-dim);
  padding: 0.4rem 0;
  transition: color var(--t-fast) var(--ease);
}
.nav__menu a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--c-fire), var(--c-gold));
  transition: right var(--t-med) var(--ease-out);
}
.nav__menu a:hover { color: var(--c-cream); }
.nav__menu a:hover::after,
.nav__menu a.is-active::after { right: 0; }
.nav__menu a.is-active { color: var(--c-cream); }

.nav__cta { padding: 0.7rem 1.1rem; font-size: 0.78rem; }
.nav__cta-text { display: inline-block; }

.nav__burger {
  display: none;
  background: none; border: 0;
  width: 36px; height: 36px;
  padding: 0; position: relative; cursor: pointer;
}
.nav__burger span {
  position: absolute;
  left: 6px; right: 6px;
  height: 2px;
  background: var(--c-cream);
  transition: transform 280ms var(--ease), top 280ms var(--ease), opacity 200ms;
}
.nav__burger span:nth-child(1) { top: 11px; }
.nav__burger span:nth-child(2) { top: 17px; }
.nav__burger span:nth-child(3) { top: 23px; }
.nav__burger.is-open span:nth-child(1) { top: 17px; transform: rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { top: 17px; transform: rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}
.hero__media {
  position: absolute; inset: 0;
  z-index: -1; overflow: hidden;
}
.hero__video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.62) contrast(1.10) saturate(1.18);
  transform: scale(1.06);
  animation: heroZoom 28s var(--ease-out) infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1.16); }
}
.hero__overlay {
  position: absolute; inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 50% 80%, rgba(232,83,10,0.35), transparent 60%),
    radial-gradient(ellipse at 50% 0%,  rgba(11,4,0,0.95), transparent 50%),
    linear-gradient(180deg, rgba(11,4,0,0.55) 0%, rgba(11,4,0,0.4) 30%, rgba(11,4,0,0.92) 100%);
}
.hero__heat {
  position: absolute;
  bottom: -10%;
  left: 0; right: 0; height: 50%;
  z-index: -1;
  background: radial-gradient(ellipse at center, rgba(232,83,10,0.55), transparent 70%);
  filter: blur(60px);
  opacity: 0.7;
  animation: heatPulse 6s ease-in-out infinite;
}
@keyframes heatPulse {
  0%,100% { opacity: 0.55; transform: translateY(0); }
  50%     { opacity: 0.95; transform: translateY(-14px); }
}

/* aurora blobs behind hero text */
.hero__aurora {
  position: absolute; inset: -10%;
  z-index: -1;
  filter: blur(90px);
  opacity: 0.7;
  pointer-events: none;
}
.hero__aurora span {
  position: absolute;
  width: 40%;
  aspect-ratio: 1;
  border-radius: 50%;
  mix-blend-mode: screen;
  animation: aurora 18s ease-in-out infinite;
}
.hero__aurora span:nth-child(1) { background: radial-gradient(circle, rgba(232,83,10,0.6), transparent 60%); top: 10%; left: 5%; }
.hero__aurora span:nth-child(2) { background: radial-gradient(circle, rgba(212,150,15,0.5), transparent 60%); bottom: 5%; right: 8%; animation-delay: -6s; }
.hero__aurora span:nth-child(3) { background: radial-gradient(circle, rgba(192,39,27,0.5), transparent 60%); top: 50%; left: 50%; animation-delay: -12s; transform: translate(-50%,-50%); }
@keyframes aurora {
  0%,100% { transform: translate(0,0) scale(1); }
  33%     { transform: translate(8%, -6%) scale(1.1); }
  66%     { transform: translate(-6%, 6%) scale(0.95); }
}

.hero__inner {
  position: relative;
  text-align: center;
  padding: 0 var(--pad);
  max-width: 1100px;
  z-index: 2;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--f-ui);
  font-size: 0.72rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--c-gold);
  padding: 0.55rem 1.1rem;
  border: 1px solid rgba(212, 150, 15, 0.4);
  border-radius: 999px;
  margin-bottom: 1.6rem;
  background: rgba(11, 4, 0, 0.45);
  backdrop-filter: blur(8px);
  opacity: 0;
  animation: fadeUp 1100ms var(--ease-out) 200ms forwards;
}
.hero__eyebrow .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--c-fire);
  box-shadow: 0 0 12px var(--c-fire);
  animation: dotPulse 2.4s ease-in-out infinite;
}
@keyframes dotPulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50%     { transform: scale(1.4); opacity: 0.6; }
}

.hero h1 {
  margin: 0 0 1rem;
  text-shadow: 0 6px 50px rgba(0,0,0,0.55);
}
/* Letter-by-letter reveal on hero h1 — gradient appliqué char par char pour rester visible */
.hero h1 .word { display: inline-block; overflow: hidden; vertical-align: top; }
.hero h1 .char {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  animation: charRise 900ms var(--ease-out) forwards;
  background: linear-gradient(180deg, #FFF6E5 8%, #F0CFA0 55%, #C97B2C 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 6px 30px rgba(0,0,0,0.55));
}
@keyframes charRise {
  to { transform: translateY(0); opacity: 1; }
}

.hero__sub {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(1.05rem, 1.8vw, 1.45rem);
  color: var(--c-cream);
  margin: 0 auto 2.4rem;
  max-width: 600px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6);
  opacity: 0;
  animation: fadeUp 1200ms var(--ease-out) 1100ms forwards;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 1200ms var(--ease-out) 1300ms forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__scroll {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--f-ui);
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--c-cream-mute);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  opacity: 0;
  animation: fadeUp 1200ms var(--ease-out) 1700ms forwards;
}
.hero__scroll::after {
  content: "";
  width: 1.5px;
  height: 56px;
  background: linear-gradient(180deg, var(--c-cream-mute), transparent);
  animation: scrollLine 2.4s ease-in-out infinite;
}
@keyframes scrollLine {
  0%,100% { transform: scaleY(0.4); transform-origin: top; opacity: 0.4; }
  50%     { transform: scaleY(1); opacity: 1; }
}

/* embers / fire particles */
.flames {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.flames span {
  position: absolute;
  bottom: -10px;
  width: 6px; height: 6px;
  background: var(--c-fire);
  border-radius: 50%;
  filter: blur(1px);
  box-shadow: 0 0 10px var(--c-fire), 0 0 20px var(--c-fire-soft);
  animation: ember linear infinite;
  opacity: 0;
}
.flames span:nth-child(1) { left: 5%;  animation-duration: 6s;  animation-delay: 0s;   }
.flames span:nth-child(2) { left: 15%; animation-duration: 8s;  animation-delay: 1.4s; width: 4px; height: 4px; }
.flames span:nth-child(3) { left: 28%; animation-duration: 5.5s;animation-delay: 2.2s; }
.flames span:nth-child(4) { left: 42%; animation-duration: 7s;  animation-delay: 0.6s; width: 3px; height: 3px; }
.flames span:nth-child(5) { left: 56%; animation-duration: 9s;  animation-delay: 3s;   }
.flames span:nth-child(6) { left: 68%; animation-duration: 6.4s;animation-delay: 1s;   width: 5px; height: 5px; }
.flames span:nth-child(7) { left: 78%; animation-duration: 8.6s;animation-delay: 2.6s; }
.flames span:nth-child(8) { left: 88%; animation-duration: 7.4s;animation-delay: 0.3s; width: 3px; height: 3px; }
.flames span:nth-child(9) { left: 95%; animation-duration: 7s;  animation-delay: 4s;   }
.flames span:nth-child(10){ left: 35%; animation-duration: 9.2s;animation-delay: 5s; width: 4px; height: 4px; }
.flames span:nth-child(11){ left: 62%; animation-duration: 6s;  animation-delay: 6s; }
.flames span:nth-child(12){ left: 50%; animation-duration: 8.4s;animation-delay: 1.2s; width: 3px; height: 3px; }
@keyframes ember {
  0%   { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
  10%  { opacity: 1; }
  60%  { opacity: 0.9; }
  100% { transform: translateY(-110vh) translateX(40px) scale(0.4); opacity: 0; }
}

/* ---------- MARQUEE ---------- */
.marquee {
  position: relative;
  overflow: hidden;
  padding: 1.4rem 0;
  background: linear-gradient(180deg, transparent, rgba(232,83,10,0.06), transparent);
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}
.marquee__track {
  display: flex;
  gap: 3.5rem;
  width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--f-display);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  letter-spacing: 0.14em;
  color: var(--c-cream);
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee__item .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--c-fire);
  box-shadow: 0 0 10px var(--c-fire);
}
.marquee__item em {
  font-style: normal;
  background: linear-gradient(180deg, var(--c-gold-soft), var(--c-fire));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee:hover .marquee__track { animation-play-state: paused; }

/* ---------- STATS ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  padding: 2.2rem 0;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}
.stat {
  text-align: center;
  padding: 1.4rem 1rem;
  border-right: 1px solid var(--c-line);
  position: relative;
}
.stat:last-child { border-right: 0; }
.stat__num {
  font-family: var(--f-display);
  font-size: clamp(2.6rem, 5vw, 4rem);
  letter-spacing: 0.04em;
  background: linear-gradient(180deg, var(--c-cream) 0%, var(--c-gold-soft) 70%, var(--c-fire) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.stat__label {
  display: block;
  font-family: var(--f-ui);
  font-size: 0.74rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-cream-mute);
  margin-top: 0.6rem;
}

/* ---------- SPÉCIALITÉS ---------- */
.specialties { padding-top: clamp(5rem, 10vw, 8rem); }
.specialties__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--gap);
}
.spec-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--c-bg-2);
  border: 1px solid var(--c-line);
  transition: transform var(--t-med) var(--ease), border-color var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
  cursor: default;
  isolation: isolate;
}
.spec-card::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(11,4,0,0.4) 50%, rgba(11,4,0,0.97) 100%);
  z-index: 1;
  pointer-events: none;
}
.spec-card::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(400px 200px at var(--mx, 50%) var(--my, 100%), rgba(232,83,10,0.35), transparent 70%);
  opacity: 0;
  z-index: 2;
  pointer-events: none;
  transition: opacity var(--t-med) var(--ease);
}
.spec-card:hover::after { opacity: 1; }
.spec-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 1100ms var(--ease-out), filter var(--t-med);
  filter: brightness(0.92) saturate(1.05);
}
.spec-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 83, 10, 0.6);
  box-shadow: 0 30px 70px -28px rgba(232,83,10,0.45);
}
.spec-card:hover img { transform: scale(1.06); filter: brightness(1.02) saturate(1.18); }
.spec-card__body {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.6rem 1.6rem 1.8rem;
  z-index: 3;
}
.spec-card__num {
  position: absolute;
  top: 1.2rem;
  right: 1.4rem;
  z-index: 3;
  font-family: var(--f-display);
  font-size: 2.5rem;
  color: var(--c-gold);
  opacity: 0.85;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}
.spec-card__body h3 { color: var(--c-cream); margin-bottom: 0.4rem; }
.spec-card__body p {
  font-family: var(--f-body);
  text-transform: none;
  letter-spacing: 0;
  color: var(--c-cream-dim);
  font-size: 0.95rem;
  margin: 0;
}
.spec-card__price {
  display: inline-block;
  margin-top: 0.6rem;
  font-family: var(--f-ui);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--c-gold);
  border-top: 1px solid rgba(212,150,15,0.3);
  padding-top: 0.5rem;
}

/* ---------- STORY ---------- */
.story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.story__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  isolation: isolate;
  box-shadow: var(--shadow-card);
}
.story__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(160deg, transparent 60%, rgba(232,83,10,0.18));
  z-index: 1;
  pointer-events: none;
}
.story__media img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform 1.4s var(--ease-out);
}
.story__media:hover img { transform: scale(1.06); }
.story__media-frame {
  position: absolute; inset: -1px;
  border: 1px solid rgba(212,150,15,0.35);
  border-radius: inherit;
  pointer-events: none;
  z-index: 2;
}
.story__media-badge {
  position: absolute;
  bottom: 1.4rem; left: 1.4rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 1rem;
  background: rgba(11, 4, 0, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212,150,15,0.45);
  border-radius: 999px;
  font-family: var(--f-ui);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  color: var(--c-gold);
  text-transform: uppercase;
}
.story__text h2 { color: var(--c-cream); }

/* ---------- BENTO PROCESS ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 1rem;
}
.bento-item {
  position: relative;
  padding: 1.8rem;
  background: linear-gradient(180deg, var(--c-bg-2), var(--c-bg-3));
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--t-med) var(--ease), border-color var(--t-med);
}
.bento-item:hover { transform: translateY(-4px); border-color: rgba(232,83,10,0.4); }
.bento-item--lg { grid-column: span 4; grid-row: span 2; }
.bento-item--md { grid-column: span 2; grid-row: span 2; }
.bento-item--sm { grid-column: span 2; }
.bento-item--w  { grid-column: span 4; }
.bento-step {
  font-family: var(--f-display);
  color: var(--c-fire);
  font-size: 3rem;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.bento-item h3 { font-size: 1.2rem; letter-spacing: 0.06em; }
.bento-item p { color: var(--c-cream-dim); margin: 0; font-size: 0.95rem; }
.bento-item--media { padding: 0; }
.bento-item--media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.bento-item--media:hover img { transform: scale(1.06); }
.bento-item--media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11,4,0,0.85));
  pointer-events: none;
}
.bento-item--media .bento-caption {
  position: absolute;
  bottom: 1rem; left: 1.2rem;
  font-family: var(--f-ui);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-cream);
  z-index: 2;
}
@media (max-width: 920px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-item--lg, .bento-item--md, .bento-item--sm, .bento-item--w { grid-column: span 2; grid-row: auto; }
}

/* ---------- MENU PREVIEW ---------- */
.menu-preview__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0;
  border-top: 1px solid var(--c-line);
  border-left: 1px solid var(--c-line);
  margin-bottom: 3rem;
}
.menu-preview__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 1.6rem;
  border-right: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  transition: background-color var(--t-fast) var(--ease), padding var(--t-fast) var(--ease);
  position: relative;
  isolation: isolate;
}
.menu-preview__item::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(232, 83, 10, 0.14), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-med) var(--ease-out);
  z-index: -1;
}
.menu-preview__item:hover::before { transform: scaleX(1); }
.menu-preview__item:hover { padding-left: 2rem; }
.menu-preview__item h4 {
  font-family: var(--f-display);
  color: var(--c-cream);
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  margin: 0;
}
.menu-preview__item .price {
  font-family: var(--f-ui);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--c-gold);
  letter-spacing: 0.1em;
}

/* ---------- AVIS ---------- */
.ratings {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem 2.5rem;
  margin-bottom: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--c-line);
}
.rating {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
}
.rating__score {
  font-family: var(--f-display);
  font-size: 2.6rem;
  color: var(--c-gold);
  letter-spacing: 0.04em;
  line-height: 1;
}
.rating__label {
  font-family: var(--f-ui);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-cream-mute);
  margin-top: 0.45rem;
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--gap);
}
.review {
  position: relative;
  padding: 2rem 1.8rem 1.7rem;
  background: linear-gradient(160deg, rgba(232,83,10,0.04), transparent);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  transition: transform var(--t-med) var(--ease), border-color var(--t-med) var(--ease), box-shadow var(--t-med);
}
.review::before {
  content: "“";
  position: absolute;
  top: -8px;
  left: 18px;
  font-family: var(--f-serif);
  font-size: 4.2rem;
  line-height: 1;
  color: var(--c-fire);
  opacity: 0.6;
}
.review:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 150, 15, 0.5);
  box-shadow: 0 30px 60px -30px rgba(232,83,10,0.45);
}
.review .stars {
  color: var(--c-gold);
  letter-spacing: 0.2em;
  margin-bottom: 0.8rem;
}
.review p {
  font-family: var(--f-serif);
  font-style: italic;
  color: var(--c-cream);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.review__author {
  font-family: var(--f-ui);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--c-cream-mute);
}

/* ---------- INFOS ---------- */
.info__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--gap);
}
.info__card {
  position: relative;
  padding: 2.4rem 2rem;
  background: linear-gradient(180deg, var(--c-bg-2), var(--c-bg-3));
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: transform var(--t-med) var(--ease), border-color var(--t-med) var(--ease), box-shadow var(--t-med);
  overflow: hidden;
}
.info__card::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  width: 60%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-fire), transparent);
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform var(--t-med) var(--ease-out);
}
.info__card:hover { transform: translateY(-4px); border-color: rgba(232,83,10,0.45); box-shadow: 0 20px 50px -25px rgba(232,83,10,0.35); }
.info__card:hover::before { transform: translateX(-50%) scaleX(1); }
.info__icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(232,83,10,0.12);
  border: 1px solid rgba(232,83,10,0.4);
  color: var(--c-fire);
  margin-bottom: 1.2rem;
  transition: transform var(--t-med) var(--ease-spring);
}
.info__card:hover .info__icon { transform: scale(1.1) rotate(-4deg); }
.info__card h3 { color: var(--c-cream); }
.info__note { font-size: 0.85rem; color: var(--c-cream-mute); margin: 0; font-style: italic; }
.hours-list {
  list-style: none;
  margin: 0 0 1.2rem;
  padding: 0;
  text-align: left;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--c-line);
  font-family: var(--f-ui);
  font-size: 0.92rem;
  color: var(--c-cream-dim);
  transition: padding-left var(--t-fast);
}
.hours-list li:last-child { border-bottom: 0; }
.hours-list .closed { color: var(--c-cream-mute); font-style: italic; }
.hours-list li[data-day][aria-current="day"] {
  background: linear-gradient(90deg, rgba(232,83,10,0.18), transparent);
  padding-left: 0.6rem;
  border-left: 2px solid var(--c-fire);
  color: var(--c-cream);
}
.hours-list li[data-day][aria-current="day"]::after {
  content: "Aujourd'hui";
  margin-left: 0.6rem;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  color: var(--c-fire);
  text-transform: uppercase;
}

/* ---------- CTA FINAL ---------- */
.cta-final {
  position: relative;
  padding: clamp(5rem, 10vw, 8rem) 0;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(232,83,10,0.22), transparent 60%),
    radial-gradient(circle at 50% 100%, rgba(192,39,27,0.25), transparent 60%),
    linear-gradient(180deg, var(--c-bg-2), var(--c-bg));
  overflow: hidden;
  isolation: isolate;
}
.cta-final::before {
  content: "";
  position: absolute; inset: -50%;
  background: radial-gradient(circle, rgba(232,83,10,0.18), transparent 60%);
  filter: blur(80px);
  z-index: -1;
  animation: ctaPulse 8s ease-in-out infinite;
}
@keyframes ctaPulse {
  0%,100% { transform: scale(1) translate(0,0); opacity: 0.6; }
  50%     { transform: scale(1.1) translate(-2%, 2%); opacity: 1; }
}
.cta-final h2 { color: var(--c-cream); margin-bottom: 1rem; }
.cta-final p {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--c-cream-dim);
  max-width: 540px;
  margin: 0 auto 2.4rem;
}
.cta-final__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* ---------- FOOTER ---------- */
.footer {
  padding: 4rem 0 2rem;
  background: #080300;
  border-top: 1px solid var(--c-line);
  position: relative;
  z-index: 2;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--c-line);
}
.footer__brand .brand { font-size: 1.6rem; margin-bottom: 1rem; display: inline-flex; }
.footer__brand p { color: var(--c-cream-mute); font-size: 0.95rem; max-width: 360px; }
.footer h4 {
  color: var(--c-gold);
  font-family: var(--f-ui);
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.footer__list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.footer__list a, .footer__list span {
  color: var(--c-cream-dim);
  font-family: var(--f-ui);
  font-size: 0.9rem;
  transition: color var(--t-fast) var(--ease);
}
.footer__list a:hover { color: var(--c-fire); }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 2rem;
  justify-content: space-between;
  padding-top: 1.6rem;
  font-family: var(--f-ui);
  font-size: 0.8rem;
  color: var(--c-cream-mute);
  letter-spacing: 0.05em;
}

/* ---------- MOBILE STICKY CTA ---------- */
.mobile-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  display: none;
  background: rgba(11, 4, 0, 0.96);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--c-line);
  padding: 0.6rem;
  gap: 0.5rem;
}
.mobile-cta a {
  flex: 1;
  text-align: center;
  padding: 0.85rem 0.5rem;
  font-family: var(--f-ui);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-cream);
  background: rgba(250, 240, 220, 0.06);
  border-radius: 4px;
  border: 1px solid var(--c-line);
}
.mobile-cta a.primary {
  background: var(--c-fire);
  border-color: var(--c-fire);
  color: var(--c-cream);
  font-weight: 600;
}

/* ---------- REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 900ms var(--ease-out), transform 900ms var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal--left  { transform: translateX(-32px) translateY(0); }
.reveal--right { transform: translateX(32px) translateY(0); }
.reveal--left.is-visible,
.reveal--right.is-visible { transform: translateX(0); }

.reveal-stagger > * { opacity: 0; transform: translateY(28px); transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out); }
.reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 100ms; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 200ms; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 300ms; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 400ms; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 500ms; }

/* ---------- PAGE HEADER ---------- */
.page-header {
  position: relative;
  padding: clamp(8rem, 16vw, 12rem) 0 clamp(3rem, 6vw, 5rem);
  text-align: center;
  background: linear-gradient(180deg, rgba(11,4,0,0.85), rgba(11,4,0,0.92)), var(--bg-img, none);
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--c-line);
  overflow: hidden;
  isolation: isolate;
}
.page-header::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50%;
  background: radial-gradient(ellipse at center bottom, rgba(232,83,10,0.22), transparent 60%);
  pointer-events: none;
}
.page-header h1 {
  font-size: clamp(3rem, 9vw, 6.5rem);
  background: linear-gradient(180deg, #FFF6E5 0%, #E8B23A 80%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.page-header p {
  max-width: 640px;
  margin: 0 auto;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--c-cream);
}
.breadcrumb {
  display: inline-flex;
  gap: 0.6rem;
  align-items: center;
  font-family: var(--f-ui);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-cream-mute);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--c-gold); }
.breadcrumb span { opacity: 0.6; }

/* ---------- CARTE — ONGLETS ---------- */
.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--c-line);
}
.menu-tab {
  padding: 0.7rem 1.3rem;
  background: transparent;
  border: 1px solid var(--c-line-strong);
  color: var(--c-cream-dim);
  border-radius: 999px;
  font-family: var(--f-ui);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--t-fast) var(--ease);
}
.menu-tab:hover { background: rgba(250,240,220,0.06); color: var(--c-cream); }
.menu-tab.is-active {
  background: var(--c-fire);
  border-color: var(--c-fire);
  color: var(--c-cream);
  box-shadow: 0 8px 20px -8px rgba(232,83,10,0.7);
}
.menu-panel { display: none; }
.menu-panel.is-active { display: block; animation: fadeUpIn 480ms var(--ease-out); }
@keyframes fadeUpIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.menu-category-title { text-align: center; margin-bottom: 2rem; }
.menu-category-title h2 { color: var(--c-cream); margin-bottom: 0.5rem; }
.menu-category-title .price-tag {
  display: inline-block;
  font-family: var(--f-ui);
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--c-gold);
  border: 1px solid rgba(212,150,15,0.4);
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
}
.menu-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 1rem 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu-item {
  padding: 1.1rem 0;
  border-bottom: 1px dashed var(--c-line);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  transition: padding-left var(--t-fast);
}
.menu-item:hover { padding-left: 0.4rem; }
.menu-item__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.8rem;
}
.menu-item__name {
  font-family: var(--f-display);
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  color: var(--c-cream);
  text-transform: uppercase;
}
.menu-item__price {
  font-family: var(--f-ui);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--c-gold);
  white-space: nowrap;
}
.menu-item__desc {
  font-family: var(--f-body);
  font-size: 0.95rem;
  color: var(--c-cream-dim);
  margin: 0;
}
.menu-format-note {
  text-align: center;
  font-family: var(--f-serif);
  font-style: italic;
  color: var(--c-cream-mute);
  margin-bottom: 2.5rem;
}

/* ---------- GALERIE ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 220px;
  gap: 0.8rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: zoom-in;
  background: var(--c-bg-2);
  isolation: isolate;
  transition: transform var(--t-med) var(--ease);
}
.gallery-item:hover { transform: translateY(-3px); }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1100ms var(--ease-out), filter var(--t-med);
  filter: brightness(0.92) saturate(1.05);
}
.gallery-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11,4,0,0.85));
  z-index: 1;
  opacity: 0.55;
  transition: opacity var(--t-med);
}
.gallery-item:hover img { transform: scale(1.07); filter: brightness(1.05) saturate(1.18); }
.gallery-item:hover::after { opacity: 0.18; }
.gallery-caption {
  position: absolute;
  bottom: 0.8rem; left: 1rem; right: 1rem;
  z-index: 2;
  font-family: var(--f-ui);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-cream);
  text-shadow: 0 2px 8px rgba(0,0,0,0.7);
}
.gallery-item--xl { grid-column: span 6; grid-row: span 2; }
.gallery-item--l  { grid-column: span 6; grid-row: span 2; }
.gallery-item--m  { grid-column: span 4; }
.gallery-item--s  { grid-column: span 3; }
.gallery-item--w  { grid-column: span 8; }
.gallery-item--n  { grid-column: span 4; grid-row: span 2; }

/* ---------- LIGHTBOX ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8, 3, 0, 0.96);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 1.5rem;
  animation: fadeIn 280ms ease;
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: 92vw;
  max-height: 86vh;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.lightbox__close {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--c-line-strong);
  background: rgba(11,4,0,0.6);
  color: var(--c-cream);
  font-size: 1.4rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ---------- CONTACT ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
}
.contact-block h3 { color: var(--c-cream); margin-bottom: 0.5rem; }
.contact-block + .contact-block { margin-top: 2rem; }
.contact-block p, .contact-block a { color: var(--c-cream-dim); }
.contact-block a:hover { color: var(--c-fire); }
.contact-block strong { color: var(--c-cream); }

.form {
  display: grid;
  gap: 1rem;
  padding: 2rem;
  background: linear-gradient(180deg, var(--c-bg-2), var(--c-bg-3));
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
}
.form label {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-family: var(--f-ui);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-cream-mute);
}
.form input,
.form textarea,
.form select {
  font-family: var(--f-body);
  font-size: 1rem;
  padding: 0.85rem 1rem;
  background: rgba(250,240,220,0.04);
  border: 1px solid var(--c-line-strong);
  color: var(--c-cream);
  border-radius: 4px;
  transition: border-color var(--t-fast) var(--ease), background-color var(--t-fast) var(--ease);
}
.form input::placeholder,
.form textarea::placeholder { color: var(--c-cream-mute); font-style: italic; }
.form input:focus,
.form textarea:focus,
.form select:focus {
  outline: 0;
  border-color: var(--c-fire);
  background: rgba(232,83,10,0.06);
}
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form .hidden { display: none; }
.form button { margin-top: 0.6rem; }

.map-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--c-line);
  isolation: isolate;
}
.map-frame iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
  filter: grayscale(0.15) contrast(1.05);
}

/* ---------- HISTORY (a-propos) ---------- */
.story-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.story-page--reverse > *:first-child { order: 2; }
.story-page__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: var(--shadow-card);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--gap);
  margin-top: 2rem;
}
.value-card {
  padding: 1.8rem;
  background: linear-gradient(180deg, var(--c-bg-2), transparent);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  transition: transform var(--t-med) var(--ease), border-color var(--t-med);
  position: relative;
  overflow: hidden;
}
.value-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--c-fire), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-med) var(--ease-out);
}
.value-card:hover { transform: translateY(-4px); border-color: rgba(232,83,10,0.35); }
.value-card:hover::before { transform: scaleX(1); }
.value-card h3 { font-size: 1.05rem; letter-spacing: 0.18em; color: var(--c-gold); }
.value-card p { color: var(--c-cream-dim); margin: 0; font-size: 0.95rem; }

/* ---------- FAQ ---------- */
.faq {
  display: grid;
  gap: 0.6rem;
  max-width: 820px;
  margin: 0 auto;
}
.faq__item {
  background: var(--c-bg-2);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--t-fast);
}
.faq__item[open] { border-color: rgba(232,83,10,0.35); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.4rem;
  font-family: var(--f-display);
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  color: var(--c-cream);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color var(--t-fast);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  color: var(--c-fire);
  font-size: 1.6rem;
  font-family: var(--f-ui);
  line-height: 1;
  transition: transform var(--t-med) var(--ease);
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p {
  padding: 0 1.4rem 1.3rem;
  font-family: var(--f-body);
  color: var(--c-cream-dim);
  margin: 0;
}

/* ---------- DECORATIVE FIRE STRIP ---------- */
.fire-strip {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--c-fire) 30%, var(--c-gold) 50%, var(--c-brick) 70%, transparent);
  filter: blur(0.5px);
  box-shadow: 0 0 24px rgba(232,83,10,0.45);
  margin: 2rem auto;
  width: 80%;
  max-width: 600px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
  .nav__cta-text { display: none; }
}
@media (max-width: 920px) {
  .story__grid,
  .story-page,
  .contact-grid { grid-template-columns: 1fr; }
  .story-page--reverse > *:first-child { order: 0; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .gallery-grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 180px; }
  .gallery-item--xl, .gallery-item--l { grid-column: span 6; }
  .gallery-item--w { grid-column: span 6; }
  .gallery-item--m { grid-column: span 3; }
  .gallery-item--s { grid-column: span 3; }
  .gallery-item--n { grid-column: span 3; grid-row: span 2; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2n) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--c-line); }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav__menu {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(11, 4, 0, 0.98);
    backdrop-filter: blur(18px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.4rem;
    transform: translateY(-110%);
    transition: transform 480ms var(--ease);
    z-index: 99;
  }
  .nav__menu.is-open { transform: translateY(0); }
  .nav__menu a { font-size: 1.1rem; letter-spacing: 0.2em; }
  .nav__burger { display: block; z-index: 101; }
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { width: 100%; }
  .menu-preview__grid { grid-template-columns: 1fr; }
  .form .row { grid-template-columns: 1fr; }
  .mobile-cta { display: flex; }
  body { padding-bottom: 70px; }
  .footer { padding-bottom: 5rem; }
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--c-line); }
  .stat:last-child { border-bottom: 0; }
}
@media (max-width: 520px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery-item, .gallery-item--xl, .gallery-item--l, .gallery-item--w, .gallery-item--m, .gallery-item--s, .gallery-item--n {
    grid-column: span 2; grid-row: auto;
  }
  .gallery-item--xl, .gallery-item--n { grid-row: span 2; }
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; }
  .hero__video { animation: none; transform: scale(1); }
  .flames span, .hero__aurora span { display: none; }
  .marquee__track { animation: none; }
  .hero__eyebrow, .hero__sub, .hero__ctas, .hero__scroll { opacity: 1; animation: none; }
  .hero h1 .char { opacity: 1; transform: none; }
}

/* ---------- PRINT (carte) ---------- */
@media print {
  .nav, .mobile-cta, .footer, .hero__media, .hero__overlay, .flames, .cta-final { display: none !important; }
  body { background: white; color: black; }
  .menu-tabs { display: none; }
  .menu-panel { display: block !important; page-break-inside: avoid; }
  .menu-item__name, h2, h3 { color: black; }
}

/* =============================================================
   PIZZAS POPEYE — PREMIUM V4 PATCH
   1. FIX HERO VIDEO (no poster flash)
   2. Cinematic vignette + dust particles
   3. Animated film grain
   4. Premium hover & reveal upgrades
   ============================================================= */

/* ---------- 1. FIX HERO VIDEO — fade-in propre, plus de flash poster ---------- */
.hero__media { background: var(--c-bg); }
.hero__fallback {
  position: absolute; inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 50% 70%, oklch(35% 0.14 45 / 0.7) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 30% 30%, oklch(28% 0.10 38 / 0.5) 0%, transparent 60%),
    linear-gradient(180deg, #0B0400 0%, #1A0905 50%, #0B0400 100%);
  animation: fallbackBreath 6s ease-in-out infinite;
}
@keyframes fallbackBreath {
  0%, 100% { opacity: 1; filter: brightness(0.95); }
  50%      { opacity: 1; filter: brightness(1.1); }
}
.hero__video {
  position: relative;
  z-index: 1;
  opacity: 0;
  transition: opacity 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero__video.is-ready {
  opacity: 1;
}
/* Le fallback s'efface une fois la vidéo prête */
.hero__media.video-ready .hero__fallback {
  opacity: 0;
  transition: opacity 0.8s ease 0.4s;
}

/* ---------- 2. VIGNETTE CINÉMATOGRAPHIQUE ---------- */
.hero__vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 100% 80% at center, transparent 45%, rgba(0,0,0,0.55) 90%, rgba(0,0,0,0.85) 100%);
  mix-blend-mode: multiply;
}

/* ---------- 3. POUSSIÈRES LUMINEUSES DORÉES ---------- */
.hero__dust {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.hero__dust span {
  position: absolute;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 178, 58, 0.95) 0%, rgba(232, 178, 58, 0) 70%);
  filter: blur(0.5px);
  box-shadow: 0 0 8px rgba(232, 178, 58, 0.6);
  animation: dustFloat linear infinite;
  opacity: 0;
}
.hero__dust span:nth-child(1)  { left: 8%;  top: 20%; animation-duration: 22s; animation-delay: 0s;   transform: scale(1.2); }
.hero__dust span:nth-child(2)  { left: 18%; top: 60%; animation-duration: 28s; animation-delay: 4s;   transform: scale(0.7); }
.hero__dust span:nth-child(3)  { left: 30%; top: 40%; animation-duration: 25s; animation-delay: 2s;   transform: scale(1.0); }
.hero__dust span:nth-child(4)  { left: 45%; top: 80%; animation-duration: 32s; animation-delay: 6s;   transform: scale(0.9); }
.hero__dust span:nth-child(5)  { left: 55%; top: 25%; animation-duration: 26s; animation-delay: 1s;   transform: scale(1.3); }
.hero__dust span:nth-child(6)  { left: 65%; top: 70%; animation-duration: 30s; animation-delay: 3s;   transform: scale(0.6); }
.hero__dust span:nth-child(7)  { left: 75%; top: 35%; animation-duration: 24s; animation-delay: 5s;   transform: scale(1.1); }
.hero__dust span:nth-child(8)  { left: 82%; top: 55%; animation-duration: 27s; animation-delay: 7s;   transform: scale(0.8); }
.hero__dust span:nth-child(9)  { left: 92%; top: 30%; animation-duration: 29s; animation-delay: 2.5s; transform: scale(1.0); }
.hero__dust span:nth-child(10) { left: 25%; top: 85%; animation-duration: 31s; animation-delay: 8s;   transform: scale(0.9); }

@keyframes dustFloat {
  0%   { transform: translate(0, 0) scale(1); opacity: 0; }
  10%  { opacity: 0.7; }
  50%  { transform: translate(-30px, -60vh) scale(1.1); opacity: 1; }
  90%  { opacity: 0.4; }
  100% { transform: translate(60px, -110vh) scale(0.4); opacity: 0; }
}

/* ---------- 4. GRAIN CINÉMATOGRAPHIQUE ANIMÉ (override body::after) ---------- */
body::after {
  animation: filmGrain 0.12s steps(8) infinite;
}
@keyframes filmGrain {
  0%   { transform: translate(0, 0); }
  10%  { transform: translate(-1%, -1%); }
  20%  { transform: translate(1%, 1%); }
  30%  { transform: translate(-2%, 1%); }
  40%  { transform: translate(2%, -1%); }
  50%  { transform: translate(-1%, 2%); }
  60%  { transform: translate(1%, -2%); }
  70%  { transform: translate(-2%, -1%); }
  80%  { transform: translate(2%, 1%); }
  90%  { transform: translate(-1%, 1%); }
  100% { transform: translate(0, 0); }
}

/* ---------- 5. PARALLAX MOUSE — léger sur titre + sub hero ---------- */
.hero__inner {
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- 6. SPEC-CARDS — border-glow animé au hover ---------- */
.spec-card {
  position: relative;
}
.spec-card::before {
  /* Le gradient interne déjà défini reste, on ajoute un wrapper border-glow */
}
.spec-card:hover {
  box-shadow:
    0 30px 70px -28px rgba(232,83,10,0.55),
    0 0 0 1px rgba(232,150,58,0.5),
    inset 0 0 0 1px rgba(232,178,58,0.25);
}

/* ---------- 7. BENTO ITEM-MEDIA — caption qui slide au hover ---------- */
.bento-item--media .bento-caption {
  transform: translateY(0);
  transition: transform var(--t-med) var(--ease-out), letter-spacing var(--t-med) var(--ease-out);
}
.bento-item--media:hover .bento-caption {
  transform: translateY(-4px);
  letter-spacing: 0.42em;
}
.bento-item--media::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle 200px at var(--mx, 50%) var(--my, 50%), rgba(232,178,58,0.18), transparent 70%);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  transition: opacity var(--t-med);
}
.bento-item--media:hover::before { opacity: 1; }

/* ---------- 8. STORY MEDIA — reveal avec mask ---------- */
.story__media img {
  filter: brightness(0.85) saturate(1.08);
}
.story__media:hover img {
  filter: brightness(1) saturate(1.18);
}

/* ---------- 9. REVEAL IMAGES — clip-path style cinéma ---------- */
.reveal-clip {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.4s cubic-bezier(0.65, 0, 0.35, 1);
}
.reveal-clip.is-visible {
  clip-path: inset(0 0 0 0);
}

/* ---------- 10. CTA FINAL — texte gradient qui scintille ---------- */
.cta-final h2.text-gradient {
  background: linear-gradient(120deg, #FFF6E5 0%, #F0CFA0 30%, #FFE8B8 50%, #F0CFA0 70%, #C97B2C 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: titleShine 8s linear infinite;
}
@keyframes titleShine {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* ---------- 11. SECTIONS — voile bottom subtil pour profondeur ---------- */
.specialties::after,
.story::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(180deg, transparent, rgba(11,4,0,0.6) 60%, var(--c-bg) 100%);
  pointer-events: none;
  z-index: 1;
}

/* ---------- 12. MARQUEE — effet cinéma avec gradient sur les côtés ---------- */
.marquee {
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
}

/* ---------- 13. NAV — premium scroll polish ---------- */
.nav.is-scrolled {
  background: rgba(8, 3, 0, 0.94);
  box-shadow: 0 8px 32px -12px rgba(0,0,0,0.5);
}

/* ---------- 14. MENU-PREVIEW ITEM — flèche qui apparaît au hover ---------- */
.menu-preview__item h4 {
  position: relative;
  transition: padding-left var(--t-fast) var(--ease);
}
.menu-preview__item:hover h4 { padding-left: 1.4rem; }
.menu-preview__item h4::before {
  content: "→";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%) translateX(-12px);
  color: var(--c-fire);
  opacity: 0;
  transition: opacity var(--t-fast), transform var(--t-fast) var(--ease-out);
}
.menu-preview__item:hover h4::before {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* ---------- 15. REVIEW — première lettre cinéma ---------- */
.review p {
  position: relative;
}
.review p::first-letter {
  font-weight: 500;
  color: var(--c-cream);
}

/* ---------- 16. MOBILE — adapter les effets premium ---------- */
@media (max-width: 760px) {
  /* Dust particles : moins nombreuses sur mobile pour perf */
  .hero__dust span:nth-child(n+7) { display: none; }
  /* Vignette plus douce sur mobile */
  .hero__vignette {
    background: radial-gradient(ellipse 110% 90% at center, transparent 50%, rgba(0,0,0,0.4) 95%, rgba(0,0,0,0.7) 100%);
  }
  /* Grain réduit sur mobile pour ne pas surcharger */
  body::after { opacity: 0.035; }
  /* Pas de parallax mouse mobile : reset transform */
  .hero__inner { transform: none !important; }
}

/* ---------- 17. REDUCED MOTION — désactiver effets premium ---------- */
@media (prefers-reduced-motion: reduce) {
  .hero__fallback,
  .hero__dust span,
  .cta-final h2.text-gradient,
  body::after { animation: none !important; }
  .hero__video { opacity: 1 !important; }
}

/* =============================================================
   PIZZAS POPEYE — CREATIVE UPGRADE V5 (6/10 → 8-9/10)
   Cinematic reveals · 3D tilt · cursor heat light · section signatures
   ============================================================= */

/* ---------- 1. CURSOR HEAT LIGHT (desktop only) ---------- */
.heat-cursor {
  position: fixed;
  top: 0; left: 0;
  width: 520px; height: 520px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9500;
  background: radial-gradient(circle at center,
    rgba(255, 140, 50, 0.22) 0%,
    rgba(232, 100, 30, 0.12) 25%,
    rgba(255, 80, 20, 0.04) 55%,
    transparent 75%);
  mix-blend-mode: plus-lighter;
  filter: blur(20px);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.heat-cursor.is-active { transform: translate(-50%, -50%) scale(1); }
@media (max-width: 900px), (hover: none) {
  .heat-cursor { display: none; }
}

/* ---------- 2. REVEAL VARIANTS PREMIUM ---------- */
/* Blur reveal */
.r-blur {
  opacity: 0;
  filter: blur(14px);
  transform: translateY(20px);
  transition: opacity 1.2s var(--ease-out),
              filter 1.2s var(--ease-out),
              transform 1.2s var(--ease-out);
}
.r-blur.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

/* Slide horizontal reveals */
.r-slide-l {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 1s var(--ease-out), transform 1.1s var(--ease-out);
}
.r-slide-r {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 1s var(--ease-out), transform 1.1s var(--ease-out);
}
.r-slide-l.is-visible,
.r-slide-r.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Clip reveal cinéma horizontal */
.r-clip {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.4s cubic-bezier(0.65, 0, 0.35, 1);
}
.r-clip.is-visible { clip-path: inset(0 0 0 0); }

/* Mask sweep top */
.r-mask {
  clip-path: inset(100% 0 0 0);
  transition: clip-path 1.3s cubic-bezier(0.65, 0, 0.35, 1);
}
.r-mask.is-visible { clip-path: inset(0 0 0 0); }

/* Zoom reveal */
.r-zoom {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 1s var(--ease-out), transform 1.3s var(--ease-out);
}
.r-zoom.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* ---------- 3. SPEC-CARDS — 3D TILT premium ---------- */
.spec-card {
  transform-style: preserve-3d;
  transition: transform 0.4s var(--ease-out), border-color var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
  perspective: 1000px;
}
.spec-card.is-tilting {
  transition: transform 0.1s linear, border-color var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.spec-card__num,
.spec-card__body {
  transform: translateZ(20px);
  transition: transform 0.4s var(--ease-out);
}
.spec-card:hover img {
  filter: brightness(1.08) saturate(1.25) contrast(1.05);
}

/* ---------- 4. SPECIALTIES — number cinema ---------- */
.spec-card__num {
  font-size: 3rem !important;
  background: linear-gradient(180deg, var(--c-gold-soft) 0%, var(--c-fire) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  opacity: 0.95;
  filter: drop-shadow(0 4px 16px rgba(232, 83, 10, 0.5));
}

/* ---------- 5. STORY MEDIA — clip cinema + glow ---------- */
.story__media {
  position: relative;
}
.story__media::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  background: linear-gradient(135deg,
    transparent 0%,
    rgba(232, 150, 58, 0.5) 30%,
    rgba(232, 83, 10, 0.6) 50%,
    rgba(212, 150, 15, 0.4) 70%,
    transparent 100%);
  filter: blur(8px);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.8s var(--ease-out);
}
.story__media:hover::before { opacity: 1; }

/* ---------- 6. BENTO — premium glow + tilt léger ---------- */
.bento-item {
  transition: transform 0.4s var(--ease-out), border-color var(--t-med), box-shadow var(--t-med) var(--ease);
}
.bento-item:hover {
  transform: translateY(-6px) scale(1.005);
  box-shadow: 0 30px 70px -28px rgba(232, 83, 10, 0.45), 0 0 0 1px rgba(232, 150, 58, 0.25);
}
.bento-step {
  background: linear-gradient(180deg, var(--c-fire-glow) 0%, var(--c-gold-soft) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 14px rgba(232, 83, 10, 0.4));
}

/* ---------- 7. MENU-PREVIEW — feu liquide qui passe ---------- */
.menu-preview__item::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-fire), var(--c-gold-soft), var(--c-fire), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.7s var(--ease-out);
  opacity: 0;
}
.menu-preview__item:hover::after {
  transform: scaleX(1);
  opacity: 1;
}

/* ---------- 8. RATINGS — score glow ---------- */
.rating__score {
  filter: drop-shadow(0 4px 18px rgba(212, 150, 15, 0.45));
}
.rating .stars {
  text-shadow: 0 0 12px rgba(212, 150, 15, 0.6);
}
.review .stars {
  animation: starsShimmer 4s ease-in-out infinite;
}
@keyframes starsShimmer {
  0%, 100% { filter: drop-shadow(0 0 4px rgba(212, 150, 15, 0.3)); }
  50%      { filter: drop-shadow(0 0 12px rgba(255, 200, 60, 0.7)); }
}

/* ---------- 9. STATS — count glow + ligne de feu ---------- */
.stat {
  transition: transform 0.4s var(--ease-out);
}
.stat:hover {
  transform: translateY(-2px);
}
.stat__num {
  filter: drop-shadow(0 4px 18px rgba(232, 83, 10, 0.4));
}
.stat::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--c-fire), var(--c-gold), transparent);
  filter: blur(0.5px);
  transition: width 0.6s var(--ease-out), left 0.6s var(--ease-out);
  transform: translateX(-50%);
}
.stat:hover::after { width: 80%; }

/* ---------- 10. CTA FINAL — braises continues ---------- */
.cta-final {
  isolation: isolate;
}
.cta-final::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(circle 2px at 12% 75%, rgba(232,83,10,0.9) 0%, transparent 70%),
    radial-gradient(circle 2px at 28% 88%, rgba(232,178,58,0.8) 0%, transparent 70%),
    radial-gradient(circle 3px at 55% 70%, rgba(255,140,50,0.85) 0%, transparent 70%),
    radial-gradient(circle 2px at 72% 80%, rgba(232,178,58,0.7) 0%, transparent 70%),
    radial-gradient(circle 2px at 88% 78%, rgba(255,180,90,0.85) 0%, transparent 70%);
  filter: blur(0.5px);
  animation: ctaEmbers 9s ease-in-out infinite;
  opacity: 0;
}
@keyframes ctaEmbers {
  0%   { opacity: 0; transform: translateY(40%) scale(1); }
  15%  { opacity: 0.7; }
  60%  { opacity: 1;   transform: translateY(-20%) scale(1.1); }
  100% { opacity: 0;   transform: translateY(-90%) scale(0.5); }
}

/* ---------- 11. NAV — premium glow scrolled ---------- */
.nav.is-scrolled {
  border-bottom: 1px solid rgba(232, 150, 58, 0.2);
  background: rgba(8, 3, 0, 0.92);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
}

/* ---------- 12. BUTTONS — chaleur additionnelle ---------- */
.btn--primary,
.btn--ember {
  filter: drop-shadow(0 8px 22px rgba(232, 83, 10, 0.35));
  transition: filter var(--t-med) var(--ease), transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease), background-color var(--t-fast) var(--ease);
}
.btn--primary:hover,
.btn--ember:hover {
  filter: drop-shadow(0 14px 32px rgba(255, 140, 50, 0.65));
}

/* ---------- 13. SECTION TRANSITIONS — fonds différenciés ---------- */
.section--alt {
  position: relative;
  isolation: isolate;
}
.section--alt::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(800px 400px at 20% 30%, rgba(232, 83, 10, 0.05), transparent 70%),
    radial-gradient(600px 400px at 80% 70%, rgba(212, 150, 15, 0.04), transparent 70%);
}

/* ---------- 14. GALLERY — premium hover cinema ---------- */
.gallery-item {
  position: relative;
  overflow: hidden;
}
.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(232, 83, 10, 0.25) 0%,
    transparent 40%,
    transparent 60%,
    rgba(212, 150, 15, 0.18) 100%);
  opacity: 0;
  z-index: 1;
  mix-blend-mode: overlay;
  transition: opacity 0.6s var(--ease-out);
  pointer-events: none;
}
.gallery-item:hover::before { opacity: 1; }
.gallery-item:hover img { filter: brightness(1.1) saturate(1.25) contrast(1.05); }

/* ---------- 15. MOBILE — croix dédiée + premium polish ---------- */
@media (max-width: 760px) {
  .nav__burger {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: rgba(11, 4, 0, 0.85);
    border: 1px solid rgba(232, 150, 58, 0.35);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background-color 0.3s var(--ease), border-color 0.3s var(--ease);
  }
  .nav__burger.is-open {
    background: rgba(232, 83, 10, 0.95);
    border-color: rgba(255, 255, 255, 0.4);
  }
  .nav__burger.is-open span { background: var(--c-cream); }

  /* Menu mobile : entrée premium */
  .nav__menu {
    background: rgba(11, 4, 0, 0.97);
    background-image:
      radial-gradient(ellipse 100% 60% at 50% 30%, rgba(232, 83, 10, 0.12), transparent 70%),
      radial-gradient(ellipse 80% 40% at 50% 80%, rgba(212, 150, 15, 0.08), transparent 70%);
  }
  .nav__menu a {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
  }
  .nav__menu.is-open a {
    opacity: 1;
    transform: translateY(0);
  }
  .nav__menu.is-open a:nth-child(1) { transition-delay: 0.15s; }
  .nav__menu.is-open a:nth-child(2) { transition-delay: 0.22s; }
  .nav__menu.is-open a:nth-child(3) { transition-delay: 0.29s; }
  .nav__menu.is-open a:nth-child(4) { transition-delay: 0.36s; }
  .nav__menu.is-open a:nth-child(5) { transition-delay: 0.43s; }

  /* Bento mobile : 1 colonne pour les media + 2 cols pour les step */
  .bento { gap: 0.6rem; }

  /* Specialties mobile : carte plus contenue */
  .spec-card img { aspect-ratio: 5 / 6; }

  /* Stats mobile : ligne feu visible aussi au tap */
  .stat:active::after { width: 80%; }

  /* Reveals mobile : durées réduites pour fluidité tactile */
  .r-blur,
  .r-slide-l,
  .r-slide-r,
  .r-clip,
  .r-mask,
  .r-zoom {
    transition-duration: 0.9s !important;
  }
}

/* ---------- 16. SMOOTH SCROLL POLISH ---------- */
html {
  scroll-behavior: smooth;
}

/* ---------- 17. REDUCED MOTION V5 ---------- */
@media (prefers-reduced-motion: reduce) {
  .heat-cursor,
  .r-blur,
  .r-slide-l,
  .r-slide-r,
  .r-clip,
  .r-mask,
  .r-zoom,
  .cta-final::after,
  .review .stars {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    clip-path: none !important;
    animation: none !important;
    transition: none !important;
  }
}

/* =============================================================
   PIZZAS POPEYE — IMAGE PROPORTIONS FIX V6 (mobile cadrage)
   Objectif : images mobile plus compactes, ratio paysage,
   crop intelligent, zéro déformation, desktop intact
   ============================================================= */

/* ---------- MOBILE : aspect-ratios compacts ---------- */
@media (max-width: 760px) {
  /* Spec-cards (homepage) : ratio paysage compact (était 5/6) */
  .spec-card img {
    aspect-ratio: 4 / 3 !important;
    object-fit: cover;
    object-position: center 55%;
  }
  /* Padding-bottom de la card un peu réduit pour rythme plus serré */
  .spec-card__body {
    padding: 1.1rem 1.2rem 1.3rem !important;
  }
  .spec-card__num {
    top: 0.8rem !important;
    right: 1rem !important;
    font-size: 2rem !important;
  }

  /* Story media (le four à bois) : ratio plus carré, plus compact */
  .story__media img {
    aspect-ratio: 5 / 4 !important;
    object-fit: cover;
    object-position: center 50%;
  }
  .story__media-badge {
    bottom: 1rem !important;
    left: 1rem !important;
    font-size: 0.62rem !important;
    padding: 0.45rem 0.85rem !important;
  }

  /* Bento media (cuisson + boîtes) : hauteur capée propre */
  .bento-item--lg.bento-item--media {
    aspect-ratio: 16 / 11;
    min-height: 0;
    max-height: 280px;
  }
  .bento-item--md.bento-item--media {
    aspect-ratio: 4 / 3;
    min-height: 0;
    max-height: 240px;
  }
  .bento-item--lg.bento-item--media img,
  .bento-item--md.bento-item--media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  /* Réduit le gap bento + padding sections pour rythme plus dense */
  .bento { gap: 0.7rem !important; }
  .bento-item { padding: 1.3rem !important; }
  .section { padding: clamp(2.6rem, 8vw, 5rem) 0 !important; }

  /* Galerie mobile : tiles plus compactes (étaient 160px, on garde mais aspect-ratio fluide) */
  .gallery-grid { grid-auto-rows: 140px !important; gap: 0.55rem !important; }
  .gallery-item img {
    object-position: center 50%;
  }
  /* Hero img poster fallback : déjà géré par .hero__fallback */

  /* Page header (galerie/contact/a-propos) : moins de padding mobile */
  .page-header {
    padding: clamp(6.5rem, 14vw, 9rem) 0 clamp(2rem, 5vw, 3.5rem) !important;
  }
}

/* ---------- TRÈS PETITS ÉCRANS (<= 380px) : ratio encore plus tassé ---------- */
@media (max-width: 380px) {
  .spec-card img {
    aspect-ratio: 5 / 4 !important;
  }
  .story__media img {
    aspect-ratio: 6 / 5 !important;
  }
  .bento-item--lg.bento-item--media { max-height: 240px; }
  .bento-item--md.bento-item--media { max-height: 200px; }
  .gallery-grid { grid-auto-rows: 120px !important; }
}

/* ---------- DESKTOP : micro-épuration sans casser ---------- */
@media (min-width: 761px) and (max-width: 1100px) {
  .spec-card img {
    aspect-ratio: 4 / 4.5;
    object-fit: cover;
  }
}

/* ---------- TABLETTE LANDSCAPE & PORTRAIT : crop centré ---------- */
@media (min-width: 761px) and (max-width: 1024px) {
  .story__media img {
    aspect-ratio: 4 / 4.4;
  }
}

/* ---------- ANTI-DÉFORMATION GLOBALE ---------- */
img {
  height: auto;
}
.spec-card img,
.story__media img,
.bento-item--media img,
.gallery-item img,
.story-page__media img,
.page-header img {
  /* Sécurité : object-fit cover sur tous les conteneurs photo */
  object-fit: cover;
}
