/* =========================================================
   TIZI LUNCH — Hero
   Aesthetic : street-food poster · flame-grilled · nocturne
   ========================================================= */

:root {
  /* warm blacks */
  --ink:        #0b0807;
  --ink-2:      #120d0b;
  --coal:       #1b1310;
  /* fire */
  --red:        #e51f1f;
  --red-deep:   #a50e0e;
  --ember:      #ff6a1a;
  --flame:      #ffae2b;
  /* light */
  --cream:      #fbf3e9;
  --smoke:      #c9bdb3;
  --smoke-dim:  #877c74;

  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-body: "Hanken Grotesk", system-ui, sans-serif;
  --font-brand: "Lalezar", "Hanken Grotesk", sans-serif;

  --maxw: 1280px;
  --ease: cubic-bezier(.22,1,.36,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

::selection { background: var(--red); color: var(--cream); }

/* =========================================================
   TOPBAR — ticker + nav posés PAR-DESSUS le hero
   (le hero remonte derrière => le verre dépoli révèle la braise,
    plus jamais de bande noire)
   ========================================================= */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
}

/* =========================================================
   TICKER
   ========================================================= */
.ticker {
  position: relative;
  z-index: 40;
  background:
    linear-gradient(180deg, rgba(255,255,255,.12), rgba(0,0,0,.12)),
    linear-gradient(90deg, var(--red-deep), var(--red) 45%, #d12626 70%, var(--red-deep));
  color: var(--cream);
  overflow: hidden;
  /* warm glow that bleeds into the black hero -> pas de coupure nette */
  box-shadow: 0 14px 34px -14px rgba(229,31,31,.55), inset 0 -1px 0 rgba(0,0,0,.3);
}
.ticker__track {
  display: inline-flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  padding: 8px 0;
  animation: ticker 40s linear infinite;
}
/* deux blocs identiques -> -50% sans couture, chacun assez large pour combler l'écran */
.ticker__set { display: inline-flex; align-items: center; flex: 0 0 auto; }
.ticker__track span {
  font-family: var(--font-display);
  font-size: clamp(.78rem, 1.5vw, .95rem);
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 0 1.1rem;
}
.ticker__track i {
  color: rgba(255,255,255,.55);
  font-style: normal;
  font-size: .7rem;
}
@keyframes ticker { to { transform: translateX(-50%); } }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: relative;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px clamp(18px, 4vw, 44px);
  transition: padding .4s var(--ease);
}
/* full-bleed backdrop that fades in on scroll — bord bas dégradé, jamais net */
.nav::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(255,250,245,.08) 0%, rgba(255,250,245,.025) 70%, rgba(255,250,245,0) 100%);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  /* le flou s'estompe avec le fond -> transition douce vers le hero */
  -webkit-mask-image: linear-gradient(180deg, #000 60%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 60%, transparent 100%);
  opacity: 0;
  transition: opacity .45s var(--ease);
  pointer-events: none;
}
/* fine ligne braise sous le nav, douce */
.nav::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 0;
  width: 100vw; height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(255,106,26,.4), transparent);
  opacity: 0;
  transition: opacity .45s var(--ease);
  pointer-events: none;
}
.nav.is-stuck::before,
.nav.is-stuck::after { opacity: 1; }
.nav.is-stuck { padding-top: 9px; padding-bottom: 9px; }

.nav__brand {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
}
.nav__brand img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,.6));
  transition: height .4s var(--ease);
}
.nav.is-stuck .nav__brand img { height: 44px; }
.nav__brand-name {
  display: flex;
  flex-direction: column;
  line-height: .92;
  font-family: var(--font-brand);
  font-size: 1.72rem;
  letter-spacing: .01em;
  color: var(--cream);
  text-shadow: 0 2px 16px rgba(0,0,0,.55);
}
.nav__brand-name em {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 700;
  font-size: .56rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--flame);
  margin-top: 5px;
}

.nav__links {
  position: relative;
  z-index: 1;
  display: flex;
  gap: clamp(1rem, 2.4vw, 2.4rem);
}
.nav__links a {
  color: var(--smoke);
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  position: relative;
  padding: 4px 0;
  transition: color .25s;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 2px;
  background: var(--ember);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav__links a:hover { color: var(--cream); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__cta {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  color: var(--cream);
  text-decoration: none;
  padding: 7px 18px 7px 8px;
  border: 1px solid rgba(255,106,26,.32);
  border-radius: 999px;
  background: rgba(229,31,31,.06);
  transition: border-color .3s, background .3s, transform .3s, box-shadow .3s;
}
.nav__cta:hover {
  border-color: rgba(255,106,26,.7);
  background: rgba(229,31,31,.16);
  transform: translateY(-1px);
  box-shadow: 0 10px 26px -12px rgba(229,31,31,.7);
}
.nav__cta-ring {
  display: grid; place-items: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  color: var(--cream);
  background: linear-gradient(180deg, var(--ember), var(--red));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.3);
}
.nav__cta-ring svg { animation: ring 2.6s var(--ease) infinite; transform-origin: 50% 10%; }
.nav__cta-txt {
  display: flex; flex-direction: column; line-height: 1.05;
  font-family: var(--font-display);
  letter-spacing: .03em;
  font-size: 1rem;
}
.nav__cta-txt em {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 700;
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--flame);
}
@keyframes ring {
  0%, 88%, 100% { transform: rotate(0); }
  90%, 94%      { transform: rotate(12deg); }
  92%, 96%      { transform: rotate(-12deg); }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    /* lueur braise chaude sur toute la largeur du haut -> header jamais "noir" */
    radial-gradient(150% 80% at 50% -18%, rgba(255,118,38,.34), rgba(229,31,31,.12) 38%, transparent 60%),
    radial-gradient(120% 90% at 85% 22%, rgba(255,106,26,.18), transparent 46%),
    radial-gradient(80% 80% at 12% 92%, rgba(165,14,14,.34), transparent 55%),
    linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 60%, #08201a08 100%),
    var(--ink);
}

/* photo plein cadre */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% 60%;
  filter: saturate(1.05) contrast(1.04);
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}

/* voile dégradé : lisibilité du texte + unification feu (mute le bois turquoise) */
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(110% 90% at 0% 100%, rgba(229,31,31,.34), transparent 52%),
    radial-gradient(70% 60% at 100% 0%, rgba(255,106,26,.16), transparent 60%),
    linear-gradient(180deg, rgba(8,6,5,.55) 0%, rgba(8,6,5,0) 22%, rgba(8,6,5,0) 55%, rgba(8,6,5,.78) 100%),
    linear-gradient(95deg, rgba(8,6,5,.94) 0%, rgba(8,6,5,.82) 30%, rgba(8,6,5,.42) 56%, rgba(8,6,5,.12) 78%, rgba(8,6,5,.32) 100%);
}

/* film grain */
.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: .55;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* bottom flame glow */
.hero__glow {
  position: absolute;
  left: 50%;
  bottom: -38%;
  width: 120%;
  height: 70%;
  transform: translateX(-50%);
  z-index: 1;
  background: radial-gradient(closest-side, rgba(255,106,26,.4), rgba(229,31,31,.18) 45%, transparent 72%);
  filter: blur(36px);
  animation: flicker 5s ease-in-out infinite;
  pointer-events: none;
}

/* floating embers */
.hero__embers { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero__embers span {
  position: absolute;
  bottom: -10px;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--flame);
  box-shadow: 0 0 8px 1px rgba(255,174,43,.8);
  opacity: 0;
  animation: rise linear infinite;
}
.hero__embers span:nth-child(1){ left: 8%;  animation-duration: 9s;  animation-delay: 0s;   }
.hero__embers span:nth-child(2){ left: 18%; animation-duration: 11s; animation-delay: 2s; width:3px;height:3px; }
.hero__embers span:nth-child(3){ left: 30%; animation-duration: 8s;  animation-delay: 4s;   }
.hero__embers span:nth-child(4){ left: 42%; animation-duration: 12s; animation-delay: 1s; width:5px;height:5px; }
.hero__embers span:nth-child(5){ left: 55%; animation-duration: 10s; animation-delay: 3.5s; }
.hero__embers span:nth-child(6){ left: 64%; animation-duration: 9.5s;animation-delay: 5s; width:3px;height:3px; }
.hero__embers span:nth-child(7){ left: 73%; animation-duration: 13s; animation-delay: 2.5s; }
.hero__embers span:nth-child(8){ left: 82%; animation-duration: 8.5s;animation-delay: 6s; width:5px;height:5px; }
.hero__embers span:nth-child(9){ left: 90%; animation-duration: 11.5s;animation-delay: 4.5s; }
.hero__embers span:nth-child(10){left: 96%; animation-duration: 10s; animation-delay: 1.5s; width:3px;height:3px; }

@keyframes rise {
  0%   { opacity: 0; transform: translateY(0) translateX(0) scale(1); }
  10%  { opacity: 1; }
  80%  { opacity: .9; }
  100% { opacity: 0; transform: translateY(-92vh) translateX(28px) scale(.3); }
}
@keyframes flicker {
  0%,100% { opacity: .85; transform: translateX(-50%) scale(1); }
  50%     { opacity: 1;   transform: translateX(-50%) scale(1.06); }
}

.hero__wrap {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  /* padding-top réserve la place de la topbar fixe */
  padding: clamp(100px, 13vh, 144px) clamp(18px, 4vw, 44px) clamp(64px, 11vh, 120px);
}
.hero__copy { max-width: 660px; }

/* ---- copy ---- */
.eyebrow {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-weight: 700;
  font-size: clamp(.72rem, 1.4vw, .82rem);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--flame);
  margin-bottom: 1.4rem;
}
.eyebrow__line {
  width: 42px; height: 2px;
  background: linear-gradient(90deg, var(--red), var(--ember));
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: .92;
  letter-spacing: .005em;
  text-transform: uppercase;
  font-size: clamp(3.1rem, 9vw, 7rem);
  color: var(--cream);
  text-shadow: 0 4px 30px rgba(0,0,0,.6), 0 2px 6px rgba(0,0,0,.5);
}
.hero__title span { display: block; }
.hero__flame {
  background: linear-gradient(180deg, #ffd884 0%, var(--flame) 32%, var(--ember) 66%, var(--red) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  /* l'ombre sombre héritée bavait sur le texte transparent -> on neutralise */
  text-shadow: none;
  filter: drop-shadow(0 3px 16px rgba(255,106,26,.45));
}

.hero__lead {
  margin-top: 1.5rem;
  max-width: 30rem;
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.65;
  font-weight: 500;
  color: #efe6db;
  text-shadow: 0 1px 14px rgba(0,0,0,.8), 0 1px 3px rgba(0,0,0,.6);
}
.hero__lead strong {
  color: var(--flame);
  font-weight: 700;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 2.2rem;
}
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-family: var(--font-display);
  letter-spacing: .045em;
  font-size: 1.05rem;
  text-decoration: none;
  border-radius: 999px;
  isolation: isolate;
}

/* --- Primaire : braise vivante + flèche en pastille + reflet --- */
.btn--fire {
  color: var(--cream);
  padding: 8px 8px 8px 26px;
  overflow: hidden;
  background: linear-gradient(110deg, var(--red-deep) 0%, var(--red) 42%, var(--ember) 100%);
  background-size: 200% 100%;
  background-position: 0% 50%;
  box-shadow: 0 12px 32px -10px rgba(229,31,31,.7),
              inset 0 1px 0 rgba(255,255,255,.3),
              inset 0 0 0 1px rgba(255,160,80,.22);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background-position .6s var(--ease);
}
.btn--fire:hover {
  transform: translateY(-3px);
  background-position: 100% 50%;
  box-shadow: 0 18px 46px -10px rgba(255,106,26,.85),
              inset 0 1px 0 rgba(255,255,255,.35);
}
.btn__label { position: relative; z-index: 2; }
.btn__arrow {
  position: relative; z-index: 2;
  display: grid; place-items: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--red);
  transition: transform .45s var(--ease);
}
.btn--fire:hover .btn__arrow { transform: rotate(-45deg) scale(1.06); }
.btn__shine {
  position: absolute; z-index: 1;
  top: 0; left: -65%;
  width: 45%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.5), transparent);
  transform: skewX(-18deg);
  transition: left .75s var(--ease);
}
.btn--fire:hover .btn__shine { left: 135%; }

/* --- Secondaire : appel avec halo qui sonne --- */
.btn--call {
  color: var(--cream);
  padding: 12px 26px 12px 14px;
  border: 1.5px solid rgba(251,243,233,.22);
  background: rgba(251,243,233,.03);
  backdrop-filter: blur(4px);
  transition: transform .35s var(--ease), border-color .35s, background .35s;
}
.btn--call:hover { transform: translateY(-3px); border-color: rgba(255,174,43,.8); background: rgba(255,174,43,.1); }
.btn__ping {
  position: relative;
  display: grid; place-items: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  color: var(--flame);
  border: 1.5px solid rgba(255,174,43,.45);
}
.btn__ping::after {
  content: "";
  position: absolute; inset: -1.5px;
  border-radius: 50%;
  border: 1.5px solid var(--flame);
  animation: ping 2.6s var(--ease) infinite;
}
@keyframes ping {
  0%        { transform: scale(1);   opacity: .7; }
  70%, 100% { transform: scale(1.55); opacity: 0; }
}

.hero__trust {
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.3rem;
  margin-top: 2.6rem;
}
.hero__trust li:not(.sep) { display: flex; flex-direction: column; gap: 2px; }
.hero__trust strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--cream);
  letter-spacing: .02em;
}
.hero__trust span { font-size: .82rem; color: var(--smoke-dim); }
.hero__trust .sep { width: 1px; height: 34px; background: rgba(251,243,233,.14); }

/* rotating stamp */
.stamp {
  position: absolute;
  z-index: 4;
  right: clamp(20px, 4vw, 56px);
  bottom: clamp(64px, 10vh, 104px);
  width: 132px; height: 132px;
  display: grid;
  place-items: center;
}
/* disque de fond -> lisible sur n'importe quelle photo */
.stamp::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 38%, rgba(28,19,16,.86), rgba(8,6,5,.92));
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,174,43,.32);
  box-shadow: 0 16px 36px -12px rgba(0,0,0,.85), inset 0 0 0 5px rgba(251,243,233,.04);
}
.stamp__ring {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  animation: spin 22s linear infinite;
}
.stamp__ring text {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 13.5px;
  letter-spacing: .04em;
  fill: var(--cream);
}
.stamp__core {
  position: relative;
  z-index: 1;
  width: 52px; height: 52px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(180deg, var(--flame), var(--ember) 45%, var(--red));
  box-shadow: 0 6px 18px -4px rgba(229,31,31,.75), inset 0 1px 0 rgba(255,255,255,.4);
}
.stamp__core svg { width: 24px; height: 24px; fill: var(--cream); }
@keyframes spin { to { transform: rotate(360deg); } }

/* live open badge */
.open-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1.7rem;
  padding: 7px 15px 7px 12px;
  background: rgba(11,8,7,.62);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(251,243,233,.2);
  border-radius: 999px;
  font-weight: 700;
  font-size: .82rem;
  white-space: nowrap;
}
.open-badge__pulse {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--smoke-dim);
}
.open-badge.is-open .open-badge__pulse {
  background: #46d36b;
  box-shadow: 0 0 0 0 rgba(70,211,107,.6);
  animation: pulse 2.2s infinite;
}
.open-badge.is-closed .open-badge__pulse { background: var(--red); }
.open-badge.is-open .open-badge__text { color: #6ff09a; }
.open-badge.is-closed .open-badge__text { color: #ff7b6b; }

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(70,211,107,.55); }
  70%  { box-shadow: 0 0 0 9px rgba(70,211,107,0); }
  100% { box-shadow: 0 0 0 0 rgba(70,211,107,0); }
}

/* scroll hint */
.scroll-hint {
  position: absolute;
  z-index: 3;
  left: clamp(18px, 4vw, 44px);
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: .7rem;
  color: var(--smoke-dim);
  text-decoration: none;
  font-size: .76rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.scroll-hint__mouse {
  position: relative;
  width: 22px; height: 34px;
  border: 1.5px solid var(--smoke-dim);
  border-radius: 14px;
}
.scroll-hint__mouse::after {
  content: "";
  position: absolute;
  left: 50%; top: 7px;
  width: 3px; height: 7px;
  border-radius: 2px;
  background: var(--flame);
  transform: translateX(-50%);
  animation: scrolldot 1.8s ease-in-out infinite;
}
@keyframes scrolldot {
  0%   { opacity: 0; transform: translate(-50%, 0); }
  40%  { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 11px); }
}

/* =========================================================
   REVEAL ON LOAD
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  animation: revealIn .9s var(--ease) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes revealIn {
  to { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 920px) {
  .hero__title { font-size: clamp(2.9rem, 13vw, 5.2rem); }
  .nav__links { display: none; }
  .scroll-hint { display: none; }
  .hero__bg { object-position: 64% 56%; }
  .stamp { width: 98px; height: 98px; right: 16px; bottom: 26px; }
}

@media (max-width: 560px) {
  .nav__cta { gap: .45rem; padding: 6px 12px 6px 6px; }
  .nav__cta-txt { font-size: .9rem; }
  .nav__brand img { height: 42px; }
  .nav__brand-name { font-size: 1.42rem; }
  .nav__brand-name em { display: none; }
  .hero__actions { width: 100%; }
  .btn { flex: 1; justify-content: center; }
  .hero__trust { gap: 1rem; }
  .hero__trust strong { font-size: 1.25rem; }
  .stamp { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* =========================================================
   SECTIONS COMMUNES
   ========================================================= */
.section {
  position: relative;
  padding: clamp(74px, 11vh, 132px) 0;
}
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 44px);
}
.section__head {
  max-width: 760px;
  margin: 0 auto clamp(44px, 6vh, 70px);
}
.section__title {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: .98;
  letter-spacing: .01em;
  font-size: clamp(2.2rem, 5.4vw, 3.9rem);
  color: var(--cream);
}
.section__title.center,
.section__sub.center { text-align: center; }
.eyebrow.center { justify-content: center; }
.section__sub {
  margin-top: 1.1rem;
  font-size: clamp(1rem, 1.4vw, 1.14rem);
  line-height: 1.6;
  color: var(--smoke);
  text-align: center;
}
.text-flame {
  background: linear-gradient(180deg, #ffd884 0%, var(--flame) 32%, var(--ember) 66%, var(--red) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.lead-dark {
  font-size: clamp(1.02rem, 1.4vw, 1.16rem);
  line-height: 1.7;
  color: var(--smoke);
}

/* reveal au scroll */
.fx {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: var(--d, 0s);
}
.fx.in { opacity: 1; transform: none; }

/* =========================================================
   LA MAISON
   ========================================================= */
.maison {
  background:
    radial-gradient(80% 60% at 100% 0%, rgba(255,106,26,.1), transparent 55%),
    var(--ink-2);
  border-top: 1px solid rgba(255,106,26,.1);
}
.maison__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: center;
  gap: clamp(40px, 6vw, 84px);
}
.maison__media { position: relative; padding: 10px 26px 36px 10px; }

.frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,106,26,.2);
  box-shadow: 0 36px 70px -30px rgba(0,0,0,.85), 0 0 70px -30px rgba(229,31,31,.5);
}
.frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.frame--tilt { transform: rotate(-2.4deg); }
.frame--tilt img { aspect-ratio: 4/3; }
.frame--small {
  position: absolute;
  right: 0; bottom: 0;
  width: 52%;
  transform: rotate(3deg);
  border-color: rgba(255,174,43,.3);
  box-shadow: 0 24px 50px -22px rgba(0,0,0,.9);
}
.frame--small img { aspect-ratio: 1/1; }

.badge-est {
  position: absolute;
  top: -14px; left: -14px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 104px; height: 104px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 34%, #ff8137, var(--red) 78%);
  box-shadow:
    0 18px 34px -12px rgba(229,31,31,.85),
    inset 0 2px 0 rgba(255,255,255,.4),
    inset 0 0 0 1px rgba(0,0,0,.18);
  rotate: -8deg;
}
.badge-est::before {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 50%;
  border: 1.5px dashed rgba(255,247,237,.6);
}
.badge-est__in {
  display: grid;
  place-items: center;
  text-align: center;
  line-height: 1;
  color: var(--cream);
}
.badge-est em {
  font-style: normal;
  font-size: .54rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
}
.badge-est em:last-child { font-size: .46rem; letter-spacing: .1em; opacity: .85; margin-top: 4px; }
.badge-est strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: .03em;
  margin: 4px 0 2px;
  text-shadow: 0 2px 5px rgba(0,0,0,.3);
}

.feature-list { list-style: none; margin: 1.8rem 0 2.2rem; display: grid; gap: .85rem; }
.feature-list li {
  display: flex;
  align-items: center;
  gap: .8rem;
  color: #e9ded3;
  font-size: 1.02rem;
}
.feature-list svg {
  flex: 0 0 auto;
  width: 22px; height: 22px;
  padding: 3px;
  border-radius: 50%;
  color: var(--ink);
  background: linear-gradient(180deg, var(--flame), var(--ember));
}

/* =========================================================
   LA CARTE
   ========================================================= */
.menu {
  background:
    radial-gradient(70% 50% at 0% 0%, rgba(165,14,14,.16), transparent 55%),
    var(--ink);
  border-top: 1px solid rgba(255,106,26,.1);
}

/* vitrine interactive : liste (gauche) + grande photo qui change (droite) */
.showcase {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(28px, 4vw, 72px);
  align-items: start;
}

/* liste des catégories */
.showcase__list { display: flex; flex-direction: column; }
.scat {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: clamp(17px, 2.3vw, 27px) 4px;
  background: none;
  border: 0;
  border-top: 1px solid rgba(255,247,237,.1);
  color: var(--smoke);
  text-align: left;
  cursor: pointer;
}
.showcase__list .scat:last-child { border-bottom: 1px solid rgba(255,247,237,.1); }
.scat__num {
  font-family: var(--font-display);
  font-size: .9rem;
  letter-spacing: .2em;
  color: var(--smoke-dim);
  transition: color .35s;
}
.scat__name {
  flex: 1;
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .01em;
  line-height: 1;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--smoke);
  transition: color .35s var(--ease), transform .35s var(--ease);
}
.scat__cue {
  display: grid; place-items: center;
  flex: 0 0 auto;
  width: 38px; height: 38px;
  border-radius: 50%;
  color: var(--cream);
  background: linear-gradient(180deg, var(--ember), var(--red));
  opacity: 0;
  transform: translateX(-8px) scale(.8);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.scat__cue svg { width: 16px; height: 16px; }
.scat:hover .scat__name { color: var(--cream); }
.scat.is-active .scat__num { color: var(--ember); }
.scat.is-active .scat__name {
  background: linear-gradient(180deg, #ffd884, var(--ember) 60%, var(--red));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  transform: translateX(6px);
}
.scat.is-active .scat__cue { opacity: 1; transform: none; }

/* vitrine photo (collante) */
.showcase__stage { position: sticky; top: 96px; }
.stage-panel { display: none; }
.stage-panel.is-active { display: block; animation: fadeUp .5s var(--ease) both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

.stage-panel__photo {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(255,106,26,.22);
  box-shadow: 0 40px 80px -36px rgba(0,0,0,.85), 0 0 90px -34px rgba(229,31,31,.5);
  margin-bottom: clamp(18px, 2.4vw, 28px);
}
.stage-panel__photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.06) contrast(1.04); }
.stage-panel__cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: clamp(44px, 9%, 80px) clamp(18px, 4%, 32px) clamp(16px, 3%, 26px);
  background: linear-gradient(0deg, rgba(8,6,5,.92) 6%, rgba(8,6,5,0));
}
.stage-panel__num { font-family: var(--font-display); color: var(--flame); font-size: .82rem; letter-spacing: .3em; }
.stage-panel__cap h3 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: .98;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  color: var(--cream);
  margin: 4px 0 2px;
}
.stage-panel__cap p { color: var(--smoke); font-size: .96rem; }
.stage-items { padding: 0 4px; }
.menu-list { list-style: none; display: grid; gap: .72rem; }
.menu-list li { display: flex; align-items: baseline; gap: .45rem; }
.mi-name { color: #e9ded3; font-weight: 600; font-size: 1.02rem; }
.mi-name em { font-style: normal; font-weight: 500; color: var(--smoke-dim); font-size: .82rem; }
.mi-dots { flex: 1; border-bottom: 1px dotted rgba(201,189,179,.32); transform: translateY(-4px); }
.mi-price {
  font-family: var(--font-display);
  font-size: 1.08rem;
  color: var(--flame);
  letter-spacing: .02em;
  white-space: nowrap;
}

.menu__note {
  margin-top: clamp(28px, 4vw, 44px);
  text-align: center;
  color: var(--smoke-dim);
  font-size: .92rem;
}
.menu__note sup { font-size: .6em; }

@media (max-width: 860px) {
  .showcase { grid-template-columns: 1fr; gap: 22px; }
  .showcase__stage { position: static; }
  .scat { padding: 15px 4px; }
  .scat__name { font-size: clamp(1.4rem, 7vw, 2rem); }
  .scat.is-active .scat__cue { opacity: 1; }
}

/* =========================================================
   AVIS
   ========================================================= */
.avis {
  background:
    radial-gradient(90% 70% at 50% 0%, rgba(229,31,31,.2), transparent 60%),
    linear-gradient(180deg, #18100d, #140a09);
  border-top: 1px solid rgba(255,106,26,.12);
}
.rating {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: .4rem .8rem;
  margin-top: 1.3rem;
}
.rating__stars { color: var(--flame); letter-spacing: .12em; font-size: 1.15rem; }
.rating__txt { color: var(--smoke); font-size: .96rem; }
.rating__txt strong { color: var(--cream); }

.avis__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(16px, 2vw, 26px);
}
.avis-card {
  position: relative;
  background: rgba(255,247,237,.04);
  border: 1px solid rgba(255,247,237,.1);
  border-radius: 18px;
  padding: clamp(24px, 2.6vw, 32px);
  backdrop-filter: blur(4px);
}
.avis-card::before {
  content: "“";
  position: absolute;
  top: 4px; right: 20px;
  font-family: var(--font-display);
  font-size: 4.5rem;
  line-height: 1;
  color: rgba(255,106,26,.2);
}
.avis-card__stars { color: var(--flame); letter-spacing: .1em; font-size: 1rem; }
.avis-card p { margin: 1rem 0 1.5rem; color: #ece2d8; line-height: 1.6; font-size: 1.04rem; }
.avis-card footer {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-weight: 700;
  color: var(--cream);
}
.avatar {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--ember), var(--red));
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.1rem;
}
.avis__cta { margin: clamp(34px, 5vh, 52px) auto 0; }

/* =========================================================
   NOUS TROUVER
   ========================================================= */
.contact {
  background:
    radial-gradient(70% 50% at 100% 100%, rgba(255,106,26,.1), transparent 55%),
    var(--ink-2);
  border-top: 1px solid rgba(255,106,26,.1);
}
.contact__grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(30px, 4vw, 56px);
  align-items: start;
}
.contact__info .btn { align-self: flex-start; }
.info-list { list-style: none; display: grid; gap: 1.1rem; }
.info-list li { display: flex; gap: .9rem; align-items: flex-start; color: #e9ded3; line-height: 1.5; }
.info-ico {
  flex: 0 0 auto;
  display: grid; place-items: center;
  width: 42px; height: 42px;
  border-radius: 12px;
  color: var(--flame);
  background: rgba(255,106,26,.1);
  border: 1px solid rgba(255,106,26,.25);
}
.info-ico svg { width: 20px; height: 20px; }
.info-list strong { color: var(--cream); }
.info-list a { color: #e9ded3; text-decoration: none; transition: color .25s; }
.info-list a:hover { color: var(--flame); }

.hours { margin: 1.8rem 0; }
.hours__title {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: .7rem;
}
.hours__table { width: 100%; border-collapse: collapse; }
.hours__table th, .hours__table td {
  text-align: left;
  padding: .55rem 0;
  border-bottom: 1px dashed rgba(255,174,43,.2);
  font-size: .98rem;
}
.hours__table th { color: var(--smoke); font-weight: 600; }
.hours__table td { color: var(--cream); text-align: right; font-weight: 600; }

.chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem; }
.chip {
  padding: 5px 13px;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--smoke);
  background: rgba(255,247,237,.05);
  border: 1px solid rgba(255,247,237,.12);
}

.contact__visual { display: grid; gap: 22px; }
.frame.devanture { transform: none; }
.frame.devanture img { aspect-ratio: 16/10; }
.frame.devanture figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 26px 18px 12px;
  background: linear-gradient(0deg, rgba(8,6,5,.85), transparent);
  color: var(--cream);
  font-size: .86rem;
  letter-spacing: .04em;
}
.map {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,106,26,.2);
  box-shadow: 0 26px 50px -28px rgba(0,0,0,.85);
  line-height: 0;
}
.map iframe {
  width: 100%;
  height: 320px;
  border: 0;
  filter: grayscale(.3) contrast(1.05) brightness(.92);
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: #070504;
  border-top: 1px solid rgba(255,106,26,.18);
  padding-top: clamp(54px, 7vh, 84px);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: clamp(28px, 4vw, 56px);
  padding-bottom: clamp(40px, 5vh, 60px);
}
.footer__lockup { display: flex; align-items: center; gap: .65rem; margin-bottom: 1.1rem; }
.footer__lockup img { height: 46px; width: auto; }
.footer__name { font-family: var(--font-brand); font-size: 1.6rem; color: var(--cream); }
.footer__brand p { color: var(--smoke); line-height: 1.6; max-width: 34ch; margin-bottom: 1.2rem; }
.footer__social {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--cream);
  text-decoration: none;
  font-weight: 700;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,106,26,.35);
  background: rgba(229,31,31,.08);
  transition: background .3s, border-color .3s, transform .3s;
}
.footer__social svg { width: 18px; height: 18px; }
.footer__social:hover { background: rgba(229,31,31,.2); border-color: var(--ember); transform: translateY(-2px); }

.footer__col h4 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 1rem;
  color: var(--flame);
  margin-bottom: 1rem;
}
.footer__col a, .footer__col p { display: block; color: var(--smoke); text-decoration: none; line-height: 1.7; margin-bottom: .4rem; }
.footer__col a:hover { color: var(--cream); }

.footer__bottom { border-top: 1px solid rgba(255,247,237,.08); padding: 20px 0; }
.footer__bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .6rem 1.2rem;
  color: var(--smoke-dim);
  font-size: .86rem;
}
.footer__legal { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; }
.footer__legal a { color: var(--smoke-dim); text-decoration: none; }
.footer__legal a:hover { color: var(--cream); }
.footer__rega { color: var(--ember); font-weight: 700; letter-spacing: .04em; }

/* =========================================================
   RESPONSIVE — sections
   ========================================================= */
@media (max-width: 920px) {
  .maison__grid { grid-template-columns: 1fr; gap: 48px; }
  .maison__media { max-width: 520px; margin: 0 auto; }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer__grid { grid-template-columns: 1fr; gap: 30px; }
  .frame--small { width: 56%; }
  .badge-est { width: 74px; height: 74px; }
  .map iframe { height: 260px; }
}

@media (prefers-reduced-motion: reduce) {
  .fx { opacity: 1; transform: none; transition: none; }
}

/* =========================================================
   MENU MOBILE
   ========================================================= */
.nav__burger {
  display: none;
  position: relative;
  z-index: 1;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 0 10px;
  border: 1px solid rgba(251,243,233,.18);
  border-radius: 12px;
  background: rgba(11,8,7,.4);
  backdrop-filter: blur(8px);
  cursor: pointer;
}
.nav__burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--cream);
  border-radius: 2px;
  transition: transform .35s var(--ease), opacity .25s;
}
.nav__burger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-active span:nth-child(2) { opacity: 0; }
.nav__burger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 45;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  padding: 2rem;
  background:
    radial-gradient(80% 60% at 50% 0%, rgba(229,31,31,.25), transparent 60%),
    rgba(8,6,5,.96);
  backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity .4s var(--ease), transform .4s var(--ease), visibility .4s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; transform: none; }
.mobile-menu nav { display: flex; flex-direction: column; align-items: center; gap: 1.1rem; }
.mobile-menu a:not(.btn) {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .03em;
  font-size: 2rem;
  color: var(--cream);
  text-decoration: none;
}
.mobile-menu a:not(.btn):hover { color: var(--flame); }
.mobile-menu__cta { margin-top: 1rem; }

@media (max-width: 920px) {
  .nav__burger { display: flex; }
}
