/* ===================================================
   BURGZ SMASH — Feuille de style
   Direction artistique : noir & blanc, brut & premium
   =================================================== */

:root {
  --black: #0a0a0a;
  --ink: #111111;
  --paper: #f5f2ea;   /* blanc cassé / crème */
  --paper-2: #ece7da;
  --white: #ffffff;
  --line: rgba(10, 10, 10, 0.12);
  --line-light: rgba(245, 242, 234, 0.16);

  /* --- Accent jaune MAT, petite touche uniquement --- */
  --accent: #e8b93f;         /* jaune mat (non brillant) */
  --accent-deep: #c99a24;

  /* --- Duralium (duralumin) : 1 des 2 couleurs principales --- */
  /* Alliage alu-cuivre : gris mat, un peu plus foncé et chaud/beige */
  --silver: linear-gradient(180deg, #f5f2ec 0%, #b9b5ac 22%, #8a867d 46%, #fefcf7 51%, #9c988e 60%, #ccc9c0 82%, #8f8b81 100%);
  --silver-line: rgba(188, 184, 174, 0.22);
  --steel-1: #b9b5ac;   /* duralium (fallback si pas de clip) */
  --steel-2: #8b877e;

  /* --- Fonds NOIRS : 2e couleur principale --- */
  --bg: #0b0b0c;        /* noir général */
  --bg-2: #060607;
  --panel: #141416;     /* panneaux sombres */
  --steel-bg: linear-gradient(168deg, #141517 0%, #0c0c0e 55%, #090909 100%);

  --max: 1240px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: linear-gradient(170deg, #121214 0%, #0a0a0b 60%, #0d0d0e 100%) fixed, var(--bg);
  color: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* ---------- Grain overlay ---------- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Typo helpers ---------- */
.brand__script,
.hero__script,
.footer__script {
  font-family: 'Pacifico', cursive;
  font-weight: 400;
}

.h2 {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: 0.5px;
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  color: var(--paper);
}
.h2--light { color: var(--paper); }

.outline {
  -webkit-text-stroke: 1.5px var(--paper);
  color: transparent;
}
.outline--light { -webkit-text-stroke: 1.5px var(--paper); }

.kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.kicker--light { color: var(--accent); }

.lead {
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.7;
  color: rgba(245, 242, 234, 0.74);
  margin-bottom: 1.4rem;
  max-width: 46ch;
}
.lead strong { color: var(--paper); }
.lead em { color: var(--steel-1); }

/* ---------- Chrome réaliste (texte métal poli) ---------- */
.hero__title .line__in,
.stat__num,
.avis__score-num,
.metal-text {
  background-image:
    linear-gradient(100deg, transparent 36%, rgba(255,255,255,0.70) 47%, rgba(255,255,255,0.22) 50%, transparent 60%),
    linear-gradient(180deg,
      #f2eee7 0%, #b6b2a9 22%, #837f76 45%,
      #fefdfa 50%, #98948b 57%, #cac6bd 82%, #8c887f 100%);
  background-size: 260% 100%, 100% 100%;
  background-position: -60% 0, 0 0;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: chromeSweep 6.5s ease-in-out infinite;
}
@keyframes chromeSweep {
  0%   { background-position: -60% 0, 0 0; }
  55%  { background-position: 165% 0, 0 0; }
  100% { background-position: 165% 0, 0 0; }
}

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.95rem 1.8rem;
  border-radius: 100px;
  transition: transform 0.3s var(--ease), background 0.3s, color 0.3s, box-shadow 0.3s, border-color 0.3s;
  cursor: pointer;
  border: 1.5px solid var(--ink);
}
.btn--solid {
  background: linear-gradient(180deg, #23262b 0%, #121417 100%);
  color: var(--paper);
  border-color: #2c3037;
}
.btn--solid:hover {
  background: linear-gradient(180deg, #33373e 0%, #1a1d22 100%);
  border-color: rgba(210,216,226,0.5);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px -14px rgba(0,0,0,0.7);
}
.btn--ghost { background: transparent; color: var(--paper); border-color: var(--line-light); }
.btn--ghost:hover { background: var(--paper); color: var(--ink); transform: translateY(-2px); }

/* ===================================================
   NAV
   =================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.4s var(--ease), border-color 0.4s, padding 0.4s;
  border-bottom: 1px solid transparent;
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.4rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav.scrolled {
  background: rgba(12, 14, 18, 0.82);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--silver-line);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}
.brand__img { height: 60px; width: auto; display: block; padding: 4px 0; }
.brand__img--dark { display: none; }            /* nav toujours sombre → logo blanc en permanence */

.nav__links { display: flex; gap: 2rem; }
.nav__links a {
  color: var(--paper);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.4s;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 0.3s var(--ease);
}
.nav__links a:hover::after { width: 100%; }

.nav__cta { padding: 0.7rem 1.4rem; font-size: 0.78rem; }
.nav .nav__cta {
  background: var(--paper); color: var(--ink); border-color: var(--paper);
}
.nav__cta:hover { background: var(--accent) !important; color: #1a1400 !important; border-color: var(--accent) !important; }

.nav__burger { display: none; background: none; border: 0; cursor: pointer; width: 30px; height: 22px; position: relative; }
.nav__burger span {
  position: absolute; left: 0; height: 2px; width: 100%;
  background: var(--paper); transition: 0.3s var(--ease);
}
.nav__burger span:nth-child(1) { top: 0; }
.nav__burger span:nth-child(2) { top: 10px; }
.nav__burger span:nth-child(3) { top: 20px; }
.nav__burger.open span:nth-child(1) { top: 10px; transform: rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { top: 10px; transform: rotate(-45deg); }

.drawer {
  display: none;
  flex-direction: column;
  gap: 1.4rem;
  padding: 1.5rem;
  background: var(--ink);
}
.drawer a { color: var(--paper); text-decoration: none; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.95rem; }
.drawer.open { display: flex; }
.drawer .btn { justify-content: center; background: var(--paper); color: var(--ink); border-color: var(--paper); }

/* ===================================================
   HERO
   =================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: radial-gradient(125% 95% at 50% -5%, #1b1c1f 0%, #101011 52%, #060607 100%);
  color: var(--paper);
  overflow: hidden;
  padding: 6rem 1.5rem 4rem;
}
.hero__bg {
  position: absolute; inset: -22%;
  background:
    radial-gradient(38% 38% at 32% 30%, rgba(201,210,224,0.12), transparent 62%),
    radial-gradient(circle at 50% 18%, rgba(255,255,255,0.06), transparent 55%),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.016) 0 2px, transparent 2px 9px);
  animation: heroSheen 16s ease-in-out infinite alternate;
}
@keyframes heroSheen {
  0%   { transform: translate(-4%, -3%) rotate(-1deg); }
  100% { transform: translate(6%, 4%) rotate(1deg); }
}
.hero__content { position: relative; z-index: 2; max-width: 900px; }
.hero__eyebrow {
  letter-spacing: 0.34em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(245,242,234,0.65);
  margin-bottom: 1.5rem;
}
/* ---------- Titre + baseline ---------- */
.hero__title {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: 0.5px;
  font-size: clamp(2.6rem, 8vw, 5.6rem);
  margin-top: 0.4rem;
}
/* Révélation cinématique du titre (lignes qui montent sous masque) */
.hero__title .line { display: block; overflow: hidden; padding-bottom: 0.06em; }
.hero__title .line__in {
  display: block;
  transform: translateY(115%);
  transition: transform 1s var(--ease);
}
.hero__title.in .line:nth-child(1) .line__in { transition-delay: 0.05s; }
.hero__title.in .line:nth-child(2) .line__in { transition-delay: 0.2s; }
.hero__title.in .line__in { transform: none; }
.hero__baseline {
  font-size: clamp(1rem, 1.9vw, 1.35rem);
  line-height: 1.55;
  color: rgba(245,242,234,0.82);
  margin: 1rem auto 2.2rem;
  max-width: 38ch;
  font-weight: 300;
}
.hero__baseline strong { font-weight: 700; color: var(--paper); }

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.55rem 1rem;
  border: 1px solid var(--line-light);
  border-radius: 100px;
  background: rgba(255,255,255,0.03);
}
.badge__stars { color: #ffd24d; letter-spacing: 1px; }

.hero__cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero__scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 1.5px solid rgba(245,242,234,0.4);
  border-radius: 100px;
  z-index: 2;
}
.hero__scroll span {
  position: absolute; left: 50%; top: 8px;
  width: 4px; height: 8px;
  background: var(--paper);
  border-radius: 4px;
  transform: translateX(-50%);
  animation: scrollDot 1.8s var(--ease) infinite;
}
@keyframes scrollDot { 0%{opacity:0;transform:translate(-50%,0);} 40%{opacity:1;} 80%{opacity:0;transform:translate(-50%,14px);} 100%{opacity:0;} }

/* ===================================================
   MARQUEE
   =================================================== */
.marquee {
  background: linear-gradient(180deg, #1c1d20 0%, #131315 50%, #0a0a0b 100%);
  color: var(--paper);
  padding: 1.1rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.10);
  border-bottom: 1px solid rgba(0,0,0,0.5);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 52s linear infinite;
}
/* Le gap vit sur le groupe (pas sur la piste) : sinon l'espace entre les deux
   groupes fausse le calcul du -50% et la boucle « saute ». */
.marquee__group {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-right: 2rem;
  white-space: nowrap;
  /* Filet de sécurité : sur un très grand écran, le groupe fait au moins
     une largeur d'écran et les mots s'espacent au lieu de laisser un vide. */
  min-width: 100vw;
  justify-content: space-around;
}
.marquee__track span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.15em;
}
.marquee .dot { color: var(--accent); font-size: 0.8rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ===================================================
   CONCEPT
   =================================================== */
.concept { max-width: var(--max); margin: 0 auto; padding: clamp(5rem, 11vw, 9rem) 1.5rem; }
.concept__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}
.concept__text .h2 { margin-bottom: 1.8rem; }
.concept__text em { font-style: italic; }

.concept__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--silver-line);
  border: 1px solid var(--silver-line);
  border-radius: 14px;
  overflow: hidden;
}
.stat {
  background:
    repeating-linear-gradient(96deg, rgba(255,255,255,0.016) 0 1px, transparent 1px 4px),
    linear-gradient(180deg, #141416 0%, #0a0a0b 100%);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}
.stat__num {
  display: block;
  font-family: 'Anton', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat__label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(245, 242, 234, 0.55);
  font-weight: 600;
}

/* ===================================================
   SIGNATURES
   =================================================== */
.signatures { max-width: var(--max); margin: 0 auto; padding: 0 1.5rem clamp(5rem, 11vw, 9rem); }
.section-head { margin-bottom: 3.5rem; }
.section-head .h2 { margin-top: 0.4rem; }
.section-sub { margin-top: 1rem; color: rgba(245, 242, 234, 0.6); font-size: 1.02rem; }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.card {
  background:
    repeating-linear-gradient(96deg, rgba(255,255,255,0.018) 0 1px, transparent 1px 4px),
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0) 42%),
    linear-gradient(165deg, #161719 0%, #0e0e10 60%, #090909 100%);
  color: var(--paper);
  padding: 2.2rem;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.10), inset 0 -1px 0 rgba(0,0,0,0.5);
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.25s var(--ease), border-color 0.4s, box-shadow 0.4s;
}
/* Reflet métallique qui balaie la carte au survol */
.card::after {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 55%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.12), transparent);
  transform: skewX(-16deg);
  transition: left 0.8s var(--ease);
  pointer-events: none;
  z-index: 1;
}
.card:hover::after { left: 135%; }
/* Reflet argenté doux qui suit le curseur (piloté par --mx/--my en JS) */
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(280px circle at var(--mx, 80%) var(--my, 0%), rgba(214,220,230,0.14), transparent 64%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}
.card:hover {
  transform: translateY(-5px);
  border-color: rgba(150,157,168,0.5);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.10), inset 0 -1px 0 rgba(0,0,0,0.5), 0 26px 48px -26px rgba(0,0,0,0.85);
}
.card:hover::before { opacity: 1; }
.card__tag {
  align-self: flex-start;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  background: var(--silver);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  border: 1px solid var(--silver-line);
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  margin-bottom: 1.4rem;
}
.card__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.1rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.7rem;
}
.card__desc { font-size: 0.95rem; line-height: 1.6; color: rgba(245,242,234,0.72); font-weight: 300; }

/* ===================================================
   CARTE
   =================================================== */
.carte {
  background: var(--steel-bg);
  color: var(--paper);
  padding: clamp(5rem, 11vw, 9rem) 1.5rem;
}
.carte .section-head { max-width: var(--max); margin: 0 auto 3.5rem; }
.carte .kicker { color: var(--accent); }
.carte .h2 { color: var(--paper); }
.carte .outline { -webkit-text-stroke: 1.5px var(--paper); }
.carte .section-sub { color: rgba(245,242,234,0.6); }

.menu-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
}
.menu-col__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  background: var(--silver);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  padding-bottom: 0.8rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--silver-line);
}
.menu-col__title--mt { margin-top: 2.4rem; }
.menu-list { list-style: none; }
.menu-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.6rem;
  padding: 0.55rem 0;
  font-size: 0.95rem;
}
.menu-list__name { color: rgba(245,242,234,0.9); }
.menu-list__name em { color: rgba(245,242,234,0.45); font-style: normal; font-size: 0.82rem; }
.menu-list__price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  white-space: nowrap;
  color: var(--paper);
  -webkit-text-fill-color: var(--paper);
}
.menu-list__price::after { content: ' €'; font-size: 0.8em; opacity: 0.8; }
.menu-note {
  max-width: var(--max);
  margin: 3rem auto 0;
  font-size: 0.82rem;
  color: rgba(245,242,234,0.45);
  text-align: center;
}

/* ===================================================
   AVIS
   =================================================== */
.avis {
  background: radial-gradient(120% 80% at 50% 0%, #161719 0%, #0c0c0e 55%, #060607 100%);
  color: var(--paper);
  padding: clamp(5rem, 11vw, 9rem) 0;
  overflow: hidden;
}
.avis__head { max-width: var(--max); margin: 0 auto 3rem; padding: 0 1.5rem; text-align: center; }
.avis__head .kicker, .avis__head .h2 { text-align: center; }
.avis__score {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.6rem;
}
.avis__score-num {
  font-family: 'Anton', sans-serif; font-size: 2.6rem; line-height: 1;
}
.avis__stars { color: #ffd24d; font-size: 1.4rem; letter-spacing: 2px; }
.avis__score-sub { color: rgba(245,242,234,0.55); font-size: 0.9rem; width: 100%; }

.avis__track {
  display: flex;
  gap: 1.4rem;
  padding: 0 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.avis__track::-webkit-scrollbar { display: none; }
.quote {
  scroll-snap-align: center;
  flex: 0 0 min(420px, 82vw);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-light);
  border-radius: 18px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
}
.quote__stars { color: #ffd24d; letter-spacing: 2px; margin-bottom: 1rem; }
.quote blockquote {
  font-size: 1.05rem;
  line-height: 1.6;
  font-weight: 300;
  flex: 1;
}
.quote figcaption {
  margin-top: 1.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(245,242,234,0.6);
  text-transform: uppercase;
}
.avis__cta { text-align: center; margin-top: 3rem; }
.avis__cta .btn { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.avis__cta .btn:hover { background: var(--accent); color: #1a1400; border-color: var(--accent); }

/* ===================================================
   INFOS
   =================================================== */
.infos { max-width: var(--max); margin: 0 auto; padding: clamp(5rem, 11vw, 9rem) 1.5rem; }
.infos__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: stretch;
}
.infos__col .h2 { margin: 0.4rem 0 2.5rem; }
.info-block { margin-bottom: 2.2rem; }
.info-block h3 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 0.8rem;
  font-weight: 700;
}
.info-block p { font-size: 1.15rem; line-height: 1.6; }
.link-arrow {
  display: inline-block;
  margin-top: 0.7rem;
  color: var(--paper);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
}
.hours { list-style: none; border-top: 1px solid var(--silver-line); }
.hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--silver-line);
  font-size: 0.95rem;
}
.hours li span:first-child { font-weight: 600; }
.hours li span:last-child { color: rgba(245, 242, 234, 0.6); }

.infos__map {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--silver-line);
  min-height: 420px;
}
.infos__map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; filter: grayscale(1) contrast(1.05); transition: filter 0.5s; }
.infos__map:hover iframe { filter: grayscale(0); }

/* ===================================================
   FOOTER
   =================================================== */
.footer {
  background: linear-gradient(180deg, #0d0d0f 0%, #050506 100%);
  color: var(--paper);
  text-align: center;
  padding: 4rem 1.5rem 3rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer__brand { display: inline-flex; justify-content: center; line-height: 0; margin-bottom: 1.5rem; }
.footer__logo { width: 180px; height: auto; }
.footer__line { color: rgba(245,242,234,0.6); font-size: 0.9rem; margin-bottom: 1.6rem; }
.footer__links { display: flex; gap: 1.8rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.footer__links a { color: var(--paper); text-decoration: none; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; transition: color 0.3s; }
.footer__links a:hover { color: var(--accent); }
.footer__copy { color: rgba(245,242,234,0.4); font-size: 0.8rem; }

/* ---------- Signature agence (Lutèce Studio) ----------
   Badge FLOTTANT, fixé en bas à droite de l'écran : toujours
   visible quand la page est immobile, il s'efface pendant le
   scroll (haut ou bas) et revient dès que le scroll s'arrête
   (classe .is-scrolling posée par script.js).
   Palette de Burgz (crème + or), PAS celle de Lutèce : la
   signature s'intègre au site du client au lieu de jurer. */
.made-by {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 950;              /* au-dessus du contenu, sous la nav (1000) */
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.1rem 0.5rem 0.5rem;
  border: 1px solid rgba(245, 242, 234, 0.16);
  border-radius: 100px;
  text-decoration: none;
  color: rgba(245, 242, 234, 0.72);
  font-size: 0.82rem;
  /* fond sombre translucide : lisible au-dessus de n'importe
     quelle section, y compris les photos claires */
  background: rgba(13, 13, 15, 0.82);
  -webkit-backdrop-filter: blur(9px);
          backdrop-filter: blur(9px);
  box-shadow: 0 10px 30px -12px rgba(0, 0, 0, 0.75);
  transition: opacity 0.32s ease, transform 0.32s ease,
              border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}

/* Pendant le scroll : le badge s'efface (et ne bloque plus les clics) */
.made-by.is-scrolling {
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
}
.made-by:hover {
  color: var(--paper);
  border-color: rgba(232, 185, 63, 0.55);
  /* on garde le fond sombre : c'est lui qui rend le badge lisible */
  background: rgba(20, 20, 23, 0.92);
}
/* Logo officiel Lutèce Studio (image, plus une lettre stylisée) */
.made-by__mark {
  width: 28px;
  height: 28px;
  flex: none;
  display: block;
  border-radius: 8px;        /* suit le carré arrondi du logo */
  object-fit: contain;
}
.made-by strong { color: var(--accent); font-weight: 600; }

/* Sur téléphone : badge plus compact pour ne pas manger l'écran. */
@media (max-width: 560px) {
  .made-by {
    right: 0.7rem;
    bottom: 0.7rem;
    gap: 0.45rem;
    padding: 0.38rem 0.85rem 0.38rem 0.38rem;
    font-size: 0.72rem;
  }
  .made-by__mark { width: 22px; height: 22px; border-radius: 6px; }
}

/* ===================================================
   MÉTALLIQUE & ANIMATIONS (touche premium)
   =================================================== */

/* Barre de progression de lecture (fine, jaune mat — petite touche) */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 100%;
  z-index: 1100;
  background: transparent;
  pointer-events: none;
}
.scroll-progress__bar {
  height: 100%;
  width: 0;
  background: var(--accent);
  transform-origin: left;
}

/* Reflet métallique argenté, très subtil, sur les sections sombres */
.hero::after,
.carte::after,
.avis::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(120% 55% at 50% -12%, rgba(210,216,226,0.05), transparent 60%);
}
.carte, .avis { position: relative; overflow: hidden; }

/* Texture métal brossé, très subtile, sur tout le site */
.metal-texture {
  position: fixed;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0.5;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.012) 0 1px, transparent 1px 3px),
    radial-gradient(120% 80% at 50% -10%, rgba(210,216,226,0.04), transparent 55%);
  mix-blend-mode: screen;
}

/* Survol métallique des lignes de la carte */
.menu-list li {
  position: relative;
  padding-left: 0.6rem;
  padding-right: 0.6rem;
  border-radius: 8px;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.menu-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 2px; height: 0;
  background: var(--accent);
  transform: translateY(-50%);
  transition: height 0.3s var(--ease);
}
.menu-list li:hover {
  background: linear-gradient(90deg, rgba(255,255,255,0.06), transparent);
  transform: translateX(5px);
}
.menu-list li:hover::before { height: 62%; }
.menu-list li:hover .menu-list__price { color: #fff; }

/* Halo chromé rotatif derrière le burger 3D */
.hero__burger::before {
  content: '';
  position: absolute;
  width: min(78%, 430px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(from 0deg,
    rgba(255,255,255,0.16), rgba(255,255,255,0) 22%,
    rgba(188,194,204,0.18) 48%, rgba(255,255,255,0) 72%,
    rgba(255,255,255,0.16));
  filter: blur(8px);
  opacity: 0.8;
  z-index: 0;
  animation: spinHalo 18s linear infinite;
}
.hero__burger-canvas,
.hero__burger .burger-css { position: relative; z-index: 1; }
@keyframes spinHalo { to { transform: rotate(360deg); } }

/* Survol sobre des badges (liseré argent) */
.badge { transition: border-color 0.4s, background 0.4s; }
.badge:hover { border-color: rgba(150,157,168,0.45); background: rgba(255,255,255,0.04); }

/* Texte du marquee en argent brossé */
.marquee__track span {
  background: var(--silver);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ===================================================
   PHOTOS RÉELLES (hero, cartes, façade, galerie)
   =================================================== */

/* Photo du hero : cadrée, liseré argent, halo derrière */
.hero__photo--framed {
  width: min(92vw, 680px);
  height: auto;
  /* Recadrage : on coupe le vide en haut et en bas.
     Le burger occupe y=130..880 sur 1080 → fenêtre de 830 px de haut,
     centrée pile sur lui (36% = 90 px rognés en haut). */
  aspect-ratio: 2.3 / 1;
  object-fit: cover;
  object-position: center 36%;
  filter: none;
  border-radius: 20px;
  border: 1px solid var(--silver-line);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.10),
    0 40px 70px -30px rgba(0,0,0,0.85);
}

/* Photo en tête des cartes signatures */
.card__media {
  margin: -2.2rem -2.2rem 1.5rem;
  height: 195px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.6s var(--ease);
}
.card:hover .card__media img { transform: scale(1.07); }

/* Façade du restaurant (section concept) */
.concept__facade {
  position: relative;
  margin-top: clamp(2.5rem, 6vw, 4.5rem);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--silver-line);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 30px 60px -30px rgba(0,0,0,0.8);
}
.concept__facade img {
  width: 100%;
  height: clamp(240px, 42vw, 480px);
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease);
}
.concept__facade:hover img { transform: scale(1.03); }
.concept__facade figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 2.2rem 1.8rem 1.4rem;
  background: linear-gradient(180deg, transparent, rgba(5,5,6,0.85));
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,242,234,0.85);
}

/* Galerie horizontale « Aussi au menu » */
.galerie { max-width: var(--max); margin: 0 auto; padding: 0 1.5rem clamp(5rem, 11vw, 9rem); }
.galerie__track {
  display: flex;
  gap: 1.3rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 0.5rem;
}
.galerie__track::-webkit-scrollbar { display: none; }
.gph {
  position: relative;
  flex: 0 0 min(360px, 80vw);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  scroll-snap-align: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
.gph img {
  width: 100%;
  height: 235px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.gph:hover img { transform: scale(1.06); }
.gph figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.6rem 1.2rem 0.9rem;
  background: linear-gradient(180deg, transparent, rgba(5,5,6,0.88));
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
}

/* Note discrète sous un titre de catégorie (ex. « Menu complet +3 € ») */
.cat-note {
  margin: -0.6rem 0 1.6rem;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: rgba(245, 242, 234, 0.5);
  font-weight: 400;
}
.cat-note strong {
  color: var(--accent);
  font-weight: 700;
}

/* ===================================================
   REVEAL ANIMATION
   =================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* Variante "zoom" pour les gros titres */
.reveal--zoom { transform: translateY(28px) scale(0.96); }
.reveal--zoom.in { transform: none; }

/* ===================================================
   LAMPE TORCHE — page d'accueil
   ---------------------------------------------------
   Chaque section est éclairée par un faisceau FIXE posé sur
   son élément le plus important ; tout le reste s'assombrit
   progressivement en s'éloignant de ce point.
   Faisceau placé d'après le rendu réel (--lit-x / --lit-y) :
     hero        titre + burger, centré   -> 50 % / 32 %
     explode     légendes à droite        -> 58 % / 44 %
     concept     texte à gauche           -> 34 % / 26 %
     signatures  les 3 cartes, centrées   -> 50 % / 34 %
     infos       adresse/horaires à gauche-> 26 % / 34 %
   Les bords haut/bas sont estompés (mask) : aucune section
   ne se termine par une ligne nette, la transition est continue.

   RÈGLE ABSOLUE : la lumière est peinte DERRIÈRE le contenu
   (z-index -1). Elle ne passe jamais par-dessus un texte, donc
   tous les textes restent lisibles à 100 %, où qu'ils soient.
   Elle est aussi 100 % statique : aucun JS, aucun mouvement.
   =================================================== */
.lit {
  position: relative;
  isolation: isolate;   /* confine la lumière à sa section */
}

.lit::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;          /* DERRIÈRE le contenu : ne touche aucun texte */
  pointer-events: none;
  background:
    /* 1. le cœur du faisceau — légèrement chaud (tungstène) */
    radial-gradient(var(--lit-size, 70% 66%) at var(--lit-x, 50%) var(--lit-y, 30%),
      rgba(255, 232, 198, var(--lit-glow, 0.10)) 0%,
      rgba(238, 236, 232, calc(var(--lit-glow, 0.10) * 0.45)) 30%,
      transparent 62%),
    /* 2. la pénombre — s'assombrit PROGRESSIVEMENT en s'éloignant
          du faisceau, en 5 paliers pour éviter tout cercle net */
    radial-gradient(var(--lit-size, 70% 66%) at var(--lit-x, 50%) var(--lit-y, 30%),
      rgba(4, 4, 5, 0)                          0%,
      rgba(4, 4, 5, 0)                          46%,
      rgba(4, 4, 5, calc(var(--lit-dark, 0.72) * 0.22)) 62%,
      rgba(4, 4, 5, calc(var(--lit-dark, 0.72) * 0.50)) 78%,
      rgba(4, 4, 5, calc(var(--lit-dark, 0.72) * 0.78)) 90%,
      rgba(4, 4, 5, var(--lit-dark, 0.72))      100%);
  /* fondu des bords : supprime toute rupture entre deux sections */
  -webkit-mask-image: linear-gradient(to bottom,
    transparent 0, #000 var(--lit-fade-top, 13%),
    #000 var(--lit-fade-bottom, 87%), transparent 100%);
          mask-image: linear-gradient(to bottom,
    transparent 0, #000 var(--lit-fade-top, 13%),
    #000 var(--lit-fade-bottom, 87%), transparent 100%);
}

/* Position du faisceau — mesurée sur le rendu réel de chaque
   section (centre de l'élément le plus important). */
.lit--left  { --lit-x: 30%; --lit-y: 30%; --lit-size: 74% 70%; }
.lit--right { --lit-x: 62%; --lit-y: 38%; --lit-size: 78% 74%; }
.lit--top   { --lit-x: 50%; --lit-y: 26%; --lit-size: 82% 68%; }

/* Réglages fins par section. */
.hero.lit          { --lit-fade-top: 0%; --lit-y: 32%; --lit-dark: 0.60; }
#explode.lit       { --lit-x: 58%; --lit-y: 44%; }
#concept.lit       { --lit-x: 34%; --lit-y: 26%; }
.signatures.lit    { --lit-y: 34%; --lit-dark: 0.62; }
#infos.lit         { --lit-x: 26%; --lit-y: 34%; }

/* Les photos loin du faisceau reçoivent moins de lumière : une
   baisse de luminosité fixe suffit à le faire sentir. Réservé aux
   IMAGES — jamais appliqué à un bloc contenant du texte. */
.concept__facade img { filter: brightness(0.88) contrast(1.02); }
.card:first-child  .card__media img { filter: brightness(0.94); }
.card:last-child   .card__media img { filter: brightness(0.90); }

/* Sur un écran étroit, les colonnes passent l'une sous l'autre :
   le faisceau se recentre et la pénombre s'allège (on lit souvent
   en plein soleil sur mobile). */
@media (max-width: 860px) {
  .lit--left, .lit--right, .lit--top,
  .hero.lit, #explode.lit, #concept.lit, .signatures.lit, #infos.lit {
    --lit-x: 50%;
    --lit-y: 30%;
    --lit-size: 105% 62%;
    --lit-dark: 0.42;
  }
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 980px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: block; }
  .concept__grid { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr 1fr; }
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .infos__grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .cards { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .concept__stats { grid-template-columns: 1fr 1fr; }
  .nav__inner { padding: 1rem 1.2rem; }
  .hours li { flex-direction: column; gap: 0.1rem; }
  .hours li span:last-child { font-size: 0.85rem; }
  .brand__img { height: 48px; }
  .hero__burger.fallback .burger-css { transform: scale(0.82); }
  .card__media { height: 165px; }
  .gph { flex-basis: min(300px, 84vw); }
  .gph img { height: 195px; }
}

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

/* ===================================================
   NAV MULTIPAGE (7 entrées + état actif)
   =================================================== */
.nav__links { gap: 1.5rem; }
.nav__links a { font-size: 0.74rem; letter-spacing: 0.1em; white-space: nowrap; }
.nav__links a.is-active { color: var(--accent); }
.nav__links a.is-active::after { width: 100%; }
.drawer a.is-active { color: var(--accent); }

/* ===================================================
   STATUT OUVERT / FERMÉ
   =================================================== */
.status {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 1.05rem;
  border-radius: 100px;
  border: 1px solid transparent;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.status__dot { width: 8px; height: 8px; border-radius: 50%; flex: none; }
.status__note {
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
  opacity: 0.72;
  font-size: 0.78rem;
}
.status--open {
  color: #82e08d;
  border-color: rgba(130, 224, 141, 0.35);
  background: rgba(130, 224, 141, 0.08);
}
.status--open .status__dot { background: #82e08d; animation: statusPulse 2.2s ease-out infinite; }
.status--closed {
  color: #f0907f;
  border-color: rgba(240, 144, 127, 0.32);
  background: rgba(240, 144, 127, 0.07);
}
.status--closed .status__dot { background: #f0907f; }
@keyframes statusPulse {
  0%   { box-shadow: 0 0 0 0 rgba(130, 224, 141, 0.55); }
  100% { box-shadow: 0 0 0 9px rgba(130, 224, 141, 0); }
}
.hero__status { margin-bottom: 1.6rem; }

/* ===================================================
   BURGER ÉCLATÉ + LÉGENDE
   =================================================== */
.explode {
  position: relative;
  overflow: hidden;
  background: radial-gradient(115% 85% at 28% 10%, #171719 0%, #0d0d0f 55%, #060607 100%);
  padding: clamp(4.5rem, 10vw, 8rem) 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.explode__head { max-width: var(--max); margin: 0 auto 2.5rem; text-align: center; }
.explode__stage {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
}
.explode__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}
.explode__label {
  position: absolute;
  left: 53%;
  transform: translateY(-50%);
  padding-left: 4.6rem;
  max-width: 20rem;
}
.explode__label::before {
  content: '';
  position: absolute;
  left: 8px; top: 50%;
  width: 3.7rem; height: 1px;
  background: linear-gradient(90deg, rgba(188,184,174,0.15), rgba(188,184,174,0.75));
}
.explode__label::after {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateY(-50%);
  box-shadow: 0 0 12px rgba(232,185,63,0.6);
}
.explode__name {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.32rem;
  letter-spacing: 0.07em;
  line-height: 1.1;
  color: var(--paper);
}
.explode__desc {
  display: block;
  font-size: 0.83rem;
  font-weight: 300;
  line-height: 1.45;
  color: rgba(245,242,234,0.58);
  margin-top: 0.15rem;
}
/* Liste repliée (mobile) */
.explode__list { display: none; }

/* ===================================================
   CONCEPT — version restylée
   =================================================== */
.concept-v2 {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(5rem, 11vw, 9rem) 1.5rem;
}
.concept-v2__head { max-width: 52rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.concept-v2__head .h2 { margin: 0.4rem 0 1.6rem; }

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}
.pillar {
  position: relative;
  overflow: hidden;
  padding: 2.2rem 1.8rem;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    repeating-linear-gradient(96deg, rgba(255,255,255,0.018) 0 1px, transparent 1px 4px),
    linear-gradient(165deg, #161719 0%, #0e0e10 60%, #090909 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.09);
  transition: transform 0.35s var(--ease), border-color 0.4s;
}
.pillar:hover { transform: translateY(-5px); border-color: rgba(150,157,168,0.45); }
.pillar__num {
  display: block;
  font-family: 'Anton', sans-serif;
  font-size: 2.6rem;
  line-height: 1;
  margin-bottom: 1rem;
  background: var(--silver);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.pillar__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.55rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.6rem;
  color: var(--paper);
}
.pillar__desc { font-size: 0.94rem; line-height: 1.6; font-weight: 300; color: rgba(245,242,234,0.68); }

/* ===================================================
   EN-TÊTE DES PAGES INTERNES
   =================================================== */
.page-hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: clamp(8rem, 15vw, 11rem) 1.5rem clamp(3rem, 6vw, 4.5rem);
  background: radial-gradient(120% 90% at 50% -10%, #1b1c1f 0%, #101011 55%, #060607 100%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.page-hero .h2 { margin-top: 0.5rem; }
.page-hero__sub {
  margin: 1.2rem auto 0;
  max-width: 46ch;
  font-size: clamp(0.98rem, 1.6vw, 1.14rem);
  line-height: 1.6;
  font-weight: 300;
  color: rgba(245,242,234,0.7);
}
.section-wrap { max-width: var(--max); margin: 0 auto; padding: clamp(4rem, 9vw, 7rem) 1.5rem; }

/* ===================================================
   MENU AVEC PHOTOS
   =================================================== */
.menu-cat { margin-bottom: clamp(3rem, 7vw, 5rem); }
.menu-cat__title {
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: 0.04em;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--silver-line);
  color: var(--paper);
}
.menu-cat__title span { color: var(--accent); }
.mcards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem; }
.mcard {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  padding: 0.85rem;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    repeating-linear-gradient(96deg, rgba(255,255,255,0.016) 0 1px, transparent 1px 4px),
    linear-gradient(165deg, #151618 0%, #0d0d0f 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  transition: transform 0.3s var(--ease), border-color 0.4s, box-shadow 0.4s;
}
.mcard:hover {
  transform: translateY(-4px);
  border-color: rgba(150,157,168,0.45);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 22px 40px -24px rgba(0,0,0,0.85);
}
.mcard__media {
  width: 116px; height: 94px;
  flex: none;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
}
.mcard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.mcard:hover .mcard__media img { transform: scale(1.08); }
.mcard__body { flex: 1; min-width: 0; }
.mcard__top { display: flex; align-items: baseline; justify-content: space-between; gap: 0.9rem; }
.mcard__name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: var(--paper);
}
/* Prix : couleur pleine, jamais de dégradé métallique.
   Le dégradé comprimait 7 tons sur ~27 px et zébrait chaque chiffre
   de bandes claires/sombres → illisible. Un prix doit se lire d'un coup d'œil. */
.mcard__price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.45rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
  color: var(--paper);
  -webkit-text-fill-color: var(--paper);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55);
}
.mcard__price::after { content: ' €'; font-size: 0.75em; opacity: 0.8; }
.mcard__desc {
  margin-top: 0.25rem;
  font-size: 0.86rem;
  line-height: 1.5;
  font-weight: 300;
  color: rgba(245,242,234,0.6);
}
.mcard__tag {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(232,185,63,0.32);
  border-radius: 100px;
  padding: 0.22rem 0.6rem;
}
/* Lignes simples (sides, boissons, desserts) */
.mlist { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 clamp(1.5rem, 5vw, 4rem); }

/* ===================================================
   GALERIE (grille, sans légende)
   =================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gcell {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  background: #0d0d0f;
}
.gcell img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease), filter 0.5s;
}
.gcell:hover img { transform: scale(1.06); }
.gcell--wide { grid-column: span 2; }
.gcell--wide img { aspect-ratio: 8 / 3; }

/* ===================================================
   CLICK & COLLECT
   =================================================== */
.cc-card {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1.6rem, 4vw, 3rem);
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.09);
  background:
    repeating-linear-gradient(96deg, rgba(255,255,255,0.016) 0 1px, transparent 1px 4px),
    linear-gradient(165deg, #161719 0%, #0d0d0f 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.09), 0 30px 60px -34px rgba(0,0,0,0.9);
}
.cc-card__title {
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  font-size: clamp(1.9rem, 4.5vw, 2.8rem);
  line-height: 1;
  margin-bottom: 1.2rem;
  color: var(--paper);
}
.cc-card__text { font-size: 1.02rem; line-height: 1.7; font-weight: 300; color: rgba(245,242,234,0.7); margin-bottom: 1.8rem; }
.cc-soon {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.7rem;
  border-radius: 100px;
  border: 1px dashed rgba(232,185,63,0.45);
  background: rgba(232,185,63,0.06);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.cc-meta { margin-top: 2rem; display: grid; gap: 0.5rem; font-size: 0.92rem; color: rgba(245,242,234,0.6); }

/* ===================================================
   HISTOIRE
   =================================================== */
.story { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; margin-bottom: clamp(3rem, 8vw, 6rem); }
.story--rev .story__media { order: 2; }
.story__media {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--silver-line);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 30px 60px -32px rgba(0,0,0,0.85);
}
.story__media img { width: 100%; height: clamp(260px, 38vw, 440px); object-fit: cover; display: block; transition: transform 0.8s var(--ease); }
.story__media:hover img { transform: scale(1.04); }
.story__title { font-family: 'Anton', sans-serif; text-transform: uppercase; font-size: clamp(1.7rem, 3.6vw, 2.6rem); line-height: 1.02; margin-bottom: 1.2rem; color: var(--paper); }

/* ===================================================
   RESPONSIVE — nouveaux composants
   =================================================== */
@media (max-width: 1150px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: block; }
}
@media (max-width: 900px) {
  /* Burger éclaté : légende repliée sous l'image */
  .explode__label { display: none; }
  /* 2 colonnes : le burger (large) à gauche, les détails à droite. */
  .explode__stage {
    display: flex;
    align-items: stretch;
    gap: 1rem;
    max-width: 34rem;
  }
  .explode__img {
    width: 56%;
    flex: none;
    aspect-ratio: 3 / 4;      /* on recadre le paysage en portrait = burger plus imposant */
    height: auto;
    object-fit: cover;
    border-radius: 14px;
  }
  .explode__list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.6rem;
    width: 44%;
    max-width: none;
    margin: 0;
  }
  .explode__list li {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.08rem;
    padding-bottom: 0.55rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .explode__list li:last-child { border-bottom: 0; padding-bottom: 0; }
  .explode__list b {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    font-size: 1.06rem;
    letter-spacing: 0.05em;
    line-height: 1.05;
    color: var(--paper);
  }
  .explode__list span { font-size: 0.75rem; font-weight: 300; line-height: 1.3; color: rgba(245,242,234,0.55); }
  .pillars { grid-template-columns: 1fr; }
  .mcards, .mlist { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .story { grid-template-columns: 1fr; }
  .story--rev .story__media { order: 0; }
}
@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: 1fr; gap: 0.8rem; }
  .gcell--wide { grid-column: span 1; }
  .gcell--wide img { aspect-ratio: 4 / 3; }
  .mcard__media { width: 92px; height: 80px; }
  .mcard__name { font-size: 1.3rem; }
}

/* ===================================================
   TRANSITIONS DOUCES ENTRE SECTIONS
   ---------------------------------------------------
   ⚠️ Ce bloc doit rester EN FIN DE FICHIER : plusieurs
   sections (.explode notamment) sont redéfinies plus haut
   et écraseraient ces règles si elles étaient placées avant.

   Objectif : supprimer les lignes nettes et les fonds opaques
   qui créaient des ruptures visibles d'une section à l'autre.
   =================================================== */

/* Le bandeau reste un ruban assumé, mais sans liseré dur en bas. */
.marquee { border-bottom: 0; }

/* La section « éclaté » n'a plus de fond propre ni de bordures :
   sa teinte vient de sa lumière, dont les bords sont estompés. */
.explode {
  background: none;
  border-top: 0;
  border-bottom: 0;
}

/* Le pied de page se fond dans la section précédente
   au lieu d'en être séparé par un trait. */
.footer {
  border-top: 0;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: -90px; left: 0; right: 0;
  height: 90px;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, #0d0d0f);
}

/* ===================================================
   FINITIONS MOBILE (ergonomie tactile)
   ---------------------------------------------------
   Placé en fin de fichier pour écraser les media queries
   plus haut. Objectif : rien de cassé (déjà OK), mais des
   cibles tactiles confortables et le CTA de commande jamais
   caché sur téléphone — c'est LE bouton d'un fast-food.
   =================================================== */
@media (max-width: 1150px) {
  /* On garde « Commander » visible dans la barre, en compact,
     collé à droite avec le hamburger. */
  .nav__cta {
    display: inline-flex;
    margin-left: auto;
    padding: 0.6rem 1.05rem;
    font-size: 0.8rem;
  }
  .nav__burger { margin-left: 0.85rem; }
}

@media (max-width: 560px) {
  /* Hamburger : zone de tap ≥ 44px (30x22 + padding) */
  .nav__burger { padding: 11px; box-sizing: content-box; }

  /* Menu déroulant : liens espacés et faciles à toucher,
     séparés par un filet — au lieu de liens de 18px. */
  .drawer { padding: 0.4rem 1.2rem 1.4rem; gap: 0; }
  .drawer a:not(.btn) {
    padding: 0.95rem 0.2rem;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .drawer .btn { margin-top: 1.1rem; padding: 0.95rem; font-size: 0.95rem; }

  /* HERO : moins de vide (plus de plein écran quasi vide depuis
     qu'il n'y a plus de photo) et texte moins étiré verticalement. */
  .hero { min-height: 68vh; padding-top: 5rem; padding-bottom: 2.5rem; }

  /* Burger éclaté sur téléphone : image portrait dominante à gauche,
     et à droite les NOMS d'ingrédients seuls (les descriptions sont
     trop serrées dans une colonne étroite → on les masque ici). */
  .explode__stage { align-items: stretch; gap: 0.9rem; }
  .explode__img { width: 58%; aspect-ratio: auto; object-position: 22% center; }
  .explode__list { width: 42%; gap: 0.7rem; }
  .explode__list span { display: none; }
  .explode__list li { padding-bottom: 0.55rem; }
  .explode__list b { font-size: 1.12rem; }

  /* Boutons hero : côte à côte, taille normale (plus en pleine largeur). */
  .hero__cta {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.7rem;
  }
  .hero__cta .btn {
    width: auto;
    padding: 0.72rem 1.15rem;
    font-size: 0.82rem;
  }

  .nav__cta { padding: 0.55rem 0.95rem; }
}
