@import "fonts.css";

/* ------------------------------------------------------------------
   La Voûte — feuille de style
   Charte graphique v1 (juillet 2026) :
   blanc dominant (70 %), noir #231F20 (20 %), rouge #ED1C24 (10 % max).
   Police unique : Poppins. Angles arrondis 8–10 px. Aucun dégradé.
------------------------------------------------------------------- */

:root {
  --red: #ed1c24;
  --red-dark: #c8141b;
  --ink: #231f20;
  --white: #ffffff;
  --rose: #ffd9da;
  --rose-veil: #fdf2f3;
  --gray: #7a7a7a;
  --rule: #e4e4e4;
  --rule-soft: #f0f0f0;

  --radius: 9px;
  /* Largeur du contenu : figée à 1180 px jusqu'au format portable, puis
     élastique jusqu'à 1520 px sur les grands écrans. */
  --maxw: min(1520px, max(1180px, 92vw));
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section: clamp(3.5rem, 7vw, 8rem);

  --sans: "Poppins", "Montserrat", "Century Gothic", system-ui, sans-serif;
  color-scheme: light;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 10rem;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration-color: var(--rule); text-underline-offset: 3px; }
a:hover { text-decoration-color: var(--red); }

h1, h2, h3, h4 { margin: 0; line-height: 1.15; font-weight: 300; letter-spacing: -0.01em; }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }
ul { margin: 0; padding: 0; }

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: 3px;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  z-index: 100;
}
.skip:focus { left: 0; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap--narrow { max-width: 820px; }

.section { padding-block: var(--section); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section + .section { padding-top: 0; }

/* ---------- éléments du système ---------- */

.kicker {
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 1rem;
}
.kicker--ink { color: var(--ink); }

.rule-red {
  width: 44px;
  height: 3px;
  background: var(--red);
  border: 0;
  margin: 1.25rem 0 0;
}

.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
  color: var(--gray);
  max-width: 62ch;
}

.h-display {
  font-size: clamp(2.35rem, 5.4vw, 4.9rem);
  font-weight: 300;
  line-height: 1.05;
}
.h-section {
  font-size: clamp(1.75rem, 3vw, 2.95rem);
  font-weight: 300;
}
.h-sub {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* boutons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease,
    transform 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: none; }
.btn--red { background: var(--red); color: var(--white); }
.btn--red:hover { background: var(--red-dark); }
.btn--ink { background: var(--ink); color: var(--white); }
.btn--ink:hover { background: #000; }
.btn--ghost { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn--ghost:hover { background: var(--ink); color: var(--white); }
.btn--light { border-color: rgba(255, 255, 255, 0.45); color: var(--white); }
.btn--light:hover { background: var(--white); color: var(--ink); }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* ---------- en-tête ---------- */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--rule);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: 84px;
  padding-block: 0.75rem;
}
.header__logo { flex: 0 0 auto; line-height: 0; }
.header__logo img { width: clamp(168px, 20vw, 232px); }
.header__nav { margin-left: auto; }
.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2rem);
  list-style: none;
}
.nav-list a {
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  padding-block: 0.4rem;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.nav-list > li:not(.lang) > a:not(.btn) { position: relative; }
.nav-list > li:not(.lang) > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.nav-list > li:not(.lang) > a:not(.btn):hover::after,
.nav-list > li:not(.lang) > a[aria-current="page"]::after { transform: scaleX(1); }

.lang {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gray);
}
.lang a { text-decoration: none; }
.lang a[aria-current] { color: var(--ink); }
.lang span { color: var(--rule); }

.nav-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 0.55rem 0.85rem;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

@media (max-width: 940px) {
  .nav-toggle { display: inline-block; }
  .header__nav {
    display: none;
    position: absolute;
    inset: 100% 0 auto 0;
    background: var(--white);
    border-bottom: 1px solid var(--rule);
    padding: 1rem var(--gutter) 1.75rem;
    margin: 0;
  }
  .header__nav[data-open="true"] { display: block; }
  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .nav-list li { border-bottom: 1px solid var(--rule-soft); }
  .nav-list li:last-child { border-bottom: 0; }
  .nav-list a { display: block; padding: 0.9rem 0; border-bottom: 0; }
  .nav-list a::after { display: none; }
  .nav-list .btn { margin-top: 1rem; width: 100%; }
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3.5rem, 8vw, 6.5rem) clamp(3rem, 7vw, 5.5rem);
  border-bottom: 1px solid var(--rule);
}
.hero__village {
  position: absolute;
  right: -6%;
  bottom: -6%;
  width: min(56%, 780px);
  opacity: 0.13;
  pointer-events: none;
  user-select: none;
}
.hero__grid {
  position: relative;
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}
@media (min-width: 900px) {
  .hero__grid { grid-template-columns: 1.05fr 0.95fr; }
}
.hero__inner { position: relative; max-width: 46rem; }
.hero__text { margin-top: 1.5rem; max-width: 44ch; font-size: clamp(1.02rem, 1.3vw, 1.25rem); color: var(--gray); }
.hero .btn-row { margin-top: 2.25rem; }
.hero__media {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--rose-veil);
}
.hero__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
@media (min-width: 900px) {
  .hero__media img { aspect-ratio: 1 / 1; max-height: 600px; }
}

.strip {
  background: var(--ink);
  color: var(--white);
}
.strip ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem clamp(1.5rem, 4vw, 3rem);
  list-style: none;
  padding-block: 1.1rem;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
}
.strip li { display: flex; align-items: center; gap: 0.55rem; }
.strip li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex: 0 0 auto;
}

/* bandeau rouge — marque le début d'un support ou d'une grande section */
.band {
  background: var(--red);
  color: var(--white);
  padding-block: clamp(2.5rem, 5vw, 4rem);
}
.band .kicker { color: var(--rose); }
.band h2 { color: var(--white); }
.band p { color: var(--rose); }

/* ---------- grilles ---------- */

.grid { display: grid; gap: clamp(1.5rem, 3vw, 2.5rem); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr)); }

.split {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
}
@media (min-width: 880px) {
  .split { grid-template-columns: 0.9fr 1.1fr; }
  .split--even { grid-template-columns: 1fr 1fr; }
}

/* ---------- cartes plat ---------- */

.dish {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.dish__media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--rose-veil);
  aspect-ratio: 3 / 2;
}
.dish__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.dish:hover .dish__media img { transform: scale(1.04); }
.dish__name { font-size: 1rem; font-weight: 600; line-height: 1.35; }
.dish__text { font-size: 0.9rem; color: var(--gray); }

.tag {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius);
  padding: 0.2rem 0.6rem;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 210px), 1fr));
  gap: 0.75rem;
}
.gallery__item {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
}
.gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.gallery__item:hover img { transform: scale(1.05); }

/* ---------- carte / menu ---------- */

.menu-nav {
  position: sticky;
  top: 84px;
  z-index: 40;
  background: var(--white);
  border-bottom: 1px solid var(--rule);
}
.menu-nav ul {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  overflow-x: auto;
  padding-block: 0.85rem;
  scrollbar-width: thin;
}
.menu-nav a {
  display: block;
  white-space: nowrap;
  text-decoration: none;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 0.5rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.menu-nav a:hover { border-color: var(--ink); }

.menu-group { padding-top: clamp(3rem, 6vw, 5rem); }
.menu-group__head { margin-bottom: clamp(2rem, 4vw, 3rem); }

.menu-section { margin-top: clamp(2.25rem, 4vw, 3.25rem); }
.menu-section__title {
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding-bottom: 0.7rem;
  border-bottom: 2px solid var(--ink);
}
.menu-section__note {
  margin-top: 0.85rem;
  font-size: 0.85rem;
  color: var(--gray);
}

/* Les listes de la carte restent lisibles : au-delà de 1180 px, le prix
   s'éloignerait trop du nom du plat. Le reste de la page, lui, s'élargit. */
.menu-group__head,
.menu-section,
.menu-section__title,
.menu-list,
.legend-grid {
  max-width: 1180px;
  margin-inline: auto;
}

.menu-list { list-style: none; }
.menu-list--2 { columns: 2; column-gap: clamp(2rem, 5vw, 4rem); }
@media (max-width: 720px) { .menu-list--2 { columns: 1; } }

.menu-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  column-gap: 1rem;
  padding-block: 0.95rem;
  border-bottom: 1px solid var(--rule-soft);
  break-inside: avoid;
}
.menu-item--photo { grid-template-columns: 78px minmax(0, 1fr) auto; }
.menu-item__body { min-width: 0; }
.menu-item__name { font-size: 0.98rem; font-weight: 600; line-height: 1.4; }
.menu-item__desc { font-size: 0.86rem; color: var(--gray); margin-top: 0.15rem; }
.menu-item__alt { font-size: 0.78rem; color: var(--gray); margin-top: 0.2rem; }
.menu-item__kind {
  display: inline-block;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.15rem;
}
.menu-item__price {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.menu-item__price small { font-weight: 500; color: var(--gray); }
.menu-item__size { color: var(--gray); font-weight: 500; font-size: 0.82rem; }
.menu-item .tag { margin-right: 0.5rem; vertical-align: 0.1em; }

.menu-item__thumb {
  width: 78px;
  height: 78px;
  border-radius: var(--radius);
  object-fit: cover;
  background: var(--rose-veil);
  align-self: start;
}
button.menu-item__thumb {
  padding: 0;
  border: 0;
  overflow: hidden;
  cursor: zoom-in;
  display: block;
}
button.menu-item__thumb img { width: 100%; height: 100%; object-fit: cover; }
.menu-item--photo[data-photo] { cursor: zoom-in; }
.menu-item__thumb--empty { background: none; }

@media (prefers-reduced-motion: no-preference) {
  button.menu-item__thumb img { transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1); }
  .menu-item--photo[data-photo]:hover button.menu-item__thumb img { transform: scale(1.08); }
}
@media (max-width: 560px) {
  .menu-item--photo { grid-template-columns: 62px minmax(0, 1fr) auto; }
  .menu-item__thumb { width: 62px; height: 62px; }
}

.formule {
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: var(--white);
  display: flex;
  flex-direction: column;
}
.formule__price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  margin-top: 0.35rem;
}
.formule__sub { font-size: 0.82rem; color: var(--gray); }
.formule__course { margin-top: 1.5rem; }
.formule__label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--rule);
  display: block;
}
.formule__choices { list-style: none; margin-top: 0.75rem; }
.formule__choices li {
  font-size: 0.9rem;
  padding-block: 0.3rem;
}
.formule__choices small { display: block; color: var(--gray); font-size: 0.78rem; }
.formule__note { margin-top: 0.75rem; font-size: 0.78rem; color: var(--gray); }

.notice {
  background: var(--rose-veil);
  border-radius: var(--radius);
  padding: 1.1rem 1.35rem;
  font-size: 0.86rem;
  color: var(--ink);
}
.notice strong { font-weight: 600; }

/* ---------- infos ---------- */

.info-list { list-style: none; }
.info-list li {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  justify-content: space-between;
  padding-block: 0.75rem;
  border-bottom: 1px solid var(--rule-soft);
  font-size: 0.92rem;
}
.info-list dt,
.info-list .info-label {
  font-weight: 600;
}
.info-list .info-value { color: var(--gray); text-align: right; }

.facts { list-style: none; display: grid; gap: 0.65rem; }
.facts li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.94rem;
}
.facts li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 0.55rem;
  border-radius: 2px;
  background: var(--red);
  flex: 0 0 auto;
}

.map {
  align-self: stretch;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--rose-veil);
}
.map__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  padding: clamp(2rem, 6vw, 4rem) 1.5rem;
  min-height: 100%;
}
.map__placeholder p { font-size: 0.85rem; color: var(--gray); max-width: 34ch; }
.map iframe { display: block; width: 100%; height: 420px; border: 0; }

/* ---------- formulaire ---------- */

.form { display: grid; gap: 1.1rem; }
.form__row { display: grid; gap: 1.1rem; }
@media (min-width: 620px) { .form__row { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: 0.4rem; }
.field label {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.field input,
.field textarea {
  font: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 0.8rem 0.95rem;
  width: 100%;
}
.field input:focus,
.field textarea:focus { border-color: var(--ink); outline: none; }
.field textarea { min-height: 150px; resize: vertical; }
.field--check { grid-template-columns: auto 1fr; align-items: start; gap: 0.65rem; }
.field--check label { text-transform: none; letter-spacing: 0; font-weight: 400; font-size: 0.85rem; color: var(--gray); }
.field--check input { width: auto; margin-top: 0.2rem; }
.form__status { font-size: 0.88rem; font-weight: 500; }
.form__status[data-state="ok"] { color: var(--ink); }
.form__status[data-state="error"] { color: var(--red); }
.hp { position: absolute; left: -9999px; opacity: 0; }

/* ---------- allergènes ---------- */

.legend-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 165px), 1fr));
  gap: 0.5rem;
}
.legend-grid li {
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 0.6rem 0.8rem;
  font-size: 0.84rem;
}
.legend-grid span { display: block; color: var(--gray); font-size: 0.74rem; }
.legend-grid b { font-weight: 600; }
.legend-grid .num { color: var(--red); font-weight: 800; margin-right: 0.35rem; }

.allergen-badges { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-top: 0.3rem; }
.allergen-badges span {
  font-size: 0.72rem;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 0.12rem 0.5rem;
  color: var(--gray);
}
.allergen-badges .none { border-style: dashed; }
.allergen-badges .traces { border-color: var(--rose); background: var(--rose-veil); }


/* ---------- aperçu photo ---------- */
/* Fenêtre native <dialog> : la touche Échap, le clic sur le fond et le retour
   du focus sont gérés par le navigateur. */

.photo-dialog {
  width: min(660px, 92vw);
  max-height: 90dvh;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  overflow: auto;
}
.photo-dialog::backdrop { background: rgba(35, 31, 32, 0.8); }
.photo-dialog figure { margin: 0; position: relative; }
.photo-dialog img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  background: var(--rose-veil);
}
.photo-dialog figcaption { padding: 1.35rem clamp(1.25rem, 4vw, 1.75rem) 1.6rem; }
.photo-dialog__name { font-size: 1.1rem; font-weight: 600; line-height: 1.35; }
.photo-dialog__name .tag { margin-right: 0.55rem; vertical-align: 0.15em; }
.photo-dialog__desc { font-size: 0.9rem; color: var(--gray); margin-top: 0.45rem; }
.photo-dialog__alt { font-size: 0.82rem; color: var(--gray); margin-top: 0.3rem; }
.photo-dialog__price { font-size: 1.05rem; font-weight: 700; margin-top: 0.9rem; }
.photo-dialog__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(35, 31, 32, 0.72);
  color: var(--white);
  font: inherit;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}
.photo-dialog__close:hover { background: var(--ink); }

@media (prefers-reduced-motion: no-preference) {
  .photo-dialog[open] { animation: dialog-in 0.28s cubic-bezier(0.22, 0.61, 0.36, 1); }
  .photo-dialog[open]::backdrop { animation: backdrop-in 0.28s ease; }
}
@keyframes dialog-in {
  from { opacity: 0; transform: translateY(12px) scale(0.985); }
}
@keyframes backdrop-in {
  from { opacity: 0; }
}

/* ---------- pied de page ---------- */

.footer {
  background: var(--ink);
  color: var(--white);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
  margin-top: var(--section);
}
.footer a { color: var(--white); text-decoration-color: rgba(255, 255, 255, 0.3); }
.footer a:hover { text-decoration-color: var(--red); }
.footer__logo { width: 220px; margin-bottom: 1.5rem; }
.footer__grid {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 195px), 1fr));
}
.footer h3 {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1rem;
}
.footer ul { list-style: none; display: grid; gap: 0.55rem; font-size: 0.9rem; }
.footer p { font-size: 0.9rem; color: rgba(255, 255, 255, 0.75); }
.footer__bottom {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
}
.footer__bottom a { text-decoration: none; }

/* ---------- divers ---------- */

.prose h2 { margin-top: 2.5rem; font-size: 1.35rem; font-weight: 600; }
.prose h2:first-child { margin-top: 0; }
.prose p { font-size: 0.95rem; color: var(--gray); }

.center { text-align: center; }
.mt-1 { margin-top: 0.75rem; }
.mt-2 { margin-top: 1.5rem; }
.mt-3 { margin-top: 2.5rem; }
.muted { color: var(--gray); }
.small { font-size: 0.82rem; }


/* ---------- apparitions ---------- */
/* Les blocs montent de quelques pixels en apparaissant. Discret : les titres
   et les textes ne bougent pas, seuls les blocs et les images s'animent.
   La classe « js » est posée par le script en-tête ; sans JavaScript, ou si
   le visiteur a demandé moins d'animations, tout s'affiche normalement. */

@media (prefers-reduced-motion: no-preference) {
  .js .hero__inner,
  .js .hero__media,
  .js .dish,
  .js .gallery__item,
  .js .formule,
  .js .split > *,
  .js .notice,
  .js .map {
    opacity: 0;
    transform: translateY(18px);
  }
  .js .is-in {
    opacity: 1;
    transform: none;
    transition: opacity 0.6s ease, transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}

@media print {
  .header, .footer, .menu-nav, .btn-row, .map { display: none !important; }
  body { font-size: 11pt; }
  .menu-item__thumb, .dish__media { display: none; }
  a { text-decoration: none; }
}
