/* =========================================================
   PIZZA ROMA — Hero "Trattoria napolitaine artisanale"
   Terre cuite + San Marzano · touches basilic & mozzarella
   Tout en OKLCH. Mobile-first.
   ========================================================= */

:root {
  /* --- Base : charbon profond + terre cuite --- */
  --char-900: oklch(16% 0.018 45);    /* charbon chaud profond */
  --char-800: oklch(22% 0.028 42);
  --terracotta: oklch(54% 0.105 47);  /* terre cuite */
  --terracotta-deep: oklch(42% 0.09 42);

  /* --- Corps : rouge San Marzano profond et terreux --- */
  --sanmarzano: oklch(47% 0.155 32);  /* tomate profonde terreuse */
  --sanmarzano-hot: oklch(60% 0.175 38);

  /* --- Braise / orange feu (hover, intensité) --- */
  --ember: oklch(66% 0.18 45);
  --ember-hot: oklch(74% 0.165 58);
  --ember-glow: oklch(80% 0.15 64);

  /* --- Or précieux (détails fins uniquement) --- */
  --gold: oklch(80% 0.105 80);
  --gold-bright: oklch(90% 0.085 86);
  --gold-deep: oklch(68% 0.115 72);
  --gold-line: oklch(78% 0.09 78 / 0.55);

  /* --- Fraîcheur napolitaine (touches ponctuelles) --- */
  --basil: oklch(58% 0.13 145);        /* vert basilic */
  --basil-bright: oklch(70% 0.14 145);
  --mozza: oklch(96% 0.022 95);        /* blanc mozzarella crème */

  /* --- Textes --- */
  --ink: oklch(97% 0.014 90);          /* crème chaud */
  --ink-soft: oklch(88% 0.02 80);
  --ink-muted: oklch(74% 0.024 72);

  /* --- Surfaces / matière --- */
  --glass: oklch(26% 0.03 42 / 0.42);
  --glass-line: oklch(82% 0.05 72 / 0.18);

  --maxw: 1340px;
  --bar-h: clamp(62px, 8.5vw, 74px);
  --gut: clamp(16px, 5vw, 56px);
  /* hauteur réelle de la topbar fixed (sceau + nom) : sert d'offset au sticky */
  --top-h: calc(env(safe-area-inset-top) + 74px);

  /* easings — le "warm" = sortie souple et gourmande */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.33, 1, 0.68, 1);
  --ease-warm: cubic-bezier(0.22, 1, 0.36, 1);  /* chaleureux, posé */
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* grain fin terre cuite : data-URI réutilisable comme matière de bouton */
  --clay-grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='90' height='90'%3E%3Cfilter id='c'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23c)'/%3E%3C/svg%3E");
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }

body {
  font-family: "Inter", -apple-system, system-ui, sans-serif;
  background: var(--char-900);
  color: var(--ink);
  min-height: 100svh;
  overflow-x: hidden;
  padding-bottom: calc(var(--bar-h) + env(safe-area-inset-bottom));
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

a { color: inherit; text-decoration: none; }

/* focus ring accessible, doré */
:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--char-900), 0 0 0 5.5px var(--gold-bright);
  border-radius: 8px;
}

/* =========================================================
   ATMOSPHÈRE : braise terre cuite + grain artisanal
   ========================================================= */
.atmosphere { position: fixed; inset: 0; pointer-events: none; z-index: 0; }

.ember {
  position: absolute; border-radius: 50%;
  filter: blur(64px); mix-blend-mode: screen; opacity: 0.46;
}
.ember--top {
  top: -22%; right: -12%;
  width: 70vw; height: 70vw; max-width: 620px; max-height: 620px;
  background: radial-gradient(circle, var(--ember-hot) 0%, oklch(60% 0.16 48 / 0.3) 38%, transparent 70%);
  animation: emberBreath 10s var(--ease-soft) infinite alternate;
}
.ember--bottom {
  bottom: -16%; left: -18%;
  width: 82vw; height: 82vw; max-width: 720px; max-height: 720px;
  background: radial-gradient(circle, var(--sanmarzano) 0%, oklch(44% 0.12 36 / 0.28) 42%, transparent 72%);
  animation: emberBreath 12s var(--ease-soft) infinite alternate-reverse;
}
@keyframes emberBreath {
  from { transform: scale(1) translateY(0); opacity: 0.4; }
  to   { transform: scale(1.12) translateY(-3%); opacity: 0.56; }
}

.grain {
  position: absolute; inset: -50%; width: 200%; height: 200%;
  background-image: var(--clay-grain);
  opacity: 0.055; mix-blend-mode: overlay;
  animation: grainShift 0.6s steps(3) infinite;
}
@keyframes grainShift {
  0% { transform: translate(0,0); } 33% { transform: translate(-2%,1%); }
  66% { transform: translate(1%,-2%); } 100% { transform: translate(0,0); }
}

/* =========================================================
   TOPBAR + EMBLÈME (sceau)
   ========================================================= */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 30;
  display: flex; align-items: center; justify-content: space-between;
  padding: calc(env(safe-area-inset-top) + 12px) var(--gut) 12px;
}
.seal { display: inline-flex; line-height: 0; }
.seal__svg {
  width: clamp(40px, 11vw, 50px); height: auto;
  filter: drop-shadow(0 2px 10px oklch(68% 0.11 72 / 0.28));
  transition: transform 0.6s var(--ease-warm);
}
.seal:hover .seal__svg { transform: rotate(28deg); }
.seal__notches { transition: opacity 0.4s ease; }
.seal__text { font: 700 7.4px/1 "Inter", sans-serif; letter-spacing: 0.18em; }
.seal__mono {
  font-family: "Fraunces", serif; font-weight: 600; font-size: 30px;
  letter-spacing: -0.02em; font-variation-settings: "opsz" 40;
}

.topbar__meta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: clamp(10px, 3vw, 12.5px);
  font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink-soft);
  text-shadow: 0 1px 8px oklch(16% 0.02 45 / 0.8);
}
.dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--basil-bright);
  box-shadow: 0 0 0 0 var(--basil-bright);
  animation: pulse 2.2s var(--ease-soft) infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 oklch(70% 0.14 145 / 0.6); }
  70% { box-shadow: 0 0 0 7px oklch(70% 0.14 145 / 0); }
  100% { box-shadow: 0 0 0 0 oklch(70% 0.14 145 / 0); }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative; min-height: 100svh;
  display: flex; isolation: isolate; z-index: 1;
}

.hero__media {
  position: absolute; inset: 0; z-index: -1; overflow: hidden;
  will-change: transform;
}
.hero__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 47%;             /* centre la pizza */
  filter: saturate(1.1) contrast(1.05) brightness(0.92);  /* révèle le produit */
}

/* voile léger : juste de quoi lire le texte, sans étouffer la pizza.
   Dégradé bas terre cuite/charbon + halo doux haut. */
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top,
      oklch(15% 0.02 44 / 0.92) 0%,
      oklch(15% 0.02 44 / 0.7) 18%,
      oklch(16% 0.02 44 / 0.28) 38%,
      transparent 58%),
    linear-gradient(to bottom,
      oklch(15% 0.02 44 / 0.55) 0%,
      transparent 22%),
    radial-gradient(130% 110% at 50% 42%,
      transparent 52%, oklch(14% 0.015 42 / 0.42) 100%);
}

/* --- VAPEUR montante : panaches "ça sort du four" --- */
.steam {
  position: absolute; inset: 0; overflow: hidden;
  z-index: 0; pointer-events: none;
  /* centrée sur la pizza, basse */
}
.steam__plume {
  position: absolute; bottom: 24%;
  width: clamp(90px, 24vw, 170px); aspect-ratio: 1 / 2.6;
  border-radius: 50%;
  background: radial-gradient(ellipse 48% 58% at 50% 72%,
    oklch(98% 0.008 90 / 0.78) 0%, oklch(95% 0.008 90 / 0.34) 38%, transparent 70%);
  filter: blur(14px);
  mix-blend-mode: screen;
  opacity: 0;
  will-change: transform, opacity;
}
/* placées sur des zones plus sombres (haut + côtés) pour bien ressortir */
.steam__plume--1 { left: 22%; animation: rise 7.5s ease-in-out infinite; }
.steam__plume--2 { left: 46%; width: clamp(76px,19vw,134px); animation: rise 9s ease-in-out 1.6s infinite; }
.steam__plume--3 { left: 66%; animation: rise 8.2s ease-in-out 3.4s infinite; }
@keyframes rise {
  0%   { transform: translateY(25%) scaleX(0.75); opacity: 0; }
  14%  { opacity: 0.9; }
  55%  { opacity: 0.62; }
  100% { transform: translateY(-150%) scaleX(1.6); opacity: 0; }
}

.hero__content {
  position: relative;
  width: 100%; max-width: var(--maxw); margin: 0 auto;
  padding:
    calc(env(safe-area-inset-top) + clamp(72px, 13vh, 108px))
    calc(var(--gut) + env(safe-area-inset-right))
    clamp(20px, 4.5vh, 46px)
    calc(var(--gut) + env(safe-area-inset-left));
  display: flex; flex-direction: column; justify-content: space-between;
  gap: clamp(16px, 4vh, 40px);
}

/* --- badges : matière terre cuite translucide + filet or --- */
.hero__top { display: flex; }
.badges { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; }
.badge {
  position: relative;
  font-size: clamp(10px, 2.8vw, 12px);
  font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 7px 13px; border-radius: 999px;
  color: var(--ink-soft);
  background:
    var(--clay-grain),
    linear-gradient(135deg, oklch(34% 0.05 42 / 0.55), oklch(26% 0.04 40 / 0.4));
  background-blend-mode: overlay, normal;
  background-size: 90px, cover;
  border: 1px solid var(--gold-line);
  -webkit-backdrop-filter: blur(10px) saturate(1.3);
  backdrop-filter: blur(10px) saturate(1.3);
  box-shadow: inset 0 1px 0 oklch(90% 0.04 80 / 0.18);
}
.badge--accent {
  color: oklch(26% 0.05 50);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  border-color: transparent; font-weight: 700;
}
/* touche fraîche : basilic ponctuel */
.badge--fresh { border-color: oklch(60% 0.12 145 / 0.55); color: var(--basil-bright); }

/* --- bloc bas --- */
.hero__bottom { display: flex; flex-direction: column; }

/* sur-titre éditorial */
.eyebrow {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: clamp(12px, 3vw, 18px); flex-wrap: wrap;
}
.eyebrow__index {
  font-family: "Fraunces", serif; font-style: italic;
  font-size: clamp(13px, 3.6vw, 15px); font-weight: 600;
  color: var(--ember-glow); font-variation-settings: "opsz" 30;
}
.eyebrow__rule {
  width: clamp(24px, 7vw, 40px); height: 1px;
  background: linear-gradient(to right, var(--ember-hot), transparent);
}
.eyebrow__label {
  font-size: clamp(10.5px, 3vw, 12.5px);
  font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-bright);
  text-shadow: 0 1px 4px oklch(14% 0.02 44 / 0.9), 0 0 16px oklch(14% 0.02 44 / 0.7);
}

.hero__title {
  position: relative;
  font-family: "Fraunces", serif;
  line-height: 0.9; letter-spacing: -0.022em;
  font-size: clamp(40px, 12vw, 150px);
  margin-bottom: clamp(20px, 4vw, 32px);
  padding-bottom: clamp(14px, 3vw, 22px);
}
.hero__title-line { display: block; overflow: hidden; }
/* contraste de graisse marqué : ligne 1 légère, mot sensoriel lourd */
.word {
  display: inline-block; color: var(--ink);
  font-weight: 340; font-variation-settings: "opsz" 144;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 30px oklch(14% 0.015 44 / 0.7);
}
/* mot sensoriel : italique éditorial, or, graisse forte */
.word--accent {
  font-style: italic; font-weight: 580;
  background: linear-gradient(168deg, var(--gold-bright) 6%, var(--gold) 44%, var(--gold-deep) 92%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 4px 24px oklch(70% 0.11 72 / 0.34));
  padding-right: 0.06em;
}
/* filet braise sous le titre — motif signature récurrent */
.title-rule {
  position: absolute; left: 0; bottom: 0;
  height: 2px; width: clamp(120px, 38vw, 280px);
  background: linear-gradient(to right, var(--ember-hot), var(--sanmarzano) 60%, transparent);
  border-radius: 2px; transform-origin: left;
  box-shadow: 0 0 16px oklch(64% 0.16 48 / 0.5);
}

.hero__tagline {
  font-size: clamp(15px, 4vw, 21px);
  line-height: 1.5; color: var(--ink-soft);
  max-width: 34ch; text-wrap: balance;
  margin-bottom: clamp(22px, 4.5vw, 32px);
  text-shadow: 0 1px 12px oklch(14% 0.015 44 / 0.7);  /* lisibilité locale */
}
.hero__tagline strong {
  color: var(--mozza); font-weight: 600;
}

/* =========================================================
   ACTIONS — boutons terre cuite (matière + braise qui chauffe)
   ========================================================= */
.hero__actions {
  display: flex; flex-wrap: wrap; align-items: stretch; gap: 12px;
  margin-bottom: clamp(20px, 4vw, 28px);
}

.btn {
  font-family: inherit; cursor: pointer; border: none;
  -webkit-tap-highlight-color: transparent; touch-action: manipulation;
}

/* ---------- CTA PRINCIPAL "Sortie du four" ---------- */
.btn--call {
  position: relative;
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; column-gap: 14px;
  padding: 14px 22px 14px 15px;
  flex: 1 1 auto; min-width: 252px; min-height: 64px;
  border-radius: 999px;             /* pill organique chaleureuse */
  color: var(--mozza);
  /* matière terre cuite : grain fin + dégradé San Marzano -> terre cuite */
  background:
    var(--clay-grain),
    linear-gradient(180deg, oklch(70% 0.14 50 / 0.28), transparent 42%),
    linear-gradient(135deg, var(--ember) 0%, var(--sanmarzano-hot) 48%, var(--sanmarzano) 100%);
  background-blend-mode: overlay, normal, normal;
  background-size: 90px, cover, cover;
  /* profondeur tactile : highlight haut + ombre interne basse + ombres chaudes */
  box-shadow:
    0 1px 0 oklch(92% 0.07 84 / 0.4) inset,
    0 -7px 16px oklch(38% 0.12 32 / 0.4) inset,
    0 2px 6px oklch(42% 0.14 34 / 0.4),
    0 10px 26px oklch(48% 0.16 36 / 0.4),
    0 22px 46px oklch(44% 0.14 34 / 0.28);
  isolation: isolate; overflow: hidden;
  transition: transform 0.32s var(--ease-warm), box-shadow 0.32s var(--ease-warm), filter 0.32s var(--ease-warm);
}
/* liseré or fin (anneau précieux) */
.btn--call::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1.3px;
  background: linear-gradient(135deg, var(--gold-bright) 0%, oklch(70% 0.1 66 / 0.3) 42%, transparent 60%, var(--gold-deep) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none; z-index: 3;
}
/* sheen doux qui balaie au hover */
.btn--call::after {
  content: ""; position: absolute; top: 0; left: -65%;
  width: 55%; height: 100%; z-index: 2;
  background: linear-gradient(100deg, transparent, oklch(96% 0.04 86 / 0.4), transparent);
  transform: skewX(-18deg);
  transition: left 0.8s var(--ease-warm);
}
/* HOVER "braise qui chauffe" : gradient s'intensifie vers l'orange + micro-scale + glow qui pulse */
.btn--call:hover {
  transform: translateY(-2px) scale(1.03);
  background:
    var(--clay-grain),
    linear-gradient(180deg, oklch(78% 0.16 56 / 0.35), transparent 44%),
    linear-gradient(135deg, var(--ember-hot) 0%, var(--ember) 46%, var(--sanmarzano-hot) 100%);
  background-blend-mode: overlay, normal, normal;
  background-size: 90px, cover, cover;
  filter: saturate(1.1) brightness(1.05);
  animation: emberPulse 1.6s var(--ease-soft) infinite;
}
.btn--call:hover::after { left: 130%; }
@keyframes emberPulse {
  0%,100% {
    box-shadow:
      0 1px 0 oklch(94% 0.07 84 / 0.45) inset,
      0 -7px 16px oklch(38% 0.12 32 / 0.4) inset,
      0 4px 10px oklch(50% 0.16 38 / 0.45),
      0 16px 36px oklch(58% 0.18 44 / 0.5),
      0 0 0 oklch(70% 0.17 48 / 0);
  }
  50% {
    box-shadow:
      0 1px 0 oklch(95% 0.07 84 / 0.5) inset,
      0 -7px 16px oklch(38% 0.12 32 / 0.4) inset,
      0 4px 10px oklch(52% 0.17 40 / 0.5),
      0 18px 42px oklch(62% 0.19 46 / 0.6),
      0 0 22px oklch(70% 0.17 48 / 0.45);   /* glow rouge/orange qui respire */
  }
}
.btn--call:active { transform: translateY(0) scale(0.97); animation: none; }

/* anneau qui pulse à la confirmation de clic */
.btn__ring {
  position: absolute; inset: 0; border-radius: inherit; z-index: 4;
  pointer-events: none; opacity: 0; box-shadow: 0 0 0 0 var(--gold-bright);
}
.btn--call.is-confirmed .btn__ring { animation: ringPulse 0.6s var(--ease-out); }
@keyframes ringPulse {
  0% { opacity: 0.9; box-shadow: 0 0 0 0 oklch(90% 0.085 86 / 0.85); }
  100% { opacity: 0; box-shadow: 0 0 0 18px oklch(90% 0.085 86 / 0); }
}

.btn__icon {
  grid-column: 1; z-index: 5;
  display: grid; place-items: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, oklch(40% 0.06 44), oklch(28% 0.05 40));
  color: var(--gold-bright);
  box-shadow: inset 0 1px 0 oklch(62% 0.08 60 / 0.4), 0 2px 6px oklch(18% 0.025 38 / 0.5);
  transition: transform 0.4s var(--ease-spring);
}
.btn--call:hover .btn__icon { animation: ring 0.7s var(--ease-out); }
@keyframes ring {
  0%,100% { transform: rotate(0); }
  20% { transform: rotate(-14deg); } 40% { transform: rotate(11deg); }
  60% { transform: rotate(-7deg); } 80% { transform: rotate(4deg); }
}
.btn__copy { grid-column: 2; z-index: 5; display: flex; flex-direction: column; min-width: 0; }
.btn__label {
  font-size: clamp(15.5px, 4.2vw, 18px); font-weight: 700;
  letter-spacing: -0.01em; line-height: 1.12;
  transition: letter-spacing 0.32s var(--ease-warm);
}
.btn--call:hover .btn__label { letter-spacing: 0.006em; }
.btn__sub {
  font-size: clamp(11.5px, 3.2vw, 13px); font-weight: 600;
  letter-spacing: 0.02em; opacity: 0.85; font-variant-numeric: tabular-nums;
}
.btn__check {
  grid-column: 3; z-index: 5;
  display: grid; place-items: center;
  width: 26px; height: 26px; border-radius: 50%;
  color: oklch(26% 0.05 50); background: var(--basil-bright);
  opacity: 0; transform: scale(0.4);
  transition: opacity 0.25s var(--ease-out), transform 0.3s var(--ease-spring);
}
.btn--call.is-confirmed .btn__check { opacity: 1; transform: scale(1); }

/* ---------- ripple braise (injecté en JS) ---------- */
.ripple {
  position: absolute; border-radius: 50%; z-index: 1;
  pointer-events: none; transform: scale(0);
  background: radial-gradient(circle, oklch(94% 0.05 86 / 0.5), oklch(72% 0.16 50 / 0.16) 60%, transparent 72%);
  animation: rippleOut 0.62s var(--ease-out) forwards; mix-blend-mode: screen;
}
@keyframes rippleOut { to { transform: scale(2.4); opacity: 0; } }

/* ---------- CTA secondaire "Voir le menu" : chaleureux ---------- */
.btn--ghost {
  position: relative;
  display: inline-flex; align-items: center; gap: 9px;
  padding: 16px 22px; min-height: 56px; border-radius: 999px;
  font-size: clamp(14px, 3.8vw, 15px); font-weight: 600;
  color: var(--ink-soft);
  background:
    var(--clay-grain),
    linear-gradient(135deg, oklch(32% 0.045 42 / 0.5), oklch(24% 0.035 40 / 0.38));
  background-blend-mode: overlay, normal;
  background-size: 90px, cover;
  border: 1px solid var(--gold-line);
  -webkit-backdrop-filter: blur(12px) saturate(1.3);
  backdrop-filter: blur(12px) saturate(1.3);
  overflow: hidden;
  transition: color 0.32s var(--ease-warm), border-color 0.32s var(--ease-warm), transform 0.32s var(--ease-warm);
}
.btn--ghost__label { position: relative; }
.btn--ghost__label::after {
  content: ""; position: absolute; left: 0; bottom: -3px;
  width: 100%; height: 1.5px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease-warm);
}
.btn--ghost__arrow { display: grid; place-items: center; transition: transform 0.4s var(--ease-spring); }
.btn--ghost:hover {
  color: var(--ink); border-color: var(--gold-bright); transform: translateY(-2px);
}
.btn--ghost:hover .btn--ghost__label::after { transform: scaleX(1); }
.btn--ghost:hover .btn--ghost__arrow { transform: translateY(4px); }
.btn--ghost:active { transform: translateY(0) scale(0.97); }

/* --- meta-line : infos pratiques sur une ligne discrète --- */
.meta-line {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px 12px;
  font-size: clamp(11.5px, 3.2vw, 13.5px);
  color: var(--ink-muted);
  text-shadow: 0 1px 8px oklch(14% 0.015 44 / 0.7);
}
.meta-line__item { font-variant-numeric: tabular-nums; }
.meta-line__item--accent { color: var(--basil-bright); font-weight: 600; }
.meta-line__sep {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--terracotta); opacity: 0.8;
}

/* --- scroll cue --- */
.scrollcue {
  position: absolute; bottom: clamp(14px, 3.5vh, 28px);
  left: 50%; transform: translateX(-50%);
  display: none; flex-direction: column; align-items: center; gap: 8px; z-index: 5;
}
.scrollcue__label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-muted);
  text-shadow: 0 1px 8px oklch(14% 0.015 44 / 0.8);
}
.scrollcue__track {
  width: 22px; height: 34px;
  border: 1.5px solid var(--gold-line); border-radius: 14px;
  display: flex; justify-content: center; padding-top: 6px;
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.scrollcue__dot {
  width: 3.5px; height: 8px; border-radius: 4px; background: var(--gold);
  animation: scrollDot 1.8s var(--ease-soft) infinite;
}
@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 0; }
  30% { opacity: 1; } 70% { transform: translateY(11px); opacity: 1; }
  100% { transform: translateY(13px); opacity: 0; }
}
@media (min-width: 900px) {
  .scrollcue { display: flex; left: auto; right: var(--gut); transform: none; align-items: flex-end; }
}

/* =========================================================
   CALLBAR STICKY — matière terre cuite gourmande
   ========================================================= */
.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
  min-height: var(--bar-h);
  padding: 8px var(--gut);
  padding-bottom: max(8px, env(safe-area-inset-bottom));  /* home indicator */
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  background:
    var(--clay-grain),
    linear-gradient(180deg, oklch(22% 0.03 44 / 0.82), oklch(18% 0.025 42 / 0.86));
  background-blend-mode: overlay, normal;
  background-size: 90px, cover;
  -webkit-backdrop-filter: blur(22px) saturate(1.5);
  backdrop-filter: blur(22px) saturate(1.5);
  border-top: 1px solid var(--gold-line);
  box-shadow: 0 -10px 40px oklch(10% 0.015 44 / 0.55);
}
.callbar__info { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
.callbar__title {
  font-family: "Fraunces", serif; font-weight: 600; font-size: clamp(15px, 4.4vw, 17px);
  color: var(--gold); letter-spacing: 0.01em;
}
.callbar__sub {
  font-size: clamp(10.5px, 3vw, 12.5px); font-weight: 500; color: var(--ink-muted);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.callbar__btn {
  position: relative; overflow: hidden; isolation: isolate;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; min-height: 48px; border-radius: 999px;
  font-weight: 700; font-size: clamp(14px, 3.8vw, 15px); letter-spacing: 0.01em;
  color: var(--mozza);
  background:
    var(--clay-grain),
    linear-gradient(180deg, oklch(72% 0.14 52 / 0.3), transparent 44%),
    linear-gradient(135deg, var(--ember), var(--sanmarzano));
  background-blend-mode: overlay, normal, normal;
  background-size: 90px, cover, cover;
  box-shadow:
    0 1px 0 oklch(92% 0.07 84 / 0.4) inset,
    0 3px 8px oklch(46% 0.15 36 / 0.4),
    0 8px 22px oklch(50% 0.17 40 / 0.45);
  transition: transform 0.28s var(--ease-warm), box-shadow 0.28s var(--ease-warm), filter 0.28s var(--ease-warm);
}
.callbar__btn::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1.2px;
  background: linear-gradient(135deg, var(--gold-bright), transparent 55%, var(--gold-deep));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.callbar__btn-ico { display: grid; place-items: center; transition: transform 0.4s var(--ease-spring); }
.callbar__btn-label { white-space: nowrap; }
.callbar__btn:hover {
  transform: translateY(-2px) scale(1.02);
  filter: saturate(1.08) brightness(1.04);
  box-shadow: 0 5px 12px oklch(48% 0.16 38 / 0.5), 0 14px 32px oklch(58% 0.18 44 / 0.55), 0 0 18px oklch(68% 0.16 46 / 0.4);
}
.callbar__btn:hover .callbar__btn-ico { animation: ring 0.7s var(--ease-out); }
.callbar__btn:active { transform: scale(0.96); }
.callbar__btn.is-confirmed { animation: ringPulse 0.6s var(--ease-out); }

@media (min-width: 700px) { .callbar { padding-inline: var(--gut); } }

/* =========================================================
   REVEAL (états initiaux ; JS retire .is-in)
   ========================================================= */
[data-reveal] {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.9s var(--ease-warm), transform 0.9s var(--ease-warm);
}
[data-reveal].is-in { opacity: 1; transform: none; }

.hero__title .word { transform: translateY(110%); transition: transform 1s var(--ease-warm); }
.hero__title.is-in .word { transform: translateY(0); }
.hero__title.is-in .word--accent { transition-delay: 0.08s; }
.title-rule { transform: scaleX(0); transition: transform 0.9s var(--ease-warm) 0.35s; }
.hero__title.is-in .title-rule { transform: scaleX(1); }

/* =========================================================
   RESPONSIVE — couverture universelle (non-régression v2)
   ========================================================= */

/* Petits écrans / pliables (Fold ~280, SE ~320) */
@media (max-width: 360px) {
  :root { --gut: 16px; }
  .hero__content { gap: 14px; }
  .hero__title { font-size: clamp(32px, 11.5vw, 70px); }
  .btn--call { min-width: 100%; }
  .btn--ghost { width: 100%; justify-content: center; }
  .topbar__meta { font-size: 9.5px; }
}
@media (max-width: 300px) {
  .hero__title { font-size: clamp(26px, 11vw, 54px); }
  .hero__tagline { font-size: 14px; }
  .badge { padding: 6px 10px; letter-spacing: 0.05em; }
  .callbar__info { display: none; }
  .callbar__btn { flex: 1; justify-content: center; }
}

/* Paysage mobile : hauteur réduite → compacter, tout reste au-dessus de la callbar */
@media (orientation: landscape) and (max-height: 560px) {
  .hero { min-height: 100svh; }
  .hero__content {
    padding-top: calc(env(safe-area-inset-top) + 48px);
    padding-bottom: calc(var(--bar-h) + env(safe-area-inset-bottom) + 12px);
    gap: 8px; justify-content: flex-end;
  }
  .hero__top { position: absolute; top: calc(env(safe-area-inset-top) + 48px); left: var(--gut); }
  .badges { gap: 6px; }
  .hero__title { font-size: clamp(34px, 11vh, 76px); margin-bottom: 8px; padding-bottom: 8px; }
  .title-rule { height: 1.5px; }
  .hero__tagline { font-size: 13px; line-height: 1.38; margin-bottom: 12px; max-width: 54ch; }
  .eyebrow { margin-bottom: 6px; }
  .hero__actions { margin-bottom: 10px; flex-wrap: nowrap; }
  .btn--call { min-height: 56px; min-width: 218px; }
  .btn--ghost { min-height: 50px; }
  .meta-line { font-size: 11px; margin: 0; }
  .scrollcue { display: none !important; }
  .steam { opacity: 0.6; }
}

/* Desktop : composition affiche */
@media (min-width: 1024px) {
  .hero__content { padding-top: calc(env(safe-area-inset-top) + 120px); }
  .hero__tagline { max-width: 40ch; }
  .hero__actions { gap: 16px; }
}

/* =========================================================
   TOPBAR — extension marque (nom + signature)
   ========================================================= */
.topbar__brand {
  display: none;            /* mobile : on garde le sceau + statut, place limitée */
  flex-direction: column; line-height: 1.05;
  text-shadow: 0 1px 10px oklch(14% 0.02 44 / 0.9);
}
.topbar__name {
  font-family: "Fraunces", serif; font-weight: 600;
  font-size: clamp(15px, 4vw, 19px); color: var(--gold-bright);
  letter-spacing: 0.005em; font-variation-settings: "opsz" 36;
}
.topbar__sig {
  font-size: 10.5px; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-muted);
}
.topbar__status { white-space: nowrap; }
@media (min-width: 560px) {
  .topbar { justify-content: flex-start; gap: 14px; }
  .topbar__brand { display: flex; }
  .topbar__meta { margin-left: auto; }
}

/* =========================================================
   SECTIONS — entêtes éditoriales partagées
   ========================================================= */
main > section:not(.hero):not(.ambient) {
  position: relative; z-index: 1;
  padding-inline: var(--gut);
}
.section-eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-size: clamp(11px, 3vw, 13px); font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-bright); margin-bottom: clamp(12px, 3vw, 18px);
}
.section-eyebrow__idx {
  font-family: "Fraunces", serif; font-style: italic; font-weight: 600;
  color: var(--ember-glow); font-variation-settings: "opsz" 30;
  letter-spacing: 0; text-transform: none;
}
.section-eyebrow__rule {
  width: clamp(24px, 7vw, 44px); height: 1px;
  background: linear-gradient(to right, var(--ember-hot), transparent);
}

/* titres de section : Fraunces oversize, accent italique or */
.menu__title, .formules__title, .infos__title {
  font-family: "Fraunces", serif; font-weight: 360;
  font-size: clamp(34px, 9vw, 72px); line-height: 0.98;
  letter-spacing: -0.02em; color: var(--ink);
  text-wrap: balance;
}
.menu__title em, .formules__title em, .infos__title em {
  font-style: italic; font-weight: 520;
  background: linear-gradient(168deg, var(--gold-bright) 6%, var(--gold) 48%, var(--gold-deep) 96%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* =========================================================
   BANDEAUX AMBIANCE — vidéo immersive courte
   ========================================================= */
.ambient {
  position: relative; z-index: 1; overflow: hidden;
  min-height: clamp(220px, 42vh, 360px);
  display: grid; place-items: center;
  isolation: isolate;
}
.ambient__media { position: absolute; inset: 0; z-index: -1; }
.ambient__video, .ambient__media {
  width: 100%; height: 100%;
}
.ambient__video {
  position: absolute; inset: 0; object-fit: cover; object-position: center 50%;
  /* poster déjà affiché immédiatement via attribut poster */
  background-size: cover; background-position: center;
  filter: saturate(1.08) contrast(1.04) brightness(0.78);
}
/* poster en fond tant que la vidéo n'est pas prête (pas de flash noir) */
.ambient--four .ambient__media { background: oklch(14% 0.02 44); }
.ambient__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, oklch(14% 0.02 44 / 0.82), oklch(15% 0.02 44 / 0.3) 50%, oklch(14% 0.02 44 / 0.55)),
    radial-gradient(120% 100% at 50% 50%, transparent 40%, oklch(13% 0.015 42 / 0.5) 100%);
}
.ambient__content { text-align: center; padding: var(--gut); position: relative; }
.ambient__kicker {
  font-size: clamp(11px, 3vw, 13px); font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ember-glow); margin-bottom: clamp(8px, 2vw, 14px);
  text-shadow: 0 1px 10px oklch(12% 0.02 44 / 0.9);
}
.ambient__line {
  font-family: "Fraunces", serif; font-weight: 360;
  font-size: clamp(28px, 8vw, 60px); line-height: 1.02;
  letter-spacing: -0.02em; color: var(--mozza); text-wrap: balance;
  text-shadow: 0 2px 24px oklch(12% 0.02 44 / 0.8);
}
.ambient__line em {
  font-style: italic; font-weight: 500; color: var(--ember-glow);
}

/* =========================================================
   MENU
   ========================================================= */
.menu { padding-top: clamp(48px, 10vw, 96px); padding-bottom: clamp(20px, 5vw, 48px); }
.menu__head { max-width: var(--maxw); margin: 0 auto; }
.menu__intro {
  margin-top: clamp(14px, 3vw, 22px); max-width: 56ch;
  font-size: clamp(14px, 3.6vw, 16.5px); line-height: 1.55;
  color: var(--ink-soft); text-wrap: pretty;
}
.menu__intro strong { color: var(--mozza); font-weight: 600; white-space: nowrap; }
.menu__intro-link {
  display: inline-block; margin-top: 4px; color: var(--gold-bright);
  font-weight: 600; border-bottom: 1px solid var(--gold-line);
  transition: border-color 0.3s var(--ease-warm);
}
.menu__intro-link:hover { border-color: var(--gold-bright); }

/* --- Barre d'onglets STICKY (vient se coller JUSTE sous la topbar fixed) --- */
.menu-tabs {
  position: sticky; top: var(--top-h); z-index: 25;
  margin: clamp(22px, 5vw, 40px) calc(var(--gut) * -1) clamp(18px, 4vw, 30px);
  padding: 10px var(--gut);
  background:
    var(--clay-grain),
    linear-gradient(180deg, oklch(17% 0.022 42 / 0.92), oklch(16% 0.02 42 / 0.86));
  background-blend-mode: overlay, normal;
  background-size: 90px, cover;
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid var(--gold-line);
}
.menu-tabs__track {
  display: flex; gap: 8px; overflow-x: auto; scroll-behavior: smooth;
  max-width: var(--maxw); margin: 0 auto;
  scrollbar-width: none; -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  scroll-padding-inline: var(--gut);
}
.menu-tabs__track::-webkit-scrollbar { display: none; }
.menu-tab {
  flex: 0 0 auto; cursor: pointer; white-space: nowrap;
  font-family: inherit; font-size: clamp(12.5px, 3.4vw, 14px); font-weight: 600;
  letter-spacing: 0.01em; color: var(--ink-muted);
  padding: 9px 15px; min-height: 40px; border-radius: 999px;
  background: oklch(28% 0.03 42 / 0.4);
  border: 1px solid var(--gold-line);
  -webkit-tap-highlight-color: transparent; touch-action: manipulation;
  transition: color 0.3s var(--ease-warm), background 0.3s var(--ease-warm),
              border-color 0.3s var(--ease-warm), transform 0.2s var(--ease-warm);
}
.menu-tab:hover { color: var(--ink-soft); transform: translateY(-1px); }
.menu-tab.is-active {
  color: oklch(22% 0.05 50);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  border-color: transparent; font-weight: 700;
}

/* --- Corps : groupes de catégories --- */
.menu__body { max-width: var(--maxw); margin: 0 auto; }
.menu-group { scroll-margin-top: 128px; padding-block: clamp(20px, 5vw, 40px); }
.menu-group + .menu-group { border-top: 1px solid var(--glass-line); }
.menu-group__head {
  display: flex; align-items: baseline; flex-wrap: wrap; gap: 8px 14px;
  margin-bottom: clamp(16px, 4vw, 26px);
}
.menu-group__title {
  font-family: "Fraunces", serif; font-weight: 420;
  font-size: clamp(24px, 6.5vw, 40px); line-height: 1;
  letter-spacing: -0.018em; color: var(--ink);
}
.menu-group__count {
  font-size: clamp(11px, 3vw, 13px); font-weight: 600;
  letter-spacing: 0.06em; color: var(--terracotta);
  font-variant-numeric: tabular-nums;
}
.menu-group__hint {
  flex-basis: 100%; font-size: clamp(12px, 3.2vw, 14px);
  color: var(--ink-muted); margin-top: -2px;
}

/* --- Grille de cartes --- */
.menu-grid {
  display: grid; gap: clamp(12px, 3vw, 20px);
  grid-template-columns: 1fr;
}
@media (min-width: 480px) { .menu-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 760px) { .menu-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .menu-grid--pizza { grid-template-columns: repeat(4, 1fr); } }

/* --- CARTE PIZZA : photo + nom Fraunces + ingrédients + chips --- */
.dish {
  position: relative; display: flex; flex-direction: column;
  border-radius: 20px; overflow: hidden; isolation: isolate;
  background:
    var(--clay-grain),
    linear-gradient(165deg, oklch(24% 0.028 42 / 0.7), oklch(19% 0.022 40 / 0.72));
  background-blend-mode: overlay, normal;
  background-size: 90px, cover;
  border: 1px solid var(--glass-line);
  box-shadow: 0 2px 10px oklch(10% 0.015 44 / 0.3);
  transition: transform 0.4s var(--ease-warm), box-shadow 0.4s var(--ease-warm), border-color 0.4s var(--ease-warm);
}
.dish:hover {
  transform: translateY(-4px);
  border-color: var(--gold-line);
  box-shadow: 0 10px 30px oklch(10% 0.02 44 / 0.45), 0 0 0 1px oklch(78% 0.09 78 / 0.12);
}
.dish__media {
  position: relative; aspect-ratio: 1 / 1; overflow: hidden;
  background: oklch(20% 0.025 42);
}
.dish__img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(1.08) contrast(1.03);
  transition: transform 0.6s var(--ease-warm);
}
.dish:hover .dish__img { transform: scale(1.06); }
/* gradient chaud au pied de la photo pour fondre vers le texte */
.dish__media::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to bottom, transparent 58%, oklch(19% 0.022 40 / 0.85));
}
.dish__special {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 5px 10px; border-radius: 999px;
  color: oklch(24% 0.05 50);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  box-shadow: 0 2px 8px oklch(20% 0.04 50 / 0.4);
}
.dish__body {
  display: flex; flex-direction: column; gap: 8px;
  padding: clamp(13px, 3.5vw, 17px);
  flex: 1;
}
.dish__name {
  font-family: "Fraunces", serif; font-weight: 500;
  font-size: clamp(17px, 4.6vw, 20px); line-height: 1.05;
  letter-spacing: -0.01em; color: var(--ink);
}
.dish__ingredients {
  font-size: clamp(12.5px, 3.3vw, 13.5px); line-height: 1.45;
  color: var(--ink-muted); text-wrap: pretty; flex: 1;
}
/* chips de prix par taille */
.price-chips {
  display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px;
  list-style: none;
}
.price-chip {
  display: inline-flex; align-items: baseline; gap: 4px;
  font-size: clamp(11.5px, 3vw, 13px); font-weight: 600;
  padding: 5px 9px; border-radius: 9px;
  background: oklch(30% 0.04 42 / 0.5);
  border: 1px solid var(--gold-line);
  color: var(--ink-soft); font-variant-numeric: tabular-nums;
}
.price-chip__code {
  font-family: "Fraunces", serif; font-weight: 600; font-style: italic;
  font-size: 0.92em; color: var(--gold-bright);
}
.price-chip__val { color: var(--mozza); }

/* bouton "+ ma sélection" sur pizza */
.dish__add {
  margin-top: 10px; cursor: pointer; font-family: inherit;
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  width: 100%; min-height: 44px; padding: 9px 12px;
  font-size: clamp(12.5px, 3.3vw, 13.5px); font-weight: 600;
  color: var(--ink-soft); border-radius: 12px;
  background: oklch(28% 0.035 42 / 0.45);
  border: 1px dashed var(--gold-line);
  -webkit-tap-highlight-color: transparent; touch-action: manipulation;
  transition: color 0.3s var(--ease-warm), border-color 0.3s var(--ease-warm),
              background 0.3s var(--ease-warm), transform 0.2s var(--ease-warm);
}
.dish__add svg { transition: transform 0.4s var(--ease-spring); }
.dish__add:hover { color: var(--ink); border-color: var(--gold-bright); border-style: solid; }
.dish__add:hover svg { transform: rotate(90deg); }
.dish__add:active { transform: scale(0.97); }
.dish__add.is-added {
  color: var(--basil-bright); border-color: oklch(60% 0.12 145 / 0.6); border-style: solid;
  background: oklch(30% 0.05 145 / 0.18);
}

/* --- CARTE NON-PIZZA (menus, salades, sandwichs, tex-mex, desserts, boissons) --- */
.item-card {
  display: flex; flex-direction: column; gap: 8px;
  padding: clamp(14px, 3.6vw, 18px); border-radius: 18px;
  background:
    var(--clay-grain),
    linear-gradient(165deg, oklch(24% 0.028 42 / 0.62), oklch(19% 0.022 40 / 0.66));
  background-blend-mode: overlay, normal;
  background-size: 90px, cover;
  border: 1px solid var(--glass-line);
  transition: transform 0.4s var(--ease-warm), border-color 0.4s var(--ease-warm);
}
.item-card:hover { transform: translateY(-3px); border-color: var(--gold-line); }
.item-card__top {
  display: flex; align-items: baseline; justify-content: space-between; gap: 10px;
}
.item-card__name {
  font-family: "Fraunces", serif; font-weight: 500;
  font-size: clamp(16px, 4.3vw, 19px); line-height: 1.08; color: var(--ink);
}
.item-card__price {
  font-weight: 700; font-size: clamp(14px, 3.8vw, 16px);
  color: var(--gold-bright); white-space: nowrap; font-variant-numeric: tabular-nums;
}
.item-card__desc {
  font-size: clamp(12.5px, 3.3vw, 13.5px); line-height: 1.45; color: var(--ink-muted);
}
.item-card__note {
  font-size: 11.5px; font-weight: 500; letter-spacing: 0.02em;
  color: var(--terracotta); margin-top: 2px;
}
/* variants (tex-mex) */
.variant-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 2px; list-style: none; }
.variant-chip {
  display: inline-flex; align-items: baseline; gap: 5px;
  font-size: clamp(11.5px, 3vw, 13px); font-weight: 600;
  padding: 5px 10px; border-radius: 9px;
  background: oklch(30% 0.04 42 / 0.5); border: 1px solid var(--gold-line);
  color: var(--ink-soft); font-variant-numeric: tabular-nums;
}
.variant-chip__qty { color: var(--gold-bright); font-weight: 700; }
.variant-chip__val { color: var(--mozza); }

/* =========================================================
   TAILLES & FORMULES
   ========================================================= */
.formules { padding-block: clamp(48px, 10vw, 90px); }
.formules__head { max-width: var(--maxw); margin: 0 auto clamp(24px, 5vw, 40px); }
.formules__grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; gap: clamp(12px, 3vw, 18px);
  grid-template-columns: 1fr;
}
@media (min-width: 620px) { .formules__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .formules__grid { grid-template-columns: repeat(4, 1fr); } }

.card-panel {
  display: flex; flex-direction: column; gap: 12px;
  padding: clamp(18px, 4.5vw, 26px); border-radius: 20px;
  background:
    var(--clay-grain),
    linear-gradient(165deg, oklch(24% 0.028 42 / 0.66), oklch(19% 0.022 40 / 0.7));
  background-blend-mode: overlay, normal;
  background-size: 90px, cover;
  border: 1px solid var(--glass-line);
}
.sizes-panel { border-color: var(--gold-line); }
.supp-panel { grid-column: 1 / -1; }
@media (min-width: 620px) and (max-width: 1023px) { .supp-panel { grid-column: 1 / -1; } }
.card-panel__title {
  font-family: "Fraunces", serif; font-weight: 500;
  font-size: clamp(18px, 4.6vw, 22px); color: var(--gold-bright);
  letter-spacing: -0.01em;
}
.card-panel__note {
  font-size: 12px; line-height: 1.45; color: var(--ink-muted); margin-top: auto;
}

.sizes-list { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.sizes-list__row {
  display: grid; grid-template-columns: auto 1fr auto auto;
  align-items: center; gap: 10px;
  padding: 9px 0; border-bottom: 1px solid var(--glass-line);
  font-variant-numeric: tabular-nums;
}
.sizes-list__row:last-child { border-bottom: none; }
.sizes-list__code {
  display: grid; place-items: center; width: 28px; height: 28px;
  border-radius: 8px; font-family: "Fraunces", serif; font-weight: 600;
  font-style: italic; color: oklch(24% 0.05 50);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
}
.sizes-list__name { font-weight: 600; color: var(--ink); font-size: 14.5px; }
.sizes-list__diam { font-size: 13px; color: var(--ink-muted); }
.sizes-list__price { font-weight: 700; color: var(--mozza); font-size: 15px; }

.formule-list { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.formule-list li {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
  padding: 9px 0; border-bottom: 1px solid var(--glass-line);
  font-size: 14px; color: var(--ink-soft);
}
.formule-list li:last-child { border-bottom: none; }
.formule-list__price { font-weight: 700; color: var(--gold-bright); white-space: nowrap; font-variant-numeric: tabular-nums; }

.supp-panel { display: grid; gap: 16px; }
@media (min-width: 620px) { .supp-panel { grid-template-columns: 1fr 1fr; align-items: start; } }
.supp-group { display: flex; flex-direction: column; gap: 6px; }
.supp-group__head {
  font-weight: 700; font-size: 14px; color: var(--ink);
  display: flex; align-items: baseline; gap: 8px;
}
.supp-group__price { color: var(--basil-bright); font-size: 13px; }
.supp-group__items { font-size: 12.5px; line-height: 1.5; color: var(--ink-muted); }

/* =========================================================
   INFOS PRATIQUES
   ========================================================= */
.infos { padding-block: clamp(20px, 5vw, 48px) clamp(48px, 10vw, 90px); }
.infos__head { max-width: var(--maxw); margin: 0 auto clamp(24px, 5vw, 40px); }
.infos__grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; gap: clamp(12px, 3vw, 18px);
  grid-template-columns: 1fr;
}
@media (min-width: 560px) { .infos__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .infos__grid { grid-template-columns: repeat(4, 1fr); } }
.info-card {
  display: flex; flex-direction: column; gap: 10px;
  padding: clamp(18px, 4.5vw, 24px); border-radius: 20px;
  background:
    var(--clay-grain),
    linear-gradient(165deg, oklch(24% 0.028 42 / 0.62), oklch(19% 0.022 40 / 0.66));
  background-blend-mode: overlay, normal;
  background-size: 90px, cover;
  border: 1px solid var(--glass-line);
}
.info-card__title {
  font-family: "Fraunces", serif; font-weight: 500;
  font-size: clamp(16px, 4.4vw, 19px); color: var(--gold-bright);
}
.info-card__body { font-style: normal; font-size: 14.5px; line-height: 1.55; color: var(--ink-soft); }
.info-card__note { font-size: 12.5px; line-height: 1.45; color: var(--ink-muted); margin-top: auto; }
.info-card__link {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 13.5px; font-weight: 600; color: var(--gold-bright);
  border-bottom: 1px solid var(--gold-line); align-self: flex-start;
  transition: border-color 0.3s var(--ease-warm), gap 0.3s var(--ease-warm);
}
.info-card__link:hover { border-color: var(--gold-bright); gap: 8px; }

.hours-list, .phones-list { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.hours-list li {
  display: flex; justify-content: space-between; gap: 12px;
  font-size: 14px; color: var(--ink-soft);
  padding-bottom: 6px; border-bottom: 1px solid var(--glass-line);
}
.hours-list li:last-child { border-bottom: none; }
.hours-list li span:first-child { color: var(--ink-muted); }
.hours-list li span:last-child { font-weight: 600; color: var(--mozza); font-variant-numeric: tabular-nums; }
.phones-list a {
  font-weight: 700; font-size: clamp(16px, 4.4vw, 18px); color: var(--mozza);
  font-variant-numeric: tabular-nums; letter-spacing: 0.01em;
  transition: color 0.3s var(--ease-warm);
}
.phones-list a:hover { color: var(--gold-bright); }

.tags-list { list-style: none; display: flex; flex-wrap: wrap; gap: 7px; }
.tag {
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 6px 11px; border-radius: 999px; color: var(--ink-soft);
  background: oklch(30% 0.04 42 / 0.5); border: 1px solid var(--gold-line);
}
.tag--accent { color: oklch(24% 0.05 50); background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep)); border-color: transparent; }
.tag--fresh { color: var(--basil-bright); border-color: oklch(60% 0.12 145 / 0.55); }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  position: relative; z-index: 1; margin-top: clamp(20px, 5vw, 40px);
  padding: clamp(40px, 8vw, 72px) var(--gut) clamp(28px, 5vw, 40px);
  border-top: 1px solid var(--gold-line);
  background: linear-gradient(180deg, oklch(15% 0.02 44 / 0.5), oklch(13% 0.016 42 / 0.8));
}
.footer__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; gap: clamp(24px, 5vw, 40px);
  grid-template-columns: 1fr;
}
@media (min-width: 760px) {
  .footer__inner { grid-template-columns: 1.2fr 1.6fr auto; align-items: start; }
}
.footer__name {
  font-family: "Fraunces", serif; font-weight: 600;
  font-size: clamp(24px, 6vw, 34px); color: var(--gold-bright);
  letter-spacing: -0.01em; line-height: 1;
}
.footer__sig {
  font-size: clamp(12px, 3.2vw, 14px); font-weight: 500; letter-spacing: 0.04em;
  color: var(--ink-soft); margin-top: 6px;
}
.footer__tagline { font-size: 13px; color: var(--ink-muted); margin-top: 10px; max-width: 28ch; }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 4vw, 28px); }
.footer__col-head {
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--terracotta); margin-bottom: 8px;
}
.footer__col p { font-size: 13.5px; line-height: 1.6; color: var(--ink-soft); }
.footer__col a { transition: color 0.3s var(--ease-warm); font-variant-numeric: tabular-nums; }
.footer__col a:hover { color: var(--gold-bright); }
.footer__cta { flex: 0 0 auto; min-width: 240px; max-width: 320px; }
.footer__legal {
  max-width: var(--maxw); margin: clamp(28px, 5vw, 44px) auto 0;
  padding-top: clamp(18px, 4vw, 26px); border-top: 1px solid var(--glass-line);
  font-size: 11.5px; line-height: 1.6; color: var(--ink-muted); text-wrap: balance;
}

/* =========================================================
   CALLBAR — extension : groupe bouton + sélection
   ========================================================= */
.callbar__group { display: flex; align-items: center; gap: 10px; }
.callbar__sel {
  position: relative; cursor: pointer; font-family: inherit;
  display: grid; place-items: center; width: 48px; height: 48px;
  border-radius: 14px; color: var(--gold-bright);
  background: oklch(28% 0.035 42 / 0.55); border: 1px solid var(--gold-line);
  -webkit-tap-highlight-color: transparent; touch-action: manipulation;
  transition: transform 0.2s var(--ease-warm), border-color 0.3s var(--ease-warm);
}
.callbar__sel:hover { border-color: var(--gold-bright); transform: translateY(-2px); }
.callbar__sel:active { transform: scale(0.95); }
.callbar__sel-count {
  position: absolute; top: -6px; right: -6px;
  min-width: 20px; height: 20px; padding: 0 5px; border-radius: 999px;
  display: grid; place-items: center;
  font-size: 11px; font-weight: 700; color: oklch(24% 0.05 50);
  background: var(--basil-bright); font-variant-numeric: tabular-nums;
  box-shadow: 0 2px 6px oklch(16% 0.02 44 / 0.5);
}

/* =========================================================
   SÉLECTION — drawer récap
   ========================================================= */
.selection[hidden] { display: none; }
.selection {
  position: fixed; inset: 0; z-index: 60;
  display: flex; align-items: flex-end; justify-content: center;
}
@media (min-width: 760px) { .selection { align-items: center; } }
.selection__backdrop {
  position: absolute; inset: 0;
  background: oklch(12% 0.015 42 / 0.6);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  opacity: 0; transition: opacity 0.4s var(--ease-warm);
}
.selection.is-open .selection__backdrop { opacity: 1; }
.selection__panel {
  position: relative; width: 100%; max-width: 520px;
  max-height: 82svh; display: flex; flex-direction: column;
  padding: clamp(18px, 4vw, 26px);
  padding-bottom: calc(clamp(18px, 4vw, 26px) + env(safe-area-inset-bottom));
  border-radius: 26px 26px 0 0;
  background:
    var(--clay-grain),
    linear-gradient(180deg, oklch(22% 0.026 42 / 0.96), oklch(17% 0.02 40 / 0.98));
  background-blend-mode: overlay, normal;
  background-size: 90px, cover;
  border: 1px solid var(--gold-line); border-bottom: none;
  box-shadow: 0 -20px 60px oklch(8% 0.01 44 / 0.6);
  transform: translateY(100%); transition: transform 0.5s var(--ease-warm);
}
@media (min-width: 760px) {
  .selection__panel { border-radius: 26px; border-bottom: 1px solid var(--gold-line); transform: translateY(40px) scale(0.96); opacity: 0; transition: transform 0.5s var(--ease-warm), opacity 0.4s var(--ease-warm); }
  .selection.is-open .selection__panel { opacity: 1; }
}
.selection.is-open .selection__panel { transform: translateY(0) scale(1); }
.selection__bar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}
.selection__title {
  font-family: "Fraunces", serif; font-weight: 500;
  font-size: clamp(20px, 5.4vw, 26px); color: var(--gold-bright);
}
.selection__close {
  cursor: pointer; display: grid; place-items: center;
  width: 40px; height: 40px; border-radius: 50%; color: var(--ink-soft);
  background: oklch(28% 0.035 42 / 0.5); border: 1px solid var(--gold-line);
  transition: color 0.3s var(--ease-warm), transform 0.3s var(--ease-spring);
}
.selection__close:hover { color: var(--ink); transform: rotate(90deg); }
.selection__list {
  list-style: none; overflow-y: auto; flex: 1;
  display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px;
  -webkit-overflow-scrolling: touch;
}
.sel-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px; border-radius: 14px;
  background: oklch(26% 0.03 42 / 0.5); border: 1px solid var(--glass-line);
}
.sel-item__thumb { width: 44px; height: 44px; border-radius: 10px; object-fit: cover; flex: 0 0 auto; }
.sel-item__name { flex: 1; font-family: "Fraunces", serif; font-weight: 500; font-size: 15px; color: var(--ink); }
.sel-item__remove {
  cursor: pointer; width: 32px; height: 32px; border-radius: 8px;
  display: grid; place-items: center; color: var(--ink-muted);
  background: transparent; border: 1px solid var(--glass-line);
  transition: color 0.3s var(--ease-warm), border-color 0.3s var(--ease-warm);
}
.sel-item__remove:hover { color: var(--sanmarzano-hot); border-color: var(--sanmarzano-hot); }
.selection__empty { color: var(--ink-muted); font-size: 14px; padding: 24px 4px; text-align: center; }
.selection__actions { display: grid; gap: 10px; }
@media (min-width: 440px) { .selection__actions { grid-template-columns: 1.4fr 1fr; } }
.selection__call { min-width: 0; }
.selection__chef { justify-content: center; min-height: 64px; }

/* =========================================================
   REVEAL au scroll pour les sections (IntersectionObserver -> .is-in)
   ========================================================= */
[data-section-reveal] {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.8s var(--ease-warm), transform 0.8s var(--ease-warm);
}
[data-section-reveal].is-in { opacity: 1; transform: none; }
[data-section-reveal].d1 { transition-delay: 0.06s; }
[data-section-reveal].d2 { transition-delay: 0.12s; }
[data-section-reveal].d3 { transition-delay: 0.18s; }

/* =========================================================
   RESPONSIVE — non-régression menu/formules sur petits écrans
   ========================================================= */
@media (max-width: 360px) {
  .menu-tab { padding: 8px 12px; font-size: 12px; }
  .dish__add { min-height: 42px; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 320px) {
  .price-chip { padding: 4px 7px; font-size: 11px; }
  .menu-grid { gap: 12px; }
}

/* =========================================================
   REDUCED MOTION — on garde le press feedback, on coupe le gratuit
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  [data-reveal], .hero__title .word, [data-section-reveal] { opacity: 1; transform: none; }
  .title-rule { transform: scaleX(1); }
  .ember, .grain, .steam__plume { animation: none; }
  .steam { display: none; }
  .ripple { display: none; }
  .btn--call:hover { animation: none; }
  /* press feedback conservé */
  .btn--call:active { transform: scale(0.97); }
  .callbar__btn:active { transform: scale(0.96); }
  /* ambiance : poster figé, pas de zoom de carte */
  .dish:hover .dish__img { transform: none; }
}

/* ===== AJOUTS : photos plats · sticker Halal · hero mobile allégé ===== */

/* Cartes non-pizza avec photo (salades, boissons, tex-mex, desserts, menus) */
.item-card--img { overflow: hidden; }
.item-card__media {
  aspect-ratio: 16 / 11;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
  background: var(--char-800);
}
.item-card__img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .6s var(--ease-warm);
}
.item-card--img:hover .item-card__img { transform: scale(1.05); }

/* Sticker Halal — fixe, toujours visible au scroll */
.halal-sticker {
  position: fixed;
  right: max(14px, env(safe-area-inset-right));
  bottom: calc(var(--bar-h) + env(safe-area-inset-bottom) + 16px);
  z-index: 70;
  width: 64px; height: 64px;
  display: grid; place-items: center; text-align: center;
  border-radius: 50%;
  color: var(--gold-bright);
  background: radial-gradient(circle at 32% 28%, oklch(30% 0.03 50 / .92), oklch(17% 0.02 44 / .96));
  box-shadow:
    0 8px 24px oklch(12% 0.02 40 / .55),
    inset 0 0 0 1px var(--gold-line),
    inset 0 0 16px oklch(70% 0.11 72 / .22);
  backdrop-filter: blur(7px) saturate(1.3);
  -webkit-backdrop-filter: blur(7px) saturate(1.3);
  animation: halalIn .6s var(--ease-spring) both;
}
.halal-sticker::before {
  content: ""; position: absolute; inset: -1.5px; border-radius: 50%;
  padding: 1.5px;
  background: linear-gradient(150deg, var(--gold-bright), var(--gold-deep) 55%, var(--gold));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}
.halal-sticker__txt {
  font-family: "Fraunces", serif;
  font-size: 10px; line-height: 1.04; letter-spacing: .04em; font-weight: 500;
}
.halal-sticker__txt strong {
  display: block; font-size: 14px; font-weight: 640;
  font-style: italic; letter-spacing: .03em;
}
@keyframes halalIn { from { opacity: 0; transform: scale(.4) translateY(14px); } to { opacity: 1; transform: none; } }

/* Hero mobile allégé : pas de gros boutons (la callbar porte le CTA), textes adaptés */
@media (max-width: 768px) {
  .hero__actions { display: none; }
  .hero__title { font-size: clamp(33px, 10.5vw, 60px); }
  .hero__tagline { font-size: clamp(13px, 3.5vw, 16px); line-height: 1.42; max-width: 34ch; }
  .hero__content { gap: clamp(10px, 2.6vw, 16px); }
}
@media (prefers-reduced-motion: reduce) {
  .halal-sticker { animation: none; }
  .item-card--img:hover .item-card__img { transform: none; }
}

/* Footer — bande paiements & livraison (logos sur puces blanches) */
.footer__pay {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 20px 44px;
  margin: 30px auto 0;
  padding-top: 26px;
  max-width: 760px;
  border-top: 1px solid var(--gold-line, rgba(240, 208, 144, .14));
}
.footer__pay-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
}
.footer__pay-label {
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold, #d8b878);
  opacity: .9;
}
.paychips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.paychip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 10px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, .28);
}
.paychip img {
  height: 22px;
  width: auto;
  display: block;
}
@media (max-width: 480px) {
  .footer__pay { gap: 18px 28px; }
  .paychip { height: 32px; padding: 0 8px; }
  .paychip img { height: 19px; }
}

/* ===== Avis Google + Accès ===== */
.reviews {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(48px, 9vw, 96px) var(--gut, 20px);
}
.reviews__head { text-align: center; margin-bottom: clamp(28px, 5vw, 46px); }
.reviews__head .section-eyebrow { justify-content: center; }
.reviews__title {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: clamp(30px, 6vw, 56px);
  line-height: 1.05;
  margin: 10px 0 18px;
  color: var(--ink, #f4ece0);
}
.reviews__title em { font-style: italic; color: var(--gold-bright, #e9c878); }
.reviews__rating {
  display: inline-flex; align-items: baseline; gap: 8px;
  text-decoration: none;
  padding: 9px 17px; border-radius: 999px;
  border: 1px solid var(--gold-line, rgba(233, 200, 120, .22));
  background: rgba(255, 255, 255, .03);
  transition: border-color .3s var(--ease-warm, ease), background .3s;
}
.reviews__rating:hover { border-color: var(--gold, #d8b878); background: rgba(255, 255, 255, .06); }
.reviews__star { color: var(--gold-bright, #e9c878); font-size: 18px; }
.reviews__score { font-family: "Fraunces", serif; font-weight: 600; font-size: 20px; color: var(--ink, #f4ece0); }
.reviews__count { color: rgba(244, 236, 224, .62); font-size: 14px; }
.reviews__arrow { color: var(--gold, #d8b878); transition: transform .3s var(--ease-warm, ease); }
.reviews__rating:hover .reviews__arrow { transform: translateX(3px); }

.reviews__grid {
  list-style: none; margin: 0 0 clamp(34px, 6vw, 60px); padding: 0;
  display: grid; gap: 16px;
  grid-template-columns: repeat(4, 1fr);
}
.review {
  display: flex; flex-direction: column; gap: 12px;
  padding: 22px 20px; border-radius: 16px;
  background: linear-gradient(170deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .015));
  border: 1px solid var(--gold-line, rgba(233, 200, 120, .14));
}
.review__stars { margin: 0; color: var(--gold-bright, #e9c878); font-size: 15px; letter-spacing: 2px; }
.review__star--off { color: rgba(233, 200, 120, .26); }
.review__text { margin: 0; flex: 1; color: var(--ink, #f4ece0); line-height: 1.5; font-size: 15px; }
.review__author { margin: 0; font-size: 13px; font-weight: 600; color: rgba(244, 236, 224, .72); }

.access { display: grid; grid-template-columns: 1.6fr 1fr; gap: 20px; align-items: stretch; }
.access__map {
  border-radius: 18px; overflow: hidden; min-height: 290px;
  border: 1px solid var(--gold-line, rgba(233, 200, 120, .16));
  background: #0d0b0a;
}
.access__map iframe { width: 100%; height: 100%; min-height: 290px; border: 0; display: block; }
.access__info {
  display: flex; flex-direction: column; justify-content: center; gap: 10px;
  padding: 28px; border-radius: 18px;
  background: linear-gradient(160deg, rgba(207, 106, 31, .15), rgba(255, 255, 255, .02));
  border: 1px solid var(--gold-line, rgba(233, 200, 120, .16));
}
.access__label { margin: 0; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; font-weight: 600; color: var(--gold, #d8b878); }
.access__addr { margin: 2px 0 0; font-family: "Fraunces", serif; font-size: 22px; line-height: 1.2; color: var(--ink, #f4ece0); }
.access__hours { margin: 0; font-size: 14px; color: rgba(244, 236, 224, .66); }
.access__btn {
  margin-top: 8px; align-self: flex-start;
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 20px; border-radius: 999px;
  background: var(--ember, #cf6a1f); color: #fff; text-decoration: none;
  font-weight: 600; font-size: 15px;
  box-shadow: 0 6px 20px rgba(207, 106, 31, .3);
  transition: transform .25s var(--ease-warm, ease), box-shadow .25s;
}
.access__btn:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(207, 106, 31, .42); }

@media (max-width: 900px) {
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .access { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .reviews__grid { grid-template-columns: 1fr; }
}
