/* =============================================================================
   Chez Angela — Spa · Feuille de styles
   Direction : « Warm Minimalism » — crème + terracotta + olive + laiton.
   Sur-mesure, sans framework. Organisation : Jetons → Base → Typo → Layout →
   Composants → Sections → Mouvement → Responsive → Impression.
   ============================================================================= */

/* -----------------------------------------------------------------------------
   1. JETONS DE DESIGN
   -------------------------------------------------------------------------- */
:root {
  /* Palette */
  --cream: #f7f2e9;        /* fond principal */
  --linen: #fbf8f2;        /* fond alterné, cartes */
  --ink: #1f1a16;          /* texte (jamais #000) */
  --ink-soft: #5a5048;     /* texte secondaire */
  --terracotta: #be4b2a;   /* accent principal — la braise */
  --olive: #5e6b3f;        /* accent secondaire — le basilic */
  --brass: #b08d57;        /* métal premium — filets */
  --sand: #e6dccb;         /* bordures, neutres */
  --char: #241e19;         /* surface sombre — footer, overlays */

  /* Dérivés */
  --terracotta-deep: color-mix(in srgb, var(--terracotta) 86%, #000);
  --cream-blur: color-mix(in srgb, var(--cream) 82%, transparent);
  --hairline: color-mix(in srgb, var(--brass) 45%, transparent);
  --accent-light: #f3c9b3;  /* pêche claire — accent (eyebrow, icônes) sur fonds sombres */
  --seal-bg: color-mix(in srgb, var(--olive) 14%, #fff);  /* fond du sceau de confirmation */

  /* Typographie */
  --serif: "Fraunces", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Échelle fluide (clamp : mobile → desktop) */
  --fs-display: clamp(2.75rem, 1.6rem + 5.2vw, 6rem);
  --fs-h1: clamp(2.1rem, 1.4rem + 3vw, 3.5rem);
  --fs-h2: clamp(1.7rem, 1.3rem + 1.7vw, 2.5rem);
  --fs-h3: clamp(1.35rem, 1.15rem + 0.8vw, 1.75rem);
  --fs-lead: clamp(1.06rem, 1rem + 0.4vw, 1.25rem);
  --fs-body: clamp(1rem, 0.97rem + 0.15vw, 1.0625rem);
  --fs-eyebrow: 0.8125rem;
  --fs-caption: 0.875rem;

  /* Espacement (échelle 4px) */
  --sp-1: 4px;  --sp-2: 8px;  --sp-3: 12px; --sp-4: 16px;
  --sp-5: 24px; --sp-6: 32px; --sp-7: 48px; --sp-8: 64px;
  --sp-9: 96px; --sp-10: 120px;
  --section-y: clamp(4.5rem, 3rem + 6vw, 7.5rem);

  /* Formes */
  --r-card: 10px;
  --r-img: 14px;
  --r-field: 8px;
  --shadow-soft: 0 8px 30px rgba(31, 26, 22, 0.06);
  --shadow-lift: 0 16px 44px -18px rgba(31, 26, 22, 0.22);

  /* Layout */
  --container: 1200px;
  --measure: 64ch;

  /* Mouvement */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-pop: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--sans);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--ink);
  background-color: var(--cream);
  /* Grain papier très subtil (≤ 4 %) — sensorialité « objet imprimé ». */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, picture, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; }
ul { list-style: none; padding: 0; }

:where(a, button, input, summary):focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Lien d'évitement (a11y) */
.skip-link {
  position: absolute;
  left: var(--sp-4);
  top: -120px;
  z-index: 200;
  background: var(--ink);
  color: var(--cream);
  padding: var(--sp-3) var(--sp-5);
  border-radius: var(--r-field);
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: var(--sp-4); }

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

/* -----------------------------------------------------------------------------
   3. TYPOGRAPHIE
   -------------------------------------------------------------------------- */
h1, h2, h3, .display {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--ink);
  font-optical-sizing: auto;
}
.display { font-size: var(--fs-display); line-height: 1.02; letter-spacing: -0.025em; }
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }

.eyebrow {
  font-family: var(--sans);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--terracotta);
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--brass);
}
.eyebrow--center { justify-content: center; width: fit-content; margin-inline: auto; }

.lead {
  font-size: var(--fs-lead);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 52ch;
}
.it { font-style: italic; font-family: var(--serif); }
.caption { font-size: var(--fs-caption); color: var(--ink-soft); }

/* Utilitaires ponctuels — préférés aux styles inline (séparation des préoccupations). */
.u-center { text-align: center; }
.u-mt-4 { margin-top: var(--sp-4); }
.u-mt-5 { margin-top: var(--sp-5); }
.u-mt-6 { margin-top: var(--sp-6); }
.u-mt-8 { margin-top: var(--sp-8); }
.lead--center { margin-inline: auto; }
.textlink--ondark { color: #fff; }
.muted { color: var(--ink-soft); }

/* Icônes inline du sprite SVG : fill/stroke posés ICI (et non sur le <g> du sprite), car les
   attributs de présentation du <g> ne traversent PAS la frontière <use> — sans cette règle,
   les <rect>/<path> se remplissent en noir (ex. le carré du calendrier sur la pastille). */
svg.ico { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
svg.ico--solid { fill: currentColor; stroke: none; }

/* -----------------------------------------------------------------------------
   4. LAYOUT
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 0.5rem + 3vw, 2.5rem);
}
.section { padding-block: var(--section-y); }
/* Décalage d'ancrage : l'en-tête collant ne masque pas la cible d'un lien #ancre. */
section[id], [id].anchor-offset { scroll-margin-top: 92px; }
.section--linen { background: var(--linen); }
.section--char { background: var(--char); color: var(--cream); }
/* Sur fond sombre, les titres (qui sont en --ink par défaut) et le chapô repassent en clair. */
.section--char :is(h1, h2, h3) { color: var(--cream); }
.section--char .lead { color: rgba(247, 242, 233, 0.82); }
/* Eyebrow sur fond sombre (pêche claire, contraste élevé). */
.eyebrow--light { color: var(--accent-light); }
.eyebrow--light::before { background: var(--accent-light); }
/* Liste de bénéfices à 3 colonnes (ex. à emporter & livraison) — remplace les styles inline. */
.feature-list { display: grid; gap: var(--sp-5); grid-template-columns: 1fr; }
@media (min-width: 760px) { .feature-list { grid-template-columns: repeat(3, 1fr); } }
.feature-item { display: flex; gap: var(--sp-3); align-items: flex-start; }
.feature-item .ico { width: 26px; height: 26px; color: var(--accent-light); flex: 0 0 auto; margin-top: 2px; }
.feature-item b { font-family: var(--serif); font-weight: 500; font-size: 1.1rem; color: var(--cream); }
.feature-item p { color: rgba(247, 242, 233, 0.74); font-size: 0.95rem; margin-top: 4px; }
.section__head { max-width: 56ch; margin-bottom: var(--sp-8); }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head .lead { margin-top: var(--sp-4); }

.split {
  display: grid;
  gap: clamp(var(--sp-6), 4vw, var(--sp-9));
  align-items: center;
}
@media (min-width: 880px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--narrow-first { grid-template-columns: 5fr 7fr; }
}

/* -----------------------------------------------------------------------------
   5. COMPOSANTS — Boutons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 0.95em 1.5em;
  border-radius: var(--r-card);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.975rem;
  line-height: 1;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease),
    border-color 0.2s var(--ease), transform 0.12s var(--ease);
  min-height: 48px;
}
.btn .ico { width: 18px; height: 18px; flex: 0 0 auto; }
.btn--primary { background: var(--terracotta); color: #fff; box-shadow: 0 8px 22px -12px rgba(190, 75, 42, 0.7); }
.btn--outline { border-color: var(--terracotta); color: var(--terracotta); background: transparent; }
.btn--ghost { color: var(--ink); border-color: var(--sand); background: var(--linen); }
.btn--light { background: var(--cream); color: var(--ink); }
.btn--lg { padding: 1.1em 1.9em; font-size: 1.0625rem; }
@media (hover: hover) {
  .btn--primary:hover { background: var(--terracotta-deep); }
  .btn--outline:hover { background: var(--terracotta); color: #fff; }
  .btn--ghost:hover { border-color: var(--terracotta); color: var(--terracotta); }
  .btn--light:hover { background: #fff; }
  .btn:hover { transform: translateY(-1px); }
}
.btn:active { transform: translateY(0) scale(0.99); }

.textlink {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-weight: 600;
  color: var(--terracotta);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.2s var(--ease), gap 0.2s var(--ease);
}
.textlink .ico { width: 16px; height: 16px; }
@media (hover: hover) {
  .textlink:hover { border-color: var(--terracotta); gap: var(--sp-3); }
}

/* -----------------------------------------------------------------------------
   6. EN-TÊTE
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream-blur);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background-color 0.3s var(--ease);
}
.site-header.is-scrolled { border-bottom-color: var(--hairline); }
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
  min-height: 76px;
}
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4ch;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.brand b { font-weight: 500; }
.brand .brand__angela { font-style: italic; color: var(--terracotta); }
.brand small {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  align-self: center;
  margin-left: var(--sp-1);
}

.nav { display: none; }
.nav ul { display: flex; align-items: center; gap: var(--sp-6); }
.nav a {
  font-size: 0.95rem;
  color: var(--ink-soft);
  position: relative;
  padding-block: 4px;
  transition: color 0.2s var(--ease);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1.5px;
  background: var(--terracotta);
  transition: width 0.25s var(--ease);
}
@media (hover: hover) { .nav a:hover { color: var(--ink); } .nav a:hover::after { width: 100%; } }

.header-actions { display: flex; align-items: center; gap: var(--sp-3); }
.icon-btn {
  width: 48px; height: 48px;
  display: inline-grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--sand);
  color: var(--ink);
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease), background-color 0.2s var(--ease);
}
.icon-btn .ico { width: 20px; height: 20px; }
@media (hover: hover) { .icon-btn:hover { border-color: var(--terracotta); color: var(--terracotta); } }

.nav-toggle { display: inline-grid; }
.nav-toggle .ico { width: 24px; height: 24px; }

@media (min-width: 1000px) {
  .nav { display: block; }
  .nav-toggle { display: none; }
}

/* Sélecteur de langue (en-tête desktop + panneau mobile). */
.lang-switch { display: none; align-items: center; gap: 2px; }
@media (min-width: 1000px) { .header-actions .lang-switch { display: inline-flex; } }
.mobile-nav .lang-switch { display: inline-flex; margin-top: var(--sp-6); }
.lang-switch button {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.03em; color: var(--ink-soft);
  padding: 6px 8px; border-radius: 7px;
  transition: color 0.2s var(--ease), background-color 0.2s var(--ease);
}
.lang-switch button.is-active { color: var(--terracotta); background: color-mix(in srgb, var(--terracotta) 10%, transparent); }
@media (hover: hover) { .lang-switch button:hover { color: var(--ink); } }

/* Panneau mobile */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: var(--cream);
  padding: var(--sp-5);
  display: flex;
  flex-direction: column;
  transform: translateY(-100%);
  visibility: hidden;
  transition: transform 0.35s var(--ease), visibility 0.35s;
}
.mobile-nav.is-open { transform: translateY(0); visibility: visible; }
.mobile-nav__top { display: flex; justify-content: space-between; align-items: center; min-height: 76px; }
.mobile-nav ul { margin-top: var(--sp-6); display: flex; flex-direction: column; gap: var(--sp-2); }
.mobile-nav a {
  font-family: var(--serif);
  font-size: 1.75rem;
  padding-block: var(--sp-3);
  border-bottom: 1px solid var(--sand);
}
.mobile-nav__actions { margin-top: auto; display: grid; gap: var(--sp-3); padding-top: var(--sp-6); }

/* -----------------------------------------------------------------------------
   7. HERO
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: flex;
  align-items: flex-end;
  color: var(--cream);
  isolation: isolate;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(36, 30, 25, 0.28) 0%, rgba(36, 30, 25, 0) 38%),
    linear-gradient(0deg, rgba(36, 30, 25, 0.7) 0%, rgba(36, 30, 25, 0.08) 52%, rgba(36, 30, 25, 0.16) 100%);
}
.hero__inner { padding-block: clamp(3rem, 6vw, 6rem); max-width: 760px; }
.hero .eyebrow { color: var(--accent-light); }
.hero .eyebrow::before { background: var(--accent-light); }
.hero__title { color: #fff; margin-top: var(--sp-4); text-wrap: balance; }
.hero__sub { color: rgba(255, 255, 255, 0.9); font-size: var(--fs-lead); margin-top: var(--sp-5); max-width: 46ch; }
.hero__cta { margin-top: var(--sp-7); display: flex; flex-wrap: wrap; gap: var(--sp-3); align-items: center; }
/* Sur petit écran, les CTA s'empilent proprement en pleine largeur plutôt que de se bousculer. */
@media (max-width: 560px) {
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
}
.hero__phone {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  margin-top: var(--sp-5); color: rgba(255,255,255,0.92); font-weight: 500;
}
.hero__phone .ico { width: 18px; height: 18px; color: var(--accent-light); }
.hero__scroll {
  position: absolute; left: 50%; bottom: var(--sp-5); transform: translateX(-50%);
  color: rgba(255,255,255,0.7); font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
  display: inline-flex; flex-direction: column; align-items: center; gap: var(--sp-2);
}
.hero__scroll .ico { width: 18px; height: 18px; animation: nudge 1.8s var(--ease) infinite; }

/* -----------------------------------------------------------------------------
   8. BANDE DE RÉASSURANCE
   -------------------------------------------------------------------------- */
.reassure { background: var(--linen); border-block: 1px solid var(--hairline); }
.reassure__grid {
  display: grid;
  gap: var(--sp-4);
  padding-block: var(--sp-6);
  grid-template-columns: 1fr;
  text-align: center;
}
@media (min-width: 760px) { .reassure__grid { grid-template-columns: repeat(3, 1fr); } }
.reassure__item { display: flex; flex-direction: column; align-items: center; gap: var(--sp-3); }
.reassure__item .ico { width: 30px; height: 30px; color: var(--terracotta); stroke-width: 1.5; }
.reassure__item b { font-family: var(--serif); font-weight: 500; font-size: 1.15rem; }
.reassure__item span { font-size: var(--fs-caption); color: var(--ink-soft); }
.reassure--char { background: var(--char); border-color: rgba(176,141,87,0.4); }
.reassure--char .reassure__item span { color: rgba(247,242,233,0.7); }
.reassure--char .reassure__item b { color: var(--cream); }

/* -----------------------------------------------------------------------------
   9. IMAGES & FIGURES
   -------------------------------------------------------------------------- */
.figure { border-radius: var(--r-img); overflow: hidden; position: relative; background: var(--sand); }
.figure img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.figure--tall { aspect-ratio: 4 / 5; }
.figure--wide { aspect-ratio: 16 / 10; }
.figure--square { aspect-ratio: 1 / 1; }
@media (hover: hover) { .figure:hover img { transform: scale(1.03); } }
/* Emplacement photo « à remplir » (ex. la vraie photo de Spa, à fournir par le client). */
.figure--placeholder { background: var(--linen); border: 1.5px dashed var(--brass); }
.img-ph {
  width: 100%; height: 100%; min-height: 200px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: var(--sp-3); padding: var(--sp-5); text-align: center; color: var(--ink-soft);
}
.img-ph .ico { width: 34px; height: 34px; color: var(--brass); }
.img-ph span { font-size: 0.9rem; font-weight: 600; letter-spacing: 0.02em; }

.figure__tag {
  position: absolute; left: var(--sp-3); bottom: var(--sp-3);
  background: var(--cream-blur); backdrop-filter: blur(6px);
  color: var(--ink); font-size: 0.75rem; font-weight: 600;
  padding: 6px 12px; border-radius: 999px; letter-spacing: 0.02em;
}

/* Bloc full-bleed (savoir-faire) */
.fullbleed { position: relative; color: var(--cream); isolation: isolate; }
.fullbleed__media { position: absolute; inset: 0; z-index: -2; }
.fullbleed__media img { width: 100%; height: 100%; object-fit: cover; }
.fullbleed::after { content:""; position:absolute; inset:0; z-index:-1; background: rgba(36,30,25,0.66); }
.fullbleed .section { padding-block: var(--section-y); }

/* -----------------------------------------------------------------------------
   10. SAVOIR-FAIRE (3 piliers)
   -------------------------------------------------------------------------- */
.pillars { display: grid; gap: var(--sp-6); margin-top: var(--sp-8); }
@media (min-width: 760px) { .pillars { grid-template-columns: repeat(3, 1fr); } }
.pillar { border-top: 1px solid rgba(176,141,87,0.5); padding-top: var(--sp-4); }
.pillar__n { font-family: var(--serif); font-style: italic; color: var(--brass); font-size: 1.1rem; }
.pillar h3 { color: var(--cream); margin-top: var(--sp-2); }
.pillar p { color: rgba(247,242,233,0.82); margin-top: var(--sp-3); font-size: 0.975rem; }

/* -----------------------------------------------------------------------------
   11. CARTE — APERÇU & PAGE MENU
   -------------------------------------------------------------------------- */
.tabs { display: inline-flex; gap: var(--sp-1); padding: 5px; background: var(--linen); border: 1px solid var(--sand); border-radius: 999px; }
.tab {
  border-radius: 999px; padding: 0.6em 1.4em; font-weight: 600; font-size: 0.95rem;
  color: var(--ink); transition: background-color 0.2s var(--ease), color 0.2s var(--ease);
}
.tab[aria-selected="true"] { background: var(--terracotta); color: #fff; }
.tabpanel[hidden] { display: none; }

.dish-grid { display: grid; gap: var(--sp-5); grid-template-columns: 1fr; margin-top: var(--sp-7); }
@media (min-width: 680px) { .dish-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .dish-grid { grid-template-columns: repeat(3, 1fr); } }

.dish-card {
  background: var(--linen);
  border: 1px solid var(--sand);
  border-radius: var(--r-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
@media (hover: hover) { .dish-card:hover { box-shadow: var(--shadow-soft); transform: translateY(-3px); border-color: var(--hairline); } }
.dish-card .figure { border-radius: 0; aspect-ratio: 16 / 11; }
.dish-card__body { padding: var(--sp-5); display: flex; flex-direction: column; gap: var(--sp-2); flex: 1; }
.dish-card__head { display: flex; justify-content: space-between; align-items: baseline; gap: var(--sp-3); }
.dish-card__name { font-family: var(--serif); font-style: italic; font-size: 1.25rem; }
.dish-card__price { font-weight: 600; font-variant-numeric: tabular-nums; color: var(--terracotta); white-space: nowrap; }
.dish-card__desc { font-size: 0.95rem; color: var(--ink-soft); }
.dish-card__badge {
  align-self: flex-start; margin-top: auto; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--cream); background: var(--olive);
  padding: 4px 10px; border-radius: 999px;
}

/* Liste menu (page menu) */
.menu-section { scroll-margin-top: 100px; }
.menu-section + .menu-section { margin-top: var(--sp-9); }
.menu-list { margin-top: var(--sp-6); display: grid; gap: var(--sp-2); }
.menu-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--sp-3) var(--sp-5);
  align-items: baseline;
  padding-block: var(--sp-4);
  border-bottom: 1px solid var(--sand);
}
.menu-row__name { font-family: var(--serif); font-style: italic; font-size: 1.2rem; }
.menu-row__name .tag { font-family: var(--sans); font-style: normal; font-size: 0.65rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--olive); margin-left: var(--sp-2); vertical-align: middle; }
.menu-row__price { font-weight: 600; font-variant-numeric: tabular-nums; color: var(--terracotta); }
.menu-row__desc { grid-column: 1 / -1; color: var(--ink-soft); font-size: 0.95rem; margin-top: -2px; max-width: 60ch; }
.menu-row--signature { background: color-mix(in srgb, var(--terracotta) 6%, transparent); border-radius: var(--r-card); padding-inline: var(--sp-4); border-bottom-color: transparent; }

/* Ancres collantes page menu */
.menu-anchors {
  position: sticky; top: 76px; z-index: 40;
  background: var(--cream-blur); backdrop-filter: blur(10px);
  border-block: 1px solid var(--hairline);
  overflow-x: auto;
}
/* La barre d'ancres scrolle bord à bord : le padding va sur l'UL (contenu scrollé), pas
   sur le conteneur — sinon le dernier lien colle au bord droit une fois scrollé. */
.menu-anchors .container { padding-inline: 0; }
.menu-anchors ul { display: flex; gap: var(--sp-5); padding: var(--sp-4) clamp(1.25rem, 0.5rem + 3vw, 2.5rem); }
.menu-anchors a { white-space: nowrap; font-size: 0.9rem; font-weight: 600; color: var(--ink-soft); }
@media (hover: hover) { .menu-anchors a:hover { color: var(--terracotta); } }

/* -----------------------------------------------------------------------------
   12. À EMPORTER & LIVRAISON
   -------------------------------------------------------------------------- */
.zones { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-top: var(--sp-5); }
.zone {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  border: 1px solid var(--sand); border-radius: 999px; padding: 8px 14px;
  font-size: 0.9rem; background: var(--linen);
}
.zone .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--olive); }
.steps-list { margin-top: var(--sp-6); display: grid; gap: var(--sp-4); }
.step-item { display: flex; gap: var(--sp-4); align-items: flex-start; }
.step-item__n {
  flex: 0 0 auto; width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center; font-family: var(--serif); font-size: 1.1rem;
  background: var(--terracotta); color: #fff;
}
.step-item p { font-size: 0.975rem; color: var(--ink-soft); }
.step-item b { color: var(--ink); font-weight: 600; font-family: var(--sans); }

/* -----------------------------------------------------------------------------
   13. GALERIE
   -------------------------------------------------------------------------- */
.gallery {
  display: grid;
  gap: var(--sp-4);
  grid-template-columns: 1fr;
  margin-top: var(--sp-7);
}
@media (min-width: 480px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 760px) { .gallery { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 1fr; } }
.gallery .figure { aspect-ratio: 1; }
@media (min-width: 760px) {
  .gallery .g-tall { grid-row: span 2; aspect-ratio: auto; }
  .gallery .g-wide { grid-column: span 2; aspect-ratio: auto; }
}

/* -----------------------------------------------------------------------------
   14. RÉSERVATION (widget Convivos — aperçu intégré, thémé)
   -------------------------------------------------------------------------- */
.reserve__layout { display: grid; gap: clamp(var(--sp-6), 5vw, var(--sp-9)); align-items: center; }
@media (min-width: 920px) { .reserve__layout { grid-template-columns: 1fr 1fr; } }
.reserve__points { display: grid; gap: var(--sp-4); margin-top: var(--sp-6); }
.reserve__point { display: flex; gap: var(--sp-3); align-items: flex-start; }
.reserve__point .ico { width: 22px; height: 22px; color: var(--olive); flex: 0 0 auto; margin-top: 2px; }
.reserve__point b { font-family: var(--sans); }

/* La carte « widget » — réplique fidèle du widget Convivos, aux couleurs d'Angela */
.widget {
  background: var(--linen);
  border: 1px solid var(--sand);
  border-radius: 18px;
  padding: var(--sp-5);
  max-width: 440px;
  width: 100%;
  margin-inline: auto;
}
.widget__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: var(--sp-5); }
.widget__resto { font-family: var(--serif); font-size: 1.2rem; }
.widget__badge { font-size: 0.7rem; font-weight: 600; color: var(--olive); display: inline-flex; align-items: center; gap: 6px; }
.widget__badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--olive); }
.widget__label { font-size: 0.8rem; line-height: 1.4; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: var(--sp-3); }
.widget__label:not(:first-child) { margin-top: var(--sp-5); }
.widget__dates { display: flex; gap: var(--sp-2); overflow-x: auto; padding-bottom: 4px; }
.chip-date {
  flex: 0 0 auto; min-width: 60px; text-align: center; border: 1px solid var(--sand);
  border-radius: 12px; padding: 10px 8px; background: var(--cream); transition: all 0.2s var(--ease);
}
.chip-date small { display: block; font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--ink-soft); }
.chip-date b { font-family: var(--serif); font-size: 1.15rem; font-weight: 500; }
.chip-date[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: var(--cream); }
.chip-date[aria-pressed="true"] small { color: rgba(247,242,233,0.7); }
.widget__party { display: flex; align-items: center; justify-content: space-between; }
.stepper { display: flex; align-items: center; gap: var(--sp-4); }
.stepper button { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--sand); font-size: 1.3rem; background: var(--cream); transition: border-color 0.2s var(--ease); }
@media (hover: hover) { .stepper button:hover { border-color: var(--terracotta); } }
.stepper output { font-family: var(--serif); font-size: 1.6rem; min-width: 2ch; text-align: center; }
.widget__party span { font-size: 0.875rem; color: var(--ink-soft); }
.widget__slots { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-2); }
@media (max-width: 680px) { .widget__slots { grid-template-columns: repeat(3, 1fr); } }
.chip-slot {
  border: 1px solid var(--sand); border-radius: 10px; padding: 10px 4px; text-align: center;
  font-size: 0.9rem; font-variant-numeric: tabular-nums; background: var(--cream); transition: all 0.2s var(--ease);
}
.chip-slot[aria-pressed="true"] { background: var(--terracotta); border-color: var(--terracotta); color: #fff; }
@media (hover: hover) { .chip-slot:not([aria-pressed="true"]):hover { border-color: var(--terracotta); } }
.widget__submit { width: 100%; margin-top: var(--sp-5); }
.widget__note { text-align: center; font-size: 0.8rem; color: var(--ink-soft); margin-top: var(--sp-3); }
.widget__powered { text-align: center; font-size: 0.72rem; color: var(--ink-soft); margin-top: var(--sp-4); letter-spacing: 0.02em; }
.widget__powered b { color: var(--terracotta); font-weight: 600; }

/* Widget multi-étapes : créneau (1) → coordonnées (2) → confirmation (3). */
.widget__step[hidden] { display: none; }
.widget__back {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.85rem; font-weight: 600; color: var(--ink-soft); margin-bottom: var(--sp-3);
}
.widget__back .ico { width: 16px; height: 16px; }
@media (hover: hover) { .widget__back:hover { color: var(--terracotta); } }
.widget__form { display: grid; gap: var(--sp-3); }
.widget__form-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-3); }
@media (max-width: 400px) { .widget__form-row2 { grid-template-columns: 1fr; } }
.widget__inp {
  border: 1px solid var(--sand); border-radius: var(--r-field);
  padding: 11px 12px; font-family: inherit; font-size: 16px;
  background: var(--cream); color: var(--ink); width: 100%;
}
.widget__inp::placeholder { color: var(--ink-soft); }
textarea.widget__inp { min-height: 58px; resize: vertical; line-height: 1.4; }
.widget__confirm { text-align: center; padding: var(--sp-3) 0; }
.widget__seal {
  width: 60px; height: 60px; border-radius: 50%; background: var(--seal-bg);
  display: grid; place-items: center; margin: 0 auto var(--sp-4); color: var(--olive);
}
.widget__seal .ico { width: 30px; height: 30px; stroke-width: 2.4; }
.widget__confirm h3 { font-family: var(--serif); font-weight: 500; font-size: 1.35rem; }
.widget__confirm .muted { margin-top: var(--sp-2); }
.widget__confirm .ref {
  display: inline-block; margin-top: var(--sp-4);
  font-variant-numeric: tabular-nums; letter-spacing: 0.08em;
  background: var(--cream); border: 1px solid var(--sand); border-radius: 8px;
  padding: 6px 12px; font-size: 0.85rem;
}
.widget__confirm .widget__note { margin-top: var(--sp-3); }
.widget__confirm .btn { margin-top: var(--sp-5); }
@media (prefers-reduced-motion: no-preference) {
  .widget__seal { animation: cwSeal 360ms var(--ease-pop); }
  @keyframes cwSeal { 0% { opacity: 0; transform: scale(0.6); } 60% { transform: scale(1.08); } 100% { opacity: 1; transform: scale(1); } }
}

/* -----------------------------------------------------------------------------
   15. INFOS PRATIQUES
   -------------------------------------------------------------------------- */
.info__grid { display: grid; gap: var(--sp-7); }
@media (min-width: 920px) { .info__grid { grid-template-columns: 5fr 7fr; align-items: start; } }
.hours { display: grid; gap: 2px; margin-top: var(--sp-5); }
.hours__row { display: flex; justify-content: space-between; gap: var(--sp-4); padding: var(--sp-3) 0; border-bottom: 1px solid var(--sand); }
.hours__row.is-today { font-weight: 600; }
.hours__row.is-today .hours__day::after { content: " · aujourd'hui"; color: var(--terracotta); font-weight: 600; font-size: 0.8em; }
.hours__time { color: var(--ink-soft); font-variant-numeric: tabular-nums; text-align: right; }
.hours__closed { color: var(--terracotta); }
.status {
  display: inline-flex; align-items: center; gap: var(--sp-2); margin-top: var(--sp-5);
  font-weight: 600; font-size: 0.9rem;
}
.status .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--olive); box-shadow: 0 0 0 4px color-mix(in srgb, var(--olive) 20%, transparent); }
.contact-lines { margin-top: var(--sp-5); display: grid; gap: var(--sp-3); }
.contact-line { display: flex; gap: var(--sp-3); align-items: flex-start; }
.contact-line .ico { width: 20px; height: 20px; color: var(--terracotta); flex: 0 0 auto; margin-top: 2px; }
.map { border-radius: var(--r-img); overflow: hidden; border: 1px solid var(--sand); aspect-ratio: 16 / 12; max-height: 460px; background: var(--sand); }
.map iframe { width: 100%; height: 100%; border: 0; filter: saturate(0.85); }

/* -----------------------------------------------------------------------------
   16. PIED DE PAGE
   -------------------------------------------------------------------------- */
.site-footer { background: var(--char); color: rgba(247,242,233,0.78); padding-block: var(--sp-9) var(--sp-6); }
.site-footer a { color: rgba(247,242,233,0.9); transition: color 0.2s var(--ease); }
@media (hover: hover) { .site-footer a:hover { color: var(--cream); } }
.footer__grid { display: grid; gap: var(--sp-7); grid-template-columns: 1fr; }
@media (min-width: 760px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer .brand { color: var(--cream); }
.footer .brand small { color: rgba(247,242,233,0.6); }
.footer__tag { margin-top: var(--sp-4); max-width: 38ch; font-size: 0.95rem; }
.footer h4 { font-family: var(--sans); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--brass); margin-bottom: var(--sp-4); }
.footer ul { display: grid; gap: var(--sp-2); font-size: 0.95rem; }
.footer__lang { display: flex; gap: var(--sp-3); margin-top: var(--sp-3); }
.footer__lang button { font-size: 0.8rem; letter-spacing: 0.08em; color: rgba(247,242,233,0.78); }
.footer__lang button[aria-current="true"] { color: var(--cream); font-weight: 600; }
.footer__bottom {
  margin-top: var(--sp-8); padding-top: var(--sp-5); border-top: 1px solid rgba(176,141,87,0.3);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--sp-3);
  font-size: 0.82rem; color: rgba(247,242,233,0.55);
}

/* -----------------------------------------------------------------------------
   17. BARRE D'ACTION MOBILE
   -------------------------------------------------------------------------- */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--hairline);
  border-top: 1px solid var(--hairline);
  padding-bottom: env(safe-area-inset-bottom);
}
.mobile-bar a {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
  background: var(--cream); padding: 10px 4px; min-height: 56px;
  font-size: 0.72rem; font-weight: 600; color: var(--ink);
}
.mobile-bar a.is-primary { background: var(--terracotta); color: #fff; }
.mobile-bar .ico { width: 20px; height: 20px; }
@media (min-width: 1000px) { .mobile-bar { display: none; } }
@media (max-width: 999px) { body { padding-bottom: 56px; } }

/* -----------------------------------------------------------------------------
   17b. PASTILLE FLOTTANTE DE RÉSERVATION (style Zenchef) — option d'intégration
   alternative à montrer au client. Desktop uniquement (la barre d'action mobile
   joue ce rôle sur petit écran). Panneau ANCRÉ et NON-MODAL : le site reste visible.
   -------------------------------------------------------------------------- */
.cv-fab-wrap { display: none; }
@media (min-width: 1000px) { .cv-fab-wrap { display: block; } }

.cv-fab {
  position: fixed; right: 28px; bottom: 28px; z-index: 95;
  display: inline-flex; align-items: center; gap: 9px;
  min-height: 54px; padding: 0 24px;
  background: var(--terracotta); color: #fff; border-radius: 999px;
  font-family: var(--sans); font-weight: 600; font-size: 1rem;
  box-shadow: 0 12px 32px -8px rgba(190, 75, 42, 0.55);
  transition: background-color 0.2s var(--ease), transform 0.15s var(--ease);
}
.cv-fab .ico { width: 20px; height: 20px; }
.cv-fab__close-ico { display: none; }
.cv-fab.is-open { padding: 0; width: 54px; justify-content: center; }
.cv-fab.is-open .cv-fab__open-ico,
.cv-fab.is-open .cv-fab__label { display: none; }
.cv-fab.is-open .cv-fab__close-ico { display: inline; }
@media (hover: hover) { .cv-fab:hover { background: var(--terracotta-deep); transform: translateY(-2px); } }
.cv-fab:active { transform: translateY(0) scale(0.97); }

.cv-panel {
  position: fixed; right: 28px; bottom: 90px; z-index: 96;
  width: 366px; max-width: calc(100vw - 56px);
  max-height: calc(100dvh - 112px); overflow-y: auto; overscroll-behavior: contain;
  opacity: 0; transform: translateY(14px) scale(0.98); pointer-events: none;
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease);
  filter: drop-shadow(0 18px 44px rgba(31, 26, 22, 0.22));
}
/* Version COMPACTE du widget dans la pastille : tout le parcours tient sans rogner, même sur
   un écran de portable peu haut ; sinon le panneau défile proprement (overflow-y + overscroll). */
.cv-panel .widget { padding: var(--sp-4); border-radius: 16px; }
.cv-panel .widget__head { margin-bottom: var(--sp-4); }
.cv-panel .widget__label { margin-bottom: var(--sp-2); }
.cv-panel .widget__label:not(:first-of-type) { margin-top: var(--sp-3); }
.cv-panel .chip-slot { padding: 9px 4px; }
.cv-panel .widget__slots { grid-template-columns: repeat(3, 1fr); }
.cv-panel .widget__submit { margin-top: var(--sp-4); }
.cv-panel.is-open { opacity: 1; transform: none; pointer-events: auto; }
@media (prefers-reduced-motion: reduce) { .cv-panel { transition: opacity 0.15s linear; transform: none; } }

/* -----------------------------------------------------------------------------
   18. MOUVEMENT
   -------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(14px); }
.reveal.is-visible { opacity: 1; transform: none; transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
@keyframes nudge { 0%,100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .figure img, .btn, .dish-card { transition: none; }
  .hero__scroll .ico { animation: none; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; }
}

/* -----------------------------------------------------------------------------
   19. IMPRESSION
   -------------------------------------------------------------------------- */
@media print {
  .site-header, .mobile-bar, .hero__scroll, .map, .widget__submit { display: none; }
  body { background: #fff; color: #000; }
  .section { padding-block: 1rem; }
}
