/* ============================================================
   Thème Restaurant — Gastronomie personnelle, presse édito
   Direction : film noir, typographie Fraunces italique grande,
   le chef au centre, la carte comme pièce maîtresse.
   ============================================================ */

:root {
  --bg: #f4ede0;            /* parchemin chaud */
  --bg-soft: #ebe2d0;
  --paper: #faf6ec;
  --ink: #0d0c0a;
  --ink-soft: #4a4438;
  --ink-mute: #7a7363;
  --rule: #d8cdb4;
  --gold: #b89653;
  --gold-bright: #d6b274;
  --gold-soft: rgba(184, 150, 83, 0.12);
  --noir: #0a0907;

  --font-h: 'Fraunces', 'Playfair Display', Georgia, serif;
  --font-b: 'Inter', -apple-system, system-ui, sans-serif;

  --container: 1240px;
  --shadow-1: 0 30px 80px -30px rgba(13, 12, 10, 0.4);
}

body.theme-restaurant {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-b);
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
.theme-restaurant .container { width: 100%; max-width: var(--container); margin: 0 auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); }

/* ============== HEADER (sobre, presque transparent) ============== */
.theme-restaurant .site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(244, 237, 224, 0.92);
  backdrop-filter: saturate(160%) blur(8px);
  -webkit-backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid rgba(13, 12, 10, 0.08);
}
.theme-restaurant .header-inner { display: flex; align-items: center; justify-content: space-between; padding-block: 1.1rem; }
.theme-restaurant .site-header .brand {
  font-family: var(--font-h);
  font-style: italic;
  font-weight: 400;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
}
.theme-restaurant .site-nav { display: flex; align-items: center; gap: 2rem; }
.theme-restaurant .site-nav a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.2s;
}
.theme-restaurant .site-nav a:hover { color: var(--ink); }
.theme-restaurant .site-nav .nav-cta {
  border: 1px solid var(--ink);
  padding: 0.6rem 1.1rem;
  color: var(--ink);
  border-radius: 0;
}
.theme-restaurant .site-nav .nav-cta:hover { background: var(--ink); color: var(--bg); }

@media (max-width: 880px) {
  .theme-restaurant .site-nav a:not(.nav-cta) { display: none; }
}

/* ============== HERO — film noir + nom chef italique grand ============== */
.theme-restaurant .resto-hero {
  position: relative;
  min-height: 100vh;
  background: var(--noir);
  color: #f4ede0;
  overflow: hidden;
  isolation: isolate;
}
.theme-restaurant .resto-hero-media {
  position: absolute; inset: 0;
  background-image: var(--hero-bg, url('/photos/hero-restaurant.jpg'));
  background-size: cover;
  background-position: center;
  filter: grayscale(40%) contrast(108%) brightness(0.55);
  z-index: 0;
}
.theme-restaurant .resto-hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(108%) contrast(102%);
  z-index: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}
.theme-restaurant .resto-hero-video.hero-video-fade { opacity: 0; }
.theme-restaurant .resto-hero-grad {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 30% 55%, rgba(10, 9, 7, 0.45) 0%, rgba(10, 9, 7, 0.12) 55%, rgba(10, 9, 7, 0.55) 100%),
    linear-gradient(180deg, rgba(10, 9, 7, 0.22) 0%, rgba(10, 9, 7, 0.08) 45%, rgba(10, 9, 7, 0.75) 100%);
  z-index: 1;
}
.theme-restaurant .resto-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  min-height: 100vh;
  padding-block: 8vh 12vh;
}
.theme-restaurant .resto-hero-text { max-width: 720px; }
.theme-restaurant .resto-hero-eyebrow {
  display: inline-block;
  font-family: var(--font-b);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 3rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(214, 178, 116, 0.4);
}
.theme-restaurant .resto-hero-name {
  font-family: var(--font-h);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(3.5rem, 11vw + 0.5rem, 9rem);
  line-height: 0.88;
  letter-spacing: -0.045em;
  margin: 0 0 2.5rem;
  color: #f7f0df;
  text-wrap: balance;
}
.theme-restaurant .resto-hero-quote {
  font-family: var(--font-h);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.15rem, 1.4vw + 0.7rem, 1.55rem);
  line-height: 1.5;
  color: rgba(247, 240, 223, 0.78);
  max-width: 38ch;
  margin: 0 0 4rem;
  padding-left: 1.25rem;
  border-left: 1px solid rgba(214, 178, 116, 0.4);
}
.theme-restaurant .resto-hero-foot {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(247, 240, 223, 0.55);
  font-weight: 500;
}
.theme-restaurant .resto-hero-meta-sep { color: var(--gold); }
.theme-restaurant .resto-hero-portrait {
  position: relative;
  margin: 0;
  aspect-ratio: 3 / 4;
  max-height: 78vh;
  overflow: hidden;
  border: 1px solid rgba(214, 178, 116, 0.25);
  align-self: end;
}
.theme-restaurant .resto-hero-portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(25%) contrast(112%);
}
.theme-restaurant .resto-hero-portrait::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 9, 7, 0.55) 100%);
}
@media (max-width: 880px) {
  .theme-restaurant .resto-hero-inner { grid-template-columns: 1fr; padding-block: 14vh 8vh; }
  .theme-restaurant .resto-hero-portrait { max-height: 50vh; }
}

/* ============== Section heads communs ============== */
.theme-restaurant .section-eyebrow {
  display: block;
  font-family: var(--font-b);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.theme-restaurant .section-head { max-width: 60ch; margin-bottom: 4rem; }
.theme-restaurant .section-head h2 {
  font-family: var(--font-h);
  font-weight: 300;
  font-style: normal;
  font-size: clamp(2.25rem, 4.5vw + 0.5rem, 4.25rem);
  line-height: 1;
  letter-spacing: -0.035em;
  margin: 0 0 1.25rem;
  color: var(--ink);
}
.theme-restaurant .section-head h2 em {
  font-style: italic;
  font-weight: 300;
  color: var(--ink);
}
.theme-restaurant .section-lead {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0;
}

/* ============== LA MAISON — édito, asym ============== */
.theme-restaurant .resto-maison {
  background: var(--bg);
  padding-block: clamp(6rem, 12vw, 11rem);
}
.theme-restaurant .resto-maison-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 5vw, 5.5rem);
  align-items: start;
}
.theme-restaurant .resto-maison-title {
  font-family: var(--font-h);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(2rem, 3.6vw + 0.6rem, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin: 0 0 2rem;
  color: var(--ink);
  text-wrap: balance;
}
.theme-restaurant .resto-maison-body p {
  font-family: var(--font-b);
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0 0 1.4rem;
}
.theme-restaurant .resto-maison-lede {
  font-family: var(--font-h) !important;
  font-style: italic !important;
  font-weight: 400 !important;
  font-size: 1.3rem !important;
  line-height: 1.55 !important;
  color: var(--ink) !important;
  margin-bottom: 2rem !important;
}
.theme-restaurant .resto-maison-body p:first-letter {
  /* drop cap pour le premier paragraphe std (pas pour lede) */
}
.theme-restaurant .resto-maison-body p:not(.resto-maison-lede):first-of-type::first-letter {
  font-family: var(--font-h);
  font-style: italic;
  font-weight: 300;
  font-size: 4.6em;
  line-height: 0.85;
  float: left;
  padding: 0.18em 0.18em 0 0;
  color: var(--gold);
}
.theme-restaurant .resto-maison-parcours {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
}
.theme-restaurant .resto-maison-parcours .parcours-label {
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: block;
  margin-bottom: 1.25rem;
}
.theme-restaurant .resto-maison-parcours ul {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  gap: 0.85rem;
}
.theme-restaurant .resto-maison-parcours li {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 1.25rem;
  align-items: baseline;
}
.theme-restaurant .resto-maison-parcours .parcours-year {
  font-family: var(--font-h);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink);
  font-weight: 400;
}
.theme-restaurant .resto-maison-parcours .parcours-text {
  font-size: 0.96rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
.theme-restaurant .resto-maison-photo {
  position: sticky;
  top: 100px;
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.theme-restaurant .resto-maison-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(15%) contrast(105%);
}
.theme-restaurant .resto-maison-photo figcaption {
  margin-top: 0.85rem;
  font-family: var(--font-h);
  font-style: italic;
  font-size: 0.88rem;
  color: var(--ink-mute);
  text-align: right;
}
@media (max-width: 880px) {
  .theme-restaurant .resto-maison-inner { grid-template-columns: 1fr; }
  .theme-restaurant .resto-maison-photo { position: static; }
}

/* ============== LA CARTE — pièce maîtresse, typographique ============== */
.theme-restaurant .resto-carte {
  background: var(--paper);
  border-block: 1px solid var(--rule);
  padding-block: clamp(6rem, 13vw, 12rem);
}
.theme-restaurant .resto-carte-head {
  text-align: center;
  margin: 0 auto 5rem;
  max-width: 64ch;
}
.theme-restaurant .resto-carte-head .section-eyebrow { color: var(--gold); }
.theme-restaurant .resto-carte-head h2 {
  font-family: var(--font-h);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(2.5rem, 5.5vw + 0.5rem, 5.5rem);
  line-height: 1;
  letter-spacing: -0.04em;
  margin: 0 0 1.25rem;
  color: var(--ink);
}
.theme-restaurant .resto-carte-head h2 em { font-style: normal; color: var(--gold); }
.theme-restaurant .resto-carte-head .section-lead { margin: 0 auto; max-width: 52ch; }

.theme-restaurant .resto-carte-inner {
  max-width: 880px;
  margin: 0 auto;
}
.theme-restaurant .carte-section {
  margin-bottom: clamp(4rem, 7vw, 6rem);
}
.theme-restaurant .carte-section:last-of-type { margin-bottom: 0; }
.theme-restaurant .carte-section-head {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--rule);
}
.theme-restaurant .carte-numero {
  font-family: var(--font-h);
  font-style: italic;
  font-weight: 300;
  font-size: 1.5rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.theme-restaurant .carte-categorie {
  font-family: var(--font-h);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.8rem, 3vw + 0.5rem, 2.8rem);
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0;
  line-height: 1;
}
.theme-restaurant .carte-liste {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  gap: 2.5rem;
}
.theme-restaurant .carte-plat {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: baseline;
}
.theme-restaurant .carte-plat-main { min-width: 0; }
.theme-restaurant .plat-nom {
  font-family: var(--font-h);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.25rem, 1.4vw + 0.7rem, 1.7rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 0.4rem;
  color: var(--ink);
}
.theme-restaurant .plat-desc {
  font-family: var(--font-b);
  font-weight: 300;
  font-size: 0.96rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}
.theme-restaurant .plat-allergenes {
  display: inline-block;
  margin: 0.6rem 0 0;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}
.theme-restaurant .plat-allergenes:empty,
.theme-restaurant .formule-detail:empty,
.theme-restaurant .presse-date:empty { display: none; }
.theme-restaurant .presse-date:not(:empty)::before { content: '— '; }
.theme-restaurant .carte-plat-prix {
  font-family: var(--font-h);
  font-style: italic;
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--gold);
  white-space: nowrap;
  letter-spacing: 0;
}
.theme-restaurant .carte-section-vins .plat-nom { font-style: normal; font-weight: 500; }
.theme-restaurant .carte-note {
  margin: 4rem auto 0;
  max-width: 50ch;
  text-align: center;
  font-family: var(--font-h);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-mute);
  line-height: 1.55;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
}

/* ============== FORMULES — liste éditoriale numérotée ============== */
.theme-restaurant .resto-formules {
  background: var(--bg);
  padding-block: clamp(6rem, 12vw, 11rem);
}
.theme-restaurant .formules-liste {
  border-top: 1px solid var(--rule);
}
.theme-restaurant .formule-rang {
  display: grid;
  grid-template-columns: 5rem 1fr auto;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
  padding-block: clamp(2rem, 3.5vw, 3rem);
  border-bottom: 1px solid var(--rule);
  transition: background 0.25s;
}
.theme-restaurant .formule-rang:hover { background: var(--bg-soft); }
.theme-restaurant .formule-num {
  font-family: var(--font-h);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2.5rem, 5vw + 0.5rem, 4.5rem);
  color: var(--gold);
  line-height: 1;
}
.theme-restaurant .formule-titre {
  font-family: var(--font-h);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.4rem, 1.8vw + 0.5rem, 2rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
  color: var(--ink);
}
.theme-restaurant .formule-desc {
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
  max-width: 60ch;
  font-weight: 300;
}
.theme-restaurant .formule-detail {
  margin-top: 0.5rem;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}
.theme-restaurant .formule-prix {
  font-family: var(--font-h);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.75rem, 2.5vw + 0.5rem, 2.5rem);
  color: var(--ink);
  white-space: nowrap;
}
@media (max-width: 680px) {
  .theme-restaurant .formule-rang { grid-template-columns: 3.5rem 1fr; }
  .theme-restaurant .formule-prix { grid-column: 1 / -1; text-align: right; color: var(--gold); }
}

/* ============== PRATIQUE — infos courtes ============== */
.theme-restaurant .resto-pratique {
  background: var(--paper);
  padding-block: clamp(6rem, 12vw, 10rem);
}
.theme-restaurant .pratique-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.theme-restaurant .pratique-item {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: transparent;
}
.theme-restaurant .pratique-titre {
  font-family: var(--font-h);
  font-style: italic;
  font-weight: 400;
  font-size: 1.3rem;
  letter-spacing: -0.015em;
  margin: 0 0 0.75rem;
  color: var(--ink);
}
.theme-restaurant .pratique-texte {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
  font-weight: 300;
}

/* ============== PRESSE — citations sobres ============== */
.theme-restaurant .resto-presse {
  background: var(--noir);
  color: #f4ede0;
  padding-block: clamp(6rem, 12vw, 11rem);
}
.theme-restaurant .resto-presse .section-eyebrow { color: var(--gold-bright); }
.theme-restaurant .resto-presse .section-head h2 { color: #f7f0df; }
.theme-restaurant .resto-presse .section-head h2 em { color: var(--gold-bright); }
.theme-restaurant .presse-liste {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(2rem, 4vw, 3.5rem);
}
.theme-restaurant .presse-citation {
  margin: 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(214, 178, 116, 0.35);
}
.theme-restaurant .presse-citation blockquote {
  font-family: var(--font-h);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.1rem, 1.2vw + 0.6rem, 1.4rem);
  line-height: 1.5;
  color: rgba(247, 240, 223, 0.92);
  margin: 0 0 1.5rem;
}
.theme-restaurant .presse-citation blockquote::before { content: '« '; color: var(--gold); }
.theme-restaurant .presse-citation blockquote::after { content: ' »'; color: var(--gold); }
.theme-restaurant .presse-citation figcaption {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(247, 240, 223, 0.6);
  font-weight: 500;
}
.theme-restaurant .presse-citation .presse-source { color: var(--gold-bright); }

/* ============== RÉSERVATION — section finale + bloc actions ============== */
.theme-restaurant .resto-reserver {
  background: var(--bg);
  padding-block: clamp(6rem, 12vw, 11rem);
}
.theme-restaurant .resto-reserver-inner {
  display: grid;
  gap: clamp(2rem, 4vw, 4rem);
  max-width: 920px;
  margin: 0 auto;
}
.theme-restaurant .reserver-text { text-align: center; }
.theme-restaurant .reserver-text .section-head h2 { font-style: italic; }
.theme-restaurant .reserver-text .section-eyebrow,
.theme-restaurant .reserver-text h2,
.theme-restaurant .reserver-text .section-lead {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.theme-restaurant .reserver-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.theme-restaurant .reserver-btn {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1.5rem 1.5rem;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s, background 0.25s, color 0.2s;
}
.theme-restaurant .reserver-btn-primary {
  background: var(--ink);
  color: var(--bg);
  font-family: var(--font-b);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  align-items: center;
  justify-content: center;
  min-height: 4.5rem;
}
.theme-restaurant .reserver-btn-primary:hover { background: var(--gold); transform: translateY(-2px); color: var(--noir); }
.theme-restaurant .reserver-btn-ghost {
  background: var(--paper);
  border: 1px solid var(--rule);
  color: var(--ink);
}
.theme-restaurant .reserver-btn-ghost:hover { border-color: var(--ink); }
.theme-restaurant .reserver-btn-label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.theme-restaurant .reserver-btn-value {
  font-family: var(--font-h);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink);
  font-weight: 400;
}
.theme-restaurant .reserver-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin: 1rem 0 0;
  padding-top: 2.5rem;
  border-top: 1px solid var(--rule);
}
.theme-restaurant .reserver-meta-item dt {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.6rem;
}
.theme-restaurant .reserver-meta-item dd {
  margin: 0;
  font-family: var(--font-h);
  font-style: italic;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.55;
  color: var(--ink);
}

/* ============== STICKY RESERVER BUTTON ============== */
.theme-restaurant .sticky-reserver {
  position: fixed;
  right: clamp(1rem, 2vw, 1.75rem);
  bottom: clamp(1rem, 2vw, 1.75rem);
  z-index: 100;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 1rem 1.4rem 1rem 1.2rem;
  background: var(--noir);
  color: var(--bg);
  font-family: var(--font-b);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 18px 40px -10px rgba(10, 9, 7, 0.4);
  border: 1px solid rgba(214, 178, 116, 0.35);
  transition: transform 0.2s, background 0.25s;
}
.theme-restaurant .sticky-reserver:hover {
  background: var(--gold);
  color: var(--noir);
  transform: translateY(-3px);
}
.theme-restaurant .sticky-reserver-pulse {
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 0 0 rgba(214, 178, 116, 0.6);
  animation: resto-pulse 2.2s ease-out infinite;
}
.theme-restaurant .sticky-reserver:hover .sticky-reserver-pulse { background: var(--noir); box-shadow: none; animation: none; }
@keyframes resto-pulse {
  0% { box-shadow: 0 0 0 0 rgba(214, 178, 116, 0.55); }
  70% { box-shadow: 0 0 0 14px rgba(214, 178, 116, 0); }
  100% { box-shadow: 0 0 0 0 rgba(214, 178, 116, 0); }
}
@media (max-width: 480px) {
  .theme-restaurant .sticky-reserver-label { display: none; }
  .theme-restaurant .sticky-reserver { padding: 0.85rem 0.95rem; }
  .theme-restaurant .sticky-reserver::after { content: 'Réserver'; font-size: 0.75rem; letter-spacing: 0.18em; }
}

/* ============== FOOTER ============== */
.theme-restaurant .site-footer {
  background: var(--noir);
  color: rgba(247, 240, 223, 0.55);
  padding-block: clamp(3.5rem, 6vw, 5rem);
  border-top: 1px solid rgba(214, 178, 116, 0.18);
}
.theme-restaurant .resto-footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 3rem);
}
.theme-restaurant .footer-brand {
  font-family: var(--font-h);
  font-style: italic;
  font-weight: 400;
  font-size: 1.6rem;
  letter-spacing: -0.02em;
  color: var(--bg);
  margin: 0 0 1rem;
}
.theme-restaurant .site-footer h4:not(.footer-brand) {
  font-family: var(--font-b);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin: 0 0 1rem;
  font-weight: 500;
}
.theme-restaurant .site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.4rem; }
.theme-restaurant .site-footer a { color: rgba(247, 240, 223, 0.78); text-decoration: none; }
.theme-restaurant .site-footer a:hover { color: var(--gold-bright); }
.theme-restaurant .footer-base {
  grid-column: 1 / -1;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(214, 178, 116, 0.12);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: rgba(247, 240, 223, 0.4);
}
.theme-restaurant .footer-base a { color: var(--gold-bright); }
@media (max-width: 780px) {
  .theme-restaurant .resto-footer-inner { grid-template-columns: 1fr; }
}

/* ============== Preview banner ============== */
.theme-restaurant .preview-banner {
  position: fixed; top: 0; left: 0; right: 0;
  background: var(--gold); color: var(--noir);
  text-align: center; padding: 0.5rem;
  font-size: 0.85rem; font-weight: 500;
  z-index: 200;
}

/* ============== Smooth scroll & ancres compensées ============== */
html { scroll-behavior: smooth; }
.theme-restaurant section[id] { scroll-margin-top: 80px; }
