/* ============================================================
   LE P'TIT THAÏ — Traiteur thaïlandais · Saint-Malo
   Maquette site vitrine — feuille de style commune
   Palette carte de visite : or #E5B900 · rose poudré · blanc
   ============================================================ */

/* ---------- 1. Tokens ---------- */
:root {
  /* Couleurs de marque */
  --gold: #E5B900;          /* or du logo (éléphant) */
  --gold-light: #F7D23A;
  --gold-deep: #C79F00;
  --gold-ink: #8A6F00;      /* or lisible sur fond clair */
  --red: #C2455F;           /* framboise rosée (accent) */
  --red-deep: #8E2E40;
  --green: #4E7C57;         /* vert thaï (basilic) */
  --green-deep: #35573D;
  --rose: #E9B7BC;          /* rose poudré de la carte de visite */
  --rose-strong: #D98A93;
  --rose-ink: #A25864;      /* rose lisible sur fond clair */

  /* Fonds */
  --dark: #271418;          /* cacao rosé profond */
  --dark-2: #301A1F;
  --dark-3: #3A2127;
  --cream: #FCF4F2;         /* blanc rosé */
  --cream-2: #F7E1E1;       /* rose poudré clair */

  /* Texte */
  --ink: #36232A;
  --muted: #8A5F68;
  --on-dark-muted: #DCBEC2;

  /* Typo */
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Jost", "Segoe UI", sans-serif;

  /* Rythme */
  --section: clamp(4rem, 9vw, 7.5rem);
  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 18px 45px -18px rgba(39, 20, 24,.38);
  --shadow-gold: 0 16px 40px -14px rgba(229, 185, 0, .45);
  --ease-out: cubic-bezier(.22, .8, .3, 1);
  --header-h: 82px;
}

/* ---------- 2. Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 70px); overflow-x: clip; }

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
ul { list-style: none; }
strong { font-weight: 700; }

::selection { background: var(--gold); color: var(--dark); }

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Entrée de page */
@keyframes pageIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
main { animation: pageIn .7s var(--ease-out) both; }

/* ---------- 3. Typo helpers ---------- */
.overline {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--red);
}
.overline::before {
  content: "";
  width: 34px; height: 2px;
  background: currentColor;
  border-radius: 2px;
}
.overline.center::after {
  content: "";
  width: 34px; height: 2px;
  background: currentColor;
  border-radius: 2px;
}
.on-dark .overline { color: var(--gold); }

h1, h2, h3, .display { font-family: var(--font-display); line-height: 1.12; color: inherit; }

.display-xl { font-size: clamp(3.3rem, 8vw, 6.1rem); font-weight: 700; letter-spacing: 0; }
.display-lg { font-size: clamp(2.5rem, 5.2vw, 3.9rem); font-weight: 700; }
.display-md { font-size: clamp(1.75rem, 2.9vw, 2.35rem); font-weight: 700; }

.lead { font-size: clamp(1.08rem, 1.5vw, 1.25rem); color: var(--muted); max-width: 58ch; }
.on-dark .lead { color: var(--on-dark-muted); }

.text-gold { color: var(--gold); }
.text-gold-ink { color: var(--gold-ink); }
.text-red { color: var(--red); }
.italic-accent { font-family: var(--font-display); font-style: italic; font-weight: 500; }

/* ---------- 4. Layout ---------- */
.container { width: min(1180px, 92vw); margin-inline: auto; }
.section { padding-block: var(--section); position: relative; }
.section-head { max-width: 720px; margin-bottom: clamp(2.4rem, 5vw, 4rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .lead { margin-inline: auto; }
.section-head h2 { margin: .55rem 0 .9rem; }

.bg-dark { background: radial-gradient(1200px 600px at 85% -10%, rgba(229,185,0,.10), transparent 60%), linear-gradient(160deg, var(--dark-2), var(--dark) 65%); color: #FFF7F4; }
.bg-cream-2 { background: var(--cream-2); }

.on-dark { color: #FFF7F4; }

/* ---------- 5. Boutons & badges ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: 1rem 1.7rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: .95rem;
  letter-spacing: .04em;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--dark);
  box-shadow: var(--shadow-gold);
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out);
  overflow: hidden;
  cursor: pointer;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,.75) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .6s var(--ease-out);
}
.btn:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 22px 50px -14px rgba(229,185,0,.6); }
.btn:hover::after { transform: translateX(120%); }
.btn:active { transform: translateY(-1px) scale(.99); }
.btn svg { width: 19px; height: 19px; flex: none; }

.btn-outline {
  background: transparent;
  color: var(--gold);
  box-shadow: inset 0 0 0 2px var(--gold);
}
.btn-outline:hover { box-shadow: inset 0 0 0 2px var(--gold), 0 14px 34px -12px rgba(229,185,0,.35); }
.btn-outline.on-light { color: var(--ink); box-shadow: inset 0 0 0 2px var(--ink); }
.btn-outline.on-light:hover { box-shadow: inset 0 0 0 2px var(--ink), var(--shadow); }

.btn-red { background: linear-gradient(135deg, #D96276, var(--red)); color: #FFF3F0; box-shadow: 0 16px 40px -14px rgba(194,69,95,.55); }
.btn-red:hover { box-shadow: 0 22px 50px -14px rgba(194,69,95,.65); }

.chip {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .3rem .7rem;
  border-radius: 999px;
  background: rgba(229,185,0,.16);
  color: var(--gold-ink);
  border: 1px solid rgba(197,159,0,.35);
  white-space: nowrap;
}
.chip.red { background: rgba(194,69,95,.1); color: var(--red); border-color: rgba(194,69,95,.3); }
.chip.green { background: rgba(78,124,87,.12); color: var(--green-deep); border-color: rgba(78,124,87,.3); }

/* ---------- 7. Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(229,185,0,.14);
  transition: box-shadow .3s;
}
/* Le fond flouté vit dans un pseudo-élément : un backdrop-filter posé directement
   sur le header en ferait le conteneur du menu mobile en position fixed. */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(39, 20, 24, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: background .3s;
}
.site-header.scrolled { box-shadow: 0 12px 34px -18px rgba(0,0,0,.65); }
.site-header.scrolled::before { background: rgba(39, 20, 24, .96); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: var(--header-h);
}

.brand { display: flex; align-items: center; gap: .8rem; color: #FFF7F4; }
.brand img { width: 54px; height: auto; transition: transform .45s var(--ease-out); }
.brand:hover img { transform: rotate(-7deg) scale(1.07); }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { font-family: var(--font-display); font-size: 1.55rem; font-weight: 700; letter-spacing: .01em; }
.brand-text small { font-size: .68rem; text-transform: uppercase; letter-spacing: .24em; color: var(--gold); font-weight: 700; }

.main-nav { display: flex; align-items: center; gap: clamp(.9rem, 2vw, 1.7rem); }
.main-nav > a:not(.btn) {
  position: relative;
  font-weight: 700;
  font-size: .93rem;
  letter-spacing: .05em;
  color: #F4EAD0;
  padding: .4rem 0;
  transition: color .25s;
}
.main-nav > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease-out);
}
.main-nav > a:not(.btn):hover { color: var(--gold); }
.main-nav > a:not(.btn):hover::after,
.main-nav > a.active::after { transform: scaleX(1); transform-origin: left; }
.main-nav > a.active { color: var(--gold); }
.btn-nav { padding: .68rem 1.25rem; font-size: .86rem; }
.sms-only { display: none; }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(229,185,0,.12);
  border: 1px solid rgba(229,185,0,.3);
}
.burger span { display: block; width: 22px; height: 2.5px; margin-inline: auto; background: var(--gold); border-radius: 3px; transition: transform .35s var(--ease-out), opacity .25s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

@media (max-width: 1120px) {
  .burger { display: flex; }
  .main-nav {
    position: fixed;
    inset: 0;
    top: 0;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    padding: calc(var(--header-h) + 1.2rem) clamp(1.8rem, 8vw, 4rem) 2.8rem;
    background:
      radial-gradient(480px 320px at 88% 10%, rgba(229,185,0,.14), transparent 62%),
      radial-gradient(420px 300px at 6% 94%, rgba(194,69,95,.2), transparent 55%),
      linear-gradient(170deg, var(--dark-2), var(--dark));
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s;
    z-index: 49;
    overflow-y: auto;
    counter-reset: navidx;
  }
  .main-nav.open { opacity: 1; pointer-events: auto; }
  .main-nav > a:first-child { margin-top: auto; }
  .main-nav > a:last-child { margin-bottom: auto; }
  .main-nav > a:not(.btn) {
    counter-increment: navidx;
    display: flex;
    align-items: baseline;
    gap: 1.1rem;
    font-size: clamp(1.85rem, 7.4vw, 2.5rem);
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: .01em;
    padding: .6rem 0;
    border-bottom: 1px solid rgba(229,185,0,.16);
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .45s var(--ease-out), transform .45s var(--ease-out), color .25s;
  }
  .main-nav > a:not(.btn)::before {
    content: "0" counter(navidx);
    font-family: var(--font-body);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .2em;
    color: var(--gold);
    opacity: .85;
    min-width: 1.9em;
  }
  .main-nav > a:not(.btn)::after { content: none; }
  .main-nav > a.active { color: var(--gold); }
  .main-nav > a:not(.btn):active { color: var(--gold); }
  .main-nav .btn-nav {
    margin-top: 2rem;
    justify-content: center;
    font-size: 1rem;
    padding: 1.1rem 1.5rem;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .45s var(--ease-out), transform .45s var(--ease-out), box-shadow .25s;
  }
  .main-nav .btn-nav.sms-only { display: inline-flex; margin-top: .8rem; }
  .main-nav.open > a { opacity: 1; transform: none; }
  .main-nav.open > a:nth-child(1) { transition-delay: .04s; }
  .main-nav.open > a:nth-child(2) { transition-delay: .09s; }
  .main-nav.open > a:nth-child(3) { transition-delay: .14s; }
  .main-nav.open > a:nth-child(4) { transition-delay: .19s; }
  .main-nav.open > a:nth-child(5) { transition-delay: .24s; }
  .main-nav.open > a:nth-child(6) { transition-delay: .29s; }
  .main-nav.open > a:nth-child(7) { transition-delay: .36s; }
  .main-nav.open > a:nth-child(8) { transition-delay: .42s; }
}

/* ---------- 8. Hero accueil ---------- */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(900px 500px at 78% 30%, rgba(229,185,0,.16), transparent 62%),
    radial-gradient(700px 420px at 8% 85%, rgba(194,69,95,.14), transparent 60%),
    linear-gradient(160deg, var(--dark-3), var(--dark) 70%);
  color: #FFF7F4;
  padding-block: clamp(3.5rem, 7vw, 6rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .5rem 1.05rem;
  border-radius: 999px;
  border: 1px solid rgba(229,185,0,.4);
  background: rgba(229,185,0,.08);
  color: var(--gold);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 1.3rem;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); animation: pulse 2.2s infinite; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(229,185,0,.55); }
  55% { box-shadow: 0 0 0 9px rgba(229,185,0,0); }
}

.hero h1 { margin-bottom: 1.2rem; }
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line > span { display: inline-block; animation: riseUp 1s var(--ease-out) both; }
.hero h1 .line:nth-child(2) > span { animation-delay: .14s; }
@keyframes riseUp { from { transform: translateY(110%); } to { transform: none; } }

.hero .slogan {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.3rem, 2.2vw, 1.65rem);
  color: var(--on-dark-muted);
  max-width: 46ch;
  margin-bottom: 2.1rem;
  animation: pageIn 1s .35s var(--ease-out) both;
}
.hero .slogan em { color: var(--gold); font-style: inherit; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.4rem; animation: pageIn 1s .5s var(--ease-out) both; }

.hero-ratings { display: flex; flex-wrap: wrap; gap: 1.6rem; animation: pageIn 1s .65s var(--ease-out) both; }
.rating { display: flex; flex-direction: column; gap: .15rem; }
.rating .stars { display: inline-flex; gap: 2px; color: var(--gold); }
.rating .stars svg { width: 15px; height: 15px; }
.rating strong { font-size: 1.02rem; }
.rating small { color: var(--on-dark-muted); font-size: .76rem; letter-spacing: .05em; }

/* Visuel héro : éléphant + anneau */
.hero-visual { position: relative; display: grid; place-items: center; min-height: 380px; }
.hero-ring { position: absolute; width: min(470px, 82vw); height: min(470px, 82vw); }
.hero-ring circle {
  fill: none;
  stroke: rgba(229,185,0,.5);
  stroke-width: 1.6;
  stroke-dasharray: 1440;
  stroke-dashoffset: 1440;
  animation: drawRing 2.6s .3s var(--ease-out) forwards;
}
.hero-ring .tick { stroke: rgba(229,185,0,.8); stroke-width: 3; animation: none; }
@keyframes drawRing { to { stroke-dashoffset: 0; } }
.hero-ring-2 { position: absolute; width: min(560px, 92vw); height: min(560px, 92vw); opacity: .35; animation: spinSlow 60s linear infinite; }
.hero-ring-2 circle { fill: none; stroke: rgba(229,185,0,.35); stroke-width: 1; stroke-dasharray: 3 14; }
@keyframes spinSlow { to { transform: rotate(360deg); } }

.hero-elephant {
  width: min(330px, 62vw);
  filter: drop-shadow(0 24px 45px rgba(229,185,0,.28));
  animation: floaty 6s ease-in-out infinite, pageIn 1.2s .2s var(--ease-out) backwards;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-16px) rotate(-1.2deg); }
}

.hero-tag {
  position: absolute;
  background: rgba(48, 26, 31, .85);
  border: 1px solid rgba(229,185,0,.4);
  backdrop-filter: blur(6px);
  border-radius: 14px;
  padding: .6rem .95rem;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .05em;
  color: var(--gold);
  box-shadow: var(--shadow);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  animation: floaty 7s ease-in-out infinite;
}
.hero-tag svg { width: 17px; height: 17px; }
.hero-tag.t1 { top: 8%; left: 4%; animation-delay: .8s; }
.hero-tag.t2 { bottom: 14%; right: 0%; animation-delay: 1.6s; }
.hero-tag.t3 { bottom: 2%; left: 12%; animation-delay: 2.4s; }

/* Particules épices */
.particles { position: absolute; inset: 0; pointer-events: none; }
.particles i {
  position: absolute;
  bottom: -12px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: rise linear infinite;
}
.particles i.r { background: var(--red); }
.particles i.g { background: var(--green); }
@keyframes rise {
  0% { transform: translateY(0) scale(.6); opacity: 0; }
  12% { opacity: .75; }
  85% { opacity: .35; }
  100% { transform: translateY(-108vh) translateX(4vw) scale(1.1); opacity: 0; }
}

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 1.4rem;
  transform: translateX(-50%);
  color: var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
  font-size: .68rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  font-weight: 800;
  opacity: .85;
}
.scroll-hint svg { width: 20px; height: 20px; animation: bounceDown 1.8s infinite; }
@keyframes bounceDown { 0%,100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

@media (max-width: 900px) {
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-cta, .hero-ratings { justify-content: center; }
  .hero .slogan, .hero .lead { margin-inline: auto; }
  .hero-visual { order: -1; min-height: 300px; }
  .hero-elephant { width: min(240px, 56vw); }
  .hero-tag.t1 { left: 0; }
  .scroll-hint { display: none; }
}
@media (max-width: 520px) {
  .hero-badge { font-size: .64rem; letter-spacing: .12em; padding: .45rem .8rem; }
  .hero-tag { font-size: .7rem; padding: .5rem .7rem; }
  .hero-ratings { gap: 1rem 1.4rem; }
}

/* ---------- 9. Marquee ---------- */
.marquee {
  --mq-bg: var(--gold);
  position: relative;
  background: var(--mq-bg);
  color: var(--dark);
  overflow: hidden;
  padding-block: .85rem;
  width: 106%;
  margin-left: -3%;
  transform: rotate(-1.4deg);
  margin-block: -0.6rem;
  z-index: 5;
  box-shadow: 0 18px 40px -22px rgba(39,20,24,.5);
}
.marquee.straight { transform: none; margin-block: 0; width: 100%; margin-left: 0; }
.marquee.red { --mq-bg: var(--red); color: #FFEDEA; }
.marquee-track {
  display: flex;
  gap: 2.6rem;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 2.6rem;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 1.32rem;
  white-space: nowrap;
  letter-spacing: .03em;
}
.marquee-track .sep { font-style: normal; font-family: var(--font-body); opacity: .7; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- 10. Cartes plats ---------- */
.dish-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(1.2rem, 2.5vw, 1.8rem);
}
.dish-card {
  position: relative;
  background: linear-gradient(165deg, var(--dark-3), var(--dark-2) 70%);
  color: #FFF7F4;
  border: 1px solid rgba(229,185,0,.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), border-color .35s;
  will-change: transform;
}
.dish-card:hover { transform: translateY(-10px); box-shadow: 0 30px 60px -24px rgba(39,20,24,.65); border-color: rgba(229,185,0,.55); }
.dish-photo {
  position: relative;
  aspect-ratio: 4 / 3.1;
  overflow: hidden;
}
.dish-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out), filter .5s;
  will-change: transform;
}
.dish-card:hover .dish-photo img { transform: scale(1.1) rotate(1.2deg); filter: saturate(1.12); }
.dish-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(39,20,24,.65), transparent 45%);
  pointer-events: none;
}
.dish-photo .dish-price {
  position: absolute;
  right: .9rem; bottom: .9rem;
  z-index: 2;
  font-weight: 800;
  font-size: .95rem;
  color: var(--dark);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  padding: .4rem 1rem;
  border-radius: 999px;
  box-shadow: 0 10px 24px -8px rgba(0,0,0,.5);
  transition: transform .35s var(--ease-out);
}
.dish-card:hover .dish-price { transform: scale(1.08) rotate(-2deg); }
.dish-photo .dish-price small { font-weight: 700; font-size: .72rem; }
.dish-body { padding: 1.25rem 1.4rem 1.5rem; }
.dish-body h3 { font-size: 1.5rem; margin-bottom: .35rem; }
.dish-body p { font-size: .88rem; color: var(--on-dark-muted); }

/* ---------- 11. Bandeau Thaï Box ---------- */
.box-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    radial-gradient(600px 300px at 90% 20%, rgba(229,185,0,.22), transparent 60%),
    linear-gradient(120deg, var(--red-deep), var(--red) 80%);
  color: #FFF4F1;
  padding: clamp(2.4rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 2rem;
  align-items: center;
  box-shadow: 0 30px 60px -30px rgba(142,46,64,.6);
}
.box-banner .overline { color: var(--gold-light); }
.box-banner h2 { font-size: clamp(2.1rem, 4vw, 3.1rem); margin: .5rem 0 .9rem; }
.box-banner p { color: #FFE3E0; max-width: 52ch; margin-bottom: 1.6rem; }
.box-banner .big-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 7vw, 5rem);
  color: var(--gold-light);
  line-height: 1;
  text-shadow: 0 10px 30px rgba(0,0,0,.3);
}
.box-banner .big-price small { font-size: .35em; font-family: var(--font-body); font-weight: 700; letter-spacing: .1em; }
.box-visual { position: relative; display: grid; place-items: center; }

/* Cadre photo + Ken Burns */
.photo-frame {
  position: relative;
  width: min(360px, 74vw);
  aspect-ratio: 1 / 1.02;
  margin-inline: auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid rgba(247, 210, 58, .55);
  box-shadow: 0 34px 70px -28px rgba(0, 0, 0, .6);
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.photo-frame .steam { top: 12px; z-index: 2; }
.kenburns img { animation: kenburns 16s ease-in-out infinite alternate; will-change: transform; }
@keyframes kenburns {
  from { transform: scale(1) translate(0, 0); }
  to { transform: scale(1.15) translate(2%, -3%); }
}

/* Badge circulaire rotatif */
.badge-rotate {
  position: absolute;
  top: -24px;
  right: clamp(-14px, -1vw, 6px);
  width: 122px;
  height: 122px;
  display: grid;
  place-items: center;
  filter: drop-shadow(0 14px 26px rgba(0, 0, 0, .45));
  z-index: 3;
}
.badge-rotate svg.ring { position: absolute; inset: 0; width: 100%; height: 100%; animation: spinSlow 18s linear infinite; }
.badge-rotate svg.ring text { font-family: var(--font-body); font-size: 10.6px; font-weight: 800; letter-spacing: .18em; fill: var(--gold-light); text-transform: uppercase; }
.badge-rotate .badge-price {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--dark);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.68rem;
  line-height: 1;
  text-align: center;
}
.badge-rotate .badge-price small { display: block; font-family: var(--font-body); font-size: .5em; letter-spacing: .04em; }
@media (max-width: 640px) { .badge-rotate { transform: scale(.82); top: -18px; } }
@media (max-width: 860px) { .box-banner { grid-template-columns: 1fr; text-align: center; } .box-banner p { margin-inline: auto; } .box-banner .btn-zone { justify-content: center; } }
.btn-zone { display: flex; gap: .9rem; flex-wrap: wrap; }

/* Vapeur */
.steam { position: absolute; display: flex; gap: 10px; top: -34px; left: 50%; transform: translateX(-50%); }
.steam i {
  width: 4px; height: 26px;
  border-radius: 4px;
  background: linear-gradient(to top, transparent, rgba(255,248,231,.85));
  filter: blur(1px);
  animation: steamUp 2.6s ease-in-out infinite;
}
.steam i:nth-child(2) { animation-delay: .5s; height: 34px; }
.steam i:nth-child(3) { animation-delay: 1.1s; }
@keyframes steamUp {
  0% { transform: translateY(6px) scaleY(.6); opacity: 0; }
  40% { opacity: .9; }
  100% { transform: translateY(-22px) scaleY(1.15); opacity: 0; }
}

/* ---------- 12. Avis ---------- */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.review-card {
  background: #FFFAF9;
  border: 1px solid rgba(138,111,0,.15);
  border-radius: var(--radius-lg);
  padding: 1.9rem 1.7rem;
  position: relative;
  box-shadow: 0 14px 34px -22px rgba(54,35,42,.35);
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.review-card:hover { transform: translateY(-6px) rotate(.5deg); box-shadow: var(--shadow); }
.review-card .quote-mark {
  position: absolute;
  top: -18px; left: 22px;
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--dark);
  box-shadow: var(--shadow-gold);
}
.review-card .quote-mark svg { width: 22px; height: 22px; }
.review-card .stars { color: var(--gold-ink); display: inline-flex; gap: 3px; margin-bottom: .7rem; }
.review-card .stars svg { width: 16px; height: 16px; }
.review-card p { font-size: .97rem; color: var(--ink); margin-bottom: 1rem; }
.review-card footer { display: flex; justify-content: space-between; align-items: center; gap: .6rem; font-size: .84rem; color: var(--muted); font-weight: 700; }

.platform-badges { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 2.6rem; }
.platform-badge {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  background: var(--dark);
  color: #FFF7F4;
  padding: .85rem 1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(229,185,0,.3);
  transition: transform .25s var(--ease-out), border-color .25s;
}
.platform-badge:hover { transform: translateY(-4px); border-color: var(--gold); }
.platform-badge .score { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: var(--gold); }
.platform-badge small { font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--on-dark-muted); font-weight: 700; }

/* ---------- 13. Bandes infos ---------- */
.info-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.2rem;
}
.info-tile {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: #FFFAF9;
  border: 1px solid rgba(138,111,0,.15);
  border-radius: var(--radius);
  padding: 1.4rem 1.3rem;
  transition: transform .3s var(--ease-out), box-shadow .3s;
}
.info-tile:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.info-tile .ico {
  flex: none;
  width: 48px; height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--dark);
}
.info-tile .ico svg { width: 23px; height: 23px; }
.info-tile h3 { font-size: 1.32rem; margin-bottom: .25rem; }
.info-tile p { font-size: .9rem; color: var(--muted); }
.info-tile a:hover { color: var(--red); }

/* ---------- 14. Page hero (pages intérieures) ---------- */
.page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(700px 340px at 82% 10%, rgba(229,185,0,.16), transparent 60%),
    radial-gradient(500px 300px at 5% 110%, rgba(194,69,95,.16), transparent 55%),
    linear-gradient(160deg, var(--dark-3), var(--dark) 75%);
  color: #FFF7F4;
  padding: clamp(3.6rem, 7vw, 5.5rem) 0 clamp(3rem, 6vw, 4.5rem);
  text-align: center;
}
.page-hero .crumbs { display: inline-flex; gap: .5rem; align-items: center; font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--on-dark-muted); margin-bottom: 1rem; }
.page-hero .crumbs a:hover { color: var(--gold); }
.page-hero .crumbs .sep { color: var(--gold); }
.page-hero h1 { font-size: clamp(2.8rem, 6.2vw, 4.5rem); font-weight: 700; margin-bottom: .9rem; }
.page-hero .lead { margin-inline: auto; }
.page-hero .watermark {
  position: absolute;
  right: -60px;
  bottom: -80px;
  width: 330px;
  opacity: .07;
  pointer-events: none;
  animation: floaty 9s ease-in-out infinite;
}

/* ---------- 15. Carte (menu) ---------- */
.menu-nav {
  position: sticky;
  top: var(--header-h);
  z-index: 30;
  background: rgba(252,244,242,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(138,111,0,.18);
  padding-block: .75rem;
}
.menu-nav .container { display: flex; gap: .6rem; overflow-x: auto; scrollbar-width: none; }
.menu-nav .container::-webkit-scrollbar { display: none; }
.menu-pill {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .55rem 1.15rem;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .04em;
  color: var(--ink);
  border: 1.5px solid rgba(54,35,42,.22);
  background: transparent;
  transition: all .25s var(--ease-out);
  white-space: nowrap;
  cursor: pointer;
}
.menu-pill svg { width: 16px; height: 16px; }
.menu-pill:hover { border-color: var(--gold-deep); color: var(--gold-ink); transform: translateY(-2px); }
.menu-pill.active { background: var(--dark); color: var(--gold); border-color: var(--dark); box-shadow: var(--shadow); }

.menu-section { padding-block: clamp(2.8rem, 6vw, 4.5rem); }
.menu-section + .menu-section { border-top: 1px dashed rgba(138,111,0,.25); }
.menu-title { display: flex; align-items: center; gap: 1.1rem; margin-bottom: .6rem; }
.menu-title .m-ico {
  width: 58px; height: 58px;
  flex: none;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--dark);
  color: var(--gold);
  box-shadow: var(--shadow);
}
.menu-title .m-ico svg { width: 32px; height: 32px; }
.menu-title h2 { font-size: clamp(2rem, 3.4vw, 2.75rem); }
.menu-sub { color: var(--muted); margin-bottom: 2rem; max-width: 62ch; }

.menu-list { display: grid; grid-template-columns: 1fr 1fr; gap: .4rem 3rem; }
@media (max-width: 820px) { .menu-list { grid-template-columns: 1fr; } }
.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .2rem 1rem;
  align-items: baseline;
  padding: .85rem .6rem;
  border-radius: 12px;
  transition: background .25s, transform .25s var(--ease-out);
}
.menu-item:hover { background: rgba(229,185,0,.1); transform: translateX(6px); }
.menu-item .name { font-weight: 800; font-size: 1.02rem; display: flex; align-items: baseline; gap: .6rem; flex-wrap: wrap; }
.menu-item .name .dots {
  flex: 1;
  min-width: 30px;
  border-bottom: 2px dotted rgba(138,111,0,.4);
  transform: translateY(-4px);
}
.menu-item .price { font-weight: 800; color: var(--red); font-variant-numeric: tabular-nums; white-space: nowrap; }
.menu-item .price small { font-size: .74rem; font-weight: 700; color: var(--muted); }
.menu-item .desc { grid-column: 1 / -1; font-size: .87rem; color: var(--muted); }
.menu-item .desc .chip { margin-right: .4rem; }

.allergen-note {
  margin-top: 3rem;
  border: 1.5px dashed rgba(138,111,0,.4);
  background: rgba(229,185,0,.07);
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.allergen-note svg { width: 26px; height: 26px; flex: none; color: var(--gold-ink); margin-top: .15rem; }
.allergen-note p { font-size: .92rem; color: var(--muted); }
.allergen-note .chips { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .6rem; }

/* ---------- 16. Thaï Box pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: clamp(1.4rem, 3vw, 2rem);
  align-items: stretch;
}
.price-card {
  position: relative;
  background: #FFFAF9;
  border: 1.5px solid rgba(138,111,0,.18);
  border-radius: var(--radius-lg);
  padding: 2.4rem 1.9rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: transform .35s var(--ease-out), box-shadow .35s, border-color .3s;
}
.price-card:hover { transform: translateY(-10px); box-shadow: var(--shadow); border-color: var(--gold); }
.price-card.featured {
  background: linear-gradient(170deg, var(--dark-3), var(--dark-2));
  color: #FFF7F4;
  border-color: var(--gold);
  box-shadow: 0 30px 60px -28px rgba(39,20,24,.55);
}
.price-card.featured .p-desc, .price-card.featured li { color: var(--on-dark-muted); }
.price-card .flag {
  position: absolute;
  top: -15px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #D96276, var(--red));
  color: #FFEDEA;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: .4rem 1.1rem;
  border-radius: 999px;
  box-shadow: 0 10px 24px -8px rgba(194,69,95,.6);
  white-space: nowrap;
}
.price-card .p-illus { width: 88px; height: 88px; margin: 0 auto 1.1rem; display: grid; place-items: center; border-radius: 50%; background: rgba(229,185,0,.1); border: 1px dashed rgba(197,159,0,.5); color: var(--gold-ink); }
.price-card.featured .p-illus { color: var(--gold); }
.price-card .p-illus svg { width: 50px; height: 50px; }
.price-card h3 { font-size: 1.58rem; margin-bottom: .2rem; }
.price-card .p-price { font-family: var(--font-display); font-size: 3.4rem; font-weight: 800; color: var(--red); line-height: 1.1; margin-block: .5rem .2rem; }
.price-card.featured .p-price { color: var(--gold); }
.price-card .p-desc { font-size: .88rem; color: var(--muted); margin-bottom: 1.2rem; }
.price-card ul { text-align: left; margin: 0 auto 1.6rem; display: grid; gap: .55rem; font-size: .93rem; color: var(--ink); max-width: 260px; }
.price-card li { display: flex; gap: .6rem; align-items: flex-start; }
.price-card li svg { width: 17px; height: 17px; flex: none; margin-top: .22rem; color: var(--green); }
.price-card.featured li svg { color: var(--gold); }
.price-card .btn { margin-top: auto; justify-content: center; }

/* Étapes — composition typographique */
.steps-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.8rem, 4vw, 3.5rem);
}
.steps-line::before {
  content: "";
  position: absolute;
  top: 44px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(138,111,0,.55) 0 10px, transparent 10px 22px);
  animation: dashFlow 1.6s linear infinite;
}
@keyframes dashFlow { to { background-position: 22px 0; } }
.step-item { position: relative; text-align: center; padding-top: .4rem; }
.step-item .step-num {
  position: relative;
  display: inline-block;
  padding-inline: 1.1rem;
  background: var(--cream-2);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3.9rem, 6.8vw, 5.4rem);
  line-height: 1.1;
  color: transparent;
  -webkit-text-stroke: 2px var(--gold-deep);
  transition: color .4s, transform .4s var(--ease-out);
}
.step-item:hover .step-num { color: var(--gold); transform: translateY(-6px) rotate(-2deg); }
.step-item h3 { font-size: 1.58rem; margin: .7rem 0 .45rem; }
.step-item p { font-size: .93rem; color: var(--muted); max-width: 30ch; margin-inline: auto; }
.step-item .step-hint {
  display: inline-block;
  margin-top: .9rem;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
}
@media (max-width: 760px) {
  .steps-line { grid-template-columns: 1fr; gap: 2.4rem; }
  .steps-line::before { display: none; }
}

/* ---------- 17. À propos ---------- */
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }

.portrait-card {
  position: relative;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(400px 260px at 70% 20%, rgba(229,185,0,.25), transparent 60%),
    linear-gradient(160deg, var(--dark-3), var(--dark));
  border: 1px solid rgba(229,185,0,.25);
  padding: 3rem 2rem 2.2rem;
  text-align: center;
  color: #FFF7F4;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.portrait-photo {
  border-radius: 18px;
  overflow: hidden;
  margin: 0 auto 1.5rem;
  max-width: 360px;
  border: 1px solid rgba(229,185,0,.4);
  box-shadow: 0 24px 50px -22px rgba(0,0,0,.65);
}
.portrait-photo img {
  width: 100%;
  aspect-ratio: 1 / 0.92;
  object-fit: cover;
  object-position: 62% 42%;
  transition: transform .9s var(--ease-out), filter .5s;
}
.portrait-card:hover .portrait-photo img { transform: scale(1.07); filter: saturate(1.08); }
.portrait-card .frame {
  width: 190px; height: 190px;
  margin: 0 auto 1.4rem;
  border-radius: 50%;
  border: 2px dashed rgba(229,185,0,.55);
  display: grid;
  place-items: center;
  background: rgba(229,185,0,.07);
  animation: spinSlow 40s linear infinite;
}
.portrait-card .frame > div { animation: spinSlow 40s linear infinite reverse; display: grid; place-items: center; }
.portrait-card .frame svg { width: 108px; height: 108px; color: var(--gold); }
.portrait-card h3 { font-size: 1.8rem; }
.portrait-card .role { color: var(--gold); font-size: .8rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; margin-top: .3rem; }
.portrait-card .quote { margin-top: 1.3rem; font-family: var(--font-display); font-style: italic; color: var(--on-dark-muted); font-size: 1.18rem; }

.big-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.55rem, 2.7vw, 2.05rem);
  line-height: 1.5;
  color: var(--ink);
  border-left: 4px solid var(--gold);
  padding-left: 1.4rem;
  margin-block: 1.8rem;
}

.counters { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1.2rem; margin-top: 2.4rem; }
.counter { text-align: center; padding: 1.5rem 1rem; border-radius: var(--radius); background: rgba(229,185,0,.09); border: 1px solid rgba(197,159,0,.3); }
.on-dark .counter { background: rgba(229,185,0,.07); border-color: rgba(229,185,0,.25); }
.counter .num { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.3rem, 4.4vw, 3.1rem); color: var(--red); line-height: 1; }
.on-dark .counter .num { color: var(--gold); }
.counter .num sup { font-size: .45em; }
.counter small { display: block; margin-top: .45rem; font-size: .78rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.on-dark .counter small { color: var(--on-dark-muted); }

/* Timeline */
.timeline { position: relative; max-width: 760px; margin-inline: auto; padding-left: 2.2rem; }
.timeline::before {
  content: "";
  position: absolute;
  left: 9px; top: 6px; bottom: 6px;
  width: 2px;
  background: repeating-linear-gradient(to bottom, var(--gold) 0 8px, transparent 8px 16px);
}
.timeline-item { position: relative; padding-bottom: 2.2rem; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -2.2rem;
  top: 6px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--cream);
  border: 5px solid var(--red);
  box-shadow: 0 0 0 4px rgba(194,69,95,.18);
}
.timeline-item .when { font-weight: 800; font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; color: var(--red); }
.timeline-item h3 { font-size: 1.58rem; margin: .25rem 0 .35rem; }
.timeline-item p { color: var(--muted); font-size: .95rem; max-width: 60ch; }

/* Valeurs */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.5rem; }
.value-card {
  background: rgba(255,253,246,.06);
  border: 1px solid rgba(229,185,0,.2);
  border-radius: var(--radius-lg);
  padding: 2rem 1.6rem;
  text-align: center;
  transition: transform .3s var(--ease-out), border-color .3s, background .3s;
}
.value-card:hover { transform: translateY(-7px); border-color: var(--gold); background: rgba(229,185,0,.08); }
.value-card .v-ico { width: 62px; height: 62px; margin: 0 auto 1rem; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: var(--dark); }
.value-card .v-ico svg { width: 30px; height: 30px; }
.value-card h3 { font-size: 1.48rem; margin-bottom: .5rem; }
.value-card p { font-size: .9rem; color: var(--on-dark-muted); }

/* ---------- 18. Galerie ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.3rem;
}
.gallery-tile {
  position: relative;
  aspect-ratio: 1 / 1.05;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  place-items: center;
  cursor: pointer;
  border: 0;
  background: var(--dark-2);
  transition: transform .35s var(--ease-out), box-shadow .35s;
}
.gallery-tile:hover { transform: translateY(-8px) scale(1.015); box-shadow: var(--shadow); }
.gallery-tile .tile-bg { position: absolute; inset: 0; transition: transform .6s var(--ease-out); }
.gallery-tile:hover .tile-bg { transform: scale(1.08) rotate(1.5deg); }
.tile-dark .tile-bg { background: radial-gradient(340px 240px at 70% 25%, rgba(229,185,0,.28), transparent 65%), linear-gradient(160deg, var(--dark-3), var(--dark)); }
.tile-red .tile-bg { background: radial-gradient(340px 240px at 30% 20%, rgba(247,210,58,.3), transparent 60%), linear-gradient(160deg, var(--red), var(--red-deep)); }
.tile-green .tile-bg { background: radial-gradient(340px 240px at 70% 25%, rgba(247,210,58,.25), transparent 60%), linear-gradient(160deg, var(--green), var(--green-deep)); }
.tile-gold .tile-bg { background: radial-gradient(340px 240px at 30% 20%, rgba(255,255,255,.4), transparent 60%), linear-gradient(160deg, var(--gold-light), var(--gold-deep)); }
.gallery-tile svg { position: relative; width: 44%; height: auto; color: rgba(255,248,231,.95); filter: drop-shadow(0 10px 18px rgba(0,0,0,.25)); transition: transform .45s var(--ease-out); }
.tile-gold svg { color: var(--dark); }
.gallery-tile:hover svg { transform: scale(1.12) rotate(-4deg); }
.gallery-tile img.tile-photo {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .9s var(--ease-out), filter .4s;
  will-change: transform;
}
.gallery-tile:hover img.tile-photo { transform: scale(1.1) rotate(1.2deg); filter: saturate(1.12); }
.gallery-tile::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1.5px solid rgba(247,210,58,0);
  border-radius: calc(var(--radius-lg) - 9px);
  pointer-events: none;
  z-index: 2;
  transition: border-color .4s;
}
.gallery-tile:hover::after { border-color: rgba(247,210,58,.9); }
.gallery-tile .tile-label { z-index: 2; }
.gallery-tile .tile-label {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 2rem 1.1rem .95rem;
  background: linear-gradient(to top, rgba(31,16,20,.82), transparent);
  color: #FFF7F4;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.28rem;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: .6rem;
}
.gallery-tile .tile-label svg { position: static; width: 20px; height: 20px; filter: none; color: var(--gold); opacity: 0; transform: translateX(-8px); transition: opacity .3s, transform .3s var(--ease-out); }
.gallery-tile:hover .tile-label svg { opacity: 1; transform: none; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1.4rem;
  background: rgba(25, 12, 16, .88);
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox-inner {
  position: relative;
  width: min(600px, 94vw);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--dark-2);
  border: 1px solid rgba(229,185,0,.35);
  box-shadow: 0 40px 90px -30px rgba(0,0,0,.8);
  transform: scale(.92) translateY(14px);
  transition: transform .35s var(--ease-out);
  text-align: center;
  color: #FFF7F4;
}
.lightbox.open .lightbox-inner { transform: none; }
.lb-media { position: relative; width: 100%; aspect-ratio: 16 / 11; overflow: hidden; background: #170C0F; }
.lb-media img { width: 100%; height: 100%; object-fit: cover; animation: kenburns 14s ease-in-out infinite alternate; }
.lb-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(39,20,24,.55), transparent 35%); }
.lb-media svg.lb-art { width: 150px; height: 150px; margin: 2rem auto; color: var(--gold); }
.lb-content { padding: 1.5rem 2rem 2.2rem; }
.lightbox-inner h3 { font-size: 1.95rem; margin-bottom: .45rem; }
.lightbox-inner p { color: var(--on-dark-muted); font-size: .95rem; max-width: 44ch; margin-inline: auto; }
.lightbox-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(229,185,0,.14);
  border: 1px solid rgba(229,185,0,.4);
  color: var(--gold);
  transition: transform .25s, background .25s;
}
.lightbox-close:hover { transform: rotate(90deg); background: rgba(229,185,0,.28); }
.lightbox-close svg { width: 20px; height: 20px; }
.gallery-note { text-align: center; margin-top: 2.4rem; color: var(--muted); font-size: .9rem; }

/* ---------- 19. Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(1.8rem, 4vw, 3.2rem); align-items: start; }
@media (max-width: 940px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-card {
  background: #FFFAF9;
  border: 1px solid rgba(138,111,0,.16);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  box-shadow: 0 18px 44px -30px rgba(54,35,42,.4);
}
.contact-card + .contact-card { margin-top: 1.6rem; }
.contact-card h3 { font-size: 1.58rem; margin-bottom: 1.2rem; display: flex; align-items: center; gap: .7rem; }
.contact-card h3 svg { width: 24px; height: 24px; color: var(--gold-ink); }

.contact-lines { display: grid; gap: 1rem; }
.contact-line { display: flex; gap: .95rem; align-items: flex-start; }
.contact-line .c-ico { flex: none; width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: rgba(229,185,0,.14); color: var(--gold-ink); }
.contact-line .c-ico svg { width: 20px; height: 20px; }
.contact-line strong { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); }
.contact-line a, .contact-line span.val { font-weight: 700; font-size: 1.02rem; }
.contact-line a:hover { color: var(--red); }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px dashed rgba(138,111,0,.25); transition: background .25s; }
.hours-table tr:last-child { border-bottom: 0; }
.hours-table tr.today { background: rgba(229,185,0,.14); }
.hours-table tr.today td:first-child::after { content: "aujourd'hui"; margin-left: .6rem; font-size: .66rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-ink); border: 1px solid rgba(138,111,0,.4); padding: .12rem .5rem; border-radius: 999px; }
.hours-table td { padding: .8rem .6rem; font-size: .95rem; }
.hours-table td:first-child { font-weight: 800; }
.hours-table td:last-child { text-align: right; font-variant-numeric: tabular-nums; font-weight: 700; }
.hours-table .closed td:last-child { color: var(--red); font-weight: 800; }

.open-badge {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .5rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.2rem;
}
.open-badge .dot { width: 9px; height: 9px; border-radius: 50%; animation: pulse 2s infinite; }
.open-badge.is-open { background: rgba(78,124,87,.14); color: var(--green-deep); border: 1px solid rgba(78,124,87,.4); }
.open-badge.is-open .dot { background: var(--green); }
.open-badge.is-closed { background: rgba(194,69,95,.1); color: var(--red); border: 1px solid rgba(194,69,95,.35); }
.open-badge.is-closed .dot { background: var(--red); }

/* Formulaire */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field label { display: block; font-size: .8rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: .4rem; }
.field label em { color: var(--red); font-style: normal; }
.field input, .field textarea, .field select {
  width: 100%;
  font: inherit;
  padding: .85rem 1rem;
  border-radius: 12px;
  border: 1.5px solid rgba(138,111,0,.3);
  background: var(--cream);
  color: var(--ink);
  transition: border-color .25s, box-shadow .25s, transform .2s;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--gold-deep); box-shadow: 0 0 0 4px rgba(229,185,0,.2); outline: none; }
.field textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: .8rem; color: var(--muted); margin-top: .8rem; }

.toast {
  position: fixed;
  bottom: 1.6rem;
  left: 50%;
  transform: translate(-50%, 140%);
  z-index: 120;
  display: flex;
  align-items: center;
  gap: .7rem;
  background: var(--dark);
  color: #FFF7F4;
  border: 1px solid rgba(229,185,0,.45);
  padding: .95rem 1.5rem;
  border-radius: 999px;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,.6);
  transition: transform .45s var(--ease-out);
  font-weight: 700;
  font-size: .92rem;
  max-width: 92vw;
}
.toast.show { transform: translate(-50%, 0); }
.toast svg { width: 20px; height: 20px; color: var(--gold); flex: none; }

/* Carte stylisée */
.map-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(138,111,0,.2);
  box-shadow: var(--shadow);
  background: var(--cream-2);
}
.map-card svg.map-art { width: 100%; height: auto; display: block; }
.map-pin {
  position: absolute;
  top: 40%; left: 52%;
  transform: translate(-50%, -100%);
  display: grid;
  place-items: center;
  color: var(--red);
  animation: pinBounce 2.4s ease-in-out infinite;
  filter: drop-shadow(0 10px 12px rgba(142,46,64,.4));
}
.map-pin svg { width: 46px; height: 46px; }
@keyframes pinBounce { 0%,100% { transform: translate(-50%, -100%); } 50% { transform: translate(-50%, calc(-100% - 12px)); } }
.map-overlay {
  position: absolute;
  left: 1.1rem; bottom: 1.1rem;
  background: rgba(39,20,24,.92);
  color: #FFF7F4;
  border: 1px solid rgba(229,185,0,.4);
  border-radius: 14px;
  padding: .85rem 1.1rem;
  font-size: .85rem;
  backdrop-filter: blur(6px);
}
.map-overlay strong { color: var(--gold); display: block; font-family: var(--font-display); font-size: 1rem; }

/* ---------- 19a. Encart Fleur d'Asie ---------- */
.sister-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    radial-gradient(620px 320px at 12% 0%, rgba(229, 185, 0, .2), transparent 60%),
    linear-gradient(120deg, #2A4A31, var(--green-deep) 55%, #2A4A31);
  color: #F2F8EC;
  padding: clamp(2.4rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: clamp(1.8rem, 4vw, 3.5rem);
  align-items: center;
  box-shadow: 0 34px 66px -30px rgba(42, 74, 49, .65);
  border: 1px solid rgba(229, 185, 0, .25);
}
.sister-banner .overline { color: var(--gold-light); }
.sister-banner h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin: .5rem 0 .9rem; }
.sister-banner .lead-text { color: #DCEBD0; font-size: 1rem; max-width: 58ch; }
.sister-visual { position: relative; display: grid; place-items: center; }
.sister-visual::before {
  content: "";
  position: absolute;
  width: 120%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(229, 185, 0, .22), transparent 70%);
}
.sister-visual img {
  position: relative;
  width: min(250px, 55vw);
  filter: drop-shadow(0 20px 38px rgba(0, 0, 0, .4));
  animation: floaty 7s ease-in-out infinite;
}
.sister-facts { display: grid; gap: .6rem; margin: 1.3rem 0 1.7rem; }
.sister-facts li { display: flex; align-items: flex-start; gap: .65rem; font-size: .95rem; font-weight: 600; color: #EAF3DF; }
.sister-facts svg { width: 18px; height: 18px; flex: none; margin-top: .18rem; color: var(--gold-light); }
.sister-banner .btn-outline { color: var(--gold-light); box-shadow: inset 0 0 0 2px var(--gold-light); }
@media (max-width: 860px) {
  .sister-banner { grid-template-columns: 1fr; text-align: center; }
  .sister-banner .lead-text, .sister-facts { margin-inline: auto; }
  .sister-facts { text-align: left; max-width: 420px; }
  .sister-banner .btn-zone { justify-content: center; }
}

/* ---------- 19b. Revue de presse ---------- */
.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
  gap: clamp(1.8rem, 4vw, 2.8rem);
  align-items: start;
}
.press-card {
  position: relative;
  background: #FFFAF9;
  border: 1px solid rgba(138,111,0,.18);
  border-radius: 14px;
  padding: 1.1rem 1.1rem 1.6rem;
  box-shadow: 0 22px 44px -26px rgba(54,35,42,.5);
  transform: rotate(var(--tilt, -1.3deg));
  transition: transform .45s var(--ease-out), box-shadow .45s;
}
.press-card:nth-child(even) { --tilt: 1.3deg; }
.press-card:hover { transform: rotate(0deg) translateY(-8px) scale(1.015); box-shadow: var(--shadow); z-index: 2; }
.press-card::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  width: 110px;
  height: 30px;
  background: rgba(229, 185, 0, .45);
  border-left: 1px dashed rgba(255,255,255,.7);
  border-right: 1px dashed rgba(255,255,255,.7);
  box-shadow: 0 6px 12px -6px rgba(54,35,42,.25);
  z-index: 3;
}
.press-scan {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(138,111,0,.22);
  aspect-ratio: 16 / 11;
  background: #EFE9DA;
}
.press-scan img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform .8s var(--ease-out);
}
.press-card:hover .press-scan img { transform: scale(1.06); }
.press-body { padding: 1.2rem .5rem 0; }
.press-outlet {
  display: inline-block;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #FFF3F0;
  background: linear-gradient(135deg, #D96276, var(--red));
  padding: .3rem .8rem;
  border-radius: 4px;
  margin-bottom: .7rem;
}
.press-outlet.gold { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: var(--dark); }
.press-body h3 { font-size: 1.5rem; line-height: 1.3; margin-bottom: .35rem; }
.press-body .press-date { font-size: .8rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-ink); margin-bottom: .6rem; }
.press-body p { font-size: .92rem; color: var(--muted); }
.press-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-top: 1rem;
  font-weight: 800;
  font-size: .9rem;
  color: var(--red);
  border-bottom: 2px solid rgba(194,69,95,.35);
  padding-bottom: .15rem;
  transition: gap .25s var(--ease-out), border-color .25s;
}
.press-link:hover { gap: .8rem; border-color: var(--red); }
.press-link svg { width: 16px; height: 16px; }

/* ---------- 20. CTA final ---------- */
.cta-final {
  position: relative;
  overflow: hidden;
  text-align: center;
  border-radius: var(--radius-lg);
  padding: clamp(2.8rem, 6vw, 4.6rem) clamp(1.4rem, 4vw, 3rem);
  background:
    radial-gradient(600px 320px at 50% -20%, rgba(229,185,0,.3), transparent 65%),
    linear-gradient(160deg, var(--dark-3), var(--dark));
  color: #FFF7F4;
  border: 1px solid rgba(229,185,0,.25);
}
.cta-final h2 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); margin-bottom: .8rem; }
.cta-final p { color: var(--on-dark-muted); max-width: 54ch; margin: 0 auto 1.8rem; }
.cta-final .btn-zone { justify-content: center; }
.cta-final .wm { position: absolute; width: 300px; opacity: .06; right: -70px; top: -40px; transform: rotate(8deg); pointer-events: none; }

/* ---------- 21. Footer ---------- */
.site-footer {
  position: relative;
  background: linear-gradient(180deg, var(--dark) 0%, #170B0E 100%);
  color: #EFE3C2;
  overflow: hidden;
  margin-top: var(--section);
}
.footer-top-line { height: 4px; background: linear-gradient(90deg, var(--rose-strong), var(--gold) 40%, var(--rose) 90%); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.15fr;
  gap: 2.4rem;
  padding-block: clamp(2.8rem, 6vw, 4.4rem) 2.4rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 960px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .footer-grid { grid-template-columns: 1fr; } }

.site-footer .f-brand img { width: 74px; margin-bottom: .9rem; }
.site-footer .f-brand p { font-size: 1.08rem; color: var(--on-dark-muted); max-width: 30ch; font-style: italic; font-family: var(--font-display); }
.site-footer h4 { font-family: var(--font-body); font-size: .8rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.1rem; }
.site-footer .f-col ul { display: grid; gap: .5rem; font-size: .95rem; }
.site-footer .f-col a { position: relative; transition: color .25s, padding-left .25s; }
.site-footer .f-col a:hover { color: var(--gold); padding-left: 8px; }
.site-footer .f-hours li { display: flex; justify-content: space-between; gap: 1rem; font-variant-numeric: tabular-nums; }
.site-footer .f-hours .closed { color: #E98A8D; }
.site-footer .f-contact li { display: flex; gap: .6rem; align-items: flex-start; }
.site-footer .f-contact svg { width: 17px; height: 17px; flex: none; margin-top: .3rem; color: var(--gold); }
.site-footer .f-contact a:hover { color: var(--gold); }

.socials { display: flex; gap: .7rem; margin-top: 1.2rem; }
.socials a {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1.5px solid rgba(229,185,0,.4);
  color: var(--gold);
  transition: transform .3s var(--ease-out), background .3s, color .3s;
}
.socials a:hover { transform: translateY(-4px) rotate(-6deg); background: var(--gold); color: var(--dark); }
.socials svg { width: 20px; height: 20px; }

.footer-elephant {
  position: absolute;
  right: -70px;
  bottom: -60px;
  width: 380px;
  opacity: .05;
  pointer-events: none;
}
.footer-bottom {
  border-top: 1px solid rgba(229,185,0,.16);
  padding-block: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 2rem;
  justify-content: space-between;
  font-size: .8rem;
  color: rgba(239,227,194,.65);
  position: relative;
  z-index: 1;
}

/* ---------- 22. Reveal on scroll ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
}
[data-reveal="left"] { transform: translateX(-40px); }
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal="zoom"] { transform: scale(.88); }
[data-reveal].revealed { opacity: 1; transform: none; }

/* ---------- 23. Divider zigzag ---------- */
.zigzag { display: block; width: 100%; height: 16px; color: var(--gold); }

/* ---------- 23a. Animations extra ---------- */
/* Barre de progression de lecture */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--gold) 55%, var(--gold-light));
  transform: scaleX(0);
  transform-origin: 0 50%;
  z-index: 200;
  pointer-events: none;
}

/* Titres dorés scintillants */
.shimmer {
  background: linear-gradient(100deg, var(--gold) 25%, #FFF0A8 42%, var(--gold-light) 50%, var(--gold) 65%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 4.5s linear infinite;
}
@keyframes shimmer { to { background-position: -220% center; } }

/* Éléments décoratifs flottants (feuilles, piments) */
.drift {
  position: absolute;
  pointer-events: none;
  color: var(--gold);
  opacity: .4;
  z-index: 1;
  animation: drift 15s ease-in-out infinite alternate;
  will-change: transform;
}
.drift.red { color: var(--red); }
.drift.green { color: var(--green); }
.drift svg { width: 100%; height: 100%; }
.drift.slow { animation-duration: 22s; }
@keyframes drift {
  from { transform: translate(0, 0) rotate(-10deg); }
  to { transform: translate(28px, -46px) rotate(16deg); }
}
@media (max-width: 860px) { .drift { display: none; } }

/* Photos rondes (cartes Thaï Box) */
.p-illus.photo {
  padding: 0;
  border: 3px solid var(--gold);
  overflow: hidden;
  background: #170C0F;
  width: 110px; height: 110px;
  box-shadow: 0 14px 30px -12px rgba(39,20,24,.5);
}
.p-illus.photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease-out); }
.price-card:hover .p-illus.photo img { transform: scale(1.15) rotate(3deg); }

/* Tilt 3D (piloté par JS) */
.tilt { transform-style: preserve-3d; }

/* ---------- 23aa. Pages légales ---------- */
.legal-wrap { max-width: 780px; margin-inline: auto; }
.legal-block {
  background: #FFFAF9;
  border: 1px solid rgba(138,111,0,.16);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3.5vw, 2.4rem);
  box-shadow: 0 18px 44px -30px rgba(54,35,42,.35);
}
.legal-block + .legal-block { margin-top: 1.6rem; }
.legal-block h2 { font-size: clamp(1.55rem, 2.6vw, 2rem); margin-bottom: .8rem; display: flex; align-items: center; gap: .7rem; }
.legal-block h2 svg { width: 24px; height: 24px; flex: none; color: var(--gold-ink); }
.legal-block h3 { font-size: 1.18rem; margin: 1.2rem 0 .35rem; }
.legal-block p, .legal-block li { font-size: .95rem; color: var(--muted); }
.legal-block p + p { margin-top: .7rem; }
.legal-block ul { display: grid; gap: .45rem; margin-top: .5rem; padding-left: 1.1rem; list-style: disc; }
.legal-block a { color: var(--red); font-weight: 700; }
.legal-block a:hover { text-decoration: underline; }
.legal-block strong { color: var(--ink); }
.legal-updated { text-align: center; color: var(--muted); font-size: .85rem; margin-top: 1.8rem; }

/* Liens légaux du pied de page */
.footer-bottom .legal-links { display: inline-flex; gap: .4rem 1.2rem; flex-wrap: wrap; }
.footer-bottom .legal-links a { text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(229,185,0,.45); transition: color .25s; }
.footer-bottom .legal-links a:hover { color: var(--gold); }

/* ---------- 23ab. Finitions mobile ---------- */
@media (max-width: 640px) {
  :root { --header-h: 66px; }
  .brand img { width: 42px; }
  .brand-text strong { font-size: 1.22rem; }
  .brand-text small { font-size: .56rem; letter-spacing: .18em; }
  .burger { width: 44px; height: 44px; border-radius: 10px; }
}

@media (max-width: 560px) {
  .section { padding-block: 3.1rem; }
  .section-head { margin-bottom: 1.8rem; }
  .display-lg { font-size: clamp(1.95rem, 8.4vw, 2.5rem); }
  .lead { font-size: 1.02rem; }
  .overline { font-size: .7rem; letter-spacing: .16em; }
  .btn { padding: .95rem 1.4rem; font-size: .9rem; }
  .btn-zone { gap: .7rem; }
  .page-hero { padding: 2.7rem 0 2.5rem; }
  .page-hero h1 { font-size: clamp(2.3rem, 10vw, 2.9rem); }

  .marquee { padding-block: .65rem; }
  .marquee-track, .marquee-track span { gap: 1.5rem; }
  .marquee-track span { font-size: 1.02rem; }

  .menu-title { gap: .8rem; }
  .menu-title .m-ico { width: 46px; height: 46px; border-radius: 12px; }
  .menu-title .m-ico svg { width: 26px; height: 26px; }
  .menu-section { padding-block: 2.4rem; }
  .menu-item { padding: .7rem .2rem; }
  .menu-item:hover { transform: none; background: none; }
  .allergen-note { flex-direction: column; gap: .7rem; padding: 1.2rem 1.1rem; }

  .box-banner { padding: 2rem 1.35rem; gap: 1.4rem; }
  .counters { grid-template-columns: repeat(3, 1fr); gap: .6rem; margin-top: 1.8rem; }
  .counter { padding: 1rem .45rem; }
  .counter small { font-size: .6rem; letter-spacing: .06em; }
  .about-grid { gap: 1.8rem; }
  .portrait-card { padding: 2.1rem 1.4rem 1.8rem; }

  .dish-grid { gap: 1rem; }
  .pricing-grid { gap: 1.1rem; }
  .price-card { padding: 2rem 1.4rem 1.7rem; }
  .steps-line { gap: 2rem; }
  .info-tile { padding: 1.15rem 1rem; }
  .review-card { padding: 1.6rem 1.3rem; }
  .platform-badge { padding: .7rem 1.15rem; gap: .6rem; }
  .platform-badge .score { font-size: 1.25rem; }

  .gallery-grid { grid-template-columns: 1fr 1fr; gap: .8rem; }
  .gallery-tile .tile-label { font-size: .98rem; padding: 1.4rem .75rem .65rem; }
  .gallery-tile .tile-label svg { display: none; }

  .contact-grid { gap: 1.5rem; }
  .contact-card { padding: 1.45rem 1.2rem; }
  .contact-card h3 { font-size: 1.4rem; }
  .hours-table td { padding: .65rem .4rem; font-size: .88rem; }
  .hours-table tr.today td:first-child::after { display: inline-block; margin-left: .35rem; }
  .form-grid { gap: .9rem; }
  .field textarea { min-height: 110px; }

  .cta-final { padding: 2.5rem 1.35rem; }
  .cta-final .btn-zone .btn { width: 100%; justify-content: center; }
  .toast { font-size: .84rem; padding: .8rem 1.2rem; bottom: 1rem; }
  .footer-bottom { justify-content: center; text-align: center; }
  .site-footer .f-brand img { width: 60px; }
  .legal-block h2 { font-size: 1.45rem; }
}

/* ---------- 23b. Mode capture (maquette) ---------- */
.shot-mode main { animation: none; }
.shot-mode .hero { min-height: 760px; }
.shot-mode [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
.shot-mode *, .shot-mode *::before, .shot-mode *::after { animation: none !important; }

/* ---------- 24. Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
  .marquee-track { animation: none; }
  [data-reveal] { opacity: 1; transform: none; }
}
