/* =========================================================
   Le Marronnier — Auberge & restaurant, Buffon (Bourgogne)
   Palette : vert marronnier · pierre · crème parchemin · bordeaux · or
   Typo : EB Garamond (display) · Inter (body)
   ========================================================= */

:root {
  /* Palette tirée du site original : blanc + gris + teal canal */
  --paper:        #ffffff;        /* fond principal blanc */
  --paper-soft:   #f6f6f6;        /* alt très clair */
  --stone:        #ebebeb;        /* alt gris clair */
  --stone-deep:   #d9d9d9;        /* gris moyen */
  --ink:          #171717;        /* texte principal — leur foncé exact */
  --ink-soft:     #313131;
  --muted:        #787878;        /* leur gris moyen exact */
  --muted-soft:   #969696;
  --canal:        #3986A0;        /* teal du canal — leur accent signature */
  --canal-deep:   #2a6a80;        /* teal hover plus profond */
  --canal-soft:   #d8e7ed;        /* teal très clair pour fonds */
  --canal-line:   rgba(57, 134, 160, .35);
  --line:         rgba(23, 23, 23, .12);
  --line-soft:    rgba(23, 23, 23, .06);

  /* Aliases legacy pour ne pas tout casser */
  --green-deep:   var(--ink);
  --green:        var(--ink-soft);
  --gold:         var(--canal);
  --gold-light:   var(--canal-soft);
  --wine:         var(--canal-deep);

  --display: "EB Garamond", "Cormorant Garamond", Georgia, serif;
  --body:    "Inter", system-ui, -apple-system, sans-serif;

  --container: 1240px;
  --radius:    10px;
  --radius-sm: 6px;
  --ease:      cubic-bezier(.22, 1, .36, 1);
  --shadow:    0 28px 60px -32px rgba(23, 23, 23, .35);
  --shadow-sm: 0 10px 24px -14px rgba(23, 23, 23, .3);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 96px; }
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.62;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
@supports (overflow-x: clip) { body { overflow-x: clip; overflow-y: visible; } }
section[id] { scroll-margin-top: 96px; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
::selection { background: var(--green-deep); color: var(--paper); }
:focus-visible { outline: 2.5px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

.container {
  width: 100%; max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
}

.lucide, [data-lucide] { width: 1.05em; height: 1.05em; stroke-width: 1.6; vertical-align: -.16em; }

/* ---------- Typo réutilisable ---------- */
.display {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2.2rem, 5.2vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: -.005em;
  color: var(--green-deep);
  text-wrap: balance;
}
.display em { font-style: italic; color: var(--gold); font-weight: 500; }

.overline {
  display: inline-block;
  font-family: var(--body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.link-fine {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .9rem; font-weight: 500;
  color: var(--green-deep);
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
  transition: color .25s, border-color .25s, gap .3s var(--ease);
}
.link-fine svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.link-fine:hover { color: var(--gold); border-color: var(--gold); gap: .6rem; }
.link-fine:hover svg { transform: translateX(3px); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .9rem 1.6rem;
  border-radius: 999px;
  font-family: var(--body); font-weight: 600; font-size: .9rem;
  letter-spacing: .02em;
  cursor: pointer; border: 1.5px solid transparent;
  transition: transform .3s var(--ease), background .3s, color .3s, border-color .3s, box-shadow .3s;
  white-space: nowrap;
}
.btn--solid {
  background: var(--ink); color: var(--paper);
  box-shadow: 0 10px 22px -14px rgba(23, 23, 23, .55);
}
.btn--solid:hover { background: var(--canal); transform: translateY(-2px); box-shadow: 0 14px 30px -16px rgba(57, 134, 160, .55); }
.btn--solid svg { width: 1em; height: 1em; }

.btn--line {
  background: transparent; color: var(--green-deep); border-color: var(--line);
}
.btn--line:hover { border-color: var(--green-deep); }

/* ---------- Skip link ---------- */
.skip-link {
  position: fixed; top: -60px; left: 12px; z-index: 210;
  background: var(--green-deep); color: var(--paper);
  padding: .6rem 1rem; border-radius: 8px; font-size: .9rem; font-weight: 600;
  transition: top .25s var(--ease);
}
.skip-link:focus-visible { top: 12px; }

/* ---------- STRIP ---------- */
.strip {
  background: var(--green-deep);
  color: rgba(244, 236, 214, .88);
  font-size: .78rem;
  letter-spacing: .04em;
}
.strip__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: .6rem; gap: 1rem;
}
.strip__txt {
  font-family: var(--display); font-style: normal; font-size: .92rem;
  color: var(--gold-light); letter-spacing: .02em;
}
.strip__txt em { color: rgba(244, 236, 214, .65); font-style: italic; }
.strip__links { display: flex; align-items: center; gap: 1.2rem; }
.strip__links a { display: inline-flex; align-items: center; gap: .35rem; transition: color .2s; }
.strip__links a:hover { color: var(--gold-light); }
.strip__links svg { width: 14px; height: 14px; }

/* ---------- NAV ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(244, 236, 214, .9);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, padding .3s, background .3s;
}
.nav.is-scrolled { border-color: var(--line); }
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 1rem;
  gap: 1.2rem;
  transition: padding-block .3s var(--ease);
}
.nav.is-scrolled .nav__inner { padding-block: .7rem; }

.brand { display: inline-flex; align-items: center; gap: .7rem; color: var(--green-deep); }
.brand__leaf {
  width: 26px; height: 32px;
  color: var(--gold);
  transition: transform .5s var(--ease);
}
.brand:hover .brand__leaf { transform: rotate(-8deg); }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name {
  font-family: var(--display); font-weight: 500;
  font-size: 1.45rem; letter-spacing: -.005em;
  color: var(--green-deep);
}
.brand__sub {
  font-family: var(--body); font-size: .68rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--muted);
}

.nav__links { display: flex; align-items: center; gap: 1.4rem; }
.nav__links a {
  font-family: var(--body);
  font-size: .9rem; font-weight: 500; color: var(--ink);
  position: relative; padding-bottom: 3px;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1.5px; background: var(--gold);
  transition: width .3s var(--ease);
}
.nav__links a:hover::after, .nav__links a.is-active::after { width: 100%; }
.nav__links a.is-active { color: var(--gold); }

.nav__actions { display: flex; align-items: center; gap: .6rem; }
.nav__cta {
  display: inline-flex; align-items: center; gap: .45rem;
  background: var(--green-deep); color: var(--paper);
  padding: .55rem 1rem .55rem .85rem;
  border-radius: 999px;
  font-size: .85rem; font-weight: 600;
  transition: background .25s;
}
.nav__cta:hover { background: var(--wine); }
.nav__cta svg { width: 14px; height: 14px; }

.nav__toggle {
  display: none; flex-direction: column; gap: 6px;
  background: none; border: none; cursor: pointer;
  padding: 12px;
  position: relative; z-index: 80;
}
.nav__toggle span { width: 22px; height: 1.5px; background: var(--green-deep); transition: transform .3s var(--ease), opacity .3s; }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

/* ---------- DRAWER ---------- */
.drawer {
  position: fixed; inset: 0; z-index: 70;
  background: var(--paper);
  display: grid; place-items: center;
  padding: 5rem 1.5rem 2rem;
  opacity: 0; pointer-events: none; transform: translateY(-10px);
  transition: opacity .3s var(--ease), transform .35s var(--ease);
  overflow-y: auto;
}
.drawer.is-open { opacity: 1; pointer-events: auto; transform: none; }
.drawer__inner { width: 100%; max-width: 320px; display: flex; flex-direction: column; gap: 1.6rem; }
.drawer__title {
  font-family: var(--display); font-size: .9rem; letter-spacing: .26em; text-transform: uppercase;
  color: var(--gold); text-align: center;
}
.drawer__list { display: flex; flex-direction: column; gap: .15rem; text-align: center; }
.drawer__list a {
  display: block;
  font-family: var(--display); font-weight: 500;
  font-size: 1.55rem;
  color: var(--green-deep); padding: .55rem 0;
  transition: color .25s;
}
.drawer__list a:hover { color: var(--gold); }
.drawer__foot {
  display: flex; flex-direction: column; gap: .55rem; align-items: center;
  padding-top: 1.4rem; border-top: 1px solid var(--line);
  text-align: center;
}
.drawer__foot a {
  display: inline-flex; align-items: center; gap: .45rem;
  font-family: var(--body); font-size: .9rem; font-weight: 500;
  color: var(--green-deep);
}
.drawer__foot svg { width: 14px; height: 14px; color: var(--gold); }
.drawer__hours {
  margin-top: .3rem;
  font-family: var(--display); font-style: italic;
  font-size: .85rem; color: var(--muted);
}

/* ============================================================
   PAGE HEADER — utilisé sur toutes les pages secondaires
   ============================================================ */
.page-head {
  position: relative;
  padding-block: clamp(4rem, 8vw, 6rem) clamp(3rem, 6vw, 5rem);
  background: var(--paper-soft);
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
  isolation: isolate;
}
.page-head::before {
  /* filet teal subtil */
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, transparent, var(--canal) 30%, var(--canal) 70%, transparent);
  opacity: .35;
}
.page-head__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: end;
}
.crumb {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--body); font-size: .78rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.2rem;
}
.crumb a:hover { color: var(--canal); }
.crumb__sep { color: var(--canal); }
.page-head__title {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1;
  letter-spacing: -.005em;
  color: var(--green-deep);
  margin-bottom: .8rem;
  text-wrap: balance;
}
.page-head__title em { font-style: italic; color: var(--canal); font-weight: 500; }
.page-head__lede {
  font-family: var(--display); font-style: italic;
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  color: var(--ink-soft);
  max-width: 56ch;
}
.page-head__aside {
  font-family: var(--display); font-style: italic;
  font-size: 1rem; color: var(--muted);
  text-align: right;
  align-self: end;
  padding-bottom: .3rem;
}

@media (max-width: 760px) {
  .page-head__inner { grid-template-columns: 1fr; }
  .page-head__aside { text-align: left; }
}

/* Bandes de contenu propres aux pages secondaires */
.section {
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
}
.section--alt { background: var(--paper-soft); }
.section--dark { background: var(--ink); color: var(--paper); }
.section--dark .display, .section--dark h2, .section--dark h3 { color: var(--paper); }
.section--dark .overline { color: var(--canal-soft); }
.section--dark a:hover { color: var(--canal-soft); }

.prose { max-width: 720px; margin-inline: auto; }
.prose p { color: var(--ink-soft); margin-top: 1rem; line-height: 1.7; }
.prose p:first-child { margin-top: 0; }
.prose strong { color: var(--ink); }

/* Grille générique 2 colonnes pour contenu + image */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.split--flip > :first-child { order: 2; }
@media (max-width: 900px) {
  .split, .split--flip { grid-template-columns: 1fr; }
  .split--flip > :first-child { order: 0; }
}
.split__img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.split__img img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 5 / 4; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: clamp(540px, 82vh, 780px);
  overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
  color: var(--paper);
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: -8% 0 0 0; z-index: -1;
  background:
    url("https://image.jimcdn.com/app/cms/image/transf/none/path/s695a33d31280a9ee/image/i45f26a0016821cd1/version/1372686815/image.jpg") center/cover no-repeat;
  filter: brightness(.55) saturate(1.05);
  will-change: transform;
}
.hero__veil {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(circle at 80% 20%, rgba(57, 134, 160, .25) 0%, transparent 55%),
    linear-gradient(180deg, rgba(23, 23, 23, .6) 0%, rgba(23, 23, 23, .25) 35%, rgba(23, 23, 23, .92) 100%);
}
.hero__content {
  padding-block: 4rem 8rem;
  max-width: 760px;
}
.hero__eyebrow {
  font-family: var(--body); font-size: .8rem; font-weight: 600;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 1.6rem;
}
.hero__title {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1;
  letter-spacing: -.015em;
  margin-bottom: 1.7rem;
  text-wrap: balance;
}
.hero__title em { font-style: italic; color: var(--gold-light); font-weight: 500; }
.hero__lead {
  font-family: var(--display);
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  line-height: 1.5;
  color: rgba(244, 236, 214, .92);
  max-width: 48ch;
  margin-bottom: 2.2rem;
}
.hero__cta { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.hero__cta .btn--line { color: var(--paper); border-color: rgba(244, 236, 214, .5); }
.hero__cta .btn--line:hover { border-color: var(--gold-light); color: var(--gold-light); }

.hero__sig {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 3;
  display: flex; gap: 1.2rem; justify-content: center; align-items: center;
  padding: 1.1rem 1.4rem;
  font-family: var(--display); font-size: clamp(.88rem, 1.1vw, 1.05rem);
  letter-spacing: .04em;
  color: var(--gold-light);
  background: linear-gradient(to top, rgba(0,0,0,.7), rgba(0,0,0,.1));
  backdrop-filter: blur(6px);
  border-top: 1px solid rgba(244, 236, 214, .14);
  flex-wrap: wrap;
  text-align: center;
}
.hero__sig span:nth-child(even) { color: rgba(244, 236, 214, .4); }

/* ============================================================
   DOORS (3 portes d'entrée)
   ============================================================ */
.doors {
  background: var(--paper);
  padding-block: clamp(3rem, 6vw, 4.5rem);
  border-bottom: 1px solid var(--line-soft);
}
.doors__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.door {
  display: flex; flex-direction: column; gap: .5rem;
  padding: 2rem 1.8rem;
  background: var(--paper-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .35s;
}
.door::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform .5s var(--ease);
}
.door:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); border-color: var(--gold-light); }
.door:hover::before { transform: scaleX(1); }
.door > i {
  width: 32px; height: 32px;
  color: var(--gold);
  margin-bottom: .8rem;
}
.door h3 {
  font-family: var(--display); font-weight: 500;
  font-size: 1.8rem; line-height: 1.05;
  color: var(--green-deep);
  margin-bottom: .15rem;
}
.door p {
  color: var(--ink-soft); font-size: .95rem;
  margin-bottom: 1rem;
  flex: 1;
}
.door__more {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--body); font-size: .82rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold);
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  transition: gap .3s var(--ease);
}
.door__more svg { width: 14px; height: 14px; transition: transform .3s var(--ease); }
.door:hover .door__more { gap: .6rem; }
.door:hover .door__more svg { transform: translateX(3px); }

/* ============================================================
   CARTE (menus tabbés)
   ============================================================ */
.carte {
  padding-block: clamp(5rem, 9vw, 7rem);
  background: var(--paper);
}
.carte__head { max-width: 720px; margin-bottom: 2.5rem; text-align: center; margin-inline: auto; }
.carte__sub { color: var(--muted); margin-top: .8rem; font-size: 1.05rem; max-width: 56ch; margin-inline: auto; }

/* Onglets */
.carte__tabs {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: .5rem .6rem;
  margin-bottom: 3rem;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid var(--line);
}
.tab {
  display: inline-flex; flex-direction: column; align-items: center; gap: .15rem;
  padding: .7rem 1.2rem;
  background: transparent;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  transition: background .3s, color .3s, border-color .3s, transform .25s var(--ease);
  font-family: var(--body);
}
.tab__name {
  font-size: .8rem; font-weight: 600;
  letter-spacing: .04em;
}
.tab__name em { font-style: italic; font-weight: 400; opacity: .65; }
.tab__price {
  font-family: var(--display); font-size: .9rem;
  color: var(--gold); font-variant-numeric: tabular-nums;
}
.tab:hover { color: var(--green-deep); border-color: var(--green-deep); }
.tab.is-active {
  background: var(--green-deep); color: var(--paper); border-color: transparent;
}
.tab.is-active .tab__price { color: var(--gold-light); }

/* Carte menu (centered card) */
.menucard {
  max-width: 620px;
  margin-inline: auto;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-top: 4px solid var(--green-deep);
  border-radius: 4px;
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 4vw, 3rem);
  text-align: center;
  position: relative;
  box-shadow: 0 30px 60px -36px rgba(31, 45, 32, .35);
  transition: opacity .35s var(--ease);
}
.menucard.is-changing { opacity: 0; }

.menucard__head { margin-bottom: 2.4rem; padding-bottom: 1.6rem; border-bottom: 1px solid var(--line); }
.menucard__price {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--display); font-style: italic;
  color: var(--gold);
  font-size: .95rem;
  margin-bottom: .8rem;
}
.menucard__price em { color: var(--line); font-style: normal; }
.menucard__price b {
  font-family: var(--display); font-style: normal; font-weight: 600;
  font-size: 1.85rem;
  color: var(--green-deep);
  letter-spacing: -.01em;
}
.menucard__title {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--green-deep);
  margin-bottom: .5rem;
  letter-spacing: -.005em;
}
.menucard__note {
  font-family: var(--display); font-style: italic;
  font-size: .95rem; color: var(--muted);
  max-width: 42ch; margin-inline: auto;
}

.menucard__list { display: grid; gap: 1.6rem; margin-bottom: 2.4rem; }
.menucard__list li {
  display: flex; flex-direction: column; gap: .3rem;
}
.menucard__cat {
  font-family: var(--body); font-size: .65rem; font-weight: 600;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--gold);
}
.menucard__cat::before, .menucard__cat::after {
  content: "·"; margin-inline: .5rem; opacity: .5;
}
.menucard__plat {
  font-family: var(--display);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  color: var(--green-deep);
  font-weight: 500;
  text-wrap: balance;
}

.menucard__foot {
  display: flex; flex-direction: column; align-items: center; gap: 1.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}
.menucard__seal {
  display: grid; place-items: center;
  width: 50px; height: 50px;
  font-family: var(--display); font-weight: 600; font-size: 1.6rem;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  border-radius: 50%;
}

.carte__small {
  text-align: center;
  margin-top: 2.5rem;
  font-family: var(--display); font-style: italic;
  color: var(--muted); font-size: .95rem;
}

/* ============================================================
   DISHES (spécialités)
   ============================================================ */
.dishes {
  padding-block: clamp(5rem, 9vw, 7rem);
  background: var(--stone);
  border-block: 1px solid var(--line-soft);
}
.dishes__head { max-width: 760px; margin-bottom: 3rem; text-align: center; margin-inline: auto; }
.dishes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.dish {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.dish:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.dish__media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--stone-deep); }
.dish__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.dish:hover .dish__media img { transform: scale(1.04); }
.dish__body {
  padding: 1.4rem 1.5rem 1.5rem;
  display: flex; flex-direction: column; gap: .35rem;
  position: relative;
}
.dish__num {
  position: absolute; top: -1rem; right: 1.3rem;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: var(--green-deep); color: var(--gold-light);
  border-radius: 50%;
  font-family: var(--display); font-weight: 500; font-size: .95rem;
  border: 3px solid var(--paper);
}
.dish__body h3 {
  font-family: var(--display); font-weight: 500;
  font-size: 1.5rem; line-height: 1.05;
  color: var(--green-deep);
  margin-top: .2rem; margin-bottom: .4rem;
  padding-right: 2.4rem;
}
.dish__body p { color: var(--ink-soft); font-size: .96rem; line-height: 1.55; }

/* ============================================================
   AUBERGE (histoire)
   ============================================================ */
.auberge {
  padding-block: clamp(5rem, 10vw, 8rem);
  background: var(--paper);
}
.auberge__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.auberge__visual { position: relative; }
.auberge__shot { overflow: hidden; border-radius: var(--radius); }
.auberge__shot img { width: 100%; height: 100%; object-fit: cover; }
.auberge__shot--main { aspect-ratio: 4 / 5; box-shadow: var(--shadow); }
.auberge__shot--side {
  position: absolute; bottom: -8%; right: -8%;
  width: 50%; aspect-ratio: 1;
  border: 6px solid var(--paper);
  box-shadow: var(--shadow);
}
.auberge__tag {
  position: absolute; top: 1.2rem; left: -1rem;
  background: var(--green-deep);
  color: var(--gold-light);
  font-family: var(--display); font-style: italic; font-size: .9rem;
  letter-spacing: .12em;
  padding: .55rem 1rem;
  border-radius: 999px;
  z-index: 3;
  box-shadow: var(--shadow-sm);
}

.auberge__text p { margin-top: 1rem; color: var(--ink-soft); max-width: 52ch; }
.auberge__keys {
  margin-top: 2.4rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem;
}
.auberge__keys > div { display: flex; flex-direction: column; gap: .2rem; }
.auberge__keys strong {
  font-family: var(--display); font-weight: 600;
  font-size: 2.2rem; line-height: 1; color: var(--gold);
}
.auberge__keys span { font-size: .8rem; color: var(--muted); letter-spacing: .03em; }

/* ============================================================
   HOTEL (chambres)
   ============================================================ */
.hotel {
  padding-block: clamp(5rem, 9vw, 7rem);
  background: var(--green-deep);
  color: var(--paper);
}
.hotel .overline { color: var(--gold-light); }
.hotel .display { color: var(--paper); }
.hotel__head { max-width: 700px; margin-bottom: 3rem; text-align: center; margin-inline: auto; }
.hotel__sub { color: rgba(244, 236, 214, .75); margin-top: .8rem; font-size: 1.05rem; max-width: 50ch; margin-inline: auto; }

.hotel__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
}
.room {
  background: rgba(244, 236, 214, .05);
  border: 1px solid rgba(244, 236, 214, .15);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .4s var(--ease), background .4s;
}
.room:hover { transform: translateY(-4px); background: rgba(244, 236, 214, .08); }
.room figure { position: relative; aspect-ratio: 5 / 3; overflow: hidden; background: var(--green); }
.room figure img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.room:hover figure img { transform: scale(1.05); }
.room__tag {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--gold); color: var(--green-deep);
  font-family: var(--body); font-size: .68rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  padding: .35rem .7rem; border-radius: 999px;
}
.room__body { padding: 1.6rem 1.7rem 1.8rem; }
.room__body h3 {
  font-family: var(--display); font-weight: 500;
  font-size: 1.6rem; color: var(--paper);
  margin-bottom: .55rem;
}
.room__body p { color: rgba(244, 236, 214, .75); font-size: .95rem; margin-bottom: 1.2rem; }
.room__feats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: .55rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(244, 236, 214, .14);
}
.room__feats li {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .82rem; color: rgba(244, 236, 214, .82);
}
.room__feats svg { width: 15px; height: 15px; color: var(--gold-light); }

.hotel__small {
  text-align: center; margin-top: 2.5rem;
  color: rgba(244, 236, 214, .8);
  font-family: var(--display); font-style: italic; font-size: 1rem;
}
.hotel__small .link-fine { color: var(--gold-light); border-color: var(--gold-light); margin-left: .4rem; }
.hotel__small .link-fine:hover { color: var(--paper); border-color: var(--paper); }

/* ============================================================
   PLACE (le lieu)
   ============================================================ */
.place {
  padding-block: clamp(5rem, 9vw, 7rem);
  background: var(--paper);
}
.place__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.place__text p { color: var(--ink-soft); margin-top: 1rem; max-width: 50ch; }
.place__text p em { font-style: italic; color: var(--wine); }

.place__visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.place__visual img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.place__visual figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.4rem 1.5rem 1.1rem;
  background: linear-gradient(to top, rgba(31, 45, 32, .85), transparent);
  color: var(--paper);
  font-family: var(--display); font-style: italic; font-size: 1.05rem;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { padding-block: clamp(5rem, 9vw, 7rem); background: var(--stone); border-block: 1px solid var(--line-soft); }
.gallery__head { max-width: 720px; margin-bottom: 3rem; text-align: center; margin-inline: auto; }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 240px 240px;
  gap: .9rem;
  padding-inline: clamp(20px, 4vw, 56px);
  max-width: calc(var(--container) + 80px);
  margin-inline: auto;
}
.gallery__cell {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--stone-deep);
  cursor: zoom-in;
}
.gallery__cell img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.gallery__cell:hover img { transform: scale(1.06); }
.gallery__cell--1 { grid-area: 1 / 1 / 2 / 3; }
.gallery__cell--2 { grid-area: 1 / 3 / 2 / 4; }
.gallery__cell--3 { grid-area: 1 / 4 / 2 / 5; }
.gallery__cell--4 { grid-area: 2 / 1 / 3 / 2; }
.gallery__cell--5 { grid-area: 2 / 2 / 3 / 5; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { padding-block: clamp(4rem, 7vw, 6rem); background: var(--paper); }
.reviews__top {
  display: flex; justify-content: space-between; align-items: end;
  flex-wrap: wrap; gap: 1rem;
  margin-bottom: 2.5rem; padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--line);
}
.reviews__rating {
  display: flex; align-items: center; gap: .8rem;
  font-family: var(--display); font-size: 1rem; color: var(--ink-soft);
}
.reviews__rating strong { color: var(--green-deep); font-size: 1.2rem; }
.reviews__stars {
  color: var(--gold); font-size: 1.3rem; letter-spacing: .1em;
}
.reviews__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
}
.review { position: relative; padding-left: 1.6rem; }
.review__mark {
  position: absolute; top: -.5rem; left: 0;
  font-family: var(--display); font-size: 3.2rem; line-height: 1;
  color: var(--gold); opacity: .55;
}
.review p {
  font-family: var(--display); font-size: 1.18rem; font-style: italic;
  line-height: 1.45; color: var(--ink-soft);
}
.review footer { margin-top: 1rem; font-size: .82rem; color: var(--muted); letter-spacing: .04em; }
.review footer strong { color: var(--green-deep); font-weight: 600; }

/* ============================================================
   RESERVE
   ============================================================ */
.reserve {
  padding-block: clamp(5rem, 9vw, 7rem);
  background: var(--green-deep);
  color: var(--paper);
}
.reserve .overline { color: var(--gold-light); }
.reserve .display { color: var(--paper); }
.reserve__grid {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: stretch;
}
.reserve__lede {
  font-family: var(--display); font-size: 1.15rem; font-style: italic;
  color: rgba(244, 236, 214, .85);
  margin: 1.2rem 0 2rem;
  max-width: 48ch;
}
.reserve__list { display: grid; gap: 1.1rem; margin-bottom: 2rem; }
.reserve__list li {
  display: grid; grid-template-columns: 28px 1fr auto;
  gap: 1rem; align-items: start;
}
.reserve__list svg { width: 18px; height: 18px; color: var(--gold-light); margin-top: 4px; }
.reserve__list strong { display: block; font-family: var(--display); font-size: 1.05rem; color: var(--paper); margin-bottom: .15rem; }
.reserve__list div { color: rgba(244, 236, 214, .75); font-size: .92rem; overflow-wrap: anywhere; }
.reserve__list div em { font-style: italic; color: rgba(244, 236, 214, .55); font-size: .88em; display: block; }
.reserve__list a:hover { color: var(--gold-light); }

.copy {
  align-self: center;
  font-family: var(--body); font-size: .7rem; font-weight: 600;
  background: transparent; color: rgba(244, 236, 214, .9);
  border: 1px solid rgba(244, 236, 214, .25);
  border-radius: 999px;
  padding: .35rem .8rem; cursor: pointer;
  transition: background .25s, color .25s, border-color .25s;
}
.copy:hover { background: var(--gold); color: var(--green-deep); border-color: transparent; }
.copy.is-copied { background: var(--gold); color: var(--green-deep); border-color: transparent; }

.reserve__cta { display: flex; gap: .8rem; flex-wrap: wrap; }
.reserve__cta .btn--line { color: var(--paper); border-color: rgba(244, 236, 214, .35); }
.reserve__cta .btn--line:hover { border-color: var(--gold-light); color: var(--gold-light); }

.reserve__map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(244, 236, 214, .14);
  min-height: 460px;
}
.reserve__map iframe {
  width: 100%; height: 100%; min-height: 460px; border: 0; display: block;
  filter: grayscale(.3) contrast(.95);
}

/* ============================================================
   FOOTER
   ============================================================ */
.foot { background: var(--stone-deep); color: var(--ink-soft); padding-top: 3.5rem; }
.foot__top {
  display: grid; grid-template-columns: 1.3fr 2fr; gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
}
.foot__sig {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--display); font-size: 1.9rem;
  color: var(--green-deep);
}
.foot__sig .brand__leaf { width: 22px; height: 26px; color: var(--gold); }
.foot__brand p { margin-top: .8rem; font-size: .92rem; max-width: 38ch; color: var(--muted); }

.foot__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.foot__cols h4 {
  font-family: var(--display); font-weight: 500;
  font-size: 1.15rem; color: var(--green-deep); margin-bottom: 1rem;
}
.foot__cols a, .foot__cols span {
  display: block; font-size: .9rem; margin-bottom: .55rem;
  color: var(--ink-soft); transition: color .2s;
}
.foot__cols a:hover { color: var(--gold); }

.foot__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-block: 1.4rem;
  font-size: .78rem; color: var(--muted); gap: 1rem; flex-wrap: wrap;
}
.foot__credit { font-style: italic; }
.foot__top-link { display: inline-flex; align-items: center; gap: .4rem; transition: color .2s; }
.foot__top-link:hover { color: var(--gold); }
.foot__top-link svg { width: 14px; height: 14px; }

/* ============================================================
   RÉSERVATION — FAB + modale multi-onglets
   ============================================================ */
.fab-reserve {
  position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 80;
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .9rem 1.3rem .9rem 1rem;
  background: var(--canal); color: var(--paper);
  font-family: var(--body); font-weight: 600; font-size: .92rem;
  border: 0; border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 14px 32px -10px rgba(57, 134, 160, .65);
  transition: transform .3s var(--ease), background .25s, box-shadow .35s;
  animation: fabPulse 2.4s ease-in-out infinite;
}
.fab-reserve:hover {
  background: var(--ink);
  transform: translateY(-2px) scale(1.03);
  animation-play-state: paused;
}
.fab-reserve svg { width: 18px; height: 18px; }
@keyframes fabPulse {
  0%, 100% { box-shadow: 0 14px 32px -10px rgba(57, 134, 160, .65), 0 0 0 0 rgba(57, 134, 160, .35); }
  50% { box-shadow: 0 14px 32px -10px rgba(57, 134, 160, .65), 0 0 0 14px rgba(57, 134, 160, 0); }
}

.resa {
  position: fixed; inset: 0; z-index: 230;
  background: rgba(23, 23, 23, .82);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  display: grid; place-items: end center;
  padding: 0;
  opacity: 0; visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s;
  overflow-y: auto;
}
.resa.is-open { opacity: 1; visibility: visible; }

.resa__panel {
  position: relative;
  background: var(--paper);
  border-radius: 22px 22px 0 0;
  width: 100%;
  max-width: 640px;
  max-height: 94vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transform: translateY(40px);
  transition: transform .4s var(--ease);
}
.resa.is-open .resa__panel { transform: none; }

.resa__close {
  position: absolute; top: 1rem; right: 1rem; z-index: 3;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: var(--paper-soft); color: var(--ink);
  border: 1px solid var(--line); border-radius: 50%; cursor: pointer;
  transition: background .25s, color .25s, transform .3s var(--ease);
}
.resa__close:hover { background: var(--ink); color: var(--paper); transform: rotate(90deg); }
.resa__close svg { width: 18px; height: 18px; }

.resa__head {
  padding: 2rem 2rem 1.4rem;
  border-bottom: 1px solid var(--line);
}
.resa__head h2 {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(1.8rem, 3.5vw, 2.2rem);
  line-height: 1; color: var(--ink);
  margin: .4rem 0 .8rem;
}
.resa__head h2 em { font-style: italic; color: var(--canal); font-weight: 500; }
.resa__status {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--body); font-size: .82rem; font-weight: 500;
  color: var(--ink-soft);
  padding: .35rem .75rem;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
}
.resa__status::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: #6fb56f;
  box-shadow: 0 0 0 0 rgba(111, 181, 111, .5);
  animation: dot 2s infinite;
}
.resa__status.is-closed::before { background: #c47657; animation: none; box-shadow: none; }
@keyframes dot { 0% { box-shadow: 0 0 0 0 rgba(111, 181, 111, .5); } 70% { box-shadow: 0 0 0 8px rgba(111, 181, 111, 0); } 100% { box-shadow: 0 0 0 0 rgba(111, 181, 111, 0); } }

.resa__tabs {
  display: flex; gap: .4rem;
  padding: 1.2rem 2rem 0;
}
.resa__tab {
  flex: 1;
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  padding: .8rem .8rem;
  background: var(--paper-soft); color: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: var(--body); font-size: .85rem; font-weight: 600;
  cursor: pointer;
  transition: background .25s, color .25s, border-color .25s;
}
.resa__tab:hover { color: var(--ink); border-color: var(--ink); }
.resa__tab.is-active {
  background: var(--ink); color: var(--paper); border-color: var(--ink);
}
.resa__tab svg { width: 16px; height: 16px; }

.resa__form { padding: 1.4rem 2rem 2rem; }

.resa__pane { display: none; }
.resa__pane.is-active { display: block; }

.resa__field { margin-bottom: 1.2rem; }
.resa__field.row { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.resa__field > label {
  display: block;
  font-family: var(--body); font-size: .72rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .5rem;
}
.resa__field > label .opt {
  text-transform: none; letter-spacing: 0;
  font-weight: 400; color: var(--muted);
  margin-left: .3rem;
}

.resa__field input[type="date"],
.resa__field input[type="text"],
.resa__field input[type="tel"],
.resa__field input[type="email"],
.resa__field textarea {
  width: 100%;
  padding: .75rem .9rem;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: var(--body); font-size: .95rem; color: var(--ink);
  transition: border-color .25s, background .25s;
}
.resa__field input:focus, .resa__field textarea:focus {
  outline: none; border-color: var(--canal); background: var(--paper);
}
.resa__field textarea { resize: vertical; min-height: 60px; }

.resa__chips {
  display: flex; flex-wrap: wrap; gap: .4rem;
}
.resa__chip {
  padding: .55rem .9rem;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--body); font-size: .85rem; font-weight: 500;
  color: var(--ink-soft);
  cursor: pointer;
  transition: background .25s, color .25s, border-color .25s, transform .2s var(--ease);
}
.resa__chip:hover { border-color: var(--ink); color: var(--ink); }
.resa__chip.is-selected {
  background: var(--canal); color: var(--paper); border-color: transparent;
}

.resa__hint {
  font-family: var(--display); font-style: italic;
  font-size: .95rem; color: var(--muted);
  margin-bottom: 1.2rem;
  padding: .8rem 1rem;
  background: var(--paper-soft);
  border-left: 2px solid var(--canal);
  border-radius: 4px;
}

.resa__cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem;
  margin-top: 1.8rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}
.resa__cta .btn { width: 100%; padding: 1rem 1.2rem; font-size: .92rem; }

.resa__small {
  text-align: center;
  font-family: var(--display); font-style: italic;
  font-size: .85rem; color: var(--muted);
  margin-top: 1rem;
}

/* Desktop : modal centrée plutôt que bottom-sheet */
@media (min-width: 901px) {
  .resa { place-items: center; padding: 2rem; }
  .resa__panel { border-radius: 16px; transform: scale(.96) translateY(10px); }
  .resa.is-open .resa__panel { transform: none; }
}

@media (max-width: 580px) {
  .fab-reserve { padding: .8rem 1.1rem .8rem .9rem; font-size: .85rem; right: 1rem; bottom: 1rem; }
  .fab-reserve span { display: inline; }
  .resa__head { padding: 1.6rem 1.4rem 1.2rem; }
  .resa__tabs { padding: 1rem 1.4rem 0; gap: .3rem; }
  .resa__tab { padding: .7rem .5rem; font-size: .78rem; }
  .resa__tab span { display: none; }
  .resa__form { padding: 1.2rem 1.4rem 1.8rem; }
  .resa__cta { grid-template-columns: 1fr; }
  .resa__field.row { grid-template-columns: 1fr; }
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lb {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(31, 45, 32, .94);
  display: grid; place-items: center;
  opacity: 0; visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s;
}
.lb.is-open { opacity: 1; visibility: visible; }
.lb figure { max-width: 92vw; max-height: 88vh; text-align: center; }
.lb img { max-width: 92vw; max-height: 78vh; border-radius: var(--radius-sm); box-shadow: 0 40px 80px -30px rgba(0,0,0,.7); }
.lb figcaption {
  margin-top: 1rem; font-family: var(--display); font-style: italic;
  color: rgba(244, 236, 214, .85); font-size: .95rem;
}
.lb__close {
  position: absolute; top: 22px; right: 22px;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: rgba(244, 236, 214, .08); color: var(--paper);
  border: 1px solid rgba(244, 236, 214, .25);
  border-radius: 50%; cursor: pointer;
  transition: background .25s, transform .3s var(--ease);
}
.lb__close:hover { background: var(--gold); color: var(--green-deep); transform: rotate(90deg); }
.lb__close svg { width: 22px; height: 22px; }

/* ============================================================
   REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .85s var(--ease), transform .85s var(--ease); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: none; }

::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--paper-soft); }
::-webkit-scrollbar-thumb { background: var(--gold-light); border-radius: 6px; border: 3px solid var(--paper-soft); }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1080px) {
  .doors__grid { grid-template-columns: 1fr; gap: 1rem; max-width: 720px; margin-inline: auto; }
  .dishes__grid { grid-template-columns: repeat(2, 1fr); }
  .reviews__grid { grid-template-columns: 1fr; gap: 1.6rem; }
  .review { padding-left: 1.4rem; }
}

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__cta span { display: none; }
  .nav__cta { width: 44px; height: 44px; padding: 0; justify-content: center; }
  .nav__cta svg { width: 16px; height: 16px; }
  .nav__toggle { display: inline-flex; }
  .brand__sub { display: none; }
  .brand__name { font-size: 1.25rem; }

  .strip__txt { font-size: .82rem; }

  .hero { min-height: 80vh; }
  .hero__content { padding-block: 3rem 6rem; }
  .hero__title { font-size: clamp(2.6rem, 12vw, 4rem); }
  .hero__sig { padding: .85rem 1.2rem; font-size: .78rem; gap: .6rem; }
  .hero__sig span:nth-child(2),
  .hero__sig span:nth-child(4) { display: none; }

  .auberge__grid, .place__grid, .reserve__grid { grid-template-columns: 1fr; }
  .auberge__shot--side { position: static; width: 60%; margin: -2rem auto 0; border-width: 4px; }
  .auberge__keys { grid-template-columns: repeat(3, 1fr); }
  .auberge__keys strong { font-size: 1.7rem; }

  .dishes__grid { grid-template-columns: 1fr; gap: 1.2rem; }

  .hotel__grid { grid-template-columns: 1fr; gap: 1.4rem; }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 200px 200px 200px;
  }
  .gallery__cell--1 { grid-area: 1 / 1 / 2 / 3; }
  .gallery__cell--2 { grid-area: 2 / 1 / 3 / 2; }
  .gallery__cell--3 { grid-area: 2 / 2 / 3 / 3; }
  .gallery__cell--4 { grid-area: 3 / 1 / 4 / 2; }
  .gallery__cell--5 { grid-area: 3 / 2 / 4 / 3; }

  .reserve__map { min-height: 320px; }
  .reserve__map iframe { min-height: 320px; }

  .foot__top { grid-template-columns: 1fr; gap: 2rem; }
  .foot__cols { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 580px) {
  .strip__inner { gap: .6rem; }
  .strip__txt { font-size: .76rem; }
  .strip__links a:first-child { display: inline-flex; }

  .door { padding: 1.6rem 1.4rem; }
  .door h3 { font-size: 1.5rem; }

  .carte__head, .dishes__head, .hotel__head, .gallery__head { text-align: left; }
  .carte__head p, .dishes__head p, .hotel__head p { margin-inline: 0; }

  .tab { padding: .55rem .9rem; }
  .tab__name { font-size: .72rem; }
  .tab__price { font-size: .8rem; }

  .menucard { padding: 1.8rem 1.4rem; }
  .menucard__price b { font-size: 1.5rem; }

  .dish__body { padding: 1.2rem 1.3rem 1.4rem; }
  .dish__num { width: 32px; height: 32px; font-size: .85rem; top: -.85rem; right: 1rem; border-width: 3px; }

  .auberge__keys { grid-template-columns: 1fr 1fr 1fr; gap: .8rem; }
  .auberge__keys strong { font-size: 1.4rem; }
  .auberge__keys span { font-size: .72rem; }

  .room__body { padding: 1.3rem 1.4rem 1.5rem; }
  .room__feats { grid-template-columns: 1fr; }

  .gallery__grid { grid-template-rows: 160px 160px 160px; gap: .5rem; padding-inline: 16px; }

  .reserve__list li { grid-template-columns: 22px 1fr; }
  .copy { grid-column: 2; justify-self: start; margin-top: .3rem; }

  .foot__cols { grid-template-columns: 1fr; gap: 1.6rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .brand__leaf { transition: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
