/* ==========================================================================
   LA DIMORA — Feuille de style
   Direction artistique : trattoria contemporaine haut de gamme.
   Palette alignée sur le logo officiel — bleu marine, olive et or vieilli
   sur papier crème — typographie éditoriale (Fraunces / Work Sans), grain
   subtil, mise en page asymétrique.
   ========================================================================== */

:root {
  --ink: #201A14;
  --ink-soft: #4E4335;
  --ink-faint: #7A6E5C;
  --parchment: #F3ECDD;
  --parchment-deep: #E9DEC6;
  --white: #FFFDF8;
  /* bleu marine du logo officiel (remplace l'ancien accent terracotta) */
  --terracotta: #16324A;
  --terracotta-deep: #0E2033;
  --olive: #4B5236;
  --olive-deep: #2E3323;
  --gold: #A9843F;
  --line: rgba(32, 26, 20, 0.16);
  --line-soft: rgba(32, 26, 20, 0.09);

  --font-display: "Fraunces", "Iowan Old Style", "Palatino Linotype", serif;
  --font-body: "Work Sans", "Helvetica Neue", Arial, sans-serif;

  --container: 1240px;
  --container-narrow: 760px;
  --shadow-soft: 0 18px 44px rgba(32, 26, 20, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* offset générique pour que le header collant ne masque pas les sections ciblées
   par une ancre (#histoire, #avis, #infos…) — surchargé par .menu-category si besoin */
:where(section[id], [id].story-grid) { scroll-margin-top: 96px; }

/* barre de défilement sur-mesure (navigateurs Webkit/Blink + Firefox) */
html { scrollbar-width: thin; scrollbar-color: var(--ink-faint) var(--parchment); }
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--parchment); }
::-webkit-scrollbar-thumb { background: var(--parchment-deep); border: 2px solid var(--parchment); border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--parchment);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* grain overlay — texture papier, discrète sur tout le site */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("../img/grain.png");
  background-repeat: repeat;
  opacity: 0.55;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 9999;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  color: var(--ink);
}
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 500; }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.4rem); font-weight: 600; }
em, .italic { font-style: italic; }

p { margin: 0 0 1.1em; }
.lede { font-size: 1.1rem; color: var(--ink-soft); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container--narrow { max-width: var(--container-narrow); }

.section { padding: 6.5rem 0; position: relative; }
.section--tight { padding: 3.5rem 0; }

/* -------------------- Mentions légales -------------------- */
.legal-content h2 { font-size: 1.15rem; margin: 2.5rem 0 0.75rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { color: var(--ink-soft); line-height: 1.7; }
.section--ink { background: var(--ink); color: var(--parchment); }
.section--ink h2, .section--ink h3 { color: var(--white); }
.section--ink .eyebrow { color: var(--gold); }
.section--line-top { border-top: 1px solid var(--line); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.7rem;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 1px;
  background: currentColor;
}

.section-head { max-width: 620px; margin: 0 0 3.25rem; }
.section-head.text-center { margin-left: auto; margin-right: auto; text-align: center; }

/* -------------------- Boutons -------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 0;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--ink);
  border-bottom: 1.5px solid var(--ink);
  transition: color 0.25s ease, border-color 0.25s ease, gap 0.25s ease;
}
.btn:hover { color: var(--terracotta); border-color: var(--terracotta); gap: 0.9rem; }
.btn--reverse { color: var(--parchment); border-color: var(--parchment); }
.btn--reverse:hover { color: var(--gold); border-color: var(--gold); }

.btn--framed {
  border: 1.5px solid var(--ink);
  padding: 0.9rem 1.9rem;
  border-radius: 2px;
}
.btn--framed:hover { background: var(--ink); color: var(--parchment); }
.section--ink .btn--framed { border-color: var(--parchment); color: var(--parchment); }
.section--ink .btn--framed:hover { background: var(--parchment); color: var(--ink); }

/* -------------------- Header / Nav -------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--parchment);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem 1.5rem;
  max-width: var(--container);
  margin: 0 auto;
}
.brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
/* logo officiel dans le header — image, pas de texte dupliqué */
.brand-logo { height: 38px; width: auto; display: block; }
@media (min-width: 860px) {
  .brand-logo { height: 46px; }
}
.brand small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 500;
  margin-top: 0.15rem;
}
.nav-links {
  display: none;
  gap: 2.25rem;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
}
.nav-links a { position: relative; padding: 0.25rem 0; color: var(--ink-soft); }
.nav-links a:hover { color: var(--terracotta); }
.nav-cta { display: none; }
.nav-toggle {
  display: inline-flex;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--ink);
  font-family: var(--font-display);
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1.1rem;
  padding: 0.5rem 1.5rem 1.75rem;
  border-top: 1px solid var(--line);
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a { font-weight: 600; font-size: 1.05rem; font-family: var(--font-display); }

@media (min-width: 860px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-toggle { display: none; }
}

/* -------------------- Hero éditorial -------------------- */
.hero {
  position: relative;
  padding: 3rem 0 0;
}
.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 940px) {
  .hero-grid { grid-template-columns: 0.95fr 1.05fr; gap: 2rem; min-height: 78vh; }
}
.hero-text { padding: 2rem 0; }
.hero-text .eyebrow { margin-bottom: 1.5rem; }
.hero-text h1 { margin-bottom: 1.25rem; }
.hero-text .lede { max-width: 420px; margin-bottom: 2.25rem; }
.hero-actions { display: flex; gap: 2rem; align-items: center; flex-wrap: wrap; }
.hero-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 2px;
}
@media (min-width: 940px) { .hero-photo { aspect-ratio: auto; height: 100%; } }
.hero-photo img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.92) contrast(1.03);
}
.hero-photo::after {
  content: "";
  position: absolute; inset: 0;
  box-shadow: inset 0 0 0 1px rgba(32,26,20,0.08);
}
.hero-caption {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  color: var(--white);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(32,26,20,0.55);
  padding: 0.5rem 0.85rem;
  backdrop-filter: blur(2px);
}

/* -------------------- Story / pull-quote -------------------- */
.story-grid {
  display: grid;
  gap: 3.5rem;
}
@media (min-width: 900px) {
  .story-grid { grid-template-columns: 0.85fr 1.15fr; gap: 5rem; }
}
.story-figure {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 2px;
}
.story-figure img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.92); }

.pull-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.35;
  color: var(--terracotta-deep);
  margin: 1.75rem 0;
  padding-left: 1.5rem;
  border-left: 2px solid var(--gold);
}
.signature {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--ink-faint);
  font-size: 1rem;
}

.stat-row {
  display: flex;
  gap: 3rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 1.75rem;
}
.stat-row .stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 500;
  color: var(--terracotta);
}
.stat-row .stat span { font-size: 0.78rem; color: var(--ink-faint); letter-spacing: 0.03em; }

/* -------------------- Mosaïque carte -------------------- */
.mosaic {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 780px) {
  /* 3 tuiles : une grande + deux empilées */
  .mosaic--3 {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(2, minmax(220px, 1fr));
  }
  .mosaic--3 .mosaic-item:nth-child(1) { grid-column: 1 / 4; grid-row: 1 / 3; }
  .mosaic--3 .mosaic-item:nth-child(2) { grid-column: 4 / 7; grid-row: 1 / 2; }
  .mosaic--3 .mosaic-item:nth-child(3) { grid-column: 4 / 7; grid-row: 2 / 3; }

  /* 4 tuiles : une grande + trois empilées */
  .mosaic--4 {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(3, minmax(150px, 1fr));
  }
  .mosaic--4 .mosaic-item:nth-child(1) { grid-column: 1 / 4; grid-row: 1 / 4; }
  .mosaic--4 .mosaic-item:nth-child(2) { grid-column: 4 / 7; grid-row: 1 / 2; }
  .mosaic--4 .mosaic-item:nth-child(3) { grid-column: 4 / 7; grid-row: 2 / 3; }
  .mosaic--4 .mosaic-item:nth-child(4) { grid-column: 4 / 7; grid-row: 3 / 4; }

  /* 5 tuiles et plus : grille simple, régulière */
  .mosaic--fallback { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
}
.mosaic-item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  min-height: 260px;
  display: block;
}
.mosaic-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s cubic-bezier(.2,.7,.2,1);
  filter: saturate(0.94);
}
.mosaic-item:hover img { transform: scale(1.045); }
.mosaic-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(24,19,13,0.82) 0%, rgba(24,19,13,0.05) 45%, transparent 70%);
}
.mosaic-label {
  position: absolute; left: 1.5rem; right: 1.5rem; bottom: 1.4rem; z-index: 2; color: var(--white);
}
.mosaic-label .eyebrow { color: var(--gold); margin-bottom: 0.3rem; }
.mosaic-label h3 { color: var(--white); margin-bottom: 0.2rem; }
.mosaic-label p { color: rgba(255,255,255,0.78); font-size: 0.85rem; margin: 0; }

/* -------------------- Bandeau plein cadre -------------------- */
.full-bleed {
  width: 100%;
  aspect-ratio: 21 / 9;
  overflow: hidden;
}
.full-bleed img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.9); }

/* -------------------- Avis -------------------- */
.reviews-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 780px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review {
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.review .stars { color: var(--gold); letter-spacing: 0.15em; font-size: 0.9rem; margin-bottom: 0.9rem; }
.review p { font-family: var(--font-display); font-style: italic; font-size: 1.05rem; color: var(--ink-soft); }
.review cite { font-style: normal; font-size: 0.8rem; letter-spacing: 0.04em; color: var(--ink-faint); }
.review--empty { grid-column: 1 / -1; max-width: 480px; margin: 0 auto; text-align: center; border-top: none; }
.review--empty .stars { justify-content: center; display: flex; }

.review-cta {
  margin-top: 4rem;
  padding: 3rem 2rem;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 2px;
}
.review-cta .stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 0.2em; margin-bottom: 1rem; }
.review-cta h3 { margin-bottom: 0.5rem; }
.review-cta p { max-width: 460px; margin: 0 auto 1.75rem; color: var(--ink-soft); }

/* -------------------- QR block -------------------- */
.qr-block {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  grid-template-columns: 1fr;
  text-align: center;
}
@media (min-width: 780px) {
  .qr-block { grid-template-columns: auto 1fr; text-align: left; }
}
.qr-block img { width: 168px; height: 168px; margin: 0 auto; border: 1px solid var(--line); padding: 10px; background: var(--white); }
@media (min-width: 780px) { .qr-block img { margin: 0; } }

/* -------------------- Infos pratiques -------------------- */
.infos-grid { display: grid; gap: 2.5rem; }
@media (min-width: 900px) { .infos-grid { grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: stretch; } }
.map-frame { position: relative; min-height: 320px; border: 1px solid var(--line); }
.map-frame iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; filter: saturate(0.85) contrast(1.02); }
.map-frame-cta {
  position: absolute; left: 1rem; bottom: 1rem;
  background: var(--white); box-shadow: var(--shadow-soft);
}
.booking-widget {
  margin-top: 3rem;
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 2px;
}
.booking-widget .resos-booking-widget {
  display: inline-block;
  padding: 0.9rem 2rem;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.booking-widget .resos-booking-widget:hover { background: var(--ink); color: var(--white); }
.info-panel {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.info-row {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line-soft);
}
.info-row:last-child { border-bottom: none; }
@media (min-width: 780px) {
  .info-row { grid-template-columns: 220px 1fr; align-items: baseline; }
}
.info-row .label {
  display: flex; align-items: center; gap: 0.7rem;
  font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint); font-weight: 600;
}
.info-row .icon { width: 18px; height: 18px; flex: none; color: var(--terracotta); }
.info-row .value { font-family: var(--font-display); font-size: 1.25rem; }
.placeholder { color: var(--terracotta); font-style: italic; font-family: var(--font-body); font-size: 1rem; }

/* -------------------- FAQ -------------------- */
.faq-list { border-top: 1px solid var(--line); max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 1.5rem 0;
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus {
  flex: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.faq-item summary .plus::before, .faq-item summary .plus::after {
  content: "";
  position: absolute;
  background: var(--ink);
}
.faq-item summary .plus::before { width: 10px; height: 1.4px; }
.faq-item summary .plus::after { width: 1.4px; height: 10px; transition: transform 0.25s ease; }
.faq-item[open] summary .plus { border-color: var(--terracotta); transform: rotate(180deg); }
.faq-item[open] summary .plus::after { transform: scaleY(0); }
.faq-item p { margin: 1rem 0 0; color: var(--ink-soft); max-width: 600px; }

/* -------------------- Footer -------------------- */
.site-footer {
  background: var(--ink);
  color: rgba(243, 236, 221, 0.75);
  padding: 5rem 0 2.25rem;
}
.footer-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
}
@media (min-width: 780px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; } }
.site-footer h4 {
  color: var(--parchment); font-family: var(--font-body); font-size: 0.72rem;
  letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 1.1rem; font-weight: 600;
}
.site-footer .brand { color: var(--parchment); }
.site-footer .brand small { color: var(--gold); }
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-links a:hover { color: var(--gold); }
.footer-note { margin-top: 1.25rem; max-width: 320px; font-size: 0.92rem; }
.footer-bottom {
  margin-top: 3.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(243,236,221,0.14);
  font-size: 0.78rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
}

/* -------------------- Menu page -------------------- */
.menu-hero {
  padding: 3.5rem 0 2.75rem;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.menu-hero .eyebrow { justify-content: center; }
.menu-hero h1 { margin-bottom: 0.5rem; }
.menu-hero p { color: var(--ink-soft); max-width: 460px; margin: 0 auto; }

.menu-nav {
  position: sticky;
  top: 69px;
  z-index: 90;
  background: var(--parchment);
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}
.menu-nav-inner { display: inline-flex; gap: 2rem; padding: 1.1rem 1.5rem; }
.menu-nav a {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-faint);
  padding-bottom: 0.35rem;
  border-bottom: 1.5px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.menu-nav a:hover, .menu-nav a.is-active { color: var(--terracotta); border-color: var(--terracotta); }

.menu-disclaimer {
  max-width: 620px;
  margin: 2rem auto 0;
  padding: 0 1.5rem;
  font-size: 0.82rem;
  color: var(--ink-faint);
  text-align: center;
  font-style: italic;
}

.menu-category { padding: 5rem 0 1rem; scroll-margin-top: 130px; }
.menu-category:first-of-type { padding-top: 4rem; }

.category-intro {
  display: grid;
  gap: 2.5rem;
  align-items: end;
  margin-bottom: 3rem;
}
@media (min-width: 860px) {
  .category-intro { grid-template-columns: 1.1fr 0.9fr; align-items: center; gap: 3.5rem; }
}
.category-photo { aspect-ratio: 4/3; overflow: hidden; border-radius: 2px; }
.category-photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.94); }
.category-copy .eyebrow { margin-bottom: 0.75rem; }
.category-copy p { color: var(--ink-soft); max-width: 480px; }

/* catégorie sans aucune photo de plat (ex. boissons chaudes) : intro centrée, pas de grille photo */
.category-intro--text-only {
  display: block;
  text-align: center;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.category-intro--text-only .category-copy .eyebrow { justify-content: center; }
.category-intro--text-only .category-copy p { margin-left: auto; margin-right: auto; }

.dish-list {
  border-top: 1px solid var(--line);
}
.dish-row {
  display: flex;
  gap: 1.35rem;
  align-items: flex-start;
  padding: 1.85rem 0;
  border-bottom: 1px solid var(--line-soft);
}
/* plat sans photo (ex. boissons) : ligne compacte façon carte des cafés */
.dish-row--simple { padding: 0.95rem 0; }
.dish-row--simple .dish-head .name { font-size: 1.05rem; }
.dish-row--simple .dish-head .price { font-size: 1rem; }
.dish-photo-sm {
  flex: none;
  width: 104px;
  height: 104px;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: inset 0 0 0 1px var(--line);
}
.dish-photo-sm img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.94);
  transition: transform 0.5s ease;
}
.dish-row:hover .dish-photo-sm img { transform: scale(1.06); }
.dish-content { flex: 1; min-width: 0; }
@media (max-width: 480px) {
  .dish-photo-sm { width: 76px; height: 76px; }
}
.dish-head {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.dish-head .name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  white-space: nowrap;
}
.dish-head .leader {
  flex: 1;
  border-bottom: 1px dotted var(--ink-faint);
  transform: translateY(-0.35em);
  opacity: 0.55;
}
.dish-head .price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--terracotta);
  white-space: nowrap;
}
.dish-desc { color: var(--ink-soft); font-size: 0.95rem; max-width: 620px; }
.dish-meta {
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.dish-meta .veg { color: var(--olive); }

/* -------------------- Plat signature / suggestion du chef -------------------- */
/* encadré discret pour mettre en avant un plat (forte marge, recommandation du chef) */
.dish-row--signature {
  position: relative;
  margin: 0.5rem -1.5rem;
  padding: 1.85rem 1.5rem;
  background: var(--parchment-deep);
  border-radius: 3px;
  border-bottom: none;
  box-shadow: inset 0 0 0 1px var(--line);
}
.dish-row--signature.dish-row--simple { padding: 1.1rem 1.5rem; }
.dish-row--signature::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  border-radius: 3px 0 0 3px;
  background: var(--terracotta);
}
.signature-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.55rem;
}
.signature-badge svg { width: 12px; height: 12px; flex: none; }

/* -------------------- Photos agrandissables -------------------- */
[data-lightbox] { cursor: zoom-in; }
.zoomable { position: relative; }
.zoom-hint {
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(32, 26, 20, 0.6);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
  z-index: 2;
}
.zoom-hint svg { width: 13px; height: 13px; }
.zoomable:hover .zoom-hint { opacity: 1; transform: scale(1); }

/* -------------------- Lightbox -------------------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5vh 5vw;
  background: rgba(20, 16, 12, 0.94);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox figure {
  margin: 0;
  max-width: 100%;
  max-height: 100%;
  transform: scale(0.97);
  transition: transform 0.28s ease;
}
.lightbox.is-open figure { transform: scale(1); }
.lightbox img {
  max-width: min(90vw, 900px);
  max-height: 80vh;
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 30px 70px rgba(0,0,0,0.45);
}
.lightbox figcaption {
  margin-top: 1rem;
  text-align: center;
  color: var(--parchment);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
}
.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(243,236,221,0.35);
  background: transparent;
  color: var(--parchment);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.lightbox-close:hover { background: rgba(243,236,221,0.12); border-color: var(--gold); }

/* -------------------- Apparition au défilement -------------------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s cubic-bezier(.2,.7,.2,1), transform 0.8s cubic-bezier(.2,.7,.2,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.mosaic-item.reveal:nth-child(2) { transition-delay: 0.12s; }
.mosaic-item.reveal:nth-child(3) { transition-delay: 0.24s; }
.review.reveal:nth-child(2) { transition-delay: 0.1s; }
.review.reveal:nth-child(3) { transition-delay: 0.2s; }
.info-row.reveal:nth-child(2) { transition-delay: 0.08s; }
.info-row.reveal:nth-child(3) { transition-delay: 0.16s; }
.faq-item.reveal:nth-child(2) { transition-delay: 0.06s; }
.faq-item.reveal:nth-child(3) { transition-delay: 0.12s; }
.faq-item.reveal:nth-child(4) { transition-delay: 0.18s; }
.faq-item.reveal:nth-child(5) { transition-delay: 0.24s; }

/* -------------------- Ornements -------------------- */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  margin: 0 auto 2.5rem;
  color: var(--gold);
  width: fit-content;
}
.ornament::before, .ornament::after {
  content: "";
  width: 44px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.ornament svg { width: 14px; height: 14px; }

.drop-cap:first-letter {
  font-family: var(--font-display);
  font-size: 3.4em;
  font-weight: 500;
  float: left;
  line-height: 0.82;
  padding: 0.06em 0.09em 0 0;
  color: var(--terracotta-deep);
}
body.lightbox-open { overflow: hidden; }

.soon-row {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink-faint);
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}
.soon-row strong { font-family: var(--font-display); color: var(--ink); font-weight: 500; font-size: 1.1rem; }

/* -------------------- Utilities -------------------- */
.text-center { text-align: center; }
.mt-lg { margin-top: 3.5rem; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
