/* ============================================================================
   L'Émulsion — Site public
   Direction artistique : bistronomie éditoriale, ligne dorée, encre profonde.
   Palette : encre #0f0e0c · crème #f4efe6 · or #b8945a.
   Typographies : Playfair Display (display), Cormorant Garamond (serif), Inter (UI).
   Mobile-first · Touch ≥ 44px · Safe-area iOS · prefers-reduced-motion respecté.
   ============================================================================ */

/* ─── DESIGN TOKENS ──────────────────────────────────────────────────────── */
:root {
  /* Palette encre */
  --ink: #0f0e0c;
  --ink-800: #1a1815;
  --ink-700: #26221d;
  --ink-500: #4a433a;
  --ink-muted: #6c655c;
  --ink-line: #d9d2c4;

  /* Palette crème */
  --cream: #f4efe6;
  --cream-warm: #ece5d6;
  --cream-deep: #e0d7c3;
  --paper: #faf7f0;

  /* Or vieilli */
  --gold: #b8945a;
  --gold-deep: #94743f;
  --gold-soft: #d9bd8a;
  --gold-line: rgba(184, 148, 90, 0.4);

  /* Sage discret pour badges veggie */
  --sage: #7a8471;

  --shadow: 15 14 12;

  /* Typographies */
  --font-display: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-italic: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  /* Sizing */
  --max-w: 1320px;
  --max-w-narrow: 900px;
  --gutter: clamp(1.15rem, 5vw, 3rem);
  --radius: 0;
  --radius-sm: 2px;
  --radius-pill: 999px;

  /* Touch / safe area */
  --tap: 44px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
  --safe-right: env(safe-area-inset-right, 0px);

  /* Layout */
  --header-h: 72px;
  --bottombar-h: 64px;

  /* Animation */
  --easing: cubic-bezier(0.22, 1, 0.36, 1);
  --easing-editorial: cubic-bezier(0.65, 0.05, 0.36, 1);
  --easing-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ─── RESET ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(184, 148, 90, 0.15);
}
body {
  margin: 0;
  font-family: var(--font-body);
  /* font-size: 0 + line-height: 0 sur le body neutralise les text-nodes vides
     (whitespace pur entre les tags/includes) qui créeraient sinon une bande
     visible en haut de page. Les enfants directs restaurent les valeurs. */
  font-size: 0;
  line-height: 0;
  color: var(--ink);
  background: var(--cream);
  font-feature-settings: 'kern', 'liga', 'calt';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  padding-bottom: calc(var(--bottombar-h) + var(--safe-bottom));
  overscroll-behavior-y: none;
}
body > * {
  font-size: 1rem;
  line-height: 1.7;
}

img, svg { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: inherit; text-decoration: none; transition: color 260ms var(--easing), opacity 260ms var(--easing); }
a:hover { color: var(--gold-deep); }

h1, h2, h3, h4 {
  margin: 0;
  line-height: 1.05;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-wrap: balance;
}
p { margin: 0 0 1em; }

::selection { background: var(--gold-deep); color: var(--cream); }
a, button, [role="button"] { touch-action: manipulation; }

/* ─── ACCENTS TYPOGRAPHIQUES ─────────────────────────────────────────────── */
em, .italic {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--gold-deep);
}
.italic-serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}

/* ─── REVEAL ANIMATIONS ──────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1100ms var(--easing-editorial), transform 1100ms var(--easing-editorial);
  transition-delay: var(--delay, 0s);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.reveal-fade {
  opacity: 0;
  transition: opacity 1200ms var(--easing-editorial);
  transition-delay: var(--delay, 0s);
}
.reveal-fade.is-visible { opacity: 1; }

.reveal-rule {
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1400ms var(--easing-editorial);
  transition-delay: var(--delay, 0s);
}
.reveal-rule.is-visible { transform: scaleX(1); }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-fade { opacity: 1; transform: none; transition: none; }
  .reveal-rule { transform: scaleX(1); transition: none; }
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* ─── TYPOGRAPHIE UI ─────────────────────────────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--gold-deep);
  margin-bottom: 1.5rem;
}
.eyebrow--ornate {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}
.eyebrow--ornate::before,
.eyebrow--ornate::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
  opacity: 0.55;
}

.chapter-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--gold-deep);
  letter-spacing: 0.2em;
  display: block;
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 7.5vw, 4.4rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.015em;
  margin-bottom: 1.25rem;
  color: var(--ink);
}
.section-title em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--gold-deep);
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 10vw, 6rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.98;
  margin-bottom: 1rem;
}
.page-title em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-deep);
}
.page-subtitle {
  color: var(--ink-muted);
  font-size: 1.02rem;
  max-width: 60ch;
  margin: 0 auto;
  font-family: var(--font-body);
  line-height: 1.65;
  text-wrap: pretty;
}

/* Ornement doré centré (losange entre 2 filets) */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0 auto;
  color: var(--gold);
  opacity: 0.75;
}
.ornament::before,
.ornament::after {
  content: '';
  width: clamp(40px, 8vw, 100px);
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.ornament-diamond {
  width: 8px;
  height: 8px;
  background: currentColor;
  transform: rotate(45deg);
  box-shadow:
    0 0 0 1px rgba(184, 148, 90, 0.15),
    0 0 0 6px transparent,
    inset 0 0 0 1px rgba(15, 14, 12, 0.15);
}
.divider {
  padding: clamp(2.5rem, 6vw, 4.5rem) var(--gutter);
  background: var(--cream);
}
.divider.on-dark {
  background: var(--ink);
  color: var(--gold-soft);
}

/* ─── BUTTONS ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: var(--tap);
  padding: 0.95rem 1.85rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  transition: background-color 320ms var(--easing), color 320ms var(--easing),
              border-color 320ms var(--easing), transform 320ms var(--easing);
  position: relative;
  overflow: hidden;
}
.btn-arrow {
  display: inline-block;
  font-family: var(--font-serif);
  font-style: italic;
  transition: transform 380ms var(--easing-bounce);
}
.btn:hover .btn-arrow,
.btn:focus-visible .btn-arrow { transform: translateX(6px); }

.btn-primary {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.btn-primary:hover {
  background: var(--gold-deep);
  color: var(--cream);
  border-color: var(--gold-deep);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(15, 14, 12, 0.25);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--cream);
}
.btn-outline--gold {
  color: var(--cream);
  border-color: var(--gold);
}
.btn-outline--gold:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

.btn-lg { padding: 1.2rem 2.4rem; font-size: 0.82rem; min-height: 58px; }

/* Bouton "phone" impressionnant : label + numéro sur deux lignes */
.btn-phone {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 1.15rem 2.2rem;
  background: var(--gold-deep);
  color: var(--cream);
  border: 1px solid var(--gold-deep);
  min-height: 68px;
  transition: background-color 320ms var(--easing), color 320ms var(--easing),
              transform 320ms var(--easing);
}
.btn-phone:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
  transform: translateY(-1px);
}
.btn-phone-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  opacity: 0.85;
  font-weight: 500;
}
.btn-phone-number {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  font-weight: 400;
}

:where(a, button, .btn):focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

/* ─── ANNOUNCEMENT BAR ───────────────────────────────────────────────────── */
.announcement-bar {
  background: var(--ink);
  color: var(--gold-soft);
  padding: 0.75rem var(--gutter);
  padding-top: calc(0.75rem + var(--safe-top));
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
}
.announcement-bar-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 0.75rem; flex-wrap: wrap;
}
.announcement-bar-icon { color: var(--gold); }

/* ─── HEADER ─────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 239, 230, 0.88);
  -webkit-backdrop-filter: saturate(155%) blur(16px);
  backdrop-filter: saturate(155%) blur(16px);
  transition: box-shadow 320ms var(--easing), background 320ms var(--easing),
              transform 340ms var(--easing), border-color 320ms var(--easing);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(244, 239, 230, 0.98);
  border-bottom-color: rgba(15, 14, 12, 0.08);
}
.site-header.is-hidden { transform: translateY(-100%); }

/* Sur la home, le header est TOUJOURS en position:fixed (hors flux). Ça évite
   le décalage entre --header-h (valeur souhaitée) et la hauteur réelle du
   header — décalage qui créait une bande claire visible en haut, entre le
   body crème et le hero. Le hero commence naturellement à Y=0 sous le header. */
body[data-page="home"] .site-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
}
/* Quand pas encore scrollé sur home, on fond totalement le header dans le
   hero (transparent, sans backdrop-filter) pour éviter la double-couche
   qui créait un dégradé visible. */
body[data-page="home"] .site-header:not(.is-scrolled) {
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  border-bottom-color: transparent;
}
body[data-page="home"] .site-header:not(.is-scrolled) .site-brand-text strong { color: var(--cream); }
body[data-page="home"] .site-header:not(.is-scrolled) .site-brand-text em { color: var(--gold-soft); }
body[data-page="home"] .site-header:not(.is-scrolled) .site-nav-link { color: var(--cream); opacity: 0.85; }
body[data-page="home"] .site-header:not(.is-scrolled) .site-nav-link:hover,
body[data-page="home"] .site-header:not(.is-scrolled) .site-nav-link.is-active { color: var(--gold-soft); opacity: 1; }
body[data-page="home"] .site-header:not(.is-scrolled) .lang-switcher-link { color: rgba(244, 239, 230, 0.6); }
body[data-page="home"] .site-header:not(.is-scrolled) .lang-switcher-link.is-active { background: var(--gold); color: var(--ink); }
body[data-page="home"] .site-header:not(.is-scrolled) .site-burger span { background: var(--cream); }
body[data-page="home"] .site-header:not(.is-scrolled) .btn-reserve-header {
  background: transparent;
  color: var(--cream);
  border-color: var(--gold);
}
body[data-page="home"] .site-header:not(.is-scrolled) .btn-reserve-header:hover {
  background: var(--gold);
  color: var(--ink);
}

.site-header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0.75rem var(--gutter);
  padding-left: max(var(--gutter), var(--safe-left));
  padding-right: max(var(--gutter), var(--safe-right));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: var(--header-h);
}

.site-brand {
  display: flex; align-items: center; gap: 0.85rem;
  flex-shrink: 0;
  min-height: var(--tap);
}
.site-brand-mark {
  width: 44px; height: 44px;
  flex-shrink: 0;
  object-fit: cover;
  object-position: center;
  transition: transform 400ms var(--easing);
}
.site-brand:hover .site-brand-mark { transform: rotate(-6deg); }
.site-brand-text {
  display: flex; flex-direction: column; line-height: 1;
}
.site-brand-text strong {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.3rem;
  letter-spacing: 0.005em;
  color: var(--ink);
  transition: color 320ms var(--easing);
}
.site-brand-text em {
  font-style: normal;
  font-family: var(--font-body);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--ink-muted);
  margin-top: 3px;
  font-weight: 500;
  transition: color 320ms var(--easing);
}

.site-nav { display: none; }

.site-header-tools { display: flex; align-items: center; gap: 0.5rem; }

.lang-switcher { display: none; }
.lang-switcher-link {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: var(--tap); min-height: var(--tap);
  padding: 0.35rem 0.6rem;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--ink-muted);
  border-radius: 0;
  transition: color 260ms var(--easing), background 260ms var(--easing);
}
.lang-switcher-link.is-active {
  background: var(--ink);
  color: var(--cream);
}

.btn-reserve-header { display: none; }

/* Burger (mobile) */
.site-burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: var(--tap);
  height: var(--tap);
  -webkit-tap-highlight-color: transparent;
}
.site-burger:active { background: rgba(15, 14, 12, 0.06); }
.site-burger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--ink);
  transition: transform 320ms var(--easing), opacity 220ms var(--easing), background 320ms var(--easing);
}
.site-burger.is-active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.site-burger.is-active span:nth-child(2) { opacity: 0; }
.site-burger.is-active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── DRAWER (mobile fullscreen) ─────────────────────────────────────────── */
.site-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--ink);
  color: var(--cream);
  padding: calc(var(--header-h) + var(--safe-top) + 2rem) var(--gutter) calc(2rem + var(--safe-bottom));
  padding-left: max(var(--gutter), var(--safe-left));
  padding-right: max(var(--gutter), var(--safe-right));
  display: flex;
  flex-direction: column;
  gap: 2rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 320ms var(--easing), transform 320ms var(--easing), visibility 0s 320ms;
  background-image:
    radial-gradient(ellipse 50% 40% at 100% 0%, rgba(184, 148, 90, 0.14), transparent 60%),
    radial-gradient(ellipse 60% 40% at 0% 100%, rgba(184, 148, 90, 0.08), transparent 60%);
}
.site-drawer.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 300ms var(--easing), transform 300ms var(--easing), visibility 0s 0s;
}

body.is-drawer-open .mobile-bottombar { transform: translateY(110%); pointer-events: none; }
body.is-drawer-open { overflow: hidden; }
body.is-drawer-open .site-burger {
  position: fixed;
  top: max(0.75rem, calc(var(--safe-top) + 0.5rem));
  right: max(var(--gutter), var(--safe-right));
  z-index: 210;
}
body.is-drawer-open .site-burger span { background: var(--cream); }

.site-drawer-nav { display: flex; flex-direction: column; gap: 0; }
.site-drawer-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  padding: 1.1rem 0;
  min-height: 60px;
  border-bottom: 1px solid rgba(244, 239, 230, 0.12);
  color: var(--cream);
  font-style: italic;
}
.site-drawer-link::after {
  content: '→';
  font-family: var(--font-serif);
  color: var(--gold);
  font-size: 1.5rem;
  opacity: 0.7;
  transition: transform 320ms var(--easing-bounce), opacity 260ms var(--easing);
}
.site-drawer-link:hover::after,
.site-drawer-link:active::after { transform: translateX(8px); opacity: 1; color: var(--gold-soft); }

.site-drawer-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}
.site-drawer-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
  padding: 1.1rem 1.15rem;
  background: rgba(244, 239, 230, 0.04);
  border: 1px solid rgba(244, 239, 230, 0.12);
  min-height: 78px;
  color: var(--cream);
  transition: background-color 260ms var(--easing), border-color 260ms var(--easing);
}
.site-drawer-action:hover { background: rgba(184, 148, 90, 0.15); border-color: var(--gold); }
.site-drawer-action strong {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--cream);
}
.site-drawer-action span {
  font-size: 0.72rem;
  color: var(--gold-soft);
  letter-spacing: 0.06em;
}
.site-drawer-action.is-primary {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
}
.site-drawer-action.is-primary strong { color: var(--cream); }
.site-drawer-action.is-primary span { color: rgba(244, 239, 230, 0.85); }

.site-drawer-langs {
  display: flex;
  gap: 0;
  margin-top: auto;
  align-self: flex-start;
  border: 1px solid rgba(244, 239, 230, 0.12);
}
.site-drawer-langs .lang-switcher-link {
  padding: 0.7rem 1.15rem;
  min-width: 56px;
  color: rgba(244, 239, 230, 0.6);
}
.site-drawer-langs .lang-switcher-link.is-active {
  background: var(--gold);
  color: var(--ink);
}
.site-drawer-langs .lang-switcher-link + .lang-switcher-link { border-left: 1px solid rgba(244, 239, 230, 0.12); }

/* ═══════════════════════════════════════════════════════════════════════════
   HERO ÉDITORIAL (page d'accueil)
   ═══════════════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: min(100vh, 900px);
  min-height: min(100dvh, 900px);
  /* Pas de margin-top negatif : sur home, le header est en position:fixed
     (hors flux), le hero commence donc naturellement à Y=0. Le padding-top
     laisse la place au contenu pour ne pas être caché par le header. */
  margin-top: 0;
  padding-top: calc(var(--header-h) + var(--safe-top));
  color: var(--cream);
  overflow: hidden;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  isolation: isolate;
}

.hero-artwork {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
.hero-artwork img,
.hero-artwork svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.06);
  transition: transform 20s ease-out;
}
.hero.is-visible .hero-artwork img,
.hero.is-visible .hero-artwork svg { transform: scale(1); }

.hero-veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg,
      rgba(15, 14, 12, 0.85) 0%,
      rgba(15, 14, 12, 0.55) 22%,
      rgba(15, 14, 12, 0.45) 55%,
      rgba(15, 14, 12, 0.75) 85%,
      rgba(15, 14, 12, 0.95) 100%);
}
.hero-veil::after {
  content: '';
  position: absolute;
  inset: 40% 0 0;
  background:
    radial-gradient(ellipse 55% 45% at 50% 65%, rgba(184, 148, 90, 0.12), transparent 75%);
  pointer-events: none;
}

.hero-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(3rem, 10vw, 5rem) var(--gutter) clamp(3rem, 8vw, 5rem);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  flex: 1;
  justify-content: flex-start;
  z-index: 1;
  width: 100%;
}

.hero-corner-num {
  position: absolute;
  top: calc(var(--header-h) + var(--safe-top) + 0.5rem);
  left: var(--gutter);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(3rem, 12vw, 8rem);
  color: var(--cream);
  opacity: 0.05;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 1.1rem;
  background: rgba(15, 14, 12, 0.55);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(184, 148, 90, 0.35);
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
  color: var(--gold-soft);
  align-self: flex-start;
  font-weight: 500;
  max-width: 100%;
}
.hero-status > span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.status-dot.is-open {
  background: #7fb083;
  box-shadow: 0 0 0 3px rgba(127, 176, 131, 0.22);
}
.status-dot.is-open::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: #7fb083;
  opacity: 0;
  animation: pulse 2.8s infinite;
}
.status-dot.is-closed { background: var(--gold-soft); opacity: 0.6; }
@keyframes pulse {
  0% { transform: scale(0.85); opacity: 0.55; }
  100% { transform: scale(2.6); opacity: 0; }
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.34em;
  color: var(--gold-soft);
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}
.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 11vw, 7.5rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  font-weight: 400;
  color: var(--cream);
  text-wrap: balance;
  hyphens: none;
  word-break: normal;
  overflow-wrap: break-word;
}
.hero-title em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--gold-soft);
  display: inline-block;
}
.hero-title-rule {
  display: block;
  width: 80px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem 0;
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.05rem, 2.4vw, 1.4rem);
  color: rgba(244, 239, 230, 0.85);
  max-width: 44ch;
  margin-bottom: 2.5rem;
  line-height: 1.55;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  align-items: flex-start;
}
.hero-actions .btn-phone,
.hero-actions .btn { align-self: stretch; }

.hero-rating {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(184, 148, 90, 0.28);
  max-width: 380px;
}
.hero-rating-stars {
  color: var(--gold-soft);
  font-size: 0.95rem;
  letter-spacing: 0.25em;
}
.hero-rating p {
  margin: 0;
  font-size: 0.72rem;
  color: rgba(244, 239, 230, 0.7);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero-rating strong {
  color: var(--gold-soft);
  font-weight: 500;
  font-size: 0.82rem;
  font-family: var(--font-display);
  font-style: italic;
  letter-spacing: 0;
  text-transform: none;
}

.hero-badge { display: none; }

.hero-scroll {
  position: absolute;
  bottom: clamp(1rem, 4vw, 2rem);
  left: 50%;
  transform: translateX(-50%);
  display: none;
  align-items: center;
  gap: 0.75rem;
  color: rgba(244, 239, 230, 0.55);
  font-size: 0.65rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
  z-index: 1;
}
.hero-scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold-soft), transparent);
  animation: scroll-hint 2.4s ease-in-out infinite;
}
@keyframes scroll-hint {
  0%, 100% { transform: scaleY(1); transform-origin: top; opacity: 0.5; }
  50% { transform: scaleY(0.4); transform-origin: top; opacity: 1; }
}

/* ─── MARQUEE ────────────────────────────────────────────────────────────── */
.marquee {
  background: var(--ink);
  color: var(--gold-soft);
  padding: 1.15rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(184, 148, 90, 0.2);
  border-bottom: 1px solid rgba(184, 148, 90, 0.2);
}
.marquee-track {
  display: flex;
  gap: 2.5rem;
  animation: scroll-x 50s linear infinite;
  white-space: nowrap;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  will-change: transform;
  color: var(--gold-soft);
  font-weight: 400;
}
.marquee-track > span:not(.marquee-dot) { display: inline-block; }
.marquee-dot { color: var(--gold); font-size: 0.65rem; opacity: 0.75; }
@keyframes scroll-x {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.333%); }
}

/* ═══════════════════════════════════════════════════════════════════════════
   CHAPITRES & SECTIONS ÉDITORIALES
   ═══════════════════════════════════════════════════════════════════════════ */

/* Séparateur ornemental entre sections */
.section-divider {
  padding: clamp(3rem, 7vw, 5rem) var(--gutter);
  display: flex;
  justify-content: center;
  background: var(--cream);
}
.section-divider--paper { background: var(--paper); }
.section-divider--ink { background: var(--ink); }
.section-divider--ink .ornament { color: var(--gold-soft); }

/* ─── ABOUT ──────────────────────────────────────────────────────────────── */
.about {
  padding: clamp(4rem, 10vw, 8rem) var(--gutter);
  background: var(--paper);
  position: relative;
}
.about-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.about-content { order: 2; }
.about-text {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--ink-700);
}
.about-text p { margin-bottom: 1.25rem; }
.about-text p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 4em;
  float: left;
  line-height: 0.85;
  padding: 0.08em 0.12em 0 0;
  color: var(--gold-deep);
  font-weight: 400;
  font-style: italic;
}

.about-signature {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.about-signature img {
  height: 60px;
  width: auto;
  max-width: 100%;
  filter: drop-shadow(0 1px 2px rgba(184, 148, 90, 0.15));
}
.about-signature-meta {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--ink-muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-left: 1px solid var(--gold-line);
  padding-left: 1.25rem;
  flex: 0 0 auto;
}
.about-signature-meta strong {
  display: block;
  color: var(--gold-deep);
  font-weight: 500;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 3px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 2.5rem;
  border-top: 1px solid var(--ink-line);
}
.about-feature {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 1rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--ink-line);
  transition: padding-left 340ms var(--easing);
}
.about-feature:hover { padding-left: 8px; }
.about-feature strong {
  font-family: var(--font-body);
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
  align-self: center;
  order: 2;
}
.about-feature span {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--ink);
  font-weight: 400;
  line-height: 1.25;
  font-style: italic;
  order: 1;
}

.about-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--cream-deep);
  order: 1;
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
  box-shadow: 0 32px 80px -32px rgb(var(--shadow) / 0.4);
}
.about-visual::after {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(184, 148, 90, 0.3);
  pointer-events: none;
}
.about-visual img { width: 100%; height: 100%; object-fit: cover; }
.about-visual-placeholder {
  width: 100%; height: 100%;
  display: grid; place-items: center;
  background: linear-gradient(155deg, var(--ink-800), var(--ink) 60%, var(--gold-deep));
  padding: 2rem;
  text-align: center;
  color: var(--gold-soft);
}
.about-visual-emoji {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.2rem;
  color: var(--gold-soft);
  opacity: 0.9;
}

/* ═══════════════════════════════════════════════════════════════════════════
   PULL QUOTE — grande citation atmosphérique
   ═══════════════════════════════════════════════════════════════════════════ */
.pull-quote {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(5rem, 12vw, 10rem) var(--gutter);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.pull-quote::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 30%, rgba(184, 148, 90, 0.12), transparent 60%),
    radial-gradient(ellipse 55% 50% at 80% 80%, rgba(184, 148, 90, 0.08), transparent 60%);
  z-index: -1;
}
.pull-quote-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.pull-quote-mark {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(5rem, 18vw, 12rem);
  line-height: 0.5;
  color: var(--gold);
  opacity: 0.32;
  display: block;
  margin-bottom: 1.5rem;
  user-select: none;
}
.pull-quote-text {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.4rem, 3.5vw, 2.4rem);
  line-height: 1.35;
  color: var(--cream);
  margin: 0 auto 2rem;
  max-width: 32ch;
  text-wrap: balance;
}
.pull-quote-attr {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 500;
}
.pull-quote-attr::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}

/* ═══════════════════════════════════════════════════════════════════════════
   SIGNATURES (featured)
   ═══════════════════════════════════════════════════════════════════════════ */
.featured {
  padding: clamp(4rem, 10vw, 8rem) var(--gutter);
  background: var(--cream);
  position: relative;
}
.featured-header {
  max-width: var(--max-w);
  margin: 0 auto clamp(3rem, 6vw, 4.5rem);
  text-align: center;
}

.featured-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
.featured-card {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-top: 1.75rem;
}
.featured-card-num {
  position: absolute;
  top: 0;
  left: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.8rem;
  color: var(--gold-deep);
  letter-spacing: 0.2em;
}
.featured-card-image {
  aspect-ratio: 3 / 4;
  position: relative;
  background: var(--cream-deep);
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: 0 24px 60px -28px rgb(var(--shadow) / 0.3);
}
.featured-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1200ms var(--easing);
}
.featured-card:hover .featured-card-image img { transform: scale(1.06); }
.featured-card-placeholder {
  width: 100%; height: 100%;
  display: grid; place-items: center;
  background: linear-gradient(150deg, var(--ink-800), var(--ink) 60%, var(--gold-deep));
  color: var(--gold-soft);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 3rem;
  opacity: 0.9;
}
.badge-veggie {
  position: absolute;
  top: 0.85rem; left: 0.85rem;
  background: var(--cream);
  color: var(--sage);
  padding: 0.35rem 0.75rem;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.featured-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.featured-card-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  margin-bottom: 0.65rem;
  color: var(--ink);
  line-height: 1.15;
}
.featured-card-desc {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--ink-500);
  margin-bottom: 1.5rem;
  flex: 1;
  line-height: 1.55;
}
.featured-card-footer {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-top: 1rem;
  border-top: 1px solid var(--gold-line);
}
.featured-card-price {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.35rem;
  color: var(--gold-deep);
  letter-spacing: 0.01em;
  font-feature-settings: 'tnum';
}
.featured-cta { text-align: center; margin-top: clamp(2.5rem, 6vw, 4rem); }

/* ═══════════════════════════════════════════════════════════════════════════
   GALLERY PREVIEW
   ═══════════════════════════════════════════════════════════════════════════ */
.gallery-preview {
  padding: clamp(4rem, 10vw, 8rem) var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
}
.gallery-preview-header { text-align: center; margin-bottom: clamp(3rem, 6vw, 4.5rem); }

.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 200px;
  gap: 10px;
}
.gallery-preview-item {
  overflow: hidden;
  background: var(--cream-deep);
  display: block;
  position: relative;
}
.gallery-preview-item::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(184, 148, 90, 0.15);
  pointer-events: none;
}
.gallery-preview-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1200ms var(--easing);
}
.gallery-preview-item:hover img { transform: scale(1.08); }
.gallery-preview-item:nth-child(n) { grid-column: span 1; grid-row: span 1; }
.gallery-preview-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }

/* ═══════════════════════════════════════════════════════════════════════════
   REVIEWS PREVIEW (fond sombre)
   ═══════════════════════════════════════════════════════════════════════════ */
.reviews-preview {
  padding: clamp(4rem, 10vw, 8rem) var(--gutter);
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.reviews-preview::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 15% 20%, rgba(184, 148, 90, 0.08), transparent 60%),
    radial-gradient(ellipse 55% 45% at 85% 85%, rgba(184, 148, 90, 0.06), transparent 60%);
  z-index: 0;
}
.reviews-preview-inner { max-width: var(--max-w); margin: 0 auto; position: relative; z-index: 1; }
.reviews-preview-header { text-align: center; margin-bottom: clamp(3rem, 6vw, 4.5rem); }
.reviews-preview-header .eyebrow { color: var(--gold-soft); }
.reviews-preview-header .section-title { color: var(--cream); }
.reviews-preview-header .section-title em { color: var(--gold-soft); }

.reviews-preview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

.review-card {
  padding: 2.5rem 2rem 2rem;
  border: 1px solid rgba(184, 148, 90, 0.28);
  display: flex;
  flex-direction: column;
  position: relative;
  background: rgba(15, 14, 12, 0.35);
  transition: border-color 340ms var(--easing), transform 340ms var(--easing);
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 0.5rem;
  left: 1.25rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 6rem;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
  pointer-events: none;
}
.review-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.review-card-stars {
  color: var(--gold-soft);
  font-size: 0.9rem;
  letter-spacing: 0.25em;
  margin-bottom: 1.25rem;
  position: relative;
}
.review-card-content {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(244, 239, 230, 0.92);
  margin-bottom: 1.75rem;
  flex: 1;
  position: relative;
  font-weight: 400;
}
.review-card-footer {
  display: flex;
  flex-direction: column;
  font-size: 0.68rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(184, 148, 90, 0.2);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
}
.review-card-footer strong { color: var(--gold-soft); font-weight: 500; letter-spacing: 0.24em; }
.review-card-footer span { color: rgba(244, 239, 230, 0.45); margin-top: 4px; font-size: 0.62rem; }

.reviews-preview-cta { text-align: center; margin-top: 2.5rem; }

/* ═══════════════════════════════════════════════════════════════════════════
   CONTACT TEASER — Bloc téléphone monumental
   ═══════════════════════════════════════════════════════════════════════════ */
.contact-teaser {
  padding: clamp(4rem, 10vw, 8rem) var(--gutter);
  background: var(--cream);
  position: relative;
}
.contact-teaser-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.contact-teaser-content { display: flex; flex-direction: column; }
.contact-teaser-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  padding: 1.75rem 0;
  margin: 1.75rem 0;
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
  color: var(--ink);
  transition: color 320ms var(--easing);
  text-decoration: none;
}
.contact-teaser-phone:hover { color: var(--gold-deep); }
.contact-teaser-phone-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--gold-deep);
  font-weight: 500;
}
.contact-teaser-phone-number {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2rem, 6vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.005em;
}
.contact-teaser-address {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--ink-500);
  margin-bottom: 0;
  line-height: 1.6;
  font-style: italic;
}
.contact-teaser-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.contact-teaser-actions .btn { width: 100%; }
.contact-teaser-map {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--gold-line);
  background: var(--cream-deep);
  position: relative;
}
.contact-teaser-map::after {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(184, 148, 90, 0.2);
  pointer-events: none;
}
.contact-teaser-map iframe {
  width: 100%; height: 100%;
  border: 0;
  filter: grayscale(0.5) saturate(0.8) contrast(0.95);
}

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(3.5rem, 8vw, 6rem) var(--gutter) 2rem;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.site-footer-inner { max-width: var(--max-w); margin: 0 auto; }
.site-footer-brand {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(244, 239, 230, 0.1);
}
.site-footer-logo {
  width: 64px; height: 64px;
  flex-shrink: 0;
  object-fit: cover;
  object-position: center;
}
.site-footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  margin: 0;
  color: var(--gold-soft);
  font-size: 1.1rem;
  line-height: 1.4;
  font-weight: 400;
}
.site-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.site-footer-title {
  font-family: var(--font-body);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin: 0 0 1.15rem;
  font-weight: 500;
}
.site-footer-col p,
.site-footer-col a { font-size: 0.9rem; color: rgba(244, 239, 230, 0.72); line-height: 1.7; }
.site-footer-link {
  display: inline-block;
  margin-top: 0.5rem;
  color: var(--cream);
  border-bottom: 1px solid rgba(244, 239, 230, 0.2);
  padding-bottom: 2px;
  min-height: 32px;
  transition: border-color 260ms var(--easing), color 260ms var(--easing);
}
.site-footer-link:hover { color: var(--gold-soft); border-color: var(--gold-soft); }
.site-footer-link-phone {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  border-bottom-color: var(--gold);
}

.site-footer-socials {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.site-footer-socials a {
  color: var(--cream);
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(244, 239, 230, 0.15);
  align-self: flex-start;
  font-size: 0.88rem;
  transition: color 260ms var(--easing), border-color 260ms var(--easing);
}
.site-footer-socials a:hover { color: var(--gold-soft); border-color: var(--gold-soft); }

.site-footer-hours {
  list-style: none; margin: 0; padding: 0;
  font-size: 0.85rem;
}
.site-footer-hours li {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 0.5rem 0;
  color: rgba(244, 239, 230, 0.75);
  border-bottom: 1px solid rgba(244, 239, 230, 0.08);
}
.site-footer-hours li:last-child { border-bottom: 0; }
.site-footer-hours span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--cream);
}
.site-footer-hours em {
  font-style: normal;
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: rgba(244, 239, 230, 0.55);
  font-feature-settings: 'tnum';
}

.site-footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  text-align: center;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(244, 239, 230, 0.1);
  font-size: 0.68rem;
  color: rgba(244, 239, 230, 0.5);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.site-footer-bottom p { margin: 0; }
.site-footer-sep { margin: 0 0.5rem; opacity: 0.5; }
.site-footer-admin { opacity: 0.6; }
.site-footer-admin:hover { opacity: 1; color: var(--gold-soft); }

/* ═══════════════════════════════════════════════════════════════════════════
   MOBILE BOTTOM BAR
   ═══════════════════════════════════════════════════════════════════════════ */
.mobile-bottombar {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  z-index: 95;
  background: rgba(15, 14, 12, 0.96);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  backdrop-filter: saturate(150%) blur(14px);
  border-top: 1px solid rgba(184, 148, 90, 0.25);
  padding: 8px 8px calc(8px + var(--safe-bottom));
  padding-left: max(8px, var(--safe-left));
  padding-right: max(8px, var(--safe-right));
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  gap: 6px;
  transition: transform 340ms var(--easing);
}
.mobile-bottombar.is-hidden { transform: translateY(110%); }

.mobile-bottombar-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  min-height: 54px;
  padding: 8px 6px;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: transparent;
  color: var(--cream);
  -webkit-tap-highlight-color: transparent;
  transition: background-color 200ms var(--easing), transform 140ms var(--easing);
}
.mobile-bottombar-btn:active { transform: scale(0.96); background: rgba(184, 148, 90, 0.1); }
.mobile-bottombar-btn-icon {
  font-size: 1.15rem;
  line-height: 1;
  color: var(--gold-soft);
}
.mobile-bottombar-btn.is-primary {
  background: var(--gold-deep);
  color: var(--cream);
}
.mobile-bottombar-btn.is-primary .mobile-bottombar-btn-icon { color: var(--cream); }
.mobile-bottombar-btn.is-primary:active { background: var(--ink); }

.floating-order { display: none !important; }

/* ═══════════════════════════════════════════════════════════════════════════
   PAGE HEADER (autres pages : menu, contact, avis, galerie)
   ═══════════════════════════════════════════════════════════════════════════ */
.page-header {
  padding: clamp(4rem, 9vw, 7rem) var(--gutter) clamp(2rem, 5vw, 3.5rem);
  position: relative;
  overflow: hidden;
  background: var(--cream);
  text-align: center;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 65% 55% at 50% 30%, rgba(184, 148, 90, 0.08), transparent 60%);
  pointer-events: none;
}
.page-header-inner {
  max-width: var(--max-w-narrow);
  margin: 0 auto;
  position: relative;
}
.page-header .ornament { margin-top: 1.5rem; }

/* ═══════════════════════════════════════════════════════════════════════════
   MENU PAGE
   ═══════════════════════════════════════════════════════════════════════════ */
.menu-page {
  max-width: var(--max-w-narrow);
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(4rem, 8vw, 6rem);
}
.menu-categories {
  display: flex;
  gap: 0;
  position: sticky;
  top: var(--header-h);
  z-index: 20;
  padding: 0.85rem var(--gutter);
  margin: 0 calc(var(--gutter) * -1) 2.5rem;
  background: rgba(244, 239, 230, 0.96);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--gold-line);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.menu-categories::-webkit-scrollbar { display: none; }
.menu-category-link {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1.2rem;
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  transition: color 260ms var(--easing);
  white-space: nowrap;
  scroll-snap-align: start;
  flex-shrink: 0;
  min-height: 40px;
  border-right: 1px solid var(--gold-line);
}
.menu-category-link:last-child { border-right: 0; }
.menu-category-link:hover { color: var(--ink); }
.menu-category-link.is-active { color: var(--gold-deep); }

.menu-section {
  margin-bottom: clamp(3.5rem, 8vw, 5.5rem);
  scroll-margin-top: calc(var(--header-h) + 96px);
}
.menu-section-header { margin-bottom: 2.25rem; text-align: center; }
.menu-section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6.5vw, 3.2rem);
  font-weight: 400;
  letter-spacing: -0.015em;
  margin-bottom: 0.5rem;
  color: var(--ink);
  font-style: italic;
}
.menu-section-desc {
  color: var(--ink-muted);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.02rem;
  max-width: 55ch;
  margin: 0 auto;
  line-height: 1.6;
}

.menu-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
.menu-item {
  display: flex;
  gap: 1.35rem;
  align-items: flex-start;
  padding: 0.35rem 0;
}
.menu-item-image {
  flex-shrink: 0;
  width: 88px;
  height: 88px;
  overflow: hidden;
  background: var(--cream-deep);
  position: relative;
}
.menu-item-image::after {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(184, 148, 90, 0.2);
  pointer-events: none;
}
.menu-item-image img { width: 100%; height: 100%; object-fit: cover; }
.menu-item-body { flex: 1; min-width: 0; }
.menu-item-head {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}
.menu-item-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: -0.005em;
  color: var(--ink);
  flex: 1;
  min-width: 0;
}
.menu-item-dots {
  flex: 1;
  height: 1px;
  border-bottom: 1px dotted rgba(148, 116, 63, 0.35);
  align-self: center;
  margin: 0 0.5rem;
  display: none;
}
.menu-item-price {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.15rem;
  color: var(--gold-deep);
  flex-shrink: 0;
  letter-spacing: 0.01em;
  font-feature-settings: 'tnum';
}
.menu-item-desc {
  font-family: var(--font-serif);
  font-size: 0.98rem;
  color: var(--ink-500);
  margin: 0;
  line-height: 1.55;
}
.badge-veggie-inline {
  display: inline-block;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  padding: 0.15rem 0.55rem;
  border: 1px solid var(--sage);
  border-radius: 0;
  flex-shrink: 0;
  vertical-align: middle;
  font-weight: 500;
}
.badge-featured {
  color: var(--gold);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.menu-page-cta {
  text-align: center;
  margin-top: clamp(2.5rem, 6vw, 4rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--gold-line);
}

/* ═══════════════════════════════════════════════════════════════════════════
   GALLERY PAGE
   ═══════════════════════════════════════════════════════════════════════════ */
.gallery-page {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(4rem, 8vw, 6rem);
}
.gallery-page-grid {
  columns: 2;
  column-gap: 10px;
}
.gallery-page-item {
  break-inside: avoid;
  margin: 0 0 10px;
  overflow: hidden;
  background: var(--cream-deep);
  position: relative;
}
.gallery-page-item img {
  width: 100%; height: auto;
  display: block;
  transition: transform 1200ms var(--easing);
}
.gallery-page-item:hover img { transform: scale(1.04); }
.gallery-page-item figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem 1.15rem 1.15rem;
  background: linear-gradient(to top, rgba(15, 14, 12, 0.8), transparent);
  color: var(--cream);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.9rem;
  opacity: 0;
  transition: opacity 320ms var(--easing);
}
.gallery-page-item:hover figcaption,
.gallery-page-item:active figcaption { opacity: 1; }

/* ═══════════════════════════════════════════════════════════════════════════
   REVIEWS PAGE
   ═══════════════════════════════════════════════════════════════════════════ */
.reviews-page {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(4rem, 8vw, 6rem);
}
.reviews-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.reviews-page-grid .review-card {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--gold-line);
}
.reviews-page-grid .review-card::before { color: var(--gold-deep); opacity: 0.25; }
.reviews-page-grid .review-card-content { color: var(--ink-700); }
.reviews-page-grid .review-card-footer { border-top-color: var(--gold-line); }
.reviews-page-grid .review-card-footer strong { color: var(--gold-deep); }
.reviews-page-grid .review-card-footer span { color: var(--ink-muted); }
.reviews-page-grid .review-card-stars { color: var(--gold); }

.reviews-page-cta { text-align: center; margin-top: 2.5rem; }

/* ═══════════════════════════════════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════════════════════════════════ */
.contact-page {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(4rem, 8vw, 6rem);
}
.contact-page-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Bloc téléphone hero (grande call-to-action visuelle) */
.contact-phone-hero {
  display: block;
  padding: clamp(2.25rem, 6vw, 3.5rem) clamp(1.25rem, 4vw, 3rem);
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  text-decoration: none;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
  transition: background-color 340ms var(--easing);
}
.contact-phone-hero:hover { background: #1a1815; color: var(--cream); }
.contact-phone-hero::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(184, 148, 90, 0.3);
  pointer-events: none;
}
.contact-phone-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(184, 148, 90, 0.12), transparent 70%);
  pointer-events: none;
}
.contact-phone-hero-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--gold-soft);
  margin-bottom: 1rem;
  font-weight: 500;
  position: relative;
}
.contact-phone-hero-number {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.3rem, 8vw, 4.4rem);
  line-height: 1;
  color: var(--cream);
  letter-spacing: -0.005em;
  margin-bottom: 1rem;
  transition: color 320ms var(--easing);
  position: relative;
}
.contact-phone-hero:hover .contact-phone-hero-number { color: var(--gold-soft); }
.contact-phone-hero-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: rgba(244, 239, 230, 0.7);
  position: relative;
  font-weight: 500;
  max-width: 100%;
  text-align: center;
  line-height: 1.4;
}
.contact-phone-hero-note::before,
.contact-phone-hero-note::after {
  content: '';
  width: clamp(16px, 5vw, 32px);
  height: 1px;
  background: rgba(184, 148, 90, 0.55);
  flex-shrink: 0;
}

.contact-info-block {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--gold-line);
}
.contact-info-block:last-child { border-bottom: 0; }
.contact-info-block:first-child { padding-top: 0; }
.contact-info-block h3 {
  font-family: var(--font-body);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold-deep);
  margin-bottom: 1rem;
  font-weight: 500;
}
.contact-info-block p {
  margin: 0;
  color: var(--ink-700);
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 1.65;
}
.contact-link {
  color: var(--ink);
  border-bottom: 1px solid rgba(15, 14, 12, 0.3);
  padding-bottom: 2px;
  display: inline-block;
  min-height: 36px;
  padding: 0.35rem 0 2px;
  transition: color 260ms var(--easing), border-color 260ms var(--easing);
}
.contact-link:hover { color: var(--gold-deep); border-color: var(--gold-deep); }
.contact-link-big {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.65rem;
  letter-spacing: -0.005em;
  min-height: var(--tap);
  padding: 0.4rem 0;
}
.contact-status {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.85rem;
  font-size: 0.85rem;
  flex-wrap: wrap;
  font-family: var(--font-body);
}
.contact-status strong { text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.7rem; font-weight: 500; color: var(--gold-deep); }
.contact-status-detail {
  font-size: 0.8rem;
  color: var(--ink-muted);
  width: 100%;
  font-family: var(--font-body);
}

.contact-hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin-top: 1rem;
  font-family: var(--font-body);
}
.contact-hours-table th,
.contact-hours-table td {
  padding: 0.7rem 0.5rem;
  text-align: left;
  border-bottom: 1px solid var(--ink-line);
}
.contact-hours-table thead th {
  font-family: var(--font-body);
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: var(--gold-deep);
  font-weight: 500;
}
.contact-hours-table tbody th {
  font-weight: 400;
  color: var(--ink);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
}
.contact-hours-table tbody td { color: var(--ink-500); font-feature-settings: 'tnum'; }
.contact-hours-table tbody td em {
  color: var(--ink-muted);
  font-style: italic;
  font-size: 0.8rem;
  font-family: var(--font-serif);
}

.contact-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.contact-social {
  padding: 0.7rem 1.25rem;
  background: transparent;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  transition: background-color 260ms var(--easing), color 260ms var(--easing);
}
.contact-social:hover { background: var(--ink); color: var(--cream); }

.contact-map-wrap {
  overflow: hidden;
  background: var(--cream-deep);
  aspect-ratio: 4 / 3;
  min-height: 300px;
  border: 1px solid var(--gold-line);
  position: relative;
}
.contact-map-wrap::after {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(184, 148, 90, 0.2);
  pointer-events: none;
  z-index: 2;
}
.contact-map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.5) saturate(0.8) contrast(0.95);
}

/* ═══════════════════════════════════════════════════════════════════════════
   ERROR PAGES
   ═══════════════════════════════════════════════════════════════════════════ */
.error-page {
  display: grid;
  place-items: center;
  min-height: 70dvh;
  padding: 4rem var(--gutter);
  background: var(--cream);
}
.error-page-inner { text-align: center; max-width: 600px; }
.error-page-code {
  display: inline-block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(5rem, 20vw, 8rem);
  font-weight: 400;
  color: var(--gold-deep);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.error-page-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  justify-content: center;
  margin-top: 2rem;
}
.error-page-actions .btn { width: 100%; }
.error-page-debug {
  margin-top: 1.75rem;
  padding: 1rem;
  background: rgba(15, 14, 12, 0.04);
  text-align: left;
  font-size: 0.78rem;
  font-family: var(--font-mono);
  white-space: pre-wrap;
  max-height: 300px;
  overflow: auto;
}

/* ═══════════════════════════════════════════════════════════════════════════
   LEGAL PAGE
   ═══════════════════════════════════════════════════════════════════════════ */
.legal-page {
  max-width: var(--max-w-narrow);
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(4rem, 8vw, 6rem);
}
.legal-page-content {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--ink-500);
  line-height: 1.8;
}
.legal-page-content h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.6rem;
  font-weight: 400;
  margin: 2.5rem 0 1rem;
  color: var(--ink);
}
.legal-page-content h2:first-child { margin-top: 0; }
.legal-page-content strong { font-weight: 500; color: var(--ink); }

/* ═══════════════════════════════════════════════════════════════════════════
   EMPTY STATE
   ═══════════════════════════════════════════════════════════════════════════ */
.empty-state {
  text-align: center;
  padding: 4rem 1rem;
  color: var(--ink-muted);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
}

/* ============================================================================
   ▼▼▼ TABLET (≥720px)
   ============================================================================ */
@media (min-width: 720px) {
  :root { --header-h: 80px; }

  body { padding-bottom: 0; }

  .site-header-inner { padding: 1rem var(--gutter); gap: 1.75rem; }
  .site-brand-mark { width: 52px; height: 52px; object-fit: cover; }
  .site-brand-text strong { font-size: 1.4rem; }
  .site-brand-text em { font-size: 0.64rem; }

  .site-burger { display: none; }
  .site-drawer { display: none !important; }

  .site-nav {
    display: flex;
    gap: 0.15rem;
    flex: 1;
    justify-content: center;
  }
  .site-nav-link {
    padding: 0.75rem 1.2rem;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-muted);
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    position: relative;
    transition: color 260ms var(--easing);
  }
  .site-nav-link::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--gold-deep);
    transition: width 320ms var(--easing);
  }
  .site-nav-link:hover { color: var(--ink); }
  .site-nav-link:hover::after,
  .site-nav-link.is-active::after { width: calc(100% - 2.4rem); }
  .site-nav-link.is-active { color: var(--ink); }
  body[data-page="home"] .site-header:not(.is-scrolled) .site-nav-link::after { background: var(--gold-soft); }

  .lang-switcher {
    display: flex;
    gap: 0;
    padding: 0;
    border: 1px solid var(--gold-line);
  }
  .lang-switcher .lang-switcher-link {
    min-width: 0;
    min-height: 36px;
    padding: 0.4rem 0.65rem;
    font-size: 0.65rem;
    border-radius: 0;
  }
  .lang-switcher .lang-switcher-link + .lang-switcher-link { border-left: 1px solid var(--gold-line); }
  body[data-page="home"] .site-header:not(.is-scrolled) .lang-switcher { border-color: rgba(184, 148, 90, 0.4); }

  .btn-reserve-header {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    background: var(--gold-deep);
    color: var(--cream);
    padding: 0.55rem 1.25rem;
    min-height: 48px;
    border: 1px solid var(--gold-deep);
    transition: all 320ms var(--easing);
  }
  .btn-reserve-header-label {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.62rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    opacity: 0.9;
  }
  .btn-reserve-header-phone {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
  }
  .btn-reserve-header:hover {
    background: var(--ink);
    color: var(--cream);
    border-color: var(--ink);
  }

  .mobile-bottombar { display: none; }

  /* HERO tablette */
  .hero { min-height: min(100vh, 780px); min-height: min(100dvh, 780px); }
  .hero-actions { flex-direction: row; align-items: center; flex-wrap: wrap; }
  .hero-actions .btn-phone,
  .hero-actions .btn { align-self: auto; }
  .hero-rating { flex-direction: row; align-items: center; gap: 1rem; }
  .hero-rating p { display: flex; align-items: center; gap: 0.5rem; }
  .hero-scroll { display: inline-flex; }

  .featured-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
  .reviews-preview-grid { grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }
  .reviews-page-grid { grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }
  .gallery-page-grid { columns: 3; column-gap: 14px; }
  .gallery-page-item { margin-bottom: 14px; }

  .gallery-preview-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 12px;
  }
  .gallery-preview-item:nth-child(n) { grid-column: span 1; grid-row: span 1; }
  .gallery-preview-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  .gallery-preview-item:nth-child(2) { grid-column: span 2; }

  .menu-categories {
    margin: 0 0 3rem;
    padding: 0.85rem 0;
    background: rgba(244, 239, 230, 0.96);
    justify-content: center;
  }
  .menu-items { gap: 3rem; }
  .menu-item-dots { display: block; }

  .about-features { grid-template-columns: repeat(2, 1fr); gap: 0 3rem; }

  .site-footer-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
  .site-footer-bottom { flex-direction: row; gap: 1rem; text-align: left; justify-content: space-between; }

  .contact-teaser-actions { flex-direction: row; flex-wrap: wrap; }
  .contact-teaser-actions .btn { width: auto; }

  .error-page-actions { flex-direction: row; flex-wrap: wrap; }
  .error-page-actions .btn { width: auto; }
}

/* ============================================================================
   ▼▼▼ DESKTOP (≥1024px)
   ============================================================================ */
@media (min-width: 1024px) {
  :root { --gutter: clamp(1.75rem, 3vw, 3.5rem); }

  .site-header-inner { padding: 1.25rem var(--gutter); gap: 2rem; }

  /* HERO desktop : plein écran cinématographique */
  .hero { min-height: 100vh; min-height: 100dvh; }
  .hero-grid {
    padding-bottom: clamp(4rem, 8vw, 6rem);
    max-width: min(920px, 100%);
    margin-left: 0;
  }
  .hero-title { font-size: clamp(4rem, 8vw, 8.5rem); margin-bottom: 2rem; }
  .hero-subtitle { font-size: clamp(1.2rem, 1.7vw, 1.5rem); margin-bottom: 3rem; }
  .hero-corner-num { font-size: clamp(6rem, 22vw, 14rem); top: 8vh; left: clamp(2rem, 6vw, 6rem); }

  .marquee { padding: 1.4rem 0; }
  .marquee-track { gap: 3.5rem; font-size: 1.2rem; }

  /* ABOUT desktop : split screen */
  .about-inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(3rem, 6vw, 6rem);
    align-items: center;
  }
  .about-content { order: 0; }
  .about-visual { order: 0; max-width: none; }
  .about-text { font-size: 1.15rem; line-height: 1.8; }
  .about-features { gap: 0 3.5rem; margin-top: 3rem; }

  .featured { padding: clamp(5rem, 10vw, 8rem) var(--gutter); }
  .featured-grid { grid-template-columns: repeat(3, 1fr); gap: 3rem; }
  .featured-card-title { font-size: 1.9rem; }
  .featured-card-desc { font-size: 1.05rem; }
  .featured-card-price { font-size: 1.5rem; }

  .gallery-preview { padding: clamp(5rem, 10vw, 8rem) var(--gutter); }
  .gallery-preview-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: minmax(220px, auto);
    gap: 14px;
  }
  .gallery-preview-item:nth-child(n) { grid-column: span 1; grid-row: span 1; }
  .gallery-preview-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  .gallery-preview-item:nth-child(2) { grid-column: span 2; }
  .gallery-preview-item:nth-child(3) { grid-column: span 2; }
  .gallery-preview-item:nth-child(4) { grid-column: span 2; }
  .gallery-preview-item:nth-child(5) { grid-column: span 1; }
  .gallery-preview-item:nth-child(6) { grid-column: span 1; }

  .reviews-preview { padding: clamp(5rem, 10vw, 8rem) var(--gutter); }
  .reviews-preview-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
  .review-card { padding: 3rem 2.25rem 2.25rem; }
  .review-card-content { font-size: 1.12rem; }

  .reviews-page-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }

  .contact-teaser-inner {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: clamp(3rem, 6vw, 5rem);
    align-items: center;
  }
  .contact-teaser-phone-number { font-size: clamp(2.5rem, 4.5vw, 3.8rem); }

  .contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: clamp(3rem, 5vw, 5rem);
    align-items: start;
  }
  .contact-map-wrap {
    aspect-ratio: auto;
    min-height: 620px;
    height: 100%;
    position: sticky;
    top: calc(var(--header-h) + 32px);
  }

  .menu-page { padding: 0 var(--gutter) clamp(5rem, 10vw, 7rem); }
  .menu-categories {
    flex-wrap: wrap;
    overflow: visible;
    padding: 1.1rem 0;
    top: var(--header-h);
  }
  .menu-section { scroll-margin-top: calc(var(--header-h) + 100px); }
  .menu-items { gap: 2.75rem; }
  .menu-item-image { width: 100px; height: 100px; }
  .menu-item-name { font-size: 1.4rem; }
  .menu-item-price { font-size: 1.3rem; }
  .menu-item-desc { font-size: 1rem; }

  .site-footer-grid { grid-template-columns: repeat(4, 1fr); gap: 3.5rem; }
  .site-footer-brand { margin-bottom: 3rem; padding-bottom: 2.5rem; }
  .site-footer-logo { width: 72px; height: 72px; }
}

/* ============================================================================
   ▼▼▼ LARGE DESKTOP (≥1280px)
   ============================================================================ */
@media (min-width: 1280px) {
  .hero-title { font-size: clamp(4.5rem, 7vw, 9rem); }
  .featured-grid { gap: 3.5rem; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   HOVER ONLY
   ═══════════════════════════════════════════════════════════════════════════ */
@media (hover: hover) {
  .featured-card:hover { transform: translateY(-6px); transition: transform 500ms var(--easing); }
}

/* ═══════════════════════════════════════════════════════════════════════════
   PRINT
   ═══════════════════════════════════════════════════════════════════════════ */
@media print {
  .site-header, .mobile-bottombar, .site-drawer, .floating-order, .marquee,
  .announcement-bar, .featured-card-image, .hero-artwork, .hero-veil, .about-visual,
  .gallery-preview, .reviews-preview, .contact-teaser-map, .contact-map-wrap { display: none !important; }
  body { padding-bottom: 0; background: white; color: black; }
  a { color: black !important; text-decoration: underline; }
  .hero { color: black; min-height: auto; background: white; }
}
