/* =========================================================================
   Brasserie Du Nord au Sud — Design system
   Palette, typo, layout. CSS pur, mobile-first, zero framework.
   ========================================================================= */

:root {
  /* Palette — Brasserie Du Nord au Sud
     Cream domine ; Bistro Ink = texte ; Bordeaux = CTA ; Laiton = accent déco ;
     Olive = repères marché/saison ; Soft White = cartes surélevées. */
  --c-bg:          #F6EFE4;  /* Cream Linen — fond dominant */
  --c-bg-alt:      #E9DEC9;  /* pierre chaude — sections alternées */
  --c-stone:       #D8C4A8;  /* Warm Stone — matière, filets, accents */
  --c-white:       #FFFDF8;  /* Soft White — cartes / surfaces surélevées */
  --c-text:        #171412;  /* Bistro Ink — texte & surfaces fortes */
  --c-text-soft:   #574B3D;  /* brun cendré */
  --c-text-mute:   #7C6F5D;  /* brun cendré clair (assombri pour AA) */
  --c-burgundy:    #7A1F24;  /* Burgundy Awning — CTA primaire */
  --c-burgundy-dk: #651519;  /* bordeaux foncé — hover CTA */
  --c-green:       #596247;  /* Market Olive — marché/saison */
  --c-bronze:      #B98A4A;  /* Old Brass — accent décoratif uniquement */
  --c-bronze-text: #8A6A2F;  /* laiton foncé — accent textuel AA si nécessaire */
  --c-rule:        #D8C4A8;  /* filets (Warm Stone) */
  --c-shadow:      rgba(23, 20, 18, 0.10);

  /* Typo */
  --ff-serif:  'Fraunces', 'Cormorant Garamond', 'Times New Roman', serif;
  --ff-sans:   'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing scale */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 24px;
  --s-6: 32px;
  --s-7: 48px;
  --s-8: 64px;
  --s-9: 80px;
  --s-10: 120px;
  --s-11: 160px;

  /* Layout */
  --container-max: 1240px;
  --container-narrow: 720px;
  --header-h: 72px;

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --dur:  600ms;
}

/* =========================================================================
   Reset & base
   ========================================================================= */

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--ff-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--c-text);
  background: var(--c-bg);
  font-feature-settings: 'kern', 'liga', 'calt';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration-color: var(--c-rule);
  text-underline-offset: 3px;
  transition: color 200ms var(--ease);
}
a:hover { color: var(--c-burgundy); }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: transparent;
  color: inherit;
}

h1, h2, h3, h4 {
  font-family: var(--ff-serif);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.005em;
  margin: 0;
  color: var(--c-text);
  font-variation-settings: 'opsz' 144;
}

p { margin: 0; }

ul { list-style: none; padding: 0; margin: 0; }

iframe { border: 0; }

::selection { background: var(--c-burgundy); color: var(--c-white); }

/* Focus visible — contour bordeaux net, double anneau pour fonds sombres */
:focus-visible {
  outline: 2px solid var(--c-burgundy);
  outline-offset: 3px;
  border-radius: 2px;
  box-shadow: 0 0 0 4px rgba(246, 239, 228, 0.85);
}
[data-theme="dark"] :focus-visible,
.btn--on-dark:focus-visible,
.btn--ghost:focus-visible {
  outline-color: var(--c-white);
  box-shadow: 0 0 0 4px rgba(23, 20, 18, 0.7);
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--c-text);
  color: var(--c-bg);
  padding: 8px 16px;
  z-index: 100;
  text-decoration: none;
  border-radius: 2px;
}
.skip-link:focus { top: 16px; }

/* =========================================================================
   Écran de chargement premium — affiché seulement si JS actif (html.js),
   retiré au window.load. Sans JS : jamais affiché (contenu visible direct).
   ========================================================================= */
.page-loader { display: none; }
html.js .page-loader {
  display: flex;
  position: fixed;
  inset: 0;
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  background:
    radial-gradient(120% 90% at 50% 38%, #221c15 0%, #171412 62%);
  transition: opacity 650ms var(--ease), visibility 650ms var(--ease);
}
.page-loader__logo {
  height: clamp(180px, 34vw, 260px);
  width: auto;
  opacity: 0;
  transform: translateY(8px);
  animation: loader-logo-in 760ms var(--ease) 80ms forwards;
}
.page-loader__bar {
  position: relative;
  width: 116px;
  height: 2px;
  border-radius: 2px;
  background: rgba(246, 239, 228, 0.16);
  overflow: hidden;
}
.page-loader__bar::after {
  content: '';
  position: absolute;
  inset: 0;
  width: 42%;
  border-radius: 2px;
  background: var(--c-bronze);
  animation: loader-bar 1.15s var(--ease) infinite;
}
.page-loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
@keyframes loader-logo-in {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes loader-bar {
  0%   { transform: translateX(-130%); }
  100% { transform: translateX(320%); }
}
@media (prefers-reduced-motion: reduce) {
  html.js .page-loader { transition: opacity 200ms linear; }
  .page-loader__logo { animation: none; opacity: 1; transform: none; }
  .page-loader__bar::after { animation: none; width: 100%; }
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.muted { color: var(--c-text-mute); }

/* =========================================================================
   Layout primitives
   ========================================================================= */

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

.section {
  padding: var(--s-8) 0;
}
.section--alt { background: var(--c-bg-alt); }

.center { text-align: center; }

.section-head { max-width: var(--container-narrow); margin: 0 auto var(--s-7); }

.eyebrow {
  font-family: var(--ff-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-text-soft);
  margin-bottom: var(--s-5);
}
.eyebrow--light { color: rgba(246, 241, 231, 0.72); }
/* Eyebrow avec petit filet laiton (accent éditorial) */
.eyebrow--accent { display: inline-flex; align-items: center; gap: 12px; }
.eyebrow--accent::before { content: ''; width: 26px; height: 2px; background: var(--c-bronze); }

.lede {
  font-family: var(--ff-sans);
  font-size: 18px;
  line-height: 1.65;
  color: var(--c-text-soft);
  margin-top: var(--s-5);
  font-variation-settings: 'opsz' 14;
}

.section-note {
  font-size: 14px;
  font-style: italic;
  color: var(--c-text-soft);
  margin-top: var(--s-9);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* =========================================================================
   Buttons
   ========================================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-3);
  font-family: var(--ff-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 2px;
  text-decoration: none;
  transition: background 200ms var(--ease), color 200ms var(--ease), border-color 200ms var(--ease), transform 200ms var(--ease);
  white-space: nowrap;
  cursor: pointer;
}

.btn--primary {
  background: var(--c-burgundy);
  color: var(--c-white);
  border-color: var(--c-burgundy);
  box-shadow: 0 1px 2px rgba(23, 20, 18, 0.18);
}
.btn--primary:hover {
  background: var(--c-burgundy-dk);
  border-color: var(--c-burgundy-dk);
  color: var(--c-white);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--c-text);
  border-color: var(--c-text);
}
.btn--outline:hover {
  background: var(--c-text);
  color: var(--c-bg);
}

/* Outline sur fond sombre (hero) */
.btn--outline.btn--on-dark {
  color: var(--c-bg);
  border-color: rgba(246, 241, 231, 0.7);
  background: transparent;
}
.btn--outline.btn--on-dark:hover {
  background: rgba(246, 241, 231, 0.12);
  color: var(--c-bg);
  border-color: var(--c-bg);
}

.btn--ghost {
  background: transparent;
  color: var(--c-bg);
  border: 1px solid rgba(246, 241, 231, 0.7);
}
.btn--ghost:hover {
  background: rgba(246, 241, 231, 0.1);
  color: var(--c-bg);
  border-color: var(--c-bg);
}

.btn--lg { padding: 16px 28px; font-size: 15px; }
.btn--xl { padding: 22px 32px; font-size: 18px; font-family: var(--ff-serif); letter-spacing: 0.005em; }
.btn--block { display: flex; width: 100%; }
.btn__icon { display: inline-flex; }

/* =========================================================================
   Header
   ========================================================================= */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: transparent;
  transition: background 300ms var(--ease), box-shadow 300ms var(--ease), border-color 300ms var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(246, 241, 231, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom-color: var(--c-rule);
}

/* Header caméléon : prend la teinte de la section sous lui (une fois scrollé) */
.site-header.is-scrolled.is-theme-pierre {
  background: rgba(237, 229, 211, 0.96);
}
.site-header.is-scrolled.is-theme-dark {
  background: rgba(28, 23, 17, 0.92);
  border-bottom-color: rgba(246, 241, 231, 0.10);
}
/* Thème sombre : texte, logo et boutons restent clairs même scrollé */
.site-header.is-scrolled.is-theme-dark .site-header__logo { color: var(--c-bg); }
.site-header.is-scrolled.is-theme-dark .site-header__nav { color: rgba(246, 241, 231, 0.92); }
.site-header.is-scrolled.is-theme-dark .site-header__nav a.is-active { color: var(--c-bg); }
.site-header.is-scrolled.is-theme-dark .site-header__hamburger span { background: var(--c-bg); }
.site-header.is-scrolled.is-theme-dark .site-header__actions .btn--outline {
  color: var(--c-bg);
  border-color: rgba(246, 241, 231, 0.7);
}
.site-header.is-scrolled.is-theme-dark .site-header__actions .btn--outline:hover {
  background: rgba(246, 241, 231, 0.12);
  color: var(--c-bg);
  border-color: var(--c-bg);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  gap: var(--s-7);
}

.site-header__brand { display: inline-flex; align-items: center; text-decoration: none; }
/* Logo réel (médaillon manuscrit) — image. Bascule clair/sombre selon le fond. */
.site-header__logo { height: 56px; width: auto; display: block; }
@media (min-width: 1024px) { .site-header__logo { height: 64px; } }
.site-header__logo--on-light { display: none; }                                 /* hero sombre par défaut → variante claire */
.site-header.is-scrolled .site-header__logo--on-dark { display: none; }
.site-header.is-scrolled .site-header__logo--on-light { display: block; }       /* scrollé clair → logo original */
.site-header.is-scrolled.is-theme-dark .site-header__logo--on-dark { display: block; }   /* scrollé sombre → variante claire */
.site-header.is-scrolled.is-theme-dark .site-header__logo--on-light { display: none; }

.site-header__nav {
  display: none;
  gap: var(--s-7);
  font-size: 14px;
  font-weight: 500;
  color: rgba(246, 241, 231, 0.92);
  transition: color 300ms var(--ease);
}
.site-header.is-scrolled .site-header__nav { color: var(--c-text); }
.site-header__nav a {
  text-decoration: none;
  transition: opacity 200ms var(--ease);
  position: relative;
}
.site-header__nav a:hover { opacity: 0.7; }

.site-header__actions {
  display: none;
  gap: var(--s-3);
  align-items: center;
}

.site-header.is-scrolled .site-header__actions .btn--outline {
  color: var(--c-text);
  border-color: var(--c-text);
}
.site-header:not(.is-scrolled) .site-header__actions .btn--outline {
  color: var(--c-bg);
  border-color: rgba(246, 241, 231, 0.7);
}
.site-header:not(.is-scrolled) .site-header__actions .btn--outline:hover {
  background: rgba(246, 241, 231, 0.12);
  color: var(--c-bg);
  border-color: var(--c-bg);
}

/* Hamburger */
.site-header__hamburger {
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 18px;
  padding: 0;
}
.site-header__hamburger span {
  display: block;
  height: 1.5px;
  background: var(--c-bg);
  transition: transform 250ms var(--ease), opacity 250ms var(--ease), background 300ms var(--ease);
  transform-origin: center;
}
.site-header.is-scrolled .site-header__hamburger span { background: var(--c-text); }
.site-header.is-menu-open .site-header__hamburger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.site-header.is-menu-open .site-header__hamburger span:nth-child(2) { opacity: 0; }
.site-header.is-menu-open .site-header__hamburger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Drawer */
.mobile-drawer {
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  bottom: 0;
  background: var(--c-bg);
  padding: var(--s-9) var(--s-7);
  display: flex;
  flex-direction: column;
  gap: var(--s-7);
  font-family: var(--ff-serif);
  font-size: 28px;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 350ms var(--ease), opacity 350ms var(--ease);
  z-index: 49;
}
.site-header.is-menu-open .mobile-drawer {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-drawer a { text-decoration: none; }
.mobile-drawer .btn {
  margin-top: auto;
  font-size: 16px;
  font-family: var(--ff-sans);
}

/* =========================================================================
   Hero
   ========================================================================= */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: var(--c-bg);
  overflow: hidden;
  isolation: isolate;
}

.hero__media,
.hero__overlay {
  position: absolute; inset: 0;
  z-index: -1;
}
.hero__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__media {
  background: linear-gradient(180deg, #2a2218 0%, #1F1A14 100%);
}
.hero__img { object-position: center 46%; }
.hero__img--a { opacity: 1; }   /* image affichée au chargement */
.hero__img--b,
.hero__img--c { opacity: 0; }
@media (max-width: 767px) { .hero__img { object-position: center 48%; } }
.hero__overlay {
  background: linear-gradient(180deg, rgba(31, 26, 20, 0.55) 0%, rgba(31, 26, 20, 0.35) 50%, rgba(31, 26, 20, 0.65) 100%);
}

.hero__content {
  max-width: var(--container-max);
  padding: calc(var(--header-h) + 40px) 24px 104px;
  margin: 0 auto;
  width: 100%;
}
.hero__eyebrow,
.hero__lede,
.hero__meta,
.hero__cta { max-width: 560px; }

.hero__eyebrow {
  font-family: var(--ff-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(246, 241, 231, 0.85);
  margin-bottom: var(--s-6);
}

.hero__title {
  font-family: var(--ff-serif);
  font-size: clamp(33px, 5.6vw, 76px);
  line-height: 1.07;
  color: var(--c-bg);
  font-variation-settings: 'opsz' 144;
  font-weight: 400;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
.hero__title em {
  font-style: italic;
  color: var(--c-bg);
  white-space: nowrap;
}

.hero__lede {
  font-family: var(--ff-sans);
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(246, 241, 231, 0.92);
  line-height: 1.6;
  max-width: 560px;
  margin-top: var(--s-5);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  margin-top: var(--s-7);
}

/* Ligne d'ancrage hero : statut live + note Google */
.hero__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s-3) var(--s-5);
  margin-top: var(--s-6);
  margin-bottom: var(--s-2);
  font-family: var(--ff-sans);
  font-size: 14px;
  color: rgba(246, 241, 231, 0.9);
}
.hero__meta-sep {
  width: 1px;
  height: 16px;
  background: rgba(246, 241, 231, 0.3);
}
.hero__rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.01em;
}
.hero__star { color: #F0B429; font-size: 14px; line-height: 1; }
.hero__rating-score { font-weight: 600; }
.hero__rating a {
  color: rgba(246, 241, 231, 0.78);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(246, 241, 231, 0.35);
}
.hero__rating a:hover { color: var(--c-bg); }

/* Rangée de preuves : distinctions + adresse, sous la note Google */
.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2) var(--s-5);
  margin-top: var(--s-4);
  font-family: var(--ff-sans);
  font-size: 13px;
  letter-spacing: 0.01em;
  color: rgba(246, 239, 228, 0.88);
}
.hero__proof li { display: inline-flex; align-items: center; gap: 7px; }
.hero__proof-mark { color: var(--c-bronze); font-size: 9px; }

/* Bloc service compact + lien carte tertiaire */
.hero__service {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s-2) var(--s-5);
  margin-top: var(--s-6);
  font-family: var(--ff-sans);
  font-size: 13.5px;
  color: rgba(246, 239, 228, 0.82);
}
.hero__service-closed { color: rgba(246, 239, 228, 0.55); }
.hero__menu-link {
  color: var(--c-white);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: var(--c-bronze);
}
.hero__menu-link:hover { color: var(--c-bronze); }

@media (max-width: 520px) {
  .hero__meta-sep { display: none; }
}

/* =========================================================================
   Statut Ouvert / Fermé — pastille calculée en JS, point statique (pas de clignotement)
   ========================================================================= */
.status {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--ff-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.3;
}
.status__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--c-text-mute);
  flex-shrink: 0;
}
.status.is-open .status__dot { background: var(--c-green); }
.status.is-closed .status__dot { background: var(--c-text-mute); }
/* Variante sur fond sombre (hero, réserver) */
.status--on-dark { color: rgba(246, 241, 231, 0.92); }
.status--on-dark.is-open .status__dot { background: #7FB28E; }
.status--on-dark.is-closed .status__dot { background: rgba(246, 241, 231, 0.45); }
.status--on-dark.is-open .status__text { color: #cfe6d4; }
.reserver__status { margin-bottom: var(--s-8); }

/* =========================================================================
   Promesse — 4 cartes éditoriales (sous le hero)
   ========================================================================= */
/* .section.promise pour battre la règle @media .section { padding:96px } */
.section.promise { padding: var(--s-8) 0 var(--s-6); }
/* Transition resserrée vers « Nos plats » (évite le grand vide) */
.promise + .plats { padding-top: var(--s-7); }

.promise__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-4);
}
@media (min-width: 860px) {
  .promise__grid { grid-template-columns: repeat(4, 1fr); }
}
.promise__card {
  position: relative;
  background: var(--c-white);
  border: 1px solid var(--c-stone);
  border-radius: 10px;
  padding: var(--s-6) var(--s-5) var(--s-5);
  box-shadow: 0 1px 2px var(--c-shadow);
  overflow: hidden;
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease), border-color 240ms var(--ease);
}
/* Filet dégradé bordeaux→laiton en tête de carte, révélé au survol */
.promise__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-burgundy), var(--c-bronze));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 320ms var(--ease);
}
.promise__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(23, 20, 18, 0.13);
  border-color: var(--c-bronze);
}
.promise__card:hover::before { transform: scaleX(1); }
.promise__num {
  display: inline-block;
  font-family: var(--ff-serif);
  font-size: 30px;
  line-height: 1;
  color: var(--c-bronze);
  font-variation-settings: 'opsz' 40;
}
.promise__num::after {
  content: '';
  display: block;
  width: 26px;
  height: 2px;
  background: var(--c-bronze);
  opacity: 0.55;
  margin: var(--s-3) 0 var(--s-4);
}
.promise__name {
  font-family: var(--ff-serif);
  font-size: 19px;
  line-height: 1.2;
  margin-bottom: 7px;
  font-variation-settings: 'opsz' 36;
}
.promise__desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--c-text-soft);
}

/* Infos pratiques — chips sobres (plus de points qui pendouillent) */
.promise__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s-3);
  margin-top: var(--s-6);
}
.promise__tags li {
  font-family: var(--ff-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-text-soft);
  background: var(--c-bg-alt);
  border: 1px solid var(--c-stone);
  padding: 7px 15px;
  border-radius: 100px;
}

/* Bloc signature : signature manuscrite (script) + Huguette, en clôture chaleureuse */
.manifeste__sign {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  margin-top: var(--s-7);
  padding-top: var(--s-6);
  border-top: 1px solid var(--c-stone);
}
.manifeste__signature {
  font-family: 'Allura', 'Snell Roundhand', cursive;
  font-size: 36px;
  line-height: 0.9;
  color: var(--c-burgundy);
}
.manifeste__sign-note {
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--c-text-soft);
  margin-top: 4px;
}
.manifeste__sign-note strong {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--c-burgundy);
}

/* CorgiMascot — vrai fond transparent : WebM VP9-alpha (blanc détouré au colorkey)
   + poster PNG transparent (Safari / reduced-motion). Le corgi flotte, sans cadre. */
.corgi-mascot {
  flex: 0 0 auto;
  display: inline-block;
  line-height: 0;
}
.corgi-mascot__video {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 5px 10px rgba(23, 20, 18, 0.22));  /* léger ancrage, suit l'alpha */
}
.corgi-mascot--wink { width: 86px; }
@media (min-width: 768px) { .corgi-mascot--wink { width: 102px; } }
.corgi-mascot--sleep { width: 150px; margin-top: var(--s-3); }
@media (min-width: 768px) { .corgi-mascot--sleep { width: 174px; } }

/* Récit du nom / ancrage local — accent éditorial (filet laiton, citation) */
.manifeste__note {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 19px;
  line-height: 1.5;
  color: var(--c-text);
  margin-top: var(--s-6);
  padding-left: var(--s-4);
  border-left: 2px solid var(--c-bronze);
  font-variation-settings: 'opsz' 36;
}

/* =========================================================================
   Manifeste
   ========================================================================= */

.manifeste {
  padding: var(--s-8) 0;
}
@media (min-width: 1024px) { .manifeste { padding: 96px 0; } }

.manifeste__title {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  margin-top: var(--s-4);
}

.manifeste__body {
  font-family: var(--ff-serif);
  font-size: clamp(19px, 2.2vw, 23px);
  font-style: italic;
  line-height: 1.5;
  color: var(--c-text);
  margin-top: var(--s-5);
  font-variation-settings: 'opsz' 40;
}

/* Distinctions */
.manifeste__awards {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2) var(--s-3);
  margin-top: var(--s-6);
}
.manifeste__awards li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--ff-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--c-text);
  background: var(--c-white);
  border: 1px solid var(--c-stone);
  border-radius: 100px;
  padding: 7px 15px;
  box-shadow: 0 1px 2px var(--c-shadow);
}
.manifeste__awards li::before {
  content: '★';
  color: var(--c-bronze);
  font-size: 11px;
  line-height: 1;
}

/* =========================================================================
   Suggestions
   ========================================================================= */

.section-head h2 {
  font-size: clamp(32px, 4.5vw, 48px);
  font-variation-settings: 'opsz' 80;
  margin-top: var(--s-4);
}

/* Nos plats — 3 cartes photo (incontournables) + ligne « toujours » */
.features {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-7);
}
.feature__media {
  margin: 0;
  overflow: hidden;
  border-radius: 3px;
  background: var(--c-bg-alt);
}
.feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  transition: transform 800ms var(--ease);
}
.feature:hover .feature__media img { transform: scale(1.03); }
.feature__body { padding-top: var(--s-4); }
.feature__kicker {
  font-family: var(--ff-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-text-mute);
  margin-bottom: var(--s-2);
}
.feature__name {
  font-family: var(--ff-serif);
  font-size: 23px;
  font-weight: 500;
  color: var(--c-text);
  font-variation-settings: 'opsz' 36;
  letter-spacing: -0.005em;
}
.feature__desc {
  font-family: var(--ff-sans);
  font-size: 15px;
  color: var(--c-text-soft);
  line-height: 1.55;
  margin-top: var(--s-2);
}
.feature__price {
  font-family: var(--ff-sans);
  font-size: 18px;
  font-weight: 700;
  color: var(--c-text);
  margin-top: var(--s-3);
  letter-spacing: 0.02em;
}
.feature__price--variable {
  color: var(--c-green);
  font-style: italic;
  font-weight: 500;
  font-size: 15px;
}
.plats__always {
  max-width: 760px;
  margin: var(--s-8) auto 0;
  text-align: center;
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.5;
  color: var(--c-text-soft);
  font-variation-settings: 'opsz' 40;
}
.plats__always strong { color: var(--c-text); font-weight: 500; font-style: normal; }

/* Galerie — grille homogène, zoom au survol, légende sous l'image */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: var(--s-5);
  row-gap: var(--s-7);
}
.gallery__item { margin: 0; }
.gallery__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  border-radius: 3px;
  background: var(--c-bg-alt);
  transition: transform 700ms var(--ease);
}
.gallery__item:hover img { transform: scale(1.03); }
.gallery__item figcaption {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--c-text-soft);
  margin-top: var(--s-3);
}

@media (min-width: 768px) {
  .features { grid-template-columns: repeat(3, 1fr); gap: var(--s-7); }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); column-gap: var(--s-6); row-gap: var(--s-8); }
}

/* =========================================================================
   La carte
   ========================================================================= */

.menu {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-8);
  max-width: 1000px;
  margin: 0 auto;
  /* Vraie « carte de restaurant » : panneau Soft White surélevé sur le fond crème */
  background: var(--c-white);
  border: 1px solid var(--c-stone);
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(23, 20, 18, 0.05), 0 30px 64px rgba(23, 20, 18, 0.16);
  padding: var(--s-7) var(--s-6);
}
@media (min-width: 768px) { .menu { padding: var(--s-9) var(--s-9); gap: var(--s-9); } }

.menu__col {
  display: flex;
  flex-direction: column;
  gap: var(--s-8);
}

.menu-section h3 {
  font-family: var(--ff-serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--c-text);
  margin-bottom: var(--s-5);
  font-variation-settings: 'opsz' 40;
  position: relative;
  padding-bottom: var(--s-3);
}
.menu-section h3::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 36px;
  height: 1px;
  background: var(--c-rule);
}

.menu-section ul {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}
.menu-section li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--s-5);
  padding: var(--s-2) 0;
  border-bottom: 1px dashed transparent;
}

.menu-item__name {
  font-family: var(--ff-serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--c-text);
  line-height: 1.4;
  font-variation-settings: 'opsz' 24;
}
.menu-item__price {
  font-family: var(--ff-sans);
  font-size: 16px;
  font-weight: 700;
  color: var(--c-text);
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}
.menu-item__price--variable {
  color: var(--c-green);
  font-style: italic;
  font-weight: 500;
  font-size: 14px;
}

/* Mobile : carte resserrée (la liste complète est très longue sinon) */
@media (max-width: 640px) {
  .menu { gap: var(--s-5); padding: var(--s-6) var(--s-5); }
  .menu__col { gap: var(--s-6); }
  .menu-section h3 { font-size: 21px; margin-bottom: var(--s-3); padding-bottom: var(--s-2); }
  .menu-section ul { gap: var(--s-2); }
  .menu-section li { padding: var(--s-1) 0; gap: var(--s-3); }
  .menu-item__name { font-size: 15.5px; line-height: 1.3; }
  #carte .section-head { margin-bottom: var(--s-6); }
}

/* =========================================================================
   Le lieu
   ========================================================================= */

.lieu__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-9);
  align-items: center;
}

.lieu__text h2 {
  font-size: clamp(32px, 4.5vw, 44px);
  margin-top: var(--s-4);
  font-variation-settings: 'opsz' 80;
}

.lieu__lead {
  font-family: var(--ff-serif);
  font-size: 22px;
  line-height: 1.45;
  font-style: italic;
  color: var(--c-text);
  margin-top: var(--s-7);
  font-variation-settings: 'opsz' 40;
}

.lieu__body {
  font-size: 17px;
  line-height: 1.7;
  color: var(--c-text-soft);
  margin-top: var(--s-5);
}

.lieu__cta-wrap {
  margin-top: var(--s-6);
}

/* Justification des paragraphes longs (lang=fr → césure propre, pas de trous).
   Repli à gauche sous 600px où la justification crée des écarts disgracieux. */
#carte .lede,
.lieu__body {
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
}
@media (max-width: 600px) {
  #carte .lede,
  .lieu__body { text-align: left; hyphens: manual; }
}

/* Composition « magazine » : grande photo en tête + 2 photos d'appui dessous */
.lieu__media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "lead lead"
    "a    b";
  gap: var(--s-4);
}
.lieu__photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--c-stone);
  background: var(--c-bg-alt);
  box-shadow: 0 12px 30px rgba(23, 20, 18, 0.12);
}
.lieu__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lieu__photo--lead { grid-area: lead; }
.lieu__photo--lead img { aspect-ratio: 4 / 3; }
.lieu__photo:not(.lieu__photo--lead) img { aspect-ratio: 1 / 1; }
/* Légende posée en bas de la photo, sur un voile sombre (plus de décalage) */
.lieu__photo figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: var(--s-5) var(--s-4) var(--s-3);
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 13px;
  color: var(--c-bg);
  background: linear-gradient(180deg, transparent, rgba(23, 20, 18, 0.72));
}
@media (max-width: 560px) {
  .lieu__media { grid-template-columns: 1fr; grid-template-areas: "lead" "a" "b"; }
  .lieu__photo--lead img { aspect-ratio: 4 / 3; }
  .lieu__photo:not(.lieu__photo--lead) img { aspect-ratio: 3 / 2; }
}

/* =========================================================================
   Réserver
   ========================================================================= */

.reserver {
  background: var(--c-text);
  color: var(--c-bg);
  padding: var(--s-9) 0;
}
@media (min-width: 1024px) { .reserver { padding: 96px 0; } }

.reserver h2,
.reserver__title {
  color: var(--c-bg);
}

.reserver__title {
  font-size: clamp(36px, 5vw, 52px);
  margin-top: var(--s-4);
  font-variation-settings: 'opsz' 144;
}
.reserver__title em {
  color: rgba(246, 241, 231, 0.62);
  font-style: italic;
  font-weight: 400;
  display: inline-block;
  margin-left: 4px;
}

.reserver__lede {
  font-family: var(--ff-sans);
  font-size: 19px;
  color: rgba(246, 241, 231, 0.88);
  margin-top: var(--s-6);
  margin-bottom: var(--s-9);
}

.reserver__cta {
  max-width: 480px;
  margin: 0 auto;
}

.reserver__email {
  margin-top: var(--s-6);
  font-size: 15px;
  color: rgba(246, 241, 231, 0.7);
}
.reserver__email a {
  color: rgba(246, 241, 231, 0.92);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.reserver__hours {
  margin-top: var(--s-10);
  padding: var(--s-7);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  text-align: left;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.reserver__hours-title {
  font-family: var(--ff-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(246, 241, 231, 0.72);
  margin-bottom: var(--s-5);
}
.reserver__hours ul {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.reserver__hours li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--s-4);
  font-size: 15px;
  color: rgba(246, 241, 231, 0.92);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.reserver__hours li:last-child { border-bottom: 0; }
.reserver__hours li .muted { color: rgba(246, 241, 231, 0.5); }
.reserver__hours-note {
  font-size: 13px;
  color: rgba(246, 241, 231, 0.55);
  margin-top: var(--s-5);
  font-style: italic;
}

/* =========================================================================
   Contact / Infos pratiques
   ========================================================================= */

.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-9);
  align-items: start;
}

.contact h2 {
  font-size: clamp(32px, 4.5vw, 44px);
  margin-top: var(--s-4);
  font-variation-settings: 'opsz' 80;
}

.contact__list {
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  margin-top: var(--s-7);
  font-size: 17px;
}
.contact__list li {
  display: flex;
  align-items: flex-start;
  gap: var(--s-4);
  color: var(--c-text);
  line-height: 1.6;
}
.contact__icon {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  color: var(--c-bronze);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact__list a {
  text-decoration: none;
  border-bottom: 1px solid var(--c-rule);
  padding-bottom: 2px;
}
.contact__list a:hover { color: var(--c-burgundy); border-bottom-color: var(--c-burgundy); }

.contact__chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  margin-top: var(--s-7);
}
.chip {
  display: inline-flex;
  padding: 6px 14px;
  background: var(--c-bg-alt);
  color: var(--c-text-soft);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 100px;
}

.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  margin-top: var(--s-7);
}

.contact__media {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
}
.contact__map {
  width: 100%;
  aspect-ratio: 16 / 11;
  background: var(--c-bg-alt);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 1px 3px var(--c-shadow);
  border: 1px solid var(--c-rule);
}
.contact__map iframe {
  width: 100%; height: 100%;
}
.contact__devanture {
  margin: 0;
  position: relative;
}
.contact__devanture img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center 35%;
  border-radius: 2px;
}
.contact__devanture figcaption {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 13px;
  color: var(--c-text-soft);
  margin-top: var(--s-3);
}

/* =========================================================================
   Footer
   ========================================================================= */

.site-footer {
  background: #181410;
  color: rgba(246, 241, 231, 0.78);
  padding: var(--s-8) 0 0;
  font-size: 14px;
}

/* Bande CTA finale */
.site-footer__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-5);
  text-align: center;
  padding-bottom: var(--s-8);
  margin-bottom: var(--s-7);
  border-bottom: 1px solid rgba(246, 241, 231, 0.1);
}
.site-footer__tagline {
  font-family: var(--ff-serif);
  font-size: clamp(22px, 3vw, 30px);
  font-style: italic;
  color: var(--c-bg);
  font-variation-settings: 'opsz' 60;
  max-width: 520px;
  line-height: 1.3;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-7);
  padding-bottom: var(--s-8);
}

.site-footer__col p { margin-bottom: var(--s-2); line-height: 1.6; }
.site-footer__col a {
  color: rgba(246, 241, 231, 0.88);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
}
.site-footer__col a:hover { border-bottom-color: var(--c-bronze); color: var(--c-bg); }

.site-footer__brand {
  font-family: var(--ff-serif);
  font-size: 22px;
  color: var(--c-bg);
  letter-spacing: -0.005em;
  font-variation-settings: 'opsz' 40;
  margin-bottom: var(--s-2) !important;
}
.site-footer__brand .brand-au {
  font-style: italic;
  color: var(--c-burgundy);
}
.site-footer__sub {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-bronze);
  margin-bottom: var(--s-4) !important;
}

.site-footer__heading {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-bronze);
  margin-bottom: var(--s-4) !important;
}

.site-footer__logo { height: 96px; width: auto; display: block; margin-bottom: var(--s-4); }

/* Adresse : mini-carte Google au survol / focus (contenu + footer) */
.addr-pop { position: relative; display: inline-block; }
.addr-pop__text { text-decoration: none; }
.addr-pop__text:hover { text-decoration: underline; text-underline-offset: 3px; }
.addr-pop__card {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 0;
  width: 280px;
  height: 180px;
  background: var(--c-white);
  border: 1px solid var(--c-stone);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(23, 20, 18, 0.30);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px) scale(0.98);
  transform-origin: bottom left;
  transition: opacity 200ms var(--ease), transform 200ms var(--ease), visibility 200ms var(--ease);
  z-index: 60;
  pointer-events: none;
}
.addr-pop:hover .addr-pop__card,
.addr-pop:focus-within .addr-pop__card {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.addr-pop__card iframe { width: 100%; height: 100%; border: 0; display: block; }
@media (prefers-reduced-motion: reduce) {
  .addr-pop__card { transition: opacity 150ms linear; transform: none; }
}
@media (max-width: 600px) {
  .addr-pop__card { width: 230px; height: 150px; }
}

.site-footer .muted { color: rgba(246, 241, 231, 0.4); }

.site-footer__bottom {
  border-top: 1px solid rgba(246, 241, 231, 0.08);
  padding: var(--s-5) 0;
  text-align: center;
  font-size: 12px;
  color: rgba(246, 241, 231, 0.45);
}

/* Mobile : footer plus court — colonnes infos en 2 sur 1 ligne, marges réduites */
@media (max-width: 600px) {
  .site-footer { padding-top: var(--s-7); }
  .site-footer__cta { gap: var(--s-4); padding-bottom: var(--s-6); margin-bottom: var(--s-6); }
  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--s-6) var(--s-5);
    padding-bottom: var(--s-6);
  }
  .site-footer__col--brand { grid-column: 1 / -1; }   /* marque + corgi en pleine largeur, en tête */
  .corgi-mascot--sleep { width: 118px; margin-top: var(--s-2); }
  .site-footer__heading { margin-bottom: var(--s-2) !important; }
}

/* =========================================================================
   Sticky mobile CTA
   ========================================================================= */

.sticky-cta {
  position: fixed;
  bottom: 12px; left: 12px; right: 12px;
  display: flex;
  gap: 10px;
  z-index: 40;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 300ms var(--ease), transform 300ms var(--ease);
  padding-bottom: env(safe-area-inset-bottom);
}
.sticky-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.sticky-cta__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  min-height: 54px;
  font-family: var(--ff-sans);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(23, 20, 18, 0.25);
}
.sticky-cta__btn--call {
  flex: 1.5;
  background: var(--c-burgundy);
  color: var(--c-white);
}
.sticky-cta__btn--map {
  background: var(--c-white);
  color: var(--c-text);
  border: 1px solid var(--c-stone);
}

/* =========================================================================
   Widget d'appel flottant (bas droite) — desktop / tablette
   ========================================================================= */
.fab-call {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 41;
  display: none;
  align-items: center;
  height: 58px;
  max-width: 58px;
  overflow: hidden;
  background: var(--c-burgundy);
  color: var(--c-white);
  border-radius: 100px;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(23, 20, 18, 0.28);
}
.fab-call__icon {
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.fab-call__icon svg { transition: transform 200ms var(--ease); }
.fab-call__label {
  font-family: var(--ff-sans);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.02em;
  white-space: nowrap;
  padding-right: 22px;
  opacity: 0;
  transition: opacity 200ms var(--ease);
}
@media (min-width: 768px) {
  .fab-call {
    display: inline-flex;
    opacity: 0;
    transform: translateY(16px);
    pointer-events: none;
    transition: max-width 340ms var(--ease), opacity 300ms var(--ease),
                transform 300ms var(--ease), background 200ms var(--ease);
  }
  .fab-call.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .fab-call:hover,
  .fab-call:focus-visible {
    max-width: 300px;
    background: var(--c-burgundy-dk);
  }
  .fab-call:hover .fab-call__label,
  .fab-call:focus-visible .fab-call__label { opacity: 1; }
  .fab-call:hover .fab-call__icon svg { transform: rotate(-8deg); }
}

/* =========================================================================
   Photo placeholders (avant livraison des vraies photos)
   ========================================================================= */

.photo-placeholder {
  position: relative;
  display: block;
  background:
    repeating-linear-gradient(
      135deg,
      var(--c-bg-alt) 0,
      var(--c-bg-alt) 12px,
      #e3d8c0 12px,
      #e3d8c0 24px
    );
  min-height: 240px;
}
.photo-placeholder img { opacity: 0; }
.photo-placeholder::after {
  content: 'Photo à livrer · ' attr(data-filename);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-text-soft);
  background: rgba(246, 241, 231, 0.7);
  text-align: center;
  padding: 16px;
  line-height: 1.5;
}

/* Hero placeholder spécifique : fond plus foncé pour rester contrasté avec texte ivoire */
.hero__media .photo-placeholder {
  background:
    linear-gradient(180deg, #3a2f24 0%, #1F1A14 100%),
    repeating-linear-gradient(135deg, #2a2218 0, #2a2218 12px, #1F1A14 12px, #1F1A14 24px);
}
.hero__media .photo-placeholder::after {
  background: rgba(31, 26, 20, 0.5);
  color: rgba(246, 241, 231, 0.6);
}

/* =========================================================================
   Reveal animations — opacity + translate, avec fallback CSS garanti.
   Si l'IntersectionObserver tarde, l'animation CSS prend le relais après 1s.
   ========================================================================= */

html.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
  animation: reveal-fallback 800ms 1200ms ease-out forwards;
  will-change: opacity, transform;
}
@keyframes reveal-fallback {
  to { opacity: 1; transform: translateY(0); }
}
html.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  animation: none;
}

/* Stagger : très subtil — enfants juste lift sans opacity, pas de risque d'invisibilité */
html.js .stagger > * {
  transform: translateY(6px);
  transition-property: transform;
  transition-duration: 600ms;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-delay: calc(var(--stagger-i, 0) * 60ms);
}
html.js .stagger.is-visible > * {
  transform: translateY(0);
}

/* =========================================================================
   Mobile — anti-débordement boutons + centrage du texte (≤ 640px)
   ========================================================================= */

@media (max-width: 640px) {
  /* Boutons : les labels longs peuvent passer à la ligne au lieu de déborder */
  .btn { white-space: normal; }

  /* Hero : overlay vertical renforcé + bande sombre en tête (scrim header :
     le logo script crème + la nav restent lisibles sur la photo claire). */
  .hero__overlay {
    background:
      linear-gradient(180deg, rgba(23, 20, 18, 0.74) 0%, rgba(23, 20, 18, 0.44) 15%, rgba(23, 20, 18, 0.40) 46%, rgba(23, 20, 18, 0.68) 100%);
  }

  /* Hero : CTA empilés pleine largeur (plus de scroll horizontal), texte centré */
  .hero__content { text-align: center; }
  .hero__eyebrow,
  .hero__title,
  .hero__lede { margin-left: auto; margin-right: auto; }
  .hero__title em { white-space: normal; } /* « au cœur de Montauban. » peut wrapper sur petit écran */
  .hero__meta { justify-content: center; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }

  /* Titres de section centrés sur mobile */
  .section-head--left { text-align: center; }
  .section-head--left .eyebrow { margin-left: auto; margin-right: auto; }

  /* La maison : bloc texte centré (le portrait reste au-dessus) */
  .manifeste__text { text-align: center; }
  .manifeste__text .eyebrow { margin-left: auto; margin-right: auto; }
  .manifeste__awards { justify-content: center; }
  .manifeste__sign { justify-content: center; text-align: left; }
  .manifeste__note { text-align: left; }
  .eyebrow--accent { justify-content: center; }

  /* La salle : titres centrés + bouton pleine largeur (le long paragraphe reste à gauche) */
  .lieu__text { text-align: center; }
  .lieu__cta-wrap { display: flex; }
  .lieu__cta-wrap .btn { width: 100%; }
}

/* =========================================================================
   Responsive — Tablet
   ========================================================================= */

@media (min-width: 640px) {
  .container { padding: 0 40px; }
  .hero__content { padding-left: 40px; padding-right: 40px; }
}

/* =========================================================================
   Responsive — Tablet large
   ========================================================================= */

@media (min-width: 768px) {
  body { font-size: 18px; }

  .sticky-cta { display: none; }

  .contact__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--s-9);
  }

  .menu { grid-template-columns: 1fr 1fr; gap: var(--s-9); }
}

/* =========================================================================
   Responsive — Laptop
   ========================================================================= */

@media (min-width: 1024px) {
  :root { --header-h: 84px; }

  .container { padding: 0 80px; }
  .hero__content { padding-left: 80px; padding-right: 80px; }

  .site-header__nav { display: flex; }
  .site-header__actions { display: inline-flex; }
  .site-header__hamburger { display: none; }
  .mobile-drawer { display: none; }

  .section { padding: 96px 0; }

  .lieu__inner {
    grid-template-columns: 1fr 1.2fr;
    gap: var(--s-10);
  }
}

/* =========================================================================
   Responsive — Desktop large
   ========================================================================= */

@media (min-width: 1280px) {
  .site-footer__inner {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--s-8);
  }
}

/* =========================================================================
   §1 — HERO CINÉMATOGRAPHIQUE
   Ken Burns + cascade text + scroll indicator + bronze underline
   ========================================================================= */

/* Effet Ken Burns (zoom lent) + fondu enchaîné entre 2 plats.
   Sobre : ~16 s de cycle, coupé en prefers-reduced-motion. */
.hero__img { will-change: opacity, transform; transform-origin: center 48%; }
/* Cross-fade à 3 images (24s) + ken-burns : chaque image zoome lentement
   pendant sa fenêtre visible, puis revient à scale(1) pendant qu'elle est
   masquée (opacity 0) → boucle sans à-coup. */
.hero__img--a { animation: hero-fade-a 24s ease-in-out infinite; }
.hero__img--b { animation: hero-fade-b 24s ease-in-out infinite; }
.hero__img--c { animation: hero-fade-c 24s ease-in-out infinite; }
@keyframes hero-fade-a {
  0%   { opacity: 1; transform: scale(1.00); }
  30%  { opacity: 1; transform: scale(1.025); }
  36%  { opacity: 0; transform: scale(1.03); }
  96%  { opacity: 0; transform: scale(1.00); }
  100% { opacity: 1; transform: scale(1.00); }
}
@keyframes hero-fade-b {
  0%   { opacity: 0; transform: scale(1.00); }
  30%  { opacity: 0; transform: scale(1.00); }
  36%  { opacity: 1; transform: scale(1.005); }
  63%  { opacity: 1; transform: scale(1.025); }
  69%  { opacity: 0; transform: scale(1.03); }
  100% { opacity: 0; transform: scale(1.00); }
}
@keyframes hero-fade-c {
  0%   { opacity: 0; transform: scale(1.00); }
  63%  { opacity: 0; transform: scale(1.00); }
  69%  { opacity: 1; transform: scale(1.005); }
  96%  { opacity: 1; transform: scale(1.025); }
  100% { opacity: 0; transform: scale(1.03); }
}

/* Scrim de lisibilité : léger flou + voile sombre derrière le titre,
   estompé vers la droite pour garder le plat net. */
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  background: linear-gradient(105deg, rgba(31, 26, 20, 0.30) 0%, rgba(31, 26, 20, 0.12) 45%, rgba(31, 26, 20, 0) 70%);
  -webkit-mask-image: linear-gradient(105deg, #000 0%, #000 42%, transparent 72%);
  mask-image: linear-gradient(105deg, #000 0%, #000 42%, transparent 72%);
  pointer-events: none;
}
/* Overlay : dégradé gauche dense (texte desktop) + base uniforme (photo claire) */
.hero__overlay {
  background:
    linear-gradient(105deg, rgba(31, 26, 20, 0.88) 0%, rgba(31, 26, 20, 0.60) 46%, rgba(31, 26, 20, 0.32) 100%),
    linear-gradient(180deg, rgba(31, 26, 20, 0.30) 0%, rgba(31, 26, 20, 0.24) 45%, rgba(31, 26, 20, 0.60) 100%);
}

/* Entrée du hero : une seule fade-up du bloc entier. Posé, confiant. */
html.js .hero__content {
  opacity: 0;
  transform: translateY(16px);
  animation: hero-enter 900ms 200ms var(--ease) forwards;
}
@keyframes hero-enter {
  to { opacity: 1; transform: translateY(0); }
}

.hero__title em {
  font-style: italic;
  color: var(--c-bg);
}

/* Drop-shadows fins pour la lisibilité sur les textes du hero */
.hero__eyebrow,
.hero__title,
.hero__lede,
.hero__meta {
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.55), 0 2px 16px rgba(0, 0, 0, 0.35);
}

/* Indicateur de scroll « Découvrir » : label + chevron qui rebondit doucement */
.hero__scroll {
  position: absolute;
  bottom: var(--s-6);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-3);
  color: rgba(246, 241, 231, 0.85);
  text-decoration: none;
  z-index: 2;
}
.hero__scroll-label {
  font-family: var(--ff-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}
.hero__scroll-chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(246, 241, 231, 0.45);
  background: rgba(31, 26, 20, 0.25);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  animation: scroll-bob 2.4s ease-in-out infinite;
  transition: background 200ms var(--ease), border-color 200ms var(--ease);
}
@keyframes scroll-bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(5px); }
}
.hero__scroll:hover { color: var(--c-bg); }
.hero__scroll:hover .hero__scroll-chevron {
  background: rgba(31, 26, 20, 0.45);
  border-color: var(--c-bg);
}

/* =========================================================================
   §2 — HEADER active section + hover underlines
   ========================================================================= */

.site-header__nav a {
  position: relative;
  padding: 6px 0;
}
.site-header__nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: currentColor;
  opacity: 0.85;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 300ms var(--ease);
}
.site-header__nav a:hover::after,
.site-header__nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left center;
}

/* Hover logo */
.site-header__brand {
  transition: opacity 200ms var(--ease);
}
.site-header__brand:hover { opacity: 0.7; }

/* Icône téléphone tilt on hover du bouton appeler */
.btn--primary:hover .btn__icon--phone svg,
.site-header__actions .btn--primary:hover svg {
  transform: rotate(-8deg);
}
.btn__icon--phone svg {
  transition: transform 200ms var(--ease);
}

/* =========================================================================
   §4 — MANIFESTE éditorial : fleuron + lettrine + signature
   ========================================================================= */

.fleuron {
  display: block;
  font-family: var(--ff-serif);
  font-size: 22px;
  color: var(--c-rule);
  margin-bottom: var(--s-5);
  letter-spacing: 0.1em;
  font-variation-settings: 'opsz' 40;
}

/* Lettrine drop-cap */
.dropcap {
  float: left;
  font-family: var(--ff-serif);
  font-size: 4.2em;
  line-height: 0.92;
  margin: 0.08em 0.1em -0.08em 0;
  color: var(--c-text);
  font-weight: 400;
  font-variation-settings: 'opsz' 144;
  font-style: normal;
}
.manifeste__body {
  text-wrap: pretty;
  hyphens: manual;
  -webkit-hyphens: manual;
}

/* Manifeste split layout : portrait + texte */
.manifeste__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-7);
  align-items: center;
}
.manifeste__text {
  text-align: left;
}
.manifeste__portrait {
  margin: 0;
  position: relative;
}
.manifeste__portrait img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--c-stone);
  box-shadow: 0 18px 44px rgba(23, 20, 18, 0.18);
}
.manifeste__portrait figcaption {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--c-text-soft);
  margin-top: var(--s-3);
  line-height: 1.5;
  max-width: 380px;
}

@media (min-width: 900px) {
  .manifeste__grid {
    grid-template-columns: 0.9fr 1fr;
    gap: var(--s-10);
    max-width: 1120px;
    align-items: stretch;          /* le portrait épouse la hauteur du texte */
  }
  .manifeste__portrait { display: flex; flex-direction: column; }
  .manifeste__portrait img {
    flex: 1 1 auto;
    height: 100%;
    min-height: 440px;
    aspect-ratio: auto;            /* remplit la colonne au lieu de flotter (4/5 figé) */
  }
}
/* Pas de césure sur les noms propres et adresses */
.nowrap, .manifeste__body .nowrap {
  white-space: nowrap;
  hyphens: none;
  -webkit-hyphens: none;
}

/* Signature des tenanciers */

/* Texture papier discrète */
.manifeste {
  position: relative;
}
.manifeste::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 25% 30%, rgba(160, 123, 62, 0.02) 0%, transparent 30%),
    radial-gradient(circle at 75% 70%, rgba(106, 27, 42, 0.015) 0%, transparent 40%);
  pointer-events: none;
}
.manifeste > * { position: relative; }

/* =========================================================================
   §5 — CARTE & SUGGESTIONS polish
   ========================================================================= */

/* Filet bronze sous les H2 de section */
.section-head h2 {
  position: relative;
  display: inline-block;
}
.section-head h2::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 0;
  width: 48px;
  height: 1px;
  background: var(--c-rule);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 800ms 200ms var(--ease);
}
.section-head.center h2::after { left: 50%; transform: translateX(-50%) scaleX(0); transform-origin: center; }
.reveal.is-visible .section-head h2::after,
.section-head.is-visible h2::after,
.section-head.reveal.is-visible h2::after {
  transform: scaleX(1);
}
.section-head.center.reveal.is-visible h2::after,
.section-head.center.is-visible h2::after {
  transform: translateX(-50%) scaleX(1);
}
.section-head h2 { margin-bottom: 24px; }

/* Header aligné à gauche (sections de contenu) — éditorial, confiant */
.section-head--left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  max-width: 760px;
}

/* Point statique « selon arrivage » — pas de clignotement (clientèle 40+) */
.pulse-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-green);
  margin-right: 8px;
  vertical-align: middle;
}

/* Menu items : leader dots + hover */
.menu-section li {
  align-items: baseline;
  gap: 0;
  padding: var(--s-3) var(--s-3);
  margin: 0 calc(var(--s-3) * -1);
  border-radius: 2px;
  transition: background 250ms var(--ease), padding-left 250ms var(--ease);
  border-bottom: none;
}
.menu-section li:hover {
  background: rgba(160, 123, 62, 0.04);
  padding-left: calc(var(--s-3) + 8px);
}

/* Carte = exemples (sans prix) — liste simple, surcharge le style de liste à prix */
.menu .menu-examples { display: block; }
.menu .menu-examples li {
  display: block;
  font-family: var(--ff-serif);
  font-size: 16px;
  line-height: 1.5;
  color: var(--c-text);
  font-variation-settings: 'opsz' 24;
  padding: var(--s-3) 0;
  margin: 0;
  border-radius: 0;
  border-bottom: 1px solid var(--c-bg-alt);
}
.menu .menu-examples li:last-child { border-bottom: none; }
.menu .menu-examples li:hover { background: none; padding-left: 0; }
.menu .menu-examples li strong { font-weight: 600; color: var(--c-text); }
.menu-cat-note { font-size: 13px; font-style: italic; color: var(--c-text-soft); margin: -4px 0 var(--s-3); }
.menu-fresh { color: var(--c-green); font-style: italic; display: inline-flex; align-items: center; }
@media (max-width: 640px) {
  .menu .menu-examples li { padding: var(--s-2) 0; font-size: 15px; }
}
.menu-item__name {
  display: flex;
  align-items: baseline;
  flex: 1;
  min-width: 0;
  gap: 0;
}
.menu-item__label {
  font-family: var(--ff-serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--c-text);
  font-variation-settings: 'opsz' 24;
  flex-shrink: 1;
  line-height: 1.35;
}
.menu-item__leader {
  flex: 1;
  border-bottom: 1px dotted var(--c-rule);
  margin: 0 12px 6px;
  height: 1px;
  min-width: 24px;
}
/* Mobile : les pointillés sautent, le nom peut passer sur 2 lignes, prix à droite */
@media (max-width: 640px) {
  .menu-item__leader { display: none; }
  .menu-section li { gap: var(--s-4); }
}


/* =========================================================================
   §7 — RÉSERVER pulse halo + rating + horaires polish
   ========================================================================= */

.reserver__cta-wrap {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
}

/* Bouton appeler — léger pivot de l'icône au survol (transition unique, pas de boucle) */
.reserver__cta:hover .btn__icon--phone svg { transform: rotate(-8deg); }

/* Actions secondaires (itinéraire + email) sous le bouton d'appel */
.reserver__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s-3);
  margin-top: var(--s-5);
}
@media (max-width: 440px) {
  .reserver__actions { flex-direction: column; }
  .reserver__actions .btn { width: 100%; }
}

/* Rating Google block */
.reserver__rating {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  margin-top: var(--s-6);
  font-family: var(--ff-sans);
  font-size: 13px;
  color: rgba(246, 241, 231, 0.6);
  letter-spacing: 0.04em;
}
.reserver__star {
  color: #F0B429;
  font-size: 16px;
  line-height: 1;
}
.reserver__rating-score {
  font-weight: 600;
  color: rgba(246, 241, 231, 0.85);
}
.reserver__rating-sep { color: rgba(246, 241, 231, 0.3); }
.reserver__rating a {
  color: rgba(246, 241, 231, 0.6);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(160, 123, 62, 0.5);
}
.reserver__rating a:hover { color: var(--c-bronze); }

/* =========================================================================
   §8 — CONTACT chips animées + map cadre + rating bouton
   ========================================================================= */

.chip {
  transition: background 250ms var(--ease), color 250ms var(--ease);
}
.chip:hover {
  background: rgba(160, 123, 62, 0.12);
  color: var(--c-text);
}

.contact__map {
  border: 1px solid var(--c-rule);
}

/* =========================================================================
   §9 — FOOTER icônes SVG sociales + hover liens
   ========================================================================= */

.site-footer__social {
  display: flex;
  gap: var(--s-4);
  margin-bottom: var(--s-4);
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  color: rgba(246, 241, 231, 0.7);
  text-decoration: none;
  font-size: 13px;
  transition: color 200ms var(--ease);
}
.social-link svg {
  transition: transform 250ms var(--ease);
}
.social-link:hover {
  color: var(--c-bronze);
}
.social-link:hover svg {
  transform: translateY(-1px);
}

.site-footer__legal a {
  position: relative;
}
.site-footer__legal a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: var(--c-bronze);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 250ms var(--ease);
}
.site-footer__legal a:hover::after {
  transform: scaleX(1);
}

/* =========================================================================
   §11 — POLISH TYPO final
   ========================================================================= */

.hero__title {
  letter-spacing: -0.022em;
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
}
.hero__title em { font-variation-settings: 'opsz' 144, 'SOFT' 60; }

.manifeste__title { font-variation-settings: 'opsz' 96; }
.section-head h2 { font-variation-settings: 'opsz' 96; letter-spacing: -0.012em; }
.menu-section h3 { font-variation-settings: 'opsz' 48; letter-spacing: -0.005em; }

/* Liens « contact » dans le pied de section avec icônes : transition souple */
.contact__list a {
  transition: color 200ms var(--ease), border-bottom-color 200ms var(--ease);
}

/* Boutons CTA — petite flèche qui glisse sur hover pour ghost */
.btn--ghost {
  position: relative;
  overflow: hidden;
}
.btn--ghost::after {
  content: '→';
  display: inline-block;
  margin-left: 8px;
  transition: transform 300ms var(--ease);
}
.btn--ghost:hover::after {
  transform: translateX(4px);
}

/* =========================================================================
   Reduced motion — coupe tout
   ========================================================================= */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .stagger > * { opacity: 1; transform: none; }
  .hero__img { animation: none !important; transform: none; }
  .hero__img--b,
  .hero__img--c { opacity: 0; }            /* fondu coupé : on garde la 1re image fixe */
  .hero__scroll-chevron { animation: none; }
  html.js .hero__content { opacity: 1; transform: none; animation: none; }
  .section-head h2::after { transform: scaleX(1); }
  .section-head.center h2::after { transform: translateX(-50%) scaleX(1); }
}
