/* =====================================================================
   WOODLAND VILLAGE — RESTAURANT & ÉVÉNEMENTS
   Design system + composants
   ---------------------------------------------------------------------
   1.  Tokens
   2.  Reset & base
   3.  Typographie
   4.  Utilitaires de mise en page
   5.  Motif signature « lattes »
   6.  En-tête & navigation
   7.  Hero
   8.  Sections éditoriales
   9.  Cartes & grilles
   10. Galerie
   11. Formulaires
   12. Pied de page
   13. Bandeau cookies
   14. Pages légales
   15. Animations & accessibilité
   ===================================================================== */

/* ------------------------------------------------------------------ */
/* 1. TOKENS                                                          */
/* ------------------------------------------------------------------ */
/* ------------------------------------------------------------------ */
/* POLICES                                                            */
/* ------------------------------------------------------------------ */
/* Urbanist Thin, tel que fourni. Fût de 3 % de l'em : beaucoup trop
   fin pour du texte courant (il disparaît sous 20 px et tombe sous le
   seuil de contraste AA), mais disponible pour de grands intertitres
   décoratifs via .u-thin. Les poids courants viennent de Google Fonts. */
@font-face {
  font-family: 'Urbanist';
  src: url('../fonts/Urbanist-Thin.woff') format('woff'),
       url('../fonts/Urbanist-Thin.ttf') format('truetype');
  font-weight: 100 250;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Couleurs — dominante blanc/noir, bois en accent */
  --ink:        #0F0E0D;
  --ink-soft:   #1C1A17;
  --ink-60:     rgba(15, 14, 13, .60);
  --ink-50:     rgba(15, 14, 13, .55);
  --ink-40:     rgba(15, 14, 13, .40);
  --paper:      #FFFFFF;
  --bone:       #F5F2ED;
  --bone-deep:  #EBE6DE;

  --bark:       #6B4A30;   /* bois massif */
  --tan:        #C58B55;   /* bois clair / accent */
  --sand:       #EADCCB;   /* beige du logo */

  --line:       rgba(15, 14, 13, .12);
  --line-soft:  rgba(15, 14, 13, .07);
  --line-dark:  rgba(255, 255, 255, .16);

  --ok:         #2F6B4F;
  --err:        #A33A2A;

  /* Typographie */
  --font-display: 'Bricolage Grotesque', 'Helvetica Neue', Arial, sans-serif;
  --font-body:    'Urbanist', 'Helvetica Neue', Arial, sans-serif;

  /* Échelle typographique fluide */
  --t-hero:  clamp(2.6rem, 6.6vw, 5.6rem);
  --t-h1:    clamp(2rem, 4.1vw, 3.4rem);
  --t-h2:    clamp(1.7rem, 3vw, 2.5rem);
  --t-h3:    clamp(1.2rem, 1.7vw, 1.5rem);
  --t-h4:    clamp(1.02rem, 1.3vw, 1.15rem);
  --t-lead:  clamp(1.02rem, 1.2vw, 1.16rem);
  --t-body:  1.05rem;
  --t-small: .875rem;
  --t-eyebrow: .72rem;

  /* Rythme */
  --gutter:  clamp(1.25rem, 4vw, 3rem);
  --wrap:    1320px;
  --wrap-narrow: 780px;
  --section-y: clamp(4.5rem, 9vw, 9rem);

  /* Divers */
  --radius: 2px;
  --ease:   cubic-bezier(.22, .61, .36, 1);
  --header-h: 76px;
}

/* ------------------------------------------------------------------ */
/* 2. RESET & BASE                                                    */
/* ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--t-body);
  line-height: 1.62;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

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

a { color: inherit; text-decoration: none; }

button, input, select, textarea { font: inherit; color: inherit; }

:focus-visible {
  outline: 2px solid var(--tan);
  outline-offset: 3px;
}

::selection { background: var(--ink); color: var(--paper); }

hr { border: 0; border-top: 1px solid var(--line); margin: 0; }

/* Lien d'évitement */
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--ink); color: var(--paper);
  padding: .75rem 1.25rem; font-size: var(--t-small);
}
.skip:focus { left: 0; }

/* ------------------------------------------------------------------ */
/* 3. TYPOGRAPHIE                                                     */
/* ------------------------------------------------------------------ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.028em;
  margin: 0 0 .5em;
  text-wrap: balance;
}

h1 { font-size: var(--t-h1); }
h2 { font-size: var(--t-h2); }
h3 { font-size: var(--t-h3); letter-spacing: -.025em; line-height: 1.15; }
h4 { font-size: var(--t-h4); letter-spacing: -.02em; line-height: 1.25; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: var(--t-lead);
  line-height: 1.5;
  color: var(--ink-60);
  max-width: 58ch;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-family: var(--font-body);
  font-size: var(--t-eyebrow);
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--bark);
  margin: 0 0 1.5rem;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--tan);
  flex: none;
}
.eyebrow--light { color: var(--sand); }
.eyebrow--light::before { background: var(--tan); }
.eyebrow--center { justify-content: center; }

.display-xl {
  font-family: var(--font-display);
  font-size: var(--t-hero);
  font-weight: 700;
  line-height: .86;
  letter-spacing: -.055em;
  margin: 0;
}

.text-muted { color: var(--ink-60); }
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.measure { max-width: 62ch; }

/* Lien texte souligné animé */
.link {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-weight: 500;
  padding-bottom: 3px;
  background-image: linear-gradient(var(--tan), var(--tan));
  background-size: 0 1px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size .45s var(--ease);
  border-bottom: 1px solid var(--line);
}
.link:hover { background-size: 100% 1px; }
.link svg { transition: transform .35s var(--ease); }
.link:hover svg { transform: translateX(4px); }

/* ------------------------------------------------------------------ */
/* 4. UTILITAIRES DE MISE EN PAGE                                     */
/* ------------------------------------------------------------------ */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap--narrow { max-width: var(--wrap-narrow); }

.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(3rem, 6vw, 5.5rem); }
.section--bone { background: var(--bone); }
.section--ink { background: var(--ink); color: var(--paper); }
.section--ink .lead { color: rgba(255, 255, 255, .68); }
.section--ink h2, .section--ink h3 { color: var(--paper); }

.grid { display: grid; gap: clamp(1.5rem, 3vw, 2.75rem); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.split--top { align-items: start; }

/* En-tête de section : titre à gauche, intro à droite */
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}
.section-head p { margin-bottom: 0; }
.section-head--center {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}
.section-head--center .lead { margin-inline: auto; }

/* Boutons */
.btn {
  --btn-bg: var(--ink);
  --btn-fg: var(--paper);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  padding: 1.05rem 2rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-bg);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: color .35s var(--ease), border-color .35s var(--ease);
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bark);
  transform: translateY(101%);
  transition: transform .45s var(--ease);
  z-index: -1;
}
.btn:hover { color: #fff; border-color: var(--bark); }
.btn:hover::after { transform: translateY(0); }

.btn--ghost { --btn-bg: transparent; --btn-fg: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { color: #fff; }

.btn--light { --btn-bg: var(--paper); --btn-fg: var(--ink); }
.btn--light:hover { color: #fff; }

.btn--outline-light {
  --btn-bg: transparent; --btn-fg: var(--paper);
  border-color: rgba(255, 255, 255, .35);
}
.btn--outline-light:hover { border-color: var(--bark); }

.btn--wide { width: 100%; }
.btn--lg { padding: 1.25rem 2.5rem; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 2.25rem;
}

/* ------------------------------------------------------------------ */
/* 5. MOTIF SIGNATURE « LATTES »                                      */
/*    Rappel du plafond en lattes de bois du restaurant.              */
/* ------------------------------------------------------------------ */
.slats {
  height: 34px;
  width: 100%;
  background-image: repeating-linear-gradient(
    to right,
    var(--bark) 0 1px,
    transparent 1px 9px
  );
  opacity: .28;
}
.slats--dark { background-image: repeating-linear-gradient(to right, var(--sand) 0 1px, transparent 1px 9px); opacity: .22; }
.slats--sm { height: 18px; }


/* Barre de progression de lecture */
.progress {
  position: fixed;
  inset: 0 auto auto 0;
  height: 2px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: var(--bark);
  z-index: 120;
  pointer-events: none;
}

/* ------------------------------------------------------------------ */
/* 6. EN-TÊTE & NAVIGATION                                            */
/* ------------------------------------------------------------------ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background .4s var(--ease), border-color .4s var(--ease), height .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.header__inner {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* État transparent au-dessus du hero */
.header--over { color: var(--paper); }

/* État compact après défilement */
.header--solid {
  background: rgba(255, 255, 255, .93);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom-color: var(--line);
  color: var(--ink);
  height: 66px;
}


.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  flex: none;
}
/* Logo officiel Woodland Village, vectorisé depuis le fichier fourni.
   Il est appliqué en masque CSS : un seul fichier sert à la fois la
   version noire (sur fond clair) et la version blanche (sur fond sombre),
   puisqu'il prend la couleur du texte. Le dessin reste rigoureusement
   identique dans les deux cas. */
.brand__mark {
  width: 75px;
  height: 48px;              /* ratio du logo : 1000 / 641.7 = 1.558 */
  flex: none;
  background: url(../img/logo-720.png) no-repeat center / contain;
  transition: width .4s var(--ease), height .4s var(--ease);
}
.header--solid .brand__mark { filter: invert(1); }

@supports (mask-image: url(../img/logo.svg)) {
  .brand__mark {
    background: currentColor;
    -webkit-mask: url(../img/logo.svg) no-repeat center / contain;
            mask: url(../img/logo.svg) no-repeat center / contain;
  }
  .header--solid .brand__mark { filter: none; }
}
/* En-tête compact : le logo se réduit avec la barre */
.header--solid .brand__mark { width: 62px; height: 40px; }



.nav { display: flex; align-items: center; gap: clamp(1rem, 2.2vw, 2.25rem); }
.nav__link {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  position: relative;
  padding-block: .4rem;
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: 100% 50%;
  transition: transform .4s var(--ease);
}
.nav__link:hover::after,
.nav__link[aria-current="page"]::after { transform: scaleX(1); transform-origin: 0 50%; }
.nav__link[aria-current="page"] { color: var(--bark); }
.header--over .nav__link[aria-current="page"] { color: var(--sand); }

.header__actions { display: flex; align-items: center; gap: .9rem; }
.header .btn { padding: .8rem 1.4rem; font-size: .72rem; }

/* Bouton menu mobile */
.burger {
  display: none;
  width: 44px; height: 44px;
  background: none;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  cursor: pointer;
  position: relative;
  flex: none;
}
.burger span {
  position: absolute;
  left: 12px;
  width: 18px; height: 1.5px;
  background: currentColor;
  transition: transform .35s var(--ease), opacity .25s var(--ease);
}
.burger span:nth-child(1) { top: 17px; }
.burger span:nth-child(2) { top: 24px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

/* Menu plein écran */
.menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--ink);
  color: var(--paper);
  padding: calc(var(--header-h) + 2rem) var(--gutter) 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateY(-100%);
  transition: transform .55s var(--ease);
  overflow-y: auto;
}
.menu.is-open { transform: translateY(0); }
.menu__list { list-style: none; margin: 0; padding: 0; }
.menu__list li { border-bottom: 1px solid var(--line-dark); }
.menu__list a {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 1.15rem 0;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 5.8vw, 2.2rem);
  font-weight: 600;
  letter-spacing: -.03em;
  transition: color .3s var(--ease), padding-left .4s var(--ease);
}
.menu__list a:hover { color: var(--tan); padding-left: .6rem; }
.menu__list .idx {
  font-family: var(--font-body);
  font-size: .68rem;
  letter-spacing: .18em;
  opacity: .45;
}
.menu__foot {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  font-size: var(--t-small);
  color: rgba(255, 255, 255, .6);
  padding-top: 1.75rem;
  border-top: 1px solid var(--line-dark);
}
.menu__foot a:hover { color: var(--tan); }

/* ------------------------------------------------------------------ */
/* 7. HERO                                                            */
/* ------------------------------------------------------------------ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--paper);
  background: var(--ink);
  overflow: hidden;
  isolation: isolate;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: heroZoom 14s var(--ease) forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }

.hero__veil {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(15,14,13,.66) 0%, rgba(15,14,13,.22) 34%, rgba(15,14,13,.86) 100%);
}
/* Trame de lattes très discrète sur le hero */
.hero__slats {
  position: absolute; inset: 0; z-index: -1;
  background-image: repeating-linear-gradient(to right, rgba(255,255,255,.055) 0 1px, transparent 1px 14px);
  mix-blend-mode: overlay;
}

.hero__content {
  padding-block: 0 clamp(2rem, 5vw, 3.5rem);
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.hero__title {
  font-family: var(--font-display);
  font-size: var(--t-hero);
  font-weight: 700;
  line-height: .95;
  letter-spacing: -.042em;
  margin: 0 0 1.5rem;
}
.hero__title .dot { color: var(--tan); }
.hero__sub {
  font-size: clamp(1.02rem, 1.25vw, 1.2rem);
  line-height: 1.45;
  max-width: 40ch;
  color: rgba(255, 255, 255, .82);
  margin: 0 0 2rem;
}

/* Bandeau d'informations en bas de hero */
.hero__bar {
  border-top: 1px solid var(--line-dark);
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.hero__stat .k {
  display: block;
  font-size: .66rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  margin-bottom: .35rem;
}
.hero__stat .v {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 500;
  letter-spacing: -.02em;
}

.scroll-cue {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(2rem, 5vw, 3.5rem);
  writing-mode: vertical-rl;
  font-size: .64rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  display: flex;
  align-items: center;
  gap: .9rem;
}
.scroll-cue::after {
  content: '';
  width: 1px; height: 52px;
  background: linear-gradient(to bottom, var(--tan), transparent);
  animation: cue 2.4s var(--ease) infinite;
}
@keyframes cue { 0%, 100% { opacity: .3; transform: scaleY(.6); } 50% { opacity: 1; transform: scaleY(1); } }

/* Hero secondaire (pages intérieures) */
.page-hero {
  position: relative;
  min-height: clamp(420px, 62vh, 620px);
  display: flex;
  align-items: flex-end;
  color: var(--paper);
  background: var(--ink);
  overflow: hidden;
  isolation: isolate;
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}
.page-hero__media { position: absolute; inset: 0; z-index: -2; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero::before {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(15,14,13,.72) 0%, rgba(15,14,13,.35) 45%, rgba(15,14,13,.85) 100%);
}
.page-hero h1 { max-width: 18ch; margin-bottom: .55rem; }
.page-hero .lead { color: rgba(255,255,255,.78); }

/* Fil d'Ariane */
.crumbs {
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 1.5rem;
}
.crumbs a:hover { color: var(--tan); }
.crumbs span { margin-inline: .5rem; opacity: .5; }

/* ------------------------------------------------------------------ */
/* 8. SECTIONS ÉDITORIALES                                            */
/* ------------------------------------------------------------------ */
.figure { position: relative; }
.figure img { width: 100%; object-fit: cover; }
.figure figcaption {
  margin-top: .9rem;
  font-size: .75rem;
  letter-spacing: .06em;
  color: var(--ink-60);
}
.figure--tall img { aspect-ratio: 4 / 5; }
.figure--wide img { aspect-ratio: 16 / 9; }

/* Image qui épouse la hauteur de la colonne voisine : évite les grands
   vides quand la colonne de texte est plus haute que l'image. */
.split--fill { align-items: stretch; }
.split--fill > .figure { display: flex; flex-direction: column; }
.split--fill > .figure img {
  flex: 1;
  width: 100%;
  height: 100%;
  min-height: clamp(300px, 34vw, 520px);
  aspect-ratio: auto;
  object-fit: cover;
}

/* Bandeau image pleine largeur */
.band {
  position: relative;
  min-height: clamp(340px, 52vh, 560px);
  display: flex;
  align-items: center;
  color: var(--paper);
  overflow: hidden;
  isolation: isolate;
  /* Respiration en haut et en bas : le contenu ne doit jamais toucher
     les bords du bandeau, même quand le texte est long. */
  padding-block: clamp(3.5rem, 7vw, 6.5rem);
}
.band__media { position: absolute; inset: 0; z-index: -2; }
.band__media img { width: 100%; height: 100%; object-fit: cover; }
.band::before {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, rgba(15,14,13,.88) 0%, rgba(15,14,13,.52) 55%, rgba(15,14,13,.28) 100%);
}
.band h2 { max-width: 16ch; }
.band .lead { color: rgba(255,255,255,.74); }

/* Liste de faits (horaires, infos) */
.facts { list-style: none; margin: 0; padding: 0; }
.facts li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.5rem;
  padding: .85rem 0;
  border-bottom: 1px solid var(--line);
  font-size: .95rem;
}
.facts li:first-child { border-top: 1px solid var(--line); }
.facts .k { color: var(--ink-60); }
.facts .v { font-weight: 500; text-align: right; }
.facts li.is-closed .v { color: var(--ink-40); }
.section--ink .facts li { border-color: var(--line-dark); }
.section--ink .facts .k { color: rgba(255,255,255,.55); }

/* Liste à puces bois */
.ticks { list-style: none; margin: 0; padding: 0; display: grid; gap: .7rem; }
.ticks li {
  position: relative;
  padding-left: 1.7rem;
  font-size: .97rem;
}
.ticks li::before {
  content: '';
  position: absolute;
  left: 0; top: .62em;
  width: 10px; height: 1px;
  background: var(--tan);
}
.ticks--2 { grid-template-columns: repeat(2, 1fr); gap: .7rem 2rem; }

/* Chiffres clés */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border-block: 1px solid var(--line); }
.stat { background: var(--paper); padding: clamp(1.5rem, 3vw, 2.4rem) clamp(1rem, 2vw, 1.75rem); }
.section--ink .stats { background: var(--line-dark); border-color: var(--line-dark); }
.section--ink .stat { background: var(--ink); }
.stat__n {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.7vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -.04em;
  line-height: 1;
  display: block;
  margin-bottom: .5rem;
}
.stat__l {
  font-size: .74rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-60);
}
.section--ink .stat__l { color: rgba(255,255,255,.55); }

/* Étapes numérotées — séquence réelle du parcours de réservation */
.steps { counter-reset: step; display: grid; gap: 0; }
.step {
  counter-increment: step;
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2.5rem);
  padding: clamp(1.75rem, 3vw, 2.5rem) 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step::before {
  content: '0' counter(step);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -.04em;
  color: var(--tan);
  padding-top: .1em;
}
.step h3 { margin-bottom: .4rem; }
.step p { color: var(--ink-60); margin-bottom: 0; max-width: 62ch; }
.section--ink .step { border-color: var(--line-dark); }
.section--ink .step p { color: rgba(255,255,255,.66); }

/* ------------------------------------------------------------------ */
/* 9. CARTES & GRILLES                                                */
/* ------------------------------------------------------------------ */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: clamp(1.5rem, 2.5vw, 2.1rem);
  transition: background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease), transform .4s var(--ease);
  height: 100%;
}
.card::after {
  content: '';
  position: absolute;
  left: 0; top: -1px;
  height: 2px; width: 0;
  background: var(--bark);
  transition: width .5s var(--ease);
}
.card:hover { border-color: var(--ink); transform: translateY(-3px); }
.card:hover::after { width: 100%; }
.card__tag {
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--bark);
  margin-bottom: 1.1rem;
  display: block;
}
.card h3 { margin-bottom: .55rem; }
.card p { color: var(--ink-60); font-size: .95rem; margin-bottom: 1.25rem; }
.card__meta {
  margin-top: auto;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: .4rem 1.25rem;
  font-size: .78rem;
  letter-spacing: .04em;
  color: var(--ink-60);
}
.card__meta strong { font-weight: 600; color: var(--ink); }


/* Grille de prestations */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); }
.feature { background: var(--paper); padding: clamp(1.6rem, 3vw, 2.4rem); }
.feature__icon { width: 26px; height: 26px; margin-bottom: 1.2rem; stroke: var(--bark); fill: none; stroke-width: 1.5; }
.feature h3 { font-size: 1.08rem; margin-bottom: .45rem; }
.feature p { font-size: .92rem; color: var(--ink-60); margin: 0; }
.section--bone .features { background: var(--bone-deep); }
.section--bone .feature { background: var(--bone); }

/* ------------------------------------------------------------------ */
/* 10. GALERIE                                                        */
/* ------------------------------------------------------------------ */
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(.6rem, 1.2vw, 1rem);
}
.gallery button {
  border: 0; padding: 0; background: none; cursor: zoom-in;
  overflow: hidden; position: relative; display: block;
}
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease), opacity .4s var(--ease); }
.gallery button:hover img { transform: scale(1.05); }
.g-a { grid-column: span 7; aspect-ratio: 16 / 10; }
.g-b { grid-column: span 5; aspect-ratio: 4 / 3; }
.g-c { grid-column: span 4; aspect-ratio: 1 / 1; }
.g-d { grid-column: span 4; aspect-ratio: 1 / 1; }
.g-e { grid-column: span 4; aspect-ratio: 1 / 1; }
.g-f { grid-column: span 5; aspect-ratio: 4 / 3; }
.g-g { grid-column: span 7; aspect-ratio: 16 / 10; }

/* Visionneuse */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(10, 9, 8, .96);
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 100%; max-height: 86vh; object-fit: contain; }
.lightbox__close, .lightbox__nav {
  position: absolute;
  background: none;
  border: 1px solid rgba(255,255,255,.28);
  color: #fff;
  width: 48px; height: 48px;
  cursor: pointer;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.lightbox__close:hover, .lightbox__nav:hover { background: var(--bark); border-color: var(--bark); }
.lightbox__close { top: clamp(1rem, 3vw, 2rem); right: clamp(1rem, 3vw, 2rem); }
.lightbox__nav--prev { left: clamp(.5rem, 3vw, 2rem); top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: clamp(.5rem, 3vw, 2rem); top: 50%; transform: translateY(-50%); }
.lightbox__cap {
  position: absolute;
  bottom: clamp(1rem, 3vw, 2rem);
  left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.7);
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* ------------------------------------------------------------------ */
/* 11. FORMULAIRES                                                    */
/* ------------------------------------------------------------------ */
.form-wrap {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: clamp(1.75rem, 4vw, 3.25rem);
}
.section--ink .form-wrap {
  background: var(--ink-soft);
  border-color: var(--line-dark);
}

.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem clamp(1.25rem, 2.5vw, 2rem); }
.field { display: flex; flex-direction: column; gap: .5rem; }
.field--full { grid-column: 1 / -1; }

.field label, .fieldset__legend {
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-60);
}
.section--ink .field label,
.section--ink .fieldset__legend { color: rgba(255,255,255,.6); }

.field .req { color: var(--bark); }
.section--ink .field .req { color: var(--tan); }

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field input[type="date"],
.field input[type="time"],
.field input[type="number"],
.field select,
.field textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: .7rem 0;
  font-size: 1rem;
  border-radius: 0;
  transition: border-color .3s var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
.section--ink .field input,
.section--ink .field select,
.section--ink .field textarea {
  border-bottom-color: var(--line-dark);
  color: var(--paper);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--bark);
}
.section--ink .field input:focus,
.section--ink .field select:focus,
.section--ink .field textarea:focus { border-bottom-color: var(--tan); }

.field textarea { resize: vertical; min-height: 120px; line-height: 1.6; }

.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%236B4A30' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .25rem center;
  padding-right: 2rem;
  cursor: pointer;
}
.section--ink .field select { background-color: transparent; }
.section--ink .field select option { background: var(--ink-soft); color: var(--paper); }

.field input::placeholder, .field textarea::placeholder { color: var(--ink-50); }
.section--ink .field input::placeholder,
.section--ink .field textarea::placeholder { color: rgba(255,255,255,.5); }

.field__hint { font-size: .78rem; color: var(--ink-60); text-transform: none; letter-spacing: 0; font-weight: 400; }
.section--ink .field__hint { color: rgba(255,255,255,.6); }

/* Champ en erreur */
.field.has-error input,
.field.has-error select,
.field.has-error textarea { border-bottom-color: var(--err); }
.field__error { font-size: .78rem; color: var(--err); text-transform: none; letter-spacing: 0; font-weight: 500; }
.section--ink .field__error { color: #E88C7B; }

/* Cases à cocher / boutons radio */
.fieldset { border: 0; margin: 0; padding: 0; grid-column: 1 / -1; }
.fieldset__legend { display: block; margin-bottom: .9rem; }
.choices { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: .6rem; }
.choice {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .8rem 1rem;
  border: 1px solid var(--line);
  cursor: pointer;
  font-size: .9rem;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.choice:hover { border-color: var(--bark); }
.section--ink .choice { border-color: var(--line-dark); }
.choice input { accent-color: var(--bark); width: 16px; height: 16px; flex: none; }
.choice:has(input:checked) { border-color: var(--bark); background: rgba(107, 74, 48, .06); }
.section--ink .choice:has(input:checked) { background: rgba(197, 139, 85, .12); border-color: var(--tan); }

/* Consentement */
.consent {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  font-size: .87rem;
  line-height: 1.55;
  color: var(--ink-60);
  cursor: pointer;
}
.section--ink .consent { color: rgba(255,255,255,.6); }
.consent input { accent-color: var(--bark); width: 17px; height: 17px; margin-top: .2rem; flex: none; }
.consent a { text-decoration: underline; text-underline-offset: 3px; }
.consent a:hover { color: var(--bark); }
.section--ink .consent a:hover { color: var(--tan); }

.form-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin-top: .5rem;
}
.form-actions .note { font-size: .82rem; color: var(--ink-60); }
.section--ink .form-actions .note { color: rgba(255,255,255,.6); }

/* Pot de miel */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Messages */
.alert {
  padding: 1.15rem 1.4rem;
  border-left: 2px solid var(--ok);
  background: rgba(47, 107, 79, .07);
  font-size: .95rem;
  margin-bottom: 2rem;
}
.alert--error { border-left-color: var(--err); background: rgba(163, 58, 42, .07); }
.alert strong { display: block; margin-bottom: .25rem; font-family: var(--font-display); font-size: 1.05rem; letter-spacing: -.02em; }
.section--ink .alert { background: rgba(255,255,255,.05); }

/* ------------------------------------------------------------------ */
/* 12. PIED DE PAGE                                                   */
/* ------------------------------------------------------------------ */
.footer { background: var(--ink); color: rgba(255, 255, 255, .68); padding-top: clamp(3.5rem, 7vw, 6rem); }
.footer a:hover { color: var(--tan); }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: clamp(2rem, 4vw, 3.5rem); padding-bottom: clamp(2.5rem, 5vw, 4rem); }
/* Le logo du footer suit currentColor : le beige de la marque. */
.footer__brand .brand { color: var(--sand); }
.footer__brand .brand__mark { width: 132px; height: 85px; }
.footer__brand p { margin-top: 1.4rem; font-size: .92rem; max-width: 34ch; }
.footer h4 {
  color: var(--paper);
  font-family: var(--font-body);
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 1.35rem;
  font-weight: 600;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .65rem; font-size: .93rem; }
.footer__social { display: flex; gap: .6rem; margin-top: 1.5rem; }
.footer__social a {
  width: 40px; height: 40px;
  border: 1px solid var(--line-dark);
  display: grid; place-items: center;
  border-radius: var(--radius);
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.footer__social a:hover { background: var(--bark); border-color: var(--bark); color: #fff; }
.footer__social svg { width: 17px; height: 17px; fill: currentColor; }

.footer__bottom {
  border-top: 1px solid var(--line-dark);
  padding-block: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem 2rem;
  font-size: .82rem;
  color: rgba(255, 255, 255, .6);
}
.footer__legal { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.footer__legal button {
  background: none; border: 0; padding: 0; cursor: pointer;
  font-size: inherit; color: inherit; letter-spacing: inherit;
}
.footer__legal button:hover { color: var(--tan); }

/* ------------------------------------------------------------------ */
/* 13. BANDEAU COOKIES                                                */
/* ------------------------------------------------------------------ */
.cookies {
  position: fixed;
  left: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 150;
  width: min(440px, calc(100vw - 2rem));
  background: var(--paper);
  border: 1px solid var(--ink);
  padding: 1.6rem;
  box-shadow: 0 24px 60px -20px rgba(15, 14, 13, .35);
  transform: translateY(calc(100% + 3rem));
  transition: transform .6s var(--ease);
}
.cookies.is-visible { transform: translateY(0); }
.cookies h4 { font-family: var(--font-display); font-size: 1.15rem; letter-spacing: -.03em; margin-bottom: .55rem; text-transform: none; }
.cookies p { font-size: .87rem; color: var(--ink-60); line-height: 1.55; margin-bottom: 1.1rem; }
.cookies p a { text-decoration: underline; text-underline-offset: 3px; }
.cookies__actions { display: flex; flex-wrap: wrap; gap: .6rem; }
.cookies .btn { padding: .8rem 1.3rem; font-size: .7rem; flex: 1 1 auto; }
.cookies__prefs { margin: 0 0 1.1rem; display: none; }
.cookies.is-detailed .cookies__prefs { display: grid; gap: .55rem; }
.cookies__row {
  display: flex; align-items: center; gap: .75rem;
  padding: .7rem .9rem; border: 1px solid var(--line); font-size: .87rem;
}
.cookies__row input { accent-color: var(--bark); width: 16px; height: 16px; }
.cookies__row input:disabled { opacity: .5; }
.cookies__row span { color: var(--ink-60); font-size: .78rem; margin-left: auto; }

/* ------------------------------------------------------------------ */
/* 14. PAGES LÉGALES                                                  */
/* ------------------------------------------------------------------ */
.legal { max-width: 78ch; }
.legal h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-top: 3rem; padding-top: 1.75rem; border-top: 1px solid var(--line); }
.legal h2:first-of-type { margin-top: 0; border-top: 0; padding-top: 0; }
.legal h3 { font-size: 1.15rem; margin-top: 2rem; }
.legal p, .legal li { color: var(--ink-60); font-size: .97rem; }
.legal ul, .legal ol { padding-left: 1.15rem; display: grid; gap: .5rem; margin-bottom: 1.4rem; }
.legal strong { color: var(--ink); font-weight: 600; }
.legal .toc {
  background: var(--bone);
  padding: 1.6rem 1.9rem;
  margin-bottom: 3rem;
  list-style: none;
  display: grid;
  gap: .55rem;
  counter-reset: toc;
}
.legal .toc li { counter-increment: toc; font-size: .92rem; }
.legal .toc li::before { content: counter(toc) '. '; color: var(--tan); font-weight: 600; }
.legal .toc a:hover { color: var(--bark); }
.legal .updated { font-size: .82rem; color: var(--ink-60); margin-bottom: 2.5rem; }

/* ------------------------------------------------------------------ */
/* 15. ANIMATIONS & ACCESSIBILITÉ                                     */
/* ------------------------------------------------------------------ */
.reveal { opacity: 0; transform: translateY(22px); }
.reveal.is-in {
  opacity: 1;
  transform: none;
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

/* ------------------------------------------------------------------ */
/* RESPONSIVE                                                         */
/* ------------------------------------------------------------------ */
@media (max-width: 1080px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  :root { --header-h: 68px; }
  .nav, .header__actions .btn--nav { display: none; }
  .burger { display: block; }
  .brand__mark { width: 65px; height: 42px; }
  .header--solid .brand__mark { width: 58px; height: 37px; }
  .footer__brand .brand__mark { width: 112px; height: 72px; }
  .split { grid-template-columns: 1fr; }
  /* En une seule colonne, un ratio fixe est plus prévisible qu'une
     hauteur héritée de la colonne voisine, qui n'existe plus. */
  .split--fill > .figure img { min-height: 0; height: auto; aspect-ratio: 4 / 3; }
  .section-head { grid-template-columns: 1fr; align-items: start; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .hero__bar { grid-template-columns: repeat(2, 1fr); gap: 1.25rem 1rem; }
  .scroll-cue { display: none; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(6, 1fr); }
  .g-a, .g-g { grid-column: span 6; }
  .g-b, .g-f { grid-column: span 6; }
  .g-c, .g-d, .g-e { grid-column: span 2; }
}

@media (max-width: 680px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr; }
  .ticks--2 { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .step { grid-template-columns: 1fr; gap: .5rem; padding-block: 1.75rem; }
  .step::before { font-size: 1.15rem; }
  .btn { width: 100%; }
  .btn-row { flex-direction: column; }
  .cookies { left: .75rem; right: .75rem; bottom: .75rem; width: auto; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .g-a, .g-b, .g-f, .g-g { grid-column: span 2; aspect-ratio: 4 / 3; }
  .g-c, .g-d, .g-e { grid-column: span 1; }
  .facts li { flex-direction: column; gap: .15rem; }
  .facts .v { text-align: left; }
}

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

/* Urbanist Thin — réservé aux très grandes tailles (48 px et plus). */
.u-thin { font-weight: 250; letter-spacing: .01em; }

/* ------------------------------------------------------------------ */
/* 14. LA CARTE                                                        */
/* ------------------------------------------------------------------ */

/* --- Visionneuse feuilletable --- */
.menu-viewer { max-width: 980px; margin-inline: auto; }

.menu-viewer__stage {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(.5rem, 2vw, 1.5rem);
}

.menu-viewer__pages {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px -32px rgba(15, 14, 13, .35);
}

.menu-page { margin: 0; }
.menu-page[hidden] { display: none; }
.menu-page img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1241 / 1755;
}
.menu-page figcaption {
  padding: .85rem 1.25rem;
  border-top: 1px solid var(--line);
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-60);
  text-align: center;
}

.menu-viewer__nav {
  width: 46px; height: 46px;
  flex: none;
  display: grid;
  place-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink);
  cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease),
              border-color .25s var(--ease);
}
.menu-viewer__nav svg { width: 20px; height: 20px; }
.menu-viewer__nav:hover:not(:disabled) {
  background: var(--ink); color: var(--paper); border-color: var(--ink);
}
.menu-viewer__nav:disabled { opacity: .3; cursor: default; }

.menu-viewer__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.menu-viewer__dots { display: flex; gap: .5rem; }
.menu-dot {
  width: 34px; height: 34px;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink-60);
  font-family: var(--font-body);
  font-size: .82rem;
  cursor: pointer;
  transition: all .25s var(--ease);
}
.menu-dot:hover { border-color: var(--ink); color: var(--ink); }
.menu-dot.is-active {
  background: var(--ink); border-color: var(--ink); color: var(--paper);
}
.menu-viewer__count {
  margin: 0;
  font-size: .84rem;
  color: var(--ink-60);
  letter-spacing: .04em;
}

@media (max-width: 700px) {
  .menu-viewer__stage { grid-template-columns: 1fr; }
  .menu-viewer__nav { display: none; }
  .menu-viewer__bar { justify-content: center; }
}

/* --- Carte en texte --- */
.menu-cols {
  columns: 2;
  column-gap: clamp(2rem, 5vw, 4.5rem);
}
.menu-block {
  break-inside: avoid;
  margin-bottom: 3rem;
}
.menu-block h3 {
  padding-bottom: .7rem;
  margin-bottom: 1.4rem;
  border-bottom: 1px solid var(--line);
  letter-spacing: .01em;
}

.menu-list { list-style: none; margin: 0; padding: 0; }
.menu-list li { margin-bottom: 1.35rem; break-inside: avoid; }
.menu-list li:last-child { margin-bottom: 0; }

.menu-list__head {
  display: flex;
  align-items: baseline;
  gap: .75rem;
  margin: 0 0 .2rem;
  font-weight: 500;
}
.menu-list__head > span:first-child { flex: 1; }
.menu-list__price {
  flex: none;
  font-variant-numeric: tabular-nums;
  color: var(--bark);
  font-weight: 500;
}
.menu-list__desc {
  margin: 0;
  font-size: .93rem;
  line-height: 1.55;
  color: var(--ink-60);
  max-width: 46ch;
}

@media (max-width: 860px) {
  .menu-cols { columns: 1; }
}

/* --- Cartes sur fond sombre (plats à partager) --- */
.card--dark {
  background: transparent;
  border: 1px solid var(--line-dark);
  color: var(--paper);
}
.card--dark h3 { color: var(--paper); }
.card--dark .card__tag {
  color: var(--tan);
  font-weight: 500;
}
.card--dark .card__tag span {
  color: rgba(255,255,255,.6);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}
