/* ============================================================
   LA TAVERNE DU MOULIN — Feuille de style
   Style : cinématique / rustique-élégant · dark · mobile-first
   Palette dérivée du logo (vert sauge + charbon) + or chaleureux
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Fonds */
  --bg:          #0E100D;
  --bg-2:        #12150F;
  --surface:     #191D16;
  --surface-2:   #20241C;
  --surface-3:   #262b20;

  /* Marque */
  --sage:        #A9C4A0;
  --sage-2:      #C3D8BB;
  --sage-deep:   #6E8A66;
  --gold:        #CBA25A;
  --gold-2:      #E3C481;
  --gold-deep:   #9C7734;

  /* Texte */
  --cream:       #F1ECDF;
  --muted:       #ADB4A2;
  --muted-2:     #868D7A;

  /* Lignes */
  --line:        rgba(241,236,223,0.10);
  --line-2:      rgba(241,236,223,0.16);
  --line-sage:   rgba(169,196,160,0.22);

  /* Rayons & ombres — échelle : xs(4) < sm(8) < r(14) < lg(22) < xl(30) < pilule(999) */
  --r-xs: 4px;
  --r-sm: 8px;
  --r:    14px;
  --r-lg: 22px;
  --r-xl: 30px;
  --r-pill: 999px;
  --shadow:    0 18px 50px -20px rgba(0,0,0,0.7);
  --shadow-lg: 0 40px 90px -30px rgba(0,0,0,0.8);
  --glow-gold: 0 0 0 1px rgba(203,162,90,0.3), 0 16px 40px -14px rgba(203,162,90,0.35);

  /* Type */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Karla', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  /* Échelle d'espacement — grille stricte 4px (unique source de vérité) */
  --sp-1:  4px;
  --sp-2:  8px;
  --sp-3:  12px;
  --sp-4:  16px;
  --sp-5:  20px;
  --sp-6:  24px;
  --sp-7:  28px;
  --sp-8:  32px;
  --sp-9:  36px;
  --sp-10: 40px;
  --sp-11: 44px;
  --sp-12: 48px;
  --sp-14: 56px;
  --sp-16: 64px;

  /* Espacements structurels (mobile-first) */
  --space-section: 76px;
  --gutter: 20px;
  --maxw: 1180px;

  /* Semantiques dérivés de l'échelle */
  --pad-card: var(--sp-7) var(--sp-6);   /* 28/24 — cartes de contenu */
  --gap-cards: var(--sp-5);              /* 20 — grilles de cartes */

  /* Hauteurs de contrôles interactifs (unifiées) */
  --control-sm: 40px;
  --control:    48px;
  --control-lg: 56px;
  --touch:      44px;   /* cible tactile minimale */

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 300ms;
}

@media (min-width: 768px) {
  :root { --space-section: 112px; --gutter: 40px; }
}

/* ---------- Reset léger ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--cream);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
/* voile de texture chaude globale */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(1100px 600px at 80% -10%, rgba(203,162,90,0.08), transparent 60%),
    radial-gradient(900px 700px at -10% 110%, rgba(110,138,102,0.10), transparent 55%);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: var(--r-xs); }

/* ---------- Typo utilitaires ---------- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-2);
  font-weight: 600;
  margin-bottom: var(--sp-4);
}
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.08; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.9rem, 6vw, 3.1rem); }
h2 em, h1 em { font-style: italic; color: var(--sage); font-weight: 500; }

.section-head { max-width: 640px; margin: 0 auto var(--sp-11); text-align: center; padding: 0 var(--gutter); }
.section-head__sub { color: var(--muted); margin-top: var(--sp-4); font-size: 1.02rem; }
.section-head__sub a { color: var(--sage-2); border-bottom: 1px solid var(--line-sage); }

/* ---------- Boutons ---------- */
.btn {
  --btn-bg: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-6);
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  line-height: 1;
  min-height: var(--control);
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease), box-shadow var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
  will-change: transform;
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn--gold {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #241a08;
  box-shadow: var(--glow-gold);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 0 0 1px rgba(227,196,129,0.5), 0 24px 50px -16px rgba(203,162,90,0.5); }
.btn--ghost {
  border: 1px solid var(--line-2);
  color: var(--cream);
  background: rgba(255,255,255,0.02);
}
.btn--ghost:hover { border-color: var(--sage); color: var(--sage-2); transform: translateY(-2px); background: rgba(169,196,160,0.06); }
.btn--lg { padding: var(--sp-4) var(--sp-8); min-height: var(--control-lg); font-size: 1rem; }
.btn--sm { padding: var(--sp-3) var(--sp-4); min-height: var(--control-sm); font-size: 0.86rem; }
.btn--block { width: 100%; }
.btn .i { width: 20px; height: 20px; fill: currentColor; }

/* ============================================================
   MOULIN — SVG réutilisable
   ============================================================ */
.mill { display: block; }
.mill__tower { fill: var(--surface-3); stroke: var(--line-2); stroke-width: 0.8; }
.mill__roof  { fill: var(--sage-deep); }
.mill__door  { fill: var(--bg); }
.mill__hub   { fill: var(--gold); }
.mill .arm   { fill: var(--sage); }
.mill .sail  { fill: var(--sage); opacity: 0.45; }
.mill__blades { transform-box: view-box; transform-origin: 50px 44px; }

@keyframes spin { to { transform: rotate(360deg); } }
.mill--loader .mill__blades { animation: spin 4.2s linear infinite; }
.mill__blades--slow { animation: spin 14s linear infinite; }
.mill--ghost .mill__blades { animation: spin 26s linear infinite; }

@media (prefers-reduced-motion: reduce) {
  .mill__blades, .mill__blades--slow, .mill--ghost .mill__blades { animation: none !important; }
}

/* ============================================================
   LOADER
   ============================================================ */
.loader { display: none; }
.js .loader {
  position: fixed; inset: 0; z-index: 9999;
  display: grid; place-items: center;
  background:
    radial-gradient(600px 400px at 50% 40%, #16190F, var(--bg) 70%);
  transition: opacity 0.7s var(--ease), visibility 0.7s;
}
.loader.is-done { opacity: 0; visibility: hidden; pointer-events: none; }
.loader__inner { text-align: center; padding: var(--sp-6); }
.mill--loader { width: 128px; height: 128px; margin: 0 auto var(--sp-6); filter: drop-shadow(0 10px 30px rgba(0,0,0,0.6)); }
.loader__word {
  font-family: var(--font-display);
  font-size: 1.5rem; color: var(--cream);
  letter-spacing: 0.01em;
  opacity: 0; animation: fadeUp 0.8s var(--ease) 0.25s forwards;
}
.loader__sub {
  display: block; margin-top: var(--sp-2);
  font-size: 0.72rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold-2);
  opacity: 0; animation: fadeUp 0.8s var(--ease) 0.45s forwards;
}
/* barre de progression fine sous le logo */
.loader__inner::after {
  content: ""; display: block; width: 120px; height: 2px; margin: var(--sp-6) auto 0;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  background-size: 200% 100%;
  animation: shimmer 1.3s linear infinite;
}
@keyframes shimmer { to { background-position: -200% 0; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  transition: background var(--dur) var(--ease), backdrop-filter var(--dur) var(--ease), border-color var(--dur) var(--ease);
  border-bottom: 1px solid transparent;
  padding-top: env(safe-area-inset-top);
}
.header.is-scrolled {
  background: rgba(14,16,13,0.82);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  border-bottom-color: var(--line);
}
.header__bar {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; gap: var(--sp-4);
  padding: var(--sp-3) var(--gutter);
}

.brand { display: inline-flex; align-items: center; gap: var(--sp-3); }
.mill--brand { width: 42px; height: 42px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name { font-family: var(--font-display); font-size: 1.06rem; color: var(--cream); }
.brand__tag { font-size: 0.62rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold-2); }

.nav { display: none; gap: var(--sp-7); margin-left: var(--sp-3); }
.nav a { font-size: 0.92rem; color: var(--muted); font-weight: 500; position: relative; padding: var(--sp-2) 0; transition: color var(--dur); }
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0;
  background: var(--gold); transition: width var(--dur) var(--ease);
}
.nav a:hover { color: var(--cream); }
.nav a:hover::after { width: 100%; }

.header__actions { display: flex; align-items: center; gap: var(--sp-3); margin-left: auto; }

.rating {
  display: none; align-items: center; gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-3); border-radius: var(--r-pill);
  background: rgba(255,255,255,0.03); border: 1px solid var(--line);
  transition: border-color var(--dur), transform var(--dur);
}
.rating:hover { border-color: var(--line-sage); transform: translateY(-1px); }
.rating__stars .star { width: 16px; height: 16px; fill: var(--gold); }
.rating__val { font-weight: 700; color: var(--cream); font-size: 0.95rem; }
.rating__meta { font-size: 0.74rem; color: var(--muted-2); }

.header__cta { display: none; }

/* Burger */
.burger { width: 44px; height: 44px; display: grid; place-content: center; gap: 5px; border-radius: var(--r-sm); }
.burger span { display: block; width: 22px; height: 2px; background: var(--cream); border-radius: 2px; transition: transform var(--dur) var(--ease), opacity var(--dur); }
body.menu-open .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 900px) {
  .nav { display: flex; }
  .rating { display: inline-flex; }
  .header__cta { display: inline-flex; }
  .burger { display: none; }
}

/* ============================================================
   MENU MOBILE
   ============================================================ */
.mobile-menu {
  position: fixed; inset: 0; z-index: 190;
  background: linear-gradient(180deg, #12150F, var(--bg));
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease-out);
  display: flex; flex-direction: column; justify-content: center;
  padding: 88px var(--gutter) var(--sp-10);
  visibility: hidden;
}
body.menu-open .mobile-menu { transform: translateY(0); visibility: visible; }
.mobile-menu__nav { display: flex; flex-direction: column; gap: var(--sp-2); }
.mobile-menu__nav a {
  font-family: var(--font-display); font-size: 1.9rem; color: var(--cream);
  padding: var(--sp-3) 0; border-bottom: 1px solid var(--line);
  opacity: 0; transform: translateY(12px);
}
body.menu-open .mobile-menu__nav a { animation: fadeUp 0.5s var(--ease) forwards; }
body.menu-open .mobile-menu__nav a:nth-child(1) { animation-delay: 0.08s; }
body.menu-open .mobile-menu__nav a:nth-child(2) { animation-delay: 0.13s; }
body.menu-open .mobile-menu__nav a:nth-child(3) { animation-delay: 0.18s; }
body.menu-open .mobile-menu__nav a:nth-child(4) { animation-delay: 0.23s; }
body.menu-open .mobile-menu__nav a:nth-child(5) { animation-delay: 0.28s; }
body.menu-open .mobile-menu__nav a:nth-child(6) { animation-delay: 0.33s; }
.mobile-menu__nav .btn {
  margin-top: var(--sp-6); border-bottom: none; font-family: var(--font-body); font-size: 1rem;
  animation-delay: 0.4s !important;
}
.mobile-menu__foot { margin-top: auto; padding-top: var(--sp-8); display: flex; flex-direction: column; gap: var(--sp-1); color: var(--muted); }
.mobile-menu__foot a { color: var(--gold-2); font-size: 1.4rem; font-family: var(--font-display); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 120px 0 88px;
  overflow: hidden;
  isolation: isolate;
}
/* conteneur aligné sur le header et les sections (max-width + gouttière) */
.hero__inner { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.hero__bg { position: absolute; inset: 0; z-index: -1; }
.hero__bg::before {
  /* remplacez par une vraie photo : background-image: url('../img/hero.jpg') */
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 70% 10%, #23281B 0%, #171A11 45%, var(--bg) 80%),
    linear-gradient(180deg, rgba(14,16,13,0) 40%, var(--bg) 100%);
}
.hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,16,13,0.2), rgba(14,16,13,0.55) 70%, var(--bg));
}
.hero__wheel {
  position: absolute; top: 50%; right: -28%;
  width: min(120vw, 780px); aspect-ratio: 1; transform: translateY(-50%);
  opacity: 0.5;
}
.hero__wheel .mill--ghost { width: 100%; height: 100%; }
.hero__wheel .arm { fill: var(--sage); opacity: 0.14; }
.hero__wheel .sail { fill: var(--sage); opacity: 0.07; }
.hero__wheel .mill__hub { fill: var(--gold); opacity: 0.25; }

/* Embers / braises flottantes */
.hero__embers { position: absolute; inset: 0; overflow: hidden; }
.ember {
  position: absolute; bottom: -10px; width: 4px; height: 4px; border-radius: 50%;
  background: radial-gradient(circle, var(--gold-2), var(--gold-deep));
  opacity: 0; box-shadow: 0 0 8px 1px rgba(227,196,129,0.5);
  animation: ember-rise linear infinite;
}
@keyframes ember-rise {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  15% { opacity: 0.9; }
  85% { opacity: 0.6; }
  100% { transform: translateY(-88vh) translateX(var(--drift, 20px)); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .hero__embers { display: none; } }

.hero__content { max-width: 680px; position: relative; }
.hero__title {
  font-size: clamp(2.7rem, 11vw, 5.4rem);
  color: var(--cream);
  margin-bottom: var(--sp-6);
  letter-spacing: -0.02em;
}
.hero__lead { font-size: clamp(1.02rem, 3.4vw, 1.22rem); color: var(--muted); max-width: 40ch; margin-bottom: var(--sp-8); }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-bottom: var(--sp-9); }
.hero__marks {
  list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: var(--sp-3) var(--sp-6);
  color: var(--muted); font-size: 0.9rem; font-weight: 500;
}
.hero__marks li { display: inline-flex; align-items: center; gap: var(--sp-2); }
.hero__marks .i { width: 18px; height: 18px; fill: var(--sage); flex: none; }

.hero__scroll {
  position: absolute; left: 50%; bottom: var(--sp-7); transform: translateX(-50%);
  width: 26px; height: 42px; border: 1.5px solid var(--line-2); border-radius: var(--r-pill);
  display: grid; justify-items: center; padding-top: var(--sp-2);
}
.hero__scroll span { width: 4px; height: 8px; border-radius: var(--r-xs); background: var(--gold-2); animation: scrolldot 1.6s var(--ease) infinite; }
@keyframes scrolldot { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(14px); opacity: 0; } 100% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .hero__scroll span { animation: none; } }
@media (max-width: 500px) { .hero__scroll { display: none; } }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--bg-2); overflow: hidden; padding: var(--sp-4) 0;
  position: relative; z-index: 1;
}
.marquee__track { display: flex; align-items: center; gap: var(--sp-7); width: max-content; animation: marquee 34s linear infinite; }
.marquee span { font-family: var(--font-display); font-style: italic; font-size: 1.15rem; color: var(--sage-2); white-space: nowrap; }
.marquee .dot { color: var(--gold); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* ============================================================
   HISTOIRE
   ============================================================ */
.story { padding: var(--space-section) var(--gutter); max-width: var(--maxw); margin: 0 auto; position: relative; z-index: 1; }
.story__grid { display: grid; gap: var(--sp-10); }
@media (min-width: 900px) { .story__grid { grid-template-columns: 0.95fr 1.05fr; gap: var(--sp-16); align-items: center; } }

.story__media { position: relative; }
.story__photo { aspect-ratio: 4/5; border-radius: var(--r-lg); }
.story__badge {
  position: absolute; right: -6px; bottom: -18px;
  background: linear-gradient(145deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line-sage); border-radius: var(--r);
  padding: var(--sp-4) var(--sp-5); text-align: center; box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: var(--sp-1);
}
.story__badge-num { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted-2); }
.story__badge-big { font-family: var(--font-display); font-style: italic; font-size: 1.5rem; color: var(--gold-2); }
.story__badge-sub { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sage); }

.story__text h2 { margin-bottom: var(--sp-5); }
.story__text .lead { font-size: 1.1rem; color: var(--cream); margin-bottom: var(--sp-4); }
.story__text p { color: var(--muted); margin-bottom: var(--sp-4); }
.story__stats { display: flex; gap: var(--sp-7); margin-top: var(--sp-7); flex-wrap: wrap; }
.story__stats strong { display: block; font-family: var(--font-display); font-size: 2rem; color: var(--sage); line-height: 1; }
.story__stats span { font-size: 0.78rem; letter-spacing: 0.06em; color: var(--muted-2); text-transform: uppercase; }

/* ============================================================
   SPÉCIALITÉS
   ============================================================ */
.specs { padding: var(--space-section) 0; background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); position: relative; z-index: 1; }
.specs__grid {
  max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter);
  display: grid; gap: var(--gap-cards); grid-template-columns: 1fr;
}
@media (min-width: 620px) { .specs__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .specs__grid { grid-template-columns: repeat(4, 1fr); } }
.spec {
  padding: var(--pad-card); border-radius: var(--r-lg);
  background: linear-gradient(160deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line);
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), background var(--dur);
}
.spec:hover { transform: translateY(-6px); border-color: var(--line-sage); background: linear-gradient(160deg, var(--surface-2), var(--surface)); }
.spec__icon {
  width: 52px; height: 52px; border-radius: var(--r); display: grid; place-items: center; margin-bottom: var(--sp-5);
  background: radial-gradient(circle at 30% 20%, rgba(203,162,90,0.25), rgba(110,138,102,0.14));
  border: 1px solid var(--line-sage);
}
.spec__icon svg { width: 26px; height: 26px; fill: var(--gold-2); }
.spec h3 { font-size: 1.2rem; margin-bottom: var(--sp-2); color: var(--cream); }
.spec p { color: var(--muted); font-size: 0.95rem; }

/* ============================================================
   OFFRES / BONS PLANS
   ============================================================ */
.offers { padding: var(--space-section) 0; background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); position: relative; z-index: 1; }
.offers__grid { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); display: grid; gap: var(--gap-cards); grid-template-columns: 1fr; }
@media (min-width: 620px) { .offers__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .offers__grid { grid-template-columns: repeat(4, 1fr); } }
.offer {
  padding: var(--pad-card); border-radius: var(--r-lg);
  background: linear-gradient(160deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line); position: relative; overflow: hidden;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.offer:hover { transform: translateY(-6px); border-color: var(--line-sage); }
.offer--hero {
  border-color: var(--line-sage);
  background: radial-gradient(120% 120% at 100% 0%, rgba(203,162,90,0.16), transparent 55%), linear-gradient(160deg, var(--surface-2), var(--bg-2));
}
.offer__big { display: block; font-family: var(--font-display); font-size: 2.6rem; line-height: 1; color: var(--gold-2); }
.offer h3 { font-size: 1.15rem; margin: var(--sp-3) 0 var(--sp-2); color: var(--cream); }
.offer p { color: var(--muted); font-size: 0.92rem; }
.offer p em { color: var(--sage-2); font-style: italic; }
.offers__perks {
  max-width: var(--maxw); margin: var(--sp-8) auto 0; padding: 0 var(--gutter);
  display: flex; flex-wrap: wrap; justify-content: center; gap: var(--sp-3) var(--sp-6);
}
.offers__perks span { display: inline-flex; align-items: center; gap: var(--sp-2); color: var(--cream); font-weight: 500; font-size: 0.92rem; }
.offers__perks .i { width: 20px; height: 20px; fill: var(--gold-2); flex: none; }
.infos__zones { color: var(--sage-2); font-size: 0.98rem; line-height: 1.8; margin: var(--sp-2) 0 var(--sp-4); }

/* ============================================================
   CARTE / MENU
   ============================================================ */
.menu { padding: var(--space-section) 0; max-width: var(--maxw); margin: 0 auto; position: relative; z-index: 1; }
.menu__tabs {
  display: flex; gap: var(--sp-2); overflow-x: auto; padding: var(--sp-1) var(--gutter) var(--sp-5);
  scrollbar-width: none; -webkit-overflow-scrolling: touch;
  justify-content: flex-start;
}
.menu__tabs::-webkit-scrollbar { display: none; }
@media (min-width: 720px) { .menu__tabs { justify-content: center; flex-wrap: wrap; overflow: visible; } }
.menu__tab {
  flex: none; padding: var(--sp-3) var(--sp-5); border-radius: var(--r-pill);
  border: 1px solid var(--line); color: var(--muted); font-weight: 600; font-size: 0.92rem;
  min-height: var(--touch); transition: all var(--dur) var(--ease); white-space: nowrap;
}
.menu__tab:hover { color: var(--cream); border-color: var(--line-2); }
.menu__tab.is-active { background: var(--sage); color: #16190F; border-color: var(--sage); }

.menu__panels { padding: 0 var(--gutter); }
.menu__list { list-style: none; padding: 0; max-width: 760px; margin: 0 auto; }
/* sous-titres de catégorie dans un panneau (Classiques, Spéciales, Suppléments…) */
.menu__group { max-width: 760px; margin: 0 auto var(--sp-1); padding-top: var(--sp-6); font-family: var(--font-display); font-style: italic; font-size: 1.15rem; color: var(--sage-2); }
.menu__group:first-child { padding-top: 0; }
.menu__group span { font-family: var(--font-body); font-style: normal; font-size: 0.76rem; letter-spacing: 0.02em; color: var(--muted-2); }
/* liste des suppléments en deux colonnes */
.menu__suppl { list-style: none; padding: 0; max-width: 760px; margin: var(--sp-2) auto 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0 var(--sp-8); }
.menu__suppl li { display: flex; justify-content: space-between; gap: var(--sp-3); padding: var(--sp-2) 0; border-bottom: 1px dashed var(--line); font-size: 0.95rem; color: var(--muted); }
.menu__suppl li span:last-child { color: var(--gold-2); font-variant-numeric: tabular-nums; }
.menu__note-inline { max-width: 760px; margin: var(--sp-5) auto 0; text-align: center; color: var(--sage); font-style: italic; font-size: 0.92rem; }
.menu__item { padding: var(--sp-5) 0; border-bottom: 1px dashed var(--line); }
.menu__item:last-child { border-bottom: none; }
.menu__line { display: flex; align-items: baseline; gap: var(--sp-3); }
.menu__name { font-family: var(--font-display); font-size: 1.22rem; color: var(--cream); flex: none; }
.menu__tag {
  flex: none; font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold-2); border: 1px solid var(--line-sage); border-radius: var(--r-pill); padding: var(--sp-1) var(--sp-2);
  align-self: center;
}
.menu__dots { flex: 1; border-bottom: 1px dotted var(--line-2); transform: translateY(-3px); min-width: 20px; }
.menu__price {
  flex: none; font-family: var(--font-display); font-size: 1.16rem; color: var(--gold-2);
  font-variant-numeric: tabular-nums;
}
.menu__price::after { content: " CHF"; font-size: 0.72em; color: var(--muted-2); letter-spacing: 0.02em; }
.menu__desc { color: var(--muted); font-size: 0.94rem; margin-top: var(--sp-1); max-width: 58ch; }
.menu__note { text-align: center; color: var(--muted-2); font-size: 0.82rem; margin-top: var(--sp-9); padding: 0 var(--gutter); font-style: italic; }

.menu__panel { animation: panelIn 0.4s var(--ease); }
@keyframes panelIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* ============================================================
   PLACEHOLDERS PHOTO (élégants, à remplacer)
   ============================================================ */
.ph {
  position: relative; overflow: hidden;
  background:
    linear-gradient(135deg, var(--surface-2), var(--bg-2));
  border: 1px solid var(--line);
  display: grid; place-items: center;
}
.ph::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 60% at 30% 20%, rgba(203,162,90,0.16), transparent 60%),
    radial-gradient(70% 70% at 80% 90%, rgba(110,138,102,0.18), transparent 60%);
}
.ph::after {
  /* petite icône appareil photo dessinée en CSS */
  content: ""; position: absolute; width: 40px; height: 30px; top: calc(50% - 26px); left: calc(50% - 20px);
  border: 2px solid var(--line-2); border-radius: 6px;
  box-shadow: 0 -7px 0 -2px var(--bg-2), 0 0 0 2px transparent;
}
.ph__label {
  position: relative; z-index: 1; margin-top: var(--sp-7);
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted-2);
}

/* ============================================================
   GALERIE
   ============================================================ */
.gallery { padding: var(--space-section) 0; background: var(--bg-2); border-top: 1px solid var(--line); position: relative; z-index: 1; }
.gallery__grid {
  max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter);
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-3);
  grid-auto-flow: dense;
}
@media (min-width: 720px) { .gallery__grid { grid-template-columns: repeat(3, 1fr); gap: var(--sp-4); } }
@media (min-width: 1024px) { .gallery__grid { grid-template-columns: repeat(4, 1fr); } }
.gtile {
  aspect-ratio: 1; border-radius: var(--r); min-height: 150px;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur);
}
.gtile:hover { transform: translateY(-4px) scale(1.01); box-shadow: var(--shadow); }
.gtile.is-tall { grid-row: span 2; aspect-ratio: auto; }
.gtile.is-wide { grid-column: span 2; aspect-ratio: auto; }
@media (max-width: 719px) { .gtile.is-wide { grid-column: span 2; } .gtile.is-tall { grid-row: span 1; aspect-ratio: 1; } }
.gallery__cta { text-align: center; margin-top: var(--sp-8); padding: 0 var(--gutter); }

/* ============================================================
   AVIS
   ============================================================ */
.reviews { padding: var(--space-section) 0; position: relative; z-index: 1; }
.reviews__inner { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.reviews__scores { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--sp-4); margin-top: var(--sp-7); }
.score {
  display: flex; flex-direction: column; align-items: center; gap: var(--sp-1);
  padding: var(--sp-4) var(--sp-6); border-radius: var(--r); background: var(--surface); border: 1px solid var(--line);
  min-width: 120px; transition: transform var(--dur), border-color var(--dur);
}
.score:hover { transform: translateY(-3px); border-color: var(--line-sage); }
.score__big { font-family: var(--font-display); font-size: 1.9rem; color: var(--cream); line-height: 1; }
.score__stars { color: var(--gold); letter-spacing: 2px; font-size: 0.8rem; }
.score__src { font-size: 0.72rem; color: var(--muted-2); }

.reviews__grid { display: grid; gap: var(--gap-cards); margin-top: var(--sp-10); }
@media (min-width: 760px) { .reviews__grid { grid-template-columns: repeat(3, 1fr); } }
.review {
  padding: var(--pad-card); border-radius: var(--r-lg);
  background: linear-gradient(160deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line); position: relative;
}
.review::before {
  content: "\201C"; position: absolute; top: 6px; left: 18px;
  font-family: var(--font-display); font-size: 4.5rem; color: var(--line-sage); line-height: 1;
}
.review__stars { color: var(--gold); letter-spacing: 2px; margin-bottom: var(--sp-3); position: relative; }
.review blockquote { font-size: 1.02rem; color: var(--cream); line-height: 1.6; position: relative; }
.review figcaption { margin-top: var(--sp-5); display: flex; flex-direction: column; }
.review__author { font-weight: 700; color: var(--sage-2); font-size: 0.92rem; }
.review__src { font-size: 0.76rem; color: var(--muted-2); }
.reviews__hint { text-align: center; color: var(--muted-2); font-size: 0.82rem; margin-top: var(--sp-6); font-style: italic; }

/* ============================================================
   RÉSERVATION
   ============================================================ */
.reserve { padding: var(--space-section) 0; background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); position: relative; z-index: 1; }
.reserve__grid { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); display: grid; gap: var(--sp-10); }
@media (min-width: 900px) { .reserve__grid { grid-template-columns: 0.9fr 1.1fr; gap: var(--sp-16); align-items: start; } }

.reserve__intro h2 { margin-bottom: var(--sp-5); }
.reserve__intro p { color: var(--muted); margin-bottom: var(--sp-6); }
.reserve__facts { list-style: none; padding: 0; display: flex; flex-direction: column; gap: var(--sp-4); }
.reserve__facts li { display: flex; align-items: center; gap: var(--sp-3); color: var(--cream); }
.reserve__facts .i { width: 22px; height: 22px; fill: var(--sage); flex: none; }
.reserve__facts a:hover { color: var(--gold-2); }

.reserve__form {
  background: linear-gradient(160deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line); border-radius: var(--r-xl);
  padding: var(--sp-8) var(--sp-7); box-shadow: var(--shadow);
}
.field { margin-bottom: var(--sp-5); display: flex; flex-direction: column; }
.field-row { display: grid; gap: var(--sp-4); }
@media (min-width: 520px) { .field-row { grid-template-columns: 1fr 1fr; } .field-row:has(.field--covers) { grid-template-columns: 1fr 1fr 0.8fr; } }
.field label { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em; color: var(--muted); margin-bottom: var(--sp-2); }
.field__opt { color: var(--muted-2); font-weight: 400; text-transform: none; letter-spacing: 0; }
.field input, .field textarea {
  width: 100%; background: var(--bg); border: 1px solid var(--line-2); border-radius: var(--r-sm);
  padding: var(--sp-3) var(--sp-4); color: var(--cream); font-family: inherit; font-size: 16px;
  min-height: var(--control); transition: border-color var(--dur), box-shadow var(--dur);
}
.field textarea { resize: vertical; min-height: 88px; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--sage); box-shadow: 0 0 0 3px rgba(169,196,160,0.14); }
.field__error { color: #E29188; font-size: 0.78rem; margin-top: var(--sp-2); min-height: 0; display: none; }
.field.has-error .field__error { display: block; }
.field.has-error input, .field.has-error textarea { border-color: #C8746A; }
/* icônes calendrier/horloge en clair sur fond sombre */
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator { filter: invert(0.75) sepia(0.3) saturate(2) hue-rotate(40deg); cursor: pointer; }

.chips { display: flex; flex-wrap: wrap; gap: var(--sp-2); }
.chip { position: relative; }
.chip input { position: absolute; opacity: 0; width: 0; height: 0; }
.chip span {
  display: inline-flex; align-items: center; min-height: var(--touch); padding: var(--sp-2) var(--sp-4); border-radius: var(--r-pill);
  border: 1px solid var(--line-2); color: var(--muted); font-size: 0.9rem; font-weight: 500;
  transition: all var(--dur) var(--ease); cursor: pointer;
}
.chip input:checked + span { background: var(--sage); color: #16190F; border-color: var(--sage); font-weight: 600; }
.chip input:focus-visible + span { outline: 2px solid var(--gold); outline-offset: 2px; }

.reserve__legal { color: var(--muted-2); font-size: 0.78rem; margin-top: var(--sp-4); text-align: center; }
.reserve__success {
  margin-top: var(--sp-5); padding: var(--sp-4) var(--sp-5); border-radius: var(--r);
  background: rgba(169,196,160,0.10); border: 1px solid var(--line-sage);
  display: flex; gap: var(--sp-3); align-items: flex-start; color: var(--sage-2);
}
.reserve__success .i { width: 22px; height: 22px; fill: var(--sage); flex: none; margin-top: 2px; }
.reserve__success p { font-size: 0.92rem; }

/* ============================================================
   INFOS
   ============================================================ */
.infos { padding: var(--space-section) 0; max-width: var(--maxw); margin: 0 auto; position: relative; z-index: 1; }
.infos__grid { display: grid; gap: var(--gap-cards); padding: 0 var(--gutter); }
@media (min-width: 780px) { .infos__grid { grid-template-columns: repeat(3, 1fr); } }
.infos__card {
  padding: var(--pad-card); border-radius: var(--r-lg);
  background: linear-gradient(160deg, var(--surface), var(--bg-2)); border: 1px solid var(--line);
}
.infos__card h3 { font-size: 1.4rem; color: var(--cream); margin-bottom: var(--sp-5); }
.hours { list-style: none; padding: 0; }
.hours li { display: flex; justify-content: space-between; gap: var(--sp-4); padding: var(--sp-2) 0; border-bottom: 1px solid var(--line); font-size: 0.92rem; }
.hours li:last-child { border-bottom: none; }
.hours li span:first-child { color: var(--muted); }
.hours li span:last-child { color: var(--cream); text-align: right; }
.hours__closed { color: var(--muted-2) !important; font-style: italic; }
.infos__addr { color: var(--cream); font-size: 1.05rem; line-height: 1.7; margin-bottom: var(--sp-5); }
.infos__links { display: flex; gap: var(--sp-3); flex-wrap: wrap; margin-bottom: var(--sp-4); }
.infos__mini { color: var(--muted-2); font-size: 0.82rem; }
.socials { display: flex; gap: var(--sp-3); margin-top: var(--sp-4); flex-wrap: wrap; }
.socials a { display: inline-flex; align-items: center; gap: var(--sp-2); min-height: var(--touch); padding: var(--sp-3) var(--sp-4); border-radius: var(--r-pill); border: 1px solid var(--line-2); color: var(--cream); font-size: 0.9rem; font-weight: 500; transition: all var(--dur); }
.socials a:hover { border-color: var(--sage); color: var(--sage-2); background: rgba(169,196,160,0.06); }
.socials svg { width: 20px; height: 20px; fill: currentColor; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--line); padding: var(--space-section) var(--gutter) calc(var(--sp-10) + env(safe-area-inset-bottom)); position: relative; z-index: 1; }
.footer__top { max-width: var(--maxw); margin: 0 auto; display: flex; flex-direction: column; gap: var(--sp-7); align-items: flex-start; }
@media (min-width: 720px) { .footer__top { flex-direction: row; justify-content: space-between; align-items: center; } }
.brand--footer .mill--brand { width: 46px; height: 46px; }
.footer__nav { display: flex; flex-wrap: wrap; gap: var(--sp-2) var(--sp-6); }
.footer__nav a { color: var(--muted); font-size: 0.92rem; transition: color var(--dur); }
.footer__nav a:hover { color: var(--gold-2); }
.footer__bottom {
  max-width: var(--maxw); margin: var(--sp-8) auto 0; padding-top: var(--sp-6); border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: var(--sp-2); color: var(--muted-2); font-size: 0.82rem;
}
@media (min-width: 720px) { .footer__bottom { flex-direction: row; justify-content: space-between; } }
.footer__made { font-style: italic; color: var(--sage-deep); }

/* ============================================================
   FAB (mobile)
   ============================================================ */
.fab {
  position: fixed; right: var(--sp-4); bottom: calc(var(--sp-4) + env(safe-area-inset-bottom)); z-index: 150;
  background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: #241a08;
  padding: var(--sp-4) var(--sp-6); border-radius: var(--r-pill); font-weight: 700; font-size: 0.95rem;
  box-shadow: var(--glow-gold);
  opacity: 0; transform: translateY(20px); pointer-events: none;
  transition: opacity var(--dur), transform var(--dur) var(--ease);
}
.fab.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
@media (min-width: 900px) { .fab { display: none; } }

/* ============================================================
   REVEAL ON SCROLL
   ============================================================ */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1 !important; transform: none !important; transition: none; }
}
