/* ============================================================
   LA STATION — Metz · Bistrot moderne & tapas à la française
   DA "wavy retro-modern" — aucune ligne droite entre sections
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --orange:      #E85A2A;
  --orange-soft: #F4A261;
  --orange-deep: #7E2B13;
  --cream:       #F5EDDF;
  --cream-2:     #F8EDD9;
  --green:       #3E5C4B;
  --terracotta:  #C0392B;
  --charcoal:    #191512;
  --charcoal-2:  #120F0C;
  --charcoal-3:  #0D0B09;
  --neon:        #FFB347;
  --ink:         #2A1F17;

  --font-display: "Clash Display", "Arial Black", sans-serif;
  --font-body:    "General Sans", "Segoe UI", sans-serif;
  --font-script:  "Yellowtail", cursive;

  --ease-squish: cubic-bezier(.34, 1.56, .64, 1);
  --ease-out:    cubic-bezier(.22, 1, .36, 1);

  --wrap: min(1180px, 92vw);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: 450;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; background: none; border: none; }

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

/* Grain organique sur tout le site */
body::after {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 90;
  opacity: .055;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Blob qui suit le curseur */
.cursor-blob {
  position: fixed;
  width: 420px; height: 420px;
  left: 0; top: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,162,97,.55), rgba(244,162,97,0) 65%);
  pointer-events: none;
  z-index: 80;
  mix-blend-mode: soft-light;
  transform: translate(-50%, -50%);
  will-change: transform;
}
@media (hover: none) { .cursor-blob { display: none; } }

/* ---------- Typo utilitaires ---------- */
.script { font-family: var(--font-script); font-weight: 400; }

.overline {
  display: inline-flex; align-items: center; gap: .6em;
  font-size: .78rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
}
.overline::before { content: "✶"; font-size: 1em; }

/* Titres cintrés (SVG textPath) */
.arc-title { width: min(640px, 92%); margin-inline: auto; display: block; overflow: visible; }
.arc-title text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 64px;
  letter-spacing: .02em;
  fill: currentColor;
  text-transform: uppercase;
}

/* ---------- Boutons pilule ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .6em;
  padding: .9em 1.8em;
  border-radius: 999px;
  font-weight: 600; font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.btn--solid {
  background: var(--orange); color: var(--cream);
  box-shadow: 0 1px 2px rgba(42,31,23,.18);
}
.btn--solid:hover { background: #D14E21; box-shadow: 0 4px 14px -4px rgba(126,43,19,.5); }
.btn--solid:active { background: var(--terracotta); box-shadow: none; }
.btn--ghost {
  border: 1.5px solid currentColor;
}
.btn--ghost:hover { background: rgba(42,31,23,.06); }
.golden .btn--ghost:hover, .night .btn--ghost:hover { background: rgba(245,237,223,.12); }

/* Icônes SVG inline (Lucide, stroke) */
.icon {
  width: 1.15em; height: 1.15em;
  flex: none;
  fill: none; stroke: currentColor;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.icon--fill { fill: currentColor; stroke: none; }

/* ---------- Header ---------- */
.site-head {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 60;
  padding: .9rem 0;
  transition: padding .4s ease;
}
/* Le fond flouté vit dans un pseudo-élément : un backdrop-filter posé sur
   .site-head en ferait le containing block du menu mobile en position:fixed. */
.site-head::before {
  content: "";
  position: absolute; inset: 0;
  z-index: -1;
  opacity: 0;
  background: rgba(245,237,223,.86);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(42,31,23,.08);
  transition: opacity .4s ease;
}
.site-head.is-scrolled { padding: .5rem 0; }
.site-head.is-scrolled::before { opacity: 1; }
.site-head__in {
  width: var(--wrap); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.logo-link { display: flex; align-items: center; gap: .7rem; text-decoration: none; }
.logo-link svg { width: 52px; height: 52px; }
.logo-link strong {
  font-family: var(--font-display); font-weight: 700; font-size: 1.15rem;
  letter-spacing: .01em;
}

.main-nav { display: flex; align-items: center; gap: .3rem; }
.main-nav a {
  text-decoration: none; font-weight: 550; font-size: .95rem;
  padding: .5em 1em; border-radius: 999px;
  transition: background-color .2s ease, color .2s ease;
}
.main-nav a:hover { background: rgba(232,90,42,.12); color: var(--terracotta); }
.main-nav .btn { margin-left: .5rem; padding: .6em 1.4em; font-size: .92rem; }

.burger {
  display: none;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--orange);
  position: relative; z-index: 71;
}
.burger span, .burger::before, .burger::after {
  content: ""; display: block;
  width: 20px; height: 2.5px; border-radius: 2px;
  background: var(--cream);
  margin: 4px auto;
  transition: transform .35s var(--ease-squish), opacity .25s;
}
.burger[aria-expanded="true"] span { opacity: 0; }
.burger[aria-expanded="true"]::before { transform: translateY(6.5px) rotate(45deg); }
.burger[aria-expanded="true"]::after  { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 900px) {
  .burger { display: block; }
  .main-nav {
    position: fixed; inset: 0;
    z-index: 70;
    flex-direction: column; justify-content: center; gap: 1.2rem;
    background: var(--orange);
    border-radius: 0 0 50% 50% / 0 0 8% 8%;
    transform: translateY(-105%);
    transition: transform .55s var(--ease-out);
  }
  .main-nav.is-open { transform: translateY(0); }
  .main-nav a { color: var(--cream); font-family: var(--font-display); font-size: 1.7rem; font-weight: 600; }
  .main-nav a:hover { background: rgba(245,237,223,.15); }
  .main-nav .btn { margin: 1rem 0 0; background: var(--cream); color: var(--orange); box-shadow: 0 6px 0 var(--orange-deep); font-size: 1.1rem; }
}

/* ---------- Logo SVG ---------- */
.logo-round text { text-transform: uppercase; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse 60% 45% at 78% 8%, rgba(244,162,97,.5), transparent 70%),
    radial-gradient(ellipse 45% 35% at 10% 85%, rgba(62,92,75,.12), transparent 70%),
    var(--cream);
  padding: clamp(7rem, 14vh, 10rem) 0 0;
  overflow: hidden;
}
.hero__in {
  width: var(--wrap); margin-inline: auto;
  display: grid; gap: 3rem;
  align-items: center;
  padding-bottom: clamp(3rem, 7vw, 5.5rem);
}
@media (min-width: 960px) {
  .hero__in { grid-template-columns: 1.05fr .95fr; gap: 2rem; }
}

.hero__txt .overline { color: var(--terracotta); }
.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(4.2rem, 13vw, 9.5rem);
  line-height: .92;
  letter-spacing: -.015em;
  color: var(--ink);
  margin: .15em 0 .12em;
}
.hero__title .script {
  display: block;
  font-size: .34em;
  color: var(--orange);
  transform: rotate(-4deg) translateX(.25em);
  margin-top: .1em;
}
.hero__tagline {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  max-width: 34ch;
  font-weight: 500;
  margin-bottom: 1.8rem;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; margin-bottom: 1.6rem; }

.badge-trip {
  display: inline-flex; align-items: center; gap: .6em;
  background: var(--green); color: var(--cream);
  font-size: .85rem; font-weight: 550;
  padding: .55em 1.2em;
  border-radius: 999px;
}
.badge-trip strong { font-size: 1.05em; }
.stars { display: inline-flex; gap: .18em; color: var(--neon); }
.stars .icon { width: .95em; height: .95em; }

/* Photo héro en blob morphant */
.hero__visual { position: relative; }
.hero__blob {
  border-radius: 58% 42% 55% 45% / 52% 48% 62% 38%;
  overflow: hidden;
  aspect-ratio: 4 / 3.6;
  box-shadow: 0 30px 60px -20px rgba(126,43,19,.45);
  animation: blob-idle 14s ease-in-out infinite alternate;
}
.hero__blob img { width: 100%; height: 100%; object-fit: cover; }
@keyframes blob-idle {
  0%   { border-radius: 58% 42% 55% 45% / 52% 48% 62% 38%; }
  50%  { border-radius: 45% 55% 48% 52% / 60% 40% 50% 50%; }
  100% { border-radius: 52% 48% 60% 40% / 45% 55% 42% 58%; }
}

/* Badge circulaire tournant */
.spin-badge {
  position: absolute;
  width: clamp(120px, 16vw, 175px);
  height: clamp(120px, 16vw, 175px);
  right: -1.2rem; bottom: -1.6rem;
  z-index: 3;
  filter: drop-shadow(0 8px 18px rgba(42,31,23,.3));
}
.spin-badge__rot { animation: spin 26s linear infinite; transform-origin: 50% 50%; }
.spin-badge text {
  font-family: var(--font-display); font-weight: 600;
  font-size: 12.5px; letter-spacing: .18em;
  fill: var(--cream);
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Vagues de transition ---------- */
.wdiv { display: block; width: 100%; line-height: 0; }
.wdiv svg { display: block; width: 100%; height: clamp(70px, 11vw, 150px); }
.wdiv [data-depth] { will-change: transform; }

/* ---------- Marquee ondulé ---------- */
.marquee {
  background: var(--green);
  color: var(--cream);
  overflow: hidden;
  padding: 1.1rem 0 1.3rem;
  transform: rotate(-1.6deg) scale(1.03);
  position: relative; z-index: 5;
}
.marquee--night { background: var(--terracotta); transform: rotate(1.4deg) scale(1.03); }
.marquee__track {
  display: flex; gap: 2.6rem;
  width: max-content;
  animation: marquee 26s linear infinite;
}
.marquee span {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  letter-spacing: .1em;
  white-space: nowrap;
}
/* ligne de base ondulée */
.marquee span:nth-child(4n+1) { transform: translateY(-5px) rotate(-1.5deg); }
.marquee span:nth-child(4n+2) { transform: translateY(4px); }
.marquee span:nth-child(4n+3) { transform: translateY(-2px) rotate(1.5deg); }
.marquee span:nth-child(4n+4) { transform: translateY(6px); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Sections génériques ---------- */
.section { position: relative; padding: clamp(4rem, 9vw, 7rem) 0; }
.section__in { width: var(--wrap); margin-inline: auto; }
.section__head { text-align: center; margin-bottom: clamp(2.5rem, 6vw, 4.5rem); }
.section__head .overline { justify-content: center; }
.section__head p.lead { max-width: 52ch; margin: 1rem auto 0; font-size: 1.08rem; }

/* ---------- LE CONCEPT ---------- */
.concept { background: var(--cream-2); }
.concept__grid {
  display: grid; gap: 2.5rem;
  position: relative;
}
@media (min-width: 900px) {
  .concept__grid { grid-template-columns: 1fr 1fr; gap: 0; }
}
.duo {
  padding: clamp(1.8rem, 4vw, 3rem);
  position: relative;
}
.duo__blob {
  border-radius: 55% 45% 50% 50% / 48% 55% 45% 52%;
  overflow: hidden; aspect-ratio: 5/4;
  margin-bottom: 1.6rem;
  transition: border-radius 1s var(--ease-out), transform .7s var(--ease-out);
}
.duo:hover .duo__blob {
  border-radius: 45% 55% 58% 42% / 55% 42% 58% 45%;
}
.duo__blob img { width: 100%; height: 100%; object-fit: cover; }
.duo h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  margin-bottom: .5rem;
  display: flex; align-items: center; gap: .4em;
}
.duo h3 .icon { width: .8em; height: .8em; stroke-width: 2.2; }
.duo p { max-width: 42ch; }
.duo__tag {
  display: inline-block;
  font-size: .78rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  padding: .4em 1.1em; border-radius: 999px;
  margin-bottom: 1rem;
}
.duo--midi .duo__tag { background: rgba(232,90,42,.15); color: var(--terracotta); }
.duo--midi h3 { color: var(--orange); }

/* La carte SOIR : mini-nuit dans la journée */
.duo--soir {
  background: var(--charcoal);
  color: var(--cream);
  border-radius: 4rem 7rem 4.5rem 6.5rem / 6rem 4.5rem 7rem 4.5rem;
  box-shadow: 0 24px 50px -18px rgba(25,21,18,.5);
}
.duo--soir .duo__tag { background: rgba(255,179,71,.16); color: var(--neon); }
.duo--soir h3 { color: var(--neon); text-shadow: 0 0 18px rgba(255,179,71,.5); }

/* séparateur ondulé vertical entre les deux (desktop) */
.concept__squiggle {
  display: none;
  position: absolute; left: 50%; top: 4%; bottom: 4%;
  transform: translateX(-50%);
  width: 40px; height: 92%;
  color: var(--orange-soft);
}
@media (min-width: 900px) { .concept__squiggle { display: block; } }

/* ---------- LA CARTE (aperçu golden hour) ---------- */
.golden {
  background: linear-gradient(178deg, var(--orange-soft) 0%, var(--orange) 46%, var(--terracotta) 78%, var(--orange-deep) 100%);
  color: var(--cream);
}
.carte-cols { display: grid; gap: 2.2rem; }
@media (min-width: 860px) { .carte-cols { grid-template-columns: repeat(3, 1fr); } }
.carte-col {
  background: rgba(245,237,223,.1);
  border: 1.5px solid rgba(245,237,223,.28);
  border-radius: 2.4rem 1.2rem 2.4rem 1.2rem / 1.6rem 2.4rem 1.4rem 2.4rem;
  padding: 1.8rem 1.6rem;
  backdrop-filter: blur(4px);
  transition: background-color .25s ease, border-color .25s ease;
}
.carte-col:hover { background: rgba(245,237,223,.16); border-color: rgba(245,237,223,.5); }
.carte-col h3 {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 700;
  margin-bottom: 1rem; display: flex; gap: .5em; align-items: center;
}
.carte-col h3 .icon { width: 1em; height: 1em; }
.carte-col li {
  padding: .55em 0;
  border-bottom: 1px dashed rgba(245,237,223,.3);
  font-weight: 500; font-size: .98rem;
}
.carte-col li:last-child { border-bottom: none; }
.carte-note { text-align: center; margin-top: 2.6rem; }
.carte-note .veg {
  font-size: 1.05rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center; gap: .5em;
  margin-bottom: 1.4rem;
}

/* Pastille végétarien */
.tag-veg {
  display: inline-flex; align-items: center; gap: .35em;
  font-size: .72rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--green);
  background: rgba(62,92,75,.12);
  padding: .25em .8em; border-radius: 999px;
  vertical-align: middle;
}
.menu-tapas .tag-veg, .menu-drinks .tag-veg {
  color: #A8C7B6; background: rgba(245,237,223,.1);
}
.tag-veg .icon { width: .95em; height: .95em; }

/* ---------- Rayures store banne, en vague ---------- */
.awning-band { line-height: 0; margin: -2px 0; }
.awning-band svg { display: block; width: 100%; height: clamp(46px, 7vw, 90px); }

/* ---------- GALERIE ---------- */
.gallery { color: var(--cream); }
.filter-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: .7rem; margin-bottom: 2.8rem; }
.pill {
  padding: .6em 1.5em; border-radius: 999px;
  border: 1.5px solid rgba(245,237,223,.45);
  color: var(--cream); font-weight: 600; font-size: .92rem;
  cursor: pointer;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}
.pill:hover { border-color: var(--cream); background: rgba(245,237,223,.1); }
.pill.is-active { background: var(--cream); color: var(--terracotta); border-color: var(--cream); }

.masonry {
  columns: 2; column-gap: 1.2rem;
  width: var(--wrap); margin-inline: auto;
}
@media (min-width: 760px)  { .masonry { columns: 3; } }
@media (min-width: 1100px) { .masonry { columns: 4; } }
.masonry figure {
  break-inside: avoid;
  margin-bottom: 1.2rem;
  overflow: hidden;
  transition: border-radius .9s var(--ease-out), transform .6s var(--ease-out), opacity .5s, scale .5s;
}
.masonry figure:nth-child(5n+1) { border-radius: 54% 46% 48% 52% / 42% 52% 48% 58%; }
.masonry figure:nth-child(5n+2) { border-radius: 2.6rem 46% 2.6rem 46% / 2.6rem 40% 2.6rem 40%; }
.masonry figure:nth-child(5n+3) { border-radius: 48% 52% 55% 45% / 55% 48% 52% 45%; }
.masonry figure:nth-child(5n+4) { border-radius: 46% 2.6rem 46% 2.6rem / 40% 2.6rem 40% 2.6rem; }
.masonry figure:nth-child(5n+5) { border-radius: 52% 48% 42% 58% / 48% 58% 42% 52%; }
.masonry figure:hover {
  border-radius: 42% 58% 52% 48% / 58% 42% 55% 45%;
}
.masonry figure.is-hidden { display: none; }
.masonry img { width: 100%; transition: transform 1.2s var(--ease-out); }
.masonry figure:hover img { transform: scale(1.08); }

/* ---------- NUIT (avis + infos) ---------- */
.night { background: var(--charcoal); color: var(--cream); }

.neon-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.2rem, 6vw, 4rem);
  color: var(--neon);
  text-shadow:
    0 0 6px rgba(255,179,71,.9),
    0 0 24px rgba(255,179,71,.55),
    0 0 60px rgba(232,90,42,.5);
  animation: neon-breathe 4.5s ease-in-out infinite;
}
@keyframes neon-breathe {
  0%, 100% { text-shadow: 0 0 6px rgba(255,179,71,.9), 0 0 24px rgba(255,179,71,.55), 0 0 60px rgba(232,90,42,.5); }
  50%      { text-shadow: 0 0 4px rgba(255,179,71,.7), 0 0 14px rgba(255,179,71,.35), 0 0 34px rgba(232,90,42,.3); }
}

/* Avis — carrousel ondulé */
.reviews {
  display: flex; gap: 1.6rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 2.5rem .4rem 3rem;
  scrollbar-width: none;
}
.reviews::-webkit-scrollbar { display: none; }
.review {
  scroll-snap-align: center;
  flex: 0 0 min(340px, 82vw);
  background: var(--charcoal-2);
  border: 1.5px solid rgba(255,179,71,.25);
  border-radius: 2.6rem 1.4rem 2.6rem 1.4rem / 1.8rem 2.6rem 1.6rem 2.6rem;
  padding: 2rem 1.8rem;
  transition: border-color .25s ease;
}
.review:nth-child(odd)  { transform: translateY(-12px); }
.review:nth-child(even) { transform: translateY(12px); }
.review:hover { border-color: var(--neon); }
.review .stars { font-size: 1.05rem; }
.review blockquote { margin: .9rem 0 1.1rem; font-size: 1.02rem; line-height: 1.55; }
.review cite { font-style: normal; font-weight: 600; color: var(--orange-soft); font-size: .9rem; }

/* Infos pratiques */
.infos { background: var(--charcoal-2); }
.infos__grid { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 920px) { .infos__grid { grid-template-columns: 1fr 1fr; gap: 3.5rem; } }
.info-item { display: flex; gap: 1rem; align-items: flex-start; padding: .85rem 0; }
.info-item .pict {
  flex: 0 0 46px; height: 46px;
  display: grid; place-items: center;
  background: rgba(255,179,71,.13);
  border-radius: 46% 54% 48% 52% / 52% 44% 56% 48%;
  color: var(--neon);
}
.info-item .pict .icon { width: 20px; height: 20px; }
.info-item h4 { font-family: var(--font-display); font-weight: 600; font-size: 1.06rem; color: var(--neon); }
.info-item p, .info-item a { font-size: .98rem; }
.info-item a { color: var(--orange-soft); }
.terrasse-flag {
  display: inline-flex; align-items: center; gap: .55em;
  margin-top: 1.2rem;
  background: var(--green); color: var(--cream);
  padding: .6em 1.4em; border-radius: 999px;
  font-weight: 600;
}
.map-blob {
  border-radius: 8% 15% 10% 18% / 14% 9% 16% 10%;
  overflow: hidden;
  border: 3px solid rgba(255,179,71,.35);
  box-shadow: 0 0 40px rgba(255,179,71,.12);
  aspect-ratio: 4/3.4;
}
.map-blob iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(.25) sepia(.14); }

/* ---------- Footer ---------- */
.footer { background: var(--charcoal-3); color: var(--cream); padding: 3.2rem 0 2.4rem; }
.footer__in {
  width: var(--wrap); margin-inline: auto;
  display: flex; flex-direction: column; align-items: center; gap: 1.4rem;
  text-align: center;
}
.footer__logo svg { width: 92px; height: 92px; animation: spin 32s linear infinite; }
.footer nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.4rem; }
.footer nav a { text-decoration: none; font-size: .92rem; opacity: .85; }
.footer nav a:hover { opacity: 1; color: var(--neon); }
.footer small { opacity: .6; font-size: .82rem; line-height: 1.8; }
.footer small a { color: var(--orange-soft); }

/* ---------- Révélations au scroll ---------- */
.rv { opacity: 0; transform: translateY(38px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
.rv.on { opacity: 1; transform: none; }
.rv-d1 { transition-delay: .1s; } .rv-d2 { transition-delay: .22s; } .rv-d3 { transition-delay: .34s; }

/* ---------- Page CARTE ---------- */
.carte-hero {
  background:
    radial-gradient(ellipse 55% 40% at 85% 12%, rgba(244,162,97,.45), transparent 70%),
    var(--cream);
  padding: clamp(8rem, 16vh, 11rem) 0 clamp(2rem, 4vw, 3rem);
  text-align: center;
}
.menu-section { padding: clamp(3rem, 7vw, 5rem) 0; }
.menu-section .section__in { max-width: 760px; }
.menu-section h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.9rem, 4.5vw, 2.8rem);
  display: flex; align-items: center; gap: .45em;
  margin-bottom: .4rem;
}
.menu-section h2 .icon { width: .75em; height: .75em; stroke-width: 2.2; }
.menu-section .when { font-size: .95rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; opacity: .75; margin-bottom: 1.8rem; }
.dish { padding: 1.1rem 0; border-bottom: 1.5px dashed rgba(42,31,23,.22); display: flex; justify-content: space-between; gap: 1.5rem; align-items: baseline; }
.dish:last-child { border-bottom: none; }
.dish .name { font-weight: 600; font-size: 1.08rem; }
.dish .desc { font-size: .92rem; opacity: .8; }
.dish .prix { font-family: var(--font-display); font-weight: 600; white-space: nowrap; }
.menu-midi  { background: var(--cream-2); }
.menu-tapas { background: var(--charcoal); color: var(--cream); }
.menu-tapas .dish { border-color: rgba(245,237,223,.2); }
.menu-tapas h2 { color: var(--neon); text-shadow: 0 0 20px rgba(255,179,71,.45); }
.menu-drinks { background: var(--green); color: var(--cream); }
.menu-drinks .dish { border-color: rgba(245,237,223,.25); }
.menu-cta { text-align: center; padding: clamp(3rem, 7vw, 5rem) 0; background: var(--cream); }

/* ---------- Accessibilité / mouvement réduit ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .15s !important;
  }
  .marquee__track { animation: none; }
  .cursor-blob { display: none; }
  .rv { opacity: 1; transform: none; }
}

:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; border-radius: 4px; }
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 100;
  background: var(--orange); color: var(--cream);
  padding: .8em 1.4em; border-radius: 0 0 1em 0;
}
.skip-link:focus { left: 0; }
