/* ==========================================================================
   Ty-Bag — Refonte 2026 (Direction Cabane authentique v2)
   Tokens de design issus du handoff Claude Design.
   ========================================================================== */

/* ----- Tokens : couleurs, typo, ombres, radius, espacements ----- */
:root {
  /* Palette palA — "Cabane authentique" */
  --deep:    #1F3340;
  --ink:     #2A2520;
  --cream:   #F5EFE6;
  --paper:   #FBF7F0;
  --accent:  #C26B43;
  --accent2: #8B6F47;
  --gold:    #D4A24C;
  --muted:   rgba(31, 51, 64, 0.62);

  /* Polices (chargées depuis Google Fonts dans <head>) */
  --font-display: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Ombres */
  --shadow-sm:     0 2px 10px rgba(31, 51, 64, 0.10);
  --shadow-md:     0 4px 14px rgba(31, 51, 64, 0.10);
  --shadow-lg:     0 12px 32px rgba(31, 51, 64, 0.20);
  --shadow-xl:     0 24px 56px rgba(31, 51, 64, 0.40);
  --shadow-accent: 0 8px 24px rgba(194, 107, 67, 0.55);

  /* Border radius */
  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   18px;
  --radius-pill: 999px;

  /* Layout */
  --max-width: 1240px;
  --nav-height: 72px;

  /* Espacements sections */
  --section-py-mobile:  56px;
  --section-py-desktop: 96px;
  --section-px-mobile:  24px;
  --section-px-desktop: 56px;
}

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

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: transparent;
}

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

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

/* ----- Typographie ----- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--deep);
}

p { margin: 0 0 1em; }

.italic { font-style: italic; }

/* Suptitle (sur-titre uppercase espacé) */
.suptitle {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent2);
}

/* Citations / phrases italiques en display */
.display-italic {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  line-height: 1.25;
  color: var(--deep);
}

/* ----- Container ----- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--section-px-mobile);
}

@media (min-width: 900px) {
  .container { padding-inline: var(--section-px-desktop); }
  body { font-size: 16px; line-height: 1.65; }
}

/* ----- Sections ----- */
.section {
  padding-block: var(--section-py-mobile);
}
@media (min-width: 900px) {
  .section { padding-block: var(--section-py-desktop); }
}

.section--cream { background: var(--cream); }
.section--paper { background: var(--paper); }
.section--deep  { background: var(--deep); color: var(--cream); }
.section--deep h1, .section--deep h2, .section--deep h3 { color: var(--cream); }

/* ----- Boutons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-align: center;
  white-space: nowrap;
}

.btn:active { transform: translateY(1px); }

.btn--accent {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-accent);
}
.btn--accent:hover { background: #B05F3A; }

.btn--gold {
  background: var(--gold);
  color: var(--deep);
}
.btn--gold:hover { background: #C2932A; }

.btn--ghost {
  background: transparent;
  color: var(--deep);
  border: 1.5px solid rgba(31, 51, 64, 0.25);
}
.btn--ghost:hover {
  background: rgba(31, 51, 64, 0.05);
  border-color: var(--deep);
}

.btn--whatsapp {
  background: #25D366;
  color: #fff;
}
.btn--whatsapp:hover { background: #1FB958; }

.btn--lg { padding: 16px 28px; font-size: 16px; }

.btn[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
  box-shadow: none;
  pointer-events: none;
}

/* ----- Étoiles (avis) ----- */
.stars {
  display: inline-flex;
  gap: 1px;
  color: var(--gold);
  font-size: 14px;
  line-height: 1;
}

/* ----- Badge "préféré" (or) ----- */
.badge-fav {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  background: var(--gold);
  color: var(--deep);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
}

/* ----- Pulse "ouvert" (point vert) ----- */
.pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #4ADE80;
  border-radius: 50%;
  position: relative;
}
.pulse-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: #4ADE80;
  opacity: 0.5;
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0%   { transform: scale(0.8); opacity: 0.5; }
  100% { transform: scale(2); opacity: 0; }
}

/* ----- Utilitaires ----- */
.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;
}

.text-accent { color: var(--accent); }
.text-gold   { color: var(--gold); }
.text-muted  { color: var(--muted); }
.text-deep   { color: var(--deep); }

.no-scroll { overflow: hidden; }

/* ----- Focus accessibilité ----- */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* ----- Italiques décoratifs colorés ----- */
.em-accent,
em.em-accent {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}
.em-gold,
em.em-gold {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}
strong.deep {
  color: var(--deep);
  font-weight: 700;
}

/* ==========================================================================
   COMPOSANTS PARTAGÉS
   ========================================================================== */

/* ----- Navigation ----- */
.nav {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: transparent;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  color: #fff;
}

.nav.is-scrolled {
  background: rgba(245, 239, 230, 0.96);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(31, 51, 64, 0.08);
  color: var(--deep);
}

/* Logo */
.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.nav__logo-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.5px;
  color: inherit;
  line-height: 1;
}
.nav__logo-tag {
  display: inline-block;
  border-left: 1px solid currentColor;
  padding-left: 8px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.8;
  line-height: 1.15;
  white-space: pre;
}

/* Bouton "Réserver" pill dans la nav */
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(194, 107, 67, 0.55);
  transition: background 0.2s ease, transform 0.15s ease;
}
.nav__cta:hover { background: #B05F3A; }
.nav__cta:active { transform: translateY(1px); }

/* Burger menu mobile (icône simple SVG) */
.nav__burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: inherit;
}

/* Mobile : actions à droite (Réserver pill + burger) */
.nav__mobile-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Desktop : grid 3 colonnes */
.nav__center,
.nav__right {
  display: none;
}

@media (min-width: 900px) {
  .nav {
    padding: 18px 56px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 32px;
    align-items: center;
  }
  .nav__logo-name { font-size: 28px; }
  .nav__mobile-actions { display: none; }
  .nav__center {
    display: flex;
    justify-content: center;
    gap: 36px;
  }
  .nav__center a {
    position: relative;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: inherit;
    padding: 8px 0;
    transition: color 0.2s ease;
  }
  .nav__center a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    height: 2px;
    background: currentColor;
    opacity: 0;
    transform: scaleX(0.4);
    transition: opacity 0.2s, transform 0.2s;
  }
  .nav__center a:hover,
  .nav__center a.is-active { color: var(--accent); }
  .nav__center a.is-active::after { opacity: 1; transform: scaleX(1); }
  .nav .is-scrolled & .nav__center a:hover { color: var(--accent); }

  .nav__right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
  }
  .nav__tel {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: inherit;
  }
  .nav__cta {
    padding: 11px 22px;
    font-size: 14px;
    box-shadow: 0 6px 18px rgba(194, 107, 67, 0.55);
  }
}

/* ----- Footer ----- */
.footer {
  background: var(--deep);
  color: rgba(255, 255, 255, 0.78);
  padding: 32px 24px;
  text-align: center;
}

/* Mobile : seul .footer__mobile visible, sinon caché */
.footer__grid,
.footer__bar {
  display: none;
}
.footer__brand {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--cream);
  margin-bottom: 6px;
}
.footer__tag {
  font-size: 13px;
  margin-bottom: 4px;
}
.footer__loc {
  font-size: 13px;
  opacity: 0.6;
}
.footer__loc em {
  color: var(--gold);
  font-style: italic;
}

@media (min-width: 900px) {
  .footer {
    padding: 60px 56px 36px;
    text-align: left;
  }
  .footer__mobile { display: none; }
  .footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    max-width: var(--max-width);
    margin: 0 auto 40px;
  }
  .footer__bar { display: flex; }
  .footer__brand { font-size: 32px; font-weight: 500; letter-spacing: -0.5px; margin-bottom: 12px; }
  .footer__col-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 14px;
  }
  .footer__col p { font-size: 13px; line-height: 1.7; margin-bottom: 6px; }
  .footer__col a { color: inherit; }
  .footer__col a:hover { color: var(--gold); }
  .footer__about { font-size: 14px; line-height: 1.7; max-width: 320px; }
  .footer__bar {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 24px;
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    opacity: 0.65;
  }
  .footer__bar em { color: var(--gold); font-style: italic; opacity: 1; }
}

/* ----- Sticky CTA mobile (bouton Réserver fixed bas écran) ----- */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: linear-gradient(to top, rgba(245, 239, 230, 1) 60%, rgba(245, 239, 230, 0));
  z-index: 25;
  pointer-events: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.sticky-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.sticky-cta .btn { width: 100%; }

@media (min-width: 900px) {
  .sticky-cta { display: none; }
}

/* ==========================================================================
   MODALES (génériques)
   ========================================================================== */

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 28, 38, 0.7);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-backdrop.is-open {
  display: flex;
  animation: modalFadeIn 0.2s ease;
}
@keyframes modalFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.modal {
  background: var(--cream);
  color: var(--ink);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow: auto;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  font-family: var(--font-body);
  animation: modalSlide 0.25s ease;
}
@keyframes modalSlide {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

.modal--paper { background: var(--paper); max-width: 420px; }

.modal__header {
  background: var(--deep);
  color: #fff;
  padding: 24px 28px 20px;
  position: relative;
}
.modal--paper .modal__header { padding: 22px 22px 18px; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  display: grid;
  place-items: center;
}
.modal__close:hover { background: rgba(255, 255, 255, 0.22); }
.modal__suptitle {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.modal__title {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -0.5px;
  color: var(--cream);
  margin: 0 0 4px;
}
.modal--reservation .modal__title { font-size: 30px; }
.modal__subtitle {
  font-size: 13px;
  opacity: 0.85;
  line-height: 1.5;
}
.modal__progress {
  display: flex;
  gap: 6px;
  margin-top: 14px;
}
.modal__progress span {
  flex: 1;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.18);
  transition: background 0.2s;
}
.modal__progress span.is-done { background: var(--accent); }

.modal__body {
  padding: 24px 28px 28px;
}
.modal--paper .modal__body { padding: 22px 22px 24px; }

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

/* Champ de formulaire */
.field {
  margin-bottom: 14px;
}
.field__label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: rgba(15, 28, 38, 0.6);
}
.field__label .req { color: var(--accent); margin-left: 2px; }
.field__hint { font-size: 12px; color: var(--muted); font-weight: 500; text-transform: none; letter-spacing: 0; }

.field input[type="text"],
.field input[type="tel"],
.field input[type="email"],
.field input[type="date"],
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid rgba(31, 51, 64, 0.15);
  border-radius: var(--radius-sm);
  font-size: 15px;
  background: #fff;
  color: var(--deep);
  font-family: inherit;
  outline: none;
  transition: border-color 0.15s;
}
.field input:focus,
.field textarea:focus {
  border-color: var(--accent);
}
.field textarea {
  resize: vertical;
  min-height: 76px;
}

/* Grille de chips/buttons radio (modale Résa et Groupes) */
.chips-grid {
  display: grid;
  gap: 6px;
}
.chips-grid--3 { grid-template-columns: repeat(3, 1fr); }
.chips-grid--4 { grid-template-columns: repeat(4, 1fr); gap: 6px; }
.chips-grid--6 { grid-template-columns: repeat(6, 1fr); gap: 6px; }
.chips-grid--2 { grid-template-columns: repeat(2, 1fr); gap: 8px; }

.chip-btn {
  padding: 12px 8px;
  border: 1.5px solid rgba(31, 51, 64, 0.15);
  background: #fff;
  color: var(--deep);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  text-align: center;
  transition: all 0.15s;
}
.chip-btn--small { padding: 10px 4px; font-size: 13px; }
.chip-btn--left  { text-align: left; padding: 11px 12px; font-size: 13px; }
.chip-btn:hover { border-color: var(--accent); }
.chip-btn.is-active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 4px 12px rgba(194, 107, 67, 0.55);
}

/* Pills (chips arrondis pour groupes/personnes) */
.pills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pill-btn {
  padding: 9px 14px;
  border: 1.5px solid rgba(31, 51, 64, 0.15);
  background: #fff;
  color: var(--deep);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  transition: all 0.15s;
}
.pill-btn:hover { border-color: var(--accent); }
.pill-btn.is-active {
  background: var(--deep);
  color: #fff;
  border-color: var(--deep);
}

/* Boutons CTA modale */
.modal__cta {
  width: 100%;
  padding: 14px;
  border-radius: var(--radius-md);
  background: var(--accent);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  letter-spacing: 0.02em;
  height: 50px;
  margin-top: 8px;
  box-shadow: 0 8px 22px rgba(194, 107, 67, 0.5);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.modal__cta:hover { background: #B05F3A; }
.modal__cta:active { transform: translateY(1px); }
.modal__cta[disabled] {
  background: rgba(31, 51, 64, 0.2);
  color: rgba(255, 255, 255, 0.7);
  box-shadow: none;
  cursor: not-allowed;
}

.modal__cta--ghost {
  background: transparent;
  color: var(--deep);
  border: 1.5px solid rgba(31, 51, 64, 0.3);
  box-shadow: none;
  flex: 0 0 auto;
  padding: 0 22px;
}
.modal__cta--ghost:hover { background: rgba(31, 51, 64, 0.05); border-color: var(--deep); }

.modal__cta--whatsapp {
  background: #25D366;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.modal__cta--whatsapp:hover { background: #1FB958; }

.modal__cta--sms {
  background: transparent;
  color: var(--deep);
  border: 1.5px solid rgba(31, 51, 64, 0.3);
  box-shadow: none;
  font-size: 14px;
  height: auto;
  padding: 14px;
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.modal__cta--sms:hover { background: rgba(31, 51, 64, 0.04); }

/* Ligne 2 boutons (Retour + Confirmer) */
.modal__actions {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

/* Footnote modale */
.modal__footnote {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin-top: 14px;
  line-height: 1.5;
}
.modal__footnote--small { font-size: 11px; margin-top: 12px; }

/* État succès (étape 2 / fin) */
.modal__success {
  text-align: center;
  padding: 20px 0;
}
.modal__success-icon {
  width: 64px;
  height: 64px;
  border-radius: 32px;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
}
.modal__success-title {
  font-size: 18px;
  color: var(--deep);
  font-weight: 600;
  margin-bottom: 8px;
}
.modal__success-text {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.55;
}
.modal__success-text strong { color: var(--deep); }

/* ==========================================================================
   PAGE HOME — Hero vidéo
   ========================================================================== */

.hero {
  position: relative;
  height: 720px;
  background: var(--deep);
  margin-top: -56px;          /* chevauche la nav transparente */
  overflow: hidden;
  color: #fff;
}
@media (min-width: 900px) {
  .hero { margin-top: -76px; }
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Overlay 1 : gradient bas → haut */
.hero__overlay-grad {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(31, 51, 64, 0.55) 0%,
    rgba(31, 51, 64, 0.15) 35%,
    rgba(31, 51, 64, 0.92) 100%
  );
}
@media (min-width: 900px) {
  .hero__overlay-grad {
    background: linear-gradient(
      180deg,
      rgba(31, 51, 64, 0.35) 0%,
      rgba(31, 51, 64, 0.10) 35%,
      rgba(31, 51, 64, 0.85) 100%
    );
  }
}

/* Overlay 2 : vignette radiale */
.hero__overlay-radial {
  position: absolute; inset: 0; z-index: 2;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(0, 0, 0, 0.35) 100%);
}

/* Contenu hero */
.hero__inner {
  position: relative;
  z-index: 5;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 24px 40px;
  max-width: var(--max-width);
  margin: 0 auto;
}
@media (min-width: 900px) {
  .hero__inner { padding: 0 56px 64px; }
}

/* Badge "Ouvert" */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero__badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7FE0B0;
  box-shadow: 0 0 8px rgba(127, 224, 176, 0.7);
}
@media (min-width: 900px) {
  .hero__badge { padding: 7px 14px; letter-spacing: 0.12em; margin-bottom: 32px; }
}

/* Titre H1 */
.hero__h1 {
  font-family: var(--font-display);
  font-size: 54px;
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.026em;
  color: #fff;
  margin: 0 0 18px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
  max-width: 920px;
}
.hero__h1 em {
  display: block;
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}
@media (min-width: 900px) {
  .hero__h1 {
    font-size: 110px;
    line-height: 0.92;
    letter-spacing: -0.027em;
    margin-bottom: 24px;
  }
}

/* Sous-titre */
.hero__lead {
  font-size: 15px;
  line-height: 1.5;
  max-width: 320px;
  opacity: 0.95;
  margin: 0 0 8px;
}
.hero__lead--desktop { display: none; }
@media (min-width: 900px) {
  .hero__lead { font-size: 19px; line-height: 1.5; font-weight: 300; max-width: 540px; }
  .hero__lead--mobile  { display: none; }
  .hero__lead--desktop { display: block; }
}

/* Visibilité responsive : élément visible uniquement desktop */
[data-desktop-only] { display: none; }
@media (min-width: 900px) {
  [data-desktop-only] { display: inline-flex; }
}

/* Helpers de visibilité */
.mobile-only { display: block; }
.desktop-only { display: none; }
@media (min-width: 900px) {
  .mobile-only { display: none; }
  .desktop-only { display: block; }
}

/* ==========================================================================
   PAGE HOME — Chips d'ancres (mobile sticky sous nav)
   ========================================================================== */
.anchors-bar {
  position: sticky;
  top: 56px;
  z-index: 20;
  background: rgba(245, 239, 230, 0.96);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  border-bottom: 1px solid rgba(31, 51, 64, 0.06);
}
.anchors-bar::-webkit-scrollbar { display: none; }
.anchors-bar__inner {
  display: flex;
  gap: 8px;
  padding: 0 20px;
  width: max-content;
}
.anchor-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: #fff;
  border: 1px solid rgba(31, 51, 64, 0.12);
  color: var(--deep);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.15s;
}
.anchor-chip:hover { border-color: var(--accent); }
.anchor-chip svg { flex-shrink: 0; }
@media (min-width: 900px) {
  .anchors-bar { display: none; }
}

/* ==========================================================================
   SECTION HEAD (suptitle + H2 + sous-titre)
   ========================================================================== */
.section-head {
  text-align: center;
  margin-bottom: 32px;
}
.section-head__suptitle {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-head__title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.022em;
  color: var(--deep);
  margin: 0 0 12px;
}
.section-head__title em { font-style: italic; color: var(--accent); font-weight: 400; }
.section-head__lead {
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .section-head { margin-bottom: 56px; }
  .section-head__title { font-size: 56px; letter-spacing: -0.025em; }
  .section-head__lead { font-size: 16px; line-height: 1.6; max-width: 520px; }
}

/* Variante centrée à gauche desktop (intro famille gauche) */
.section-head--left { text-align: left; }

/* ==========================================================================
   SECTION INTRO FAMILLE
   ========================================================================== */
.intro-famille {
  padding: 48px 28px 36px;
  text-align: center;
  background: var(--cream);
}
.intro-famille__suptitle {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.intro-famille__quote {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.018em;
  color: var(--deep);
  margin: 0 auto;
  max-width: 540px;
}
.intro-famille__quote em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}
.intro-famille__sign {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}
.intro-famille__sign::before,
.intro-famille__sign::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--accent2);
}
@media (min-width: 900px) {
  .intro-famille {
    padding: 96px 56px 80px;
    text-align: left;
  }
  .intro-famille__inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    max-width: var(--max-width);
    margin: 0 auto;
    align-items: center;
  }
  .intro-famille__suptitle { margin-bottom: 16px; }
  .intro-famille__quote {
    font-size: 56px;
    letter-spacing: -0.022em;
    max-width: none;
    margin: 0 0 24px;
  }
  .intro-famille__paragraph {
    font-size: 17px;
    line-height: 1.65;
    color: var(--muted);
    max-width: 520px;
    margin: 0 0 14px;
  }
  .intro-famille__sign { display: none; }
  .intro-famille__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 12px 22px;
    border-radius: var(--radius-pill);
    border: 1.5px solid rgba(31, 51, 64, 0.25);
    color: var(--deep);
    font-size: 14px;
    font-weight: 600;
    transition: all 0.15s;
  }
  .intro-famille__cta:hover { background: var(--deep); color: var(--cream); border-color: var(--deep); }
  .intro-famille__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(31, 51, 64, 0.12);
    border: 1px solid rgba(31, 51, 64, 0.12);
    border-radius: var(--radius-lg);
    overflow: hidden;
  }
  .intro-famille__stat {
    background: #fff;
    padding: 32px 24px;
    text-align: center;
  }
  .intro-famille__stat-num {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 500;
    color: var(--accent);
    line-height: 1;
    letter-spacing: -0.018em;
    margin-bottom: 8px;
  }
  .intro-famille__stat-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
  }
}

/* ==========================================================================
   SECTION PLATEAUX SIGNATURE
   ========================================================================== */
.plateaux {
  padding: 32px 20px 56px;
  background: var(--cream);
}
@media (min-width: 900px) {
  .plateaux { padding: 80px 56px; background: var(--paper); }
  .plateaux__grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 28px;
    max-width: var(--max-width);
    margin: 0 auto;
  }
}

/* Card featured (Han pas solo) — layout en flux, plus d'overlay absolu */
.plateau-card-featured {
  background: var(--deep);
  color: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(31, 51, 64, 0.4);
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
}
.plateau-card-featured__image {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.plateau-card-featured__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Badge "préféré" : positionné dans l'image */
.plateau-card-featured__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 5px 12px;
  background: var(--gold);
  color: var(--deep);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}
/* Body : tout le contenu textuel en flux normal */
.plateau-card-featured__body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.plateau-card-featured__suptitle {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}
.plateau-card-featured__title-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.plateau-card-featured__title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.012em;
  color: var(--cream);
  margin: 0;
}
.plateau-card-featured__price {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  color: var(--gold);
  white-space: nowrap;
}
.plateau-card-featured__items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 16px;
}
.plateau-card-featured__items li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  opacity: 0.92;
}
.plateau-card-featured__items li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

@media (min-width: 900px) {
  .plateau-card-featured { margin-bottom: 0; }
  .plateau-card-featured__image { height: 280px; }
  .plateau-card-featured__title { font-size: 38px; }
  .plateau-card-featured__price { font-size: 36px; }
  .plateau-card-featured__body { padding: 32px 36px; gap: 18px; }
  .plateau-card-featured__items li { font-size: 14px; }
}

/* Variante claire (Han Solo sur la carte) */
.plateau-card-featured--light {
  background: #fff;
  color: var(--deep);
  box-shadow: var(--shadow-md);
}
.plateau-card-featured--light .plateau-card-featured__suptitle { color: var(--accent); }
.plateau-card-featured--light .plateau-card-featured__title { color: var(--deep); }
.plateau-card-featured--light .plateau-card-featured__price { color: var(--accent); }
.plateau-card-featured--light .plateau-card-featured__items li { color: var(--muted); opacity: 1; }
.plateau-card-featured--light .plateau-card-featured__items li::before { background: var(--accent); }

/* Card compacte (Han Solo) */
.plateau-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 18px 20px;
  margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
}
.plateau-card__suptitle {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.plateau-card__title-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 10px;
}
.plateau-card__title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--deep);
  margin: 0;
}
.plateau-card__price {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--accent);
  white-space: nowrap;
}
.plateau-card__desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}
@media (min-width: 900px) {
  .plateau-card { padding: 0; box-shadow: var(--shadow-md); overflow: hidden; display: flex; flex-direction: column; margin-bottom: 0; }
  .plateau-card__image { height: 220px; overflow: hidden; }
  .plateau-card__image img { width: 100%; height: 100%; object-fit: cover; }
  .plateau-card__inner { padding: 28px 32px; flex: 1; display: flex; flex-direction: column; }
  .plateau-card__title { font-size: 32px; }
  .plateau-card__price { font-size: 30px; }
  .plateau-card__items {
    list-style: none; margin: 0 0 18px; padding: 0;
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 16px;
  }
  .plateau-card__items li {
    display: flex; align-items: center; gap: 8px; font-size: 14px;
    color: var(--muted);
  }
  .plateau-card__items li::before {
    content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); flex-shrink: 0;
  }
  .plateau-card__note {
    margin-top: auto;
    font-style: italic;
    font-size: 14px;
    color: var(--muted);
  }
}

.plateaux__see-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 24px auto 0;
  padding: 12px 22px;
  border: 1.5px solid rgba(31, 51, 64, 0.25);
  border-radius: var(--radius-pill);
  color: var(--deep);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}
.plateaux__see-all:hover { border-color: var(--deep); background: rgba(31, 51, 64, 0.05); }
.plateaux__see-all-wrap { text-align: center; margin-top: 24px; }
@media (min-width: 900px) {
  .plateaux__see-all-wrap { margin-top: 40px; }
}

/* ==========================================================================
   SECTION TRIPTYQUE OFFRE
   ========================================================================== */
.triptyque {
  padding: 0 20px 48px;
  background: var(--cream);
}
.triptyque__grid {
  display: grid;
  gap: 12px;
}
.tri-card {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 0;
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-align: left;
  transition: transform 0.15s, box-shadow 0.2s;
}
.tri-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.tri-card__image {
  width: 110px;
  height: 100%;
  min-height: 110px;
  overflow: hidden;
}
.tri-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tri-card__body {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tri-card__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--deep);
  margin: 0 0 4px;
}
.tri-card__price {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 6px;
}
.tri-card__desc {
  font-size: 12px;
  line-height: 1.45;
  color: var(--muted);
}
@media (min-width: 900px) {
  .triptyque { padding: 80px 56px; }
  .triptyque__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: var(--max-width);
    margin: 0 auto;
  }
  .tri-card {
    grid-template-columns: 1fr;
    grid-template-rows: 220px auto;
  }
  .tri-card__image {
    width: 100%;
    height: 220px;
  }
  .tri-card__body { padding: 26px 28px; }
  .tri-card__title { font-size: 28px; margin-bottom: 8px; }
  .tri-card__price { font-size: 12px; margin-bottom: 12px; }
  .tri-card__desc { font-size: 14px; line-height: 1.6; }
}

/* ==========================================================================
   SECTION WEEKEND CALL (mobile uniquement)
   ========================================================================== */
.weekend-call {
  margin: 0 20px 40px;
  padding: 32px 24px;
  background-color: var(--deep);  /* fallback */
  background-image:
    linear-gradient(180deg, rgba(31, 51, 64, 0.45) 0%, rgba(31, 51, 64, 0.85) 100%),
    url('/images/refonte/terrasse-soir.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.weekend-call::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.18;
  filter: blur(28px);
  pointer-events: none;
}
.weekend-call__suptitle {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  position: relative;
}
.weekend-call__title {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 18px;
  position: relative;
}
.weekend-call__title em {
  font-style: italic;
  color: var(--gold);
  display: block;
}
.weekend-call__list {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  position: relative;
}
.weekend-call__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  opacity: 0.92;
}
.weekend-call__list li:last-child { border-bottom: 0; }
.weekend-call__list svg {
  flex-shrink: 0;
  color: var(--gold);
}
.weekend-call__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px;
  background: var(--gold);
  color: var(--deep);
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 700;
  position: relative;
}
.weekend-call__cta:hover { background: #C2932A; }
@media (min-width: 900px) {
  .weekend-call { display: none; }
}

/* ==========================================================================
   SECTION GROUPES & ÉVÉNEMENTS
   ========================================================================== */
.groupes-section {
  padding: 0 20px 48px;
  background: var(--cream);
}
.groupes-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(31, 51, 64, 0.08);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.groupes-card__image {
  position: relative;
  height: 160px;
  overflow: hidden;
}
.groupes-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.groupes-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(31, 51, 64, 0.94) 100%);
}
.groupes-card__overlay {
  position: absolute;
  bottom: 16px;
  left: 18px;
  right: 18px;
  z-index: 2;
}
.groupes-card__suptitle {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.groupes-card__title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.1;
  margin: 0;
}
.groupes-card__body {
  padding: 20px 22px;
}
.groupes-card__lead {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0 0 18px;
}
.groupes-card__chips {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 22px;
}
.groupes-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--deep);
}
.groupes-chip svg {
  flex-shrink: 0;
  color: var(--accent);
}
.groupes-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  background: var(--deep);
  color: #fff;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 700;
  transition: background 0.2s;
}
.groupes-card__cta:hover { background: #14252F; }
.groupes-card__footnote {
  text-align: center;
  font-size: 11px;
  color: var(--muted);
  margin-top: 12px;
}
@media (min-width: 900px) {
  .groupes-section { padding: 80px 56px 88px; background: var(--paper); }
  .groupes-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: var(--max-width);
    margin: 0 auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
  }
  .groupes-card__image {
    height: 100%;
    min-height: 480px;
  }
  .groupes-card__image::after {
    background: linear-gradient(135deg, transparent 50%, rgba(31, 51, 64, 0.4));
  }
  .groupes-card__badge-mariage {
    position: absolute;
    bottom: 18px;
    left: 18px;
    z-index: 2;
    padding: 6px 14px;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--radius-pill);
  }
  .groupes-card__body { padding: 56px 56px 56px 48px; display: flex; flex-direction: column; justify-content: center; }
  .groupes-card__suptitle-d {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
  }
  .groupes-card__title-d {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 400;
    color: var(--deep);
    line-height: 1.05;
    letter-spacing: -0.022em;
    margin: 0 0 20px;
  }
  .groupes-card__lead { font-size: 16px; line-height: 1.65; }
  .groupes-card__chips {
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
    margin-bottom: 28px;
  }
  .groupes-chip { font-size: 14px; }
  .groupes-card__cta {
    align-self: flex-start;
    width: auto;
    padding: 16px 32px;
    box-shadow: 0 10px 24px rgba(31, 51, 64, 0.4);
  }
  .groupes-card__footnote { text-align: left; margin-top: 14px; font-size: 12px; }
}

/* Sur mobile, on cache le badge desktop */
.groupes-card__badge-mariage { display: none; }
@media (min-width: 900px) {
  .groupes-card__badge-mariage { display: inline-block; }
}

/* ==========================================================================
   GALERIE PHOTOS
   ========================================================================== */
.galerie {
  padding: 32px 20px 56px;
  background: var(--cream);
}
.galerie__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 120px;
  gap: 8px;
}
.galerie__cell {
  border-radius: var(--radius-md);
  overflow: hidden;
}
.galerie__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.galerie__cell--tall { grid-row: span 2; }
.galerie__cell--wide { grid-column: span 2; height: 180px; }
@media (min-width: 900px) {
  .galerie { padding: 80px 56px; }
  .galerie__grid {
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 240px 240px;
    gap: 12px;
    max-width: var(--max-width);
    margin: 0 auto;
  }
  .galerie__cell--tall { grid-row: span 2; }
  .galerie__cell--wide { grid-column: auto; height: auto; }
}

/* ==========================================================================
   BLOC AVIS 4,5★
   ========================================================================== */
.avis {
  padding: 56px 24px;
  background: var(--deep);
  color: #fff;
}
.avis__head {
  text-align: center;
  margin-bottom: 32px;
}
.avis__rating {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.avis__stars {
  font-size: 18px;
  color: var(--gold);
  letter-spacing: 4px;
  margin-bottom: 12px;
}
.avis__count {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.7;
}
.avis__list {
  display: grid;
  gap: 14px;
}
.avis-card {
  background: rgba(255, 255, 255, 0.06);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 22px 22px 22px 26px;
}
.avis-card--accent { border-left-color: var(--accent); }
.avis-card__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--cream);
  margin: 0 0 12px;
}
.avis-card__author {
  font-size: 12px;
  opacity: 0.7;
  font-weight: 500;
}
@media (min-width: 900px) {
  .avis { padding: 80px 56px; }
  .avis__inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    max-width: var(--max-width);
    margin: 0 auto;
    align-items: center;
  }
  .avis__head { text-align: left; margin-bottom: 0; }
  .avis__rating { font-size: 96px; letter-spacing: -0.025em; }
  .avis__stars { font-size: 22px; }
  .avis__count { font-size: 13px; }
  .avis__list { grid-template-columns: 1fr 1fr; gap: 20px; }
  .avis-card__quote { font-size: 18px; line-height: 1.45; }
}

/* ==========================================================================
   INFOS PRATIQUES (mobile)
   ========================================================================== */
.infos {
  padding: 48px 24px 24px;
  background: var(--paper);
}
.infos__head {
  text-align: center;
  margin-bottom: 24px;
}
.infos__title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  color: var(--deep);
  margin: 0 0 8px;
}
.infos__subtitle {
  font-size: 14px;
  color: var(--muted);
}
.infos__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.infos__row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(31, 51, 64, 0.08);
}
.infos__row:last-child { border-bottom: 0; }
.infos__icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  background: #fff;
  border-radius: 50%;
  color: var(--accent);
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.infos__suptitle {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2px;
}
.infos__line1 {
  font-size: 15px;
  font-weight: 600;
  color: var(--deep);
}
.infos__line2 {
  font-size: 13px;
  color: var(--muted);
}
@media (min-width: 900px) {
  .infos { display: none; }
}

/* ==========================================================================
   CTA FINAL
   ========================================================================== */
.cta-final {
  padding: 48px 24px 64px;
  background: var(--paper);
  text-align: center;
}
.cta-final__title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  color: var(--deep);
  line-height: 1.1;
  letter-spacing: -0.018em;
  margin: 0 0 14px;
}
.cta-final__title em { font-style: italic; color: var(--accent); }
.cta-final__lead {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 360px;
  margin: 0 auto 24px;
}
.cta-final .btn {
  padding: 16px 32px;
  font-size: 16px;
}
@media (min-width: 900px) {
  .cta-final { padding: 80px 56px 96px; }
  .cta-final__title { font-size: 64px; letter-spacing: -0.022em; margin-bottom: 18px; }
  .cta-final__lead { font-size: 17px; max-width: 480px; margin-bottom: 32px; }
  .cta-final .btn { padding: 20px 44px; font-size: 17px; }
}

/* Variante CTA final sur fond bleu (utilisée sur la carte) */
.cta-final--deep {
  background: var(--deep);
  color: #fff;
}
.cta-final--deep .cta-final__title { color: #fff; }
.cta-final--deep .cta-final__title em { color: var(--gold); }
.cta-final--deep .cta-final__lead { color: rgba(255, 255, 255, 0.85); }
.cta-final--deep .btn--accent {
  background: var(--gold);
  color: var(--deep);
  box-shadow: 0 10px 24px rgba(212, 162, 76, 0.4);
}
.cta-final--deep .btn--accent:hover { background: #C2932A; }

/* ==========================================================================
   PAGE CARTE
   ========================================================================== */

/* Hero court de la carte */
.carte-hero {
  position: relative;
  height: 280px;
  margin-top: -56px;
  background: var(--deep);
  overflow: hidden;
}
.carte-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.carte-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(31, 51, 64, 0.85) 0%, rgba(31, 51, 64, 0.3) 100%);
  z-index: 1;
}
.carte-hero__inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 24px 36px;
  color: #fff;
  max-width: var(--max-width);
  margin: 0 auto;
}
.carte-hero__suptitle {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.carte-hero__title {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.024em;
  color: #fff;
  margin: 0;
}
.carte-hero__title em { font-style: italic; color: var(--gold); font-weight: 300; }
.carte-hero__lead {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.5;
  margin-top: 16px;
  display: none;
}
@media (min-width: 900px) {
  .carte-hero {
    height: 460px;
    margin-top: -76px;
  }
  .carte-hero__inner { padding: 180px 56px 56px; }
  .carte-hero__suptitle { font-size: 12px; letter-spacing: 0.25em; }
  .carte-hero__title { font-size: 96px; letter-spacing: -0.025em; max-width: 800px; }
  .carte-hero__lead { display: block; font-size: 16px; max-width: 520px; }
}

/* Tabs sticky de la carte */
.carte-tabs {
  position: sticky;
  top: 56px;
  z-index: 20;
  background: rgba(245, 239, 230, 0.97);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(31, 51, 64, 0.08);
  padding: 10px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.carte-tabs::-webkit-scrollbar { display: none; }
.carte-tabs__inner {
  display: flex;
  gap: 6px;
  padding: 0 20px;
  width: max-content;
}
.carte-tab {
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: #fff;
  border: 1px solid rgba(31, 51, 64, 0.15);
  color: var(--deep);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.15s;
}
.carte-tab:hover { border-color: var(--accent); }
.carte-tab.is-active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
@media (min-width: 900px) {
  .carte-tabs {
    top: 76px;
    padding: 16px 0;
  }
  .carte-tabs__inner {
    justify-content: center;
    gap: 10px;
    padding: 0 56px;
    width: auto;
  }
  .carte-tab { padding: 10px 20px; font-size: 13px; }
}

/* Banner début de saison (mobile uniquement) */
.banner-saison {
  padding: 28px 24px;
  text-align: center;
  background: var(--cream);
  border-bottom: 1px solid rgba(31, 51, 64, 0.06);
}
.banner-saison p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  line-height: 1.4;
  color: var(--deep);
  margin: 0;
}
@media (min-width: 900px) {
  .banner-saison { display: none; }
}

/* Section générique de la carte */
.carte-section {
  padding: 44px 20px;
}
.carte-section--cream { background: var(--cream); }
.carte-section--paper { background: var(--paper); }

.carte-section__head {
  margin-bottom: 24px;
}
.carte-section__head--center { text-align: center; }
.carte-section__image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}
.carte-section__suptitle {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.carte-section__title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.018em;
  color: var(--deep);
  margin: 0;
}
.carte-section__title em { font-style: italic; color: var(--accent); }

@media (min-width: 900px) {
  .carte-section { padding: 80px 56px; }
  .carte-section__inner {
    max-width: var(--max-width);
    margin: 0 auto;
  }
  .carte-section__image { height: 220px; }
  .carte-section__title { font-size: 56px; letter-spacing: -0.025em; }
  /* Layout 2 colonnes (utilisé pour Plateaux mobile/desktop) */
  .carte-section--grid2 .carte-section__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

/* Composant PriceLine : nom .... prix */
.price-line {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 13px 0;
  border-bottom: 1px dotted rgba(31, 51, 64, 0.2);
}
.price-line:last-child { border-bottom: 0; }
.price-line__name {
  font-size: 15px;
  font-weight: 600;
  color: var(--deep);
}
.price-line__dots {
  flex: 1;
  border-bottom: 1px dotted rgba(31, 51, 64, 0.25);
  margin-bottom: 4px;
  min-width: 16px;
}
.price-line__price {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--accent);
  white-space: nowrap;
}
.price-line__desc {
  font-size: 12px;
  font-style: italic;
  color: var(--muted);
  margin: 4px 0 0;
  line-height: 1.45;
}
.price-line-row { padding: 13px 0; border-bottom: 1px dotted rgba(31, 51, 64, 0.2); }
.price-line-row:last-child { border-bottom: 0; }
.price-line-row .price-line { padding: 0; border: 0; }
@media (min-width: 900px) {
  .price-line__name { font-size: 16px; }
  .price-line__price { font-size: 17px; }
}

/* PriceTriple : nom + plusieurs prix (6pc / 12pc) */
.price-triple {
  padding: 13px 0;
  border-bottom: 1px dotted rgba(31, 51, 64, 0.2);
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
}
.price-triple:last-child { border-bottom: 0; }
.price-triple__name {
  font-size: 15px;
  font-weight: 600;
  color: var(--deep);
  flex: 1;
  min-width: 200px;
}
.price-triple__prices {
  display: flex;
  gap: 16px;
}
.price-triple__price {
  text-align: center;
  min-width: 70px;
}
.price-triple__price-label {
  display: block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}
.price-triple__price-value {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--accent);
  white-space: nowrap;
}
@media (min-width: 900px) {
  .price-triple__price-value { font-size: 17px; }
}

/* PriceLineAlt : nom puis prix en dessous (pour la cave) */
.price-line-alt {
  padding: 11px 0;
  border-bottom: 1px dotted rgba(31, 51, 64, 0.15);
}
.price-line-alt:last-child { border-bottom: 0; }
.price-line-alt__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--deep);
  margin-bottom: 2px;
}
.price-line-alt__price {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
}

/* Cave : structure colonnes */
.cave {
  padding: 44px 20px;
  background: var(--cream);
}
.cave__inner { display: grid; gap: 28px; }
.cave-col {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
}
.cave-col__title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(31, 51, 64, 0.15);
  margin-bottom: 14px;
}
.cave__footnote {
  font-style: italic;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  margin-top: 24px;
}
@media (min-width: 900px) {
  .cave { padding: 80px 56px; }
  .cave__layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    max-width: var(--max-width);
    margin: 0 auto;
  }
  .cave__layout-left {
    position: sticky;
    top: 140px;
    align-self: start;
  }
  .cave__inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .cave-col { padding: 32px 36px; }
  .cave__footnote { text-align: left; }
}

/* Apéritifs & Boissons : layout 3 colonnes desktop */
.aperos {
  padding: 44px 20px;
  background: var(--paper);
}
.aperos__group {
  margin-bottom: 28px;
}
.aperos__group-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(31, 51, 64, 0.15);
  margin-bottom: 12px;
}
@media (min-width: 900px) {
  .aperos { padding: 80px 56px; }
  .aperos__inner {
    max-width: var(--max-width);
    margin: 0 auto;
  }
  .aperos__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 56px;
  }
}

/* Plateau Cards dans la carte (utilisent les mêmes classes que sur home) */
.carte-plateaux-grid {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}
@media (min-width: 900px) {
  .carte-plateaux-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: var(--max-width);
    margin: 56px auto 0;
  }
}

/* ==========================================================================
   PAGE HISTOIRE
   ========================================================================== */

/* Hero éditorial */
.histoire-hero {
  position: relative;
  height: 480px;
  margin-top: -56px;
  overflow: hidden;
  background: var(--deep);
}
.histoire-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.histoire-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(31, 51, 64, 0.85) 0%, rgba(31, 51, 64, 0.5) 100%);
  z-index: 1;
}
.histoire-hero__inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 24px 56px;
  color: #fff;
  max-width: var(--max-width);
  margin: 0 auto;
}
.histoire-hero__suptitle {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.histoire-hero__title {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.028em;
  color: #fff;
  margin: 0 0 14px;
}
.histoire-hero__title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}
.histoire-hero__tag {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.9;
}
@media (min-width: 900px) {
  .histoire-hero {
    height: 640px;
    margin-top: -76px;
  }
  .histoire-hero__inner { padding: 0 56px 80px; }
  .histoire-hero__suptitle { font-size: 12px; letter-spacing: 0.25em; }
  .histoire-hero__title {
    font-size: 130px;
    letter-spacing: -0.027em;
    max-width: 900px;
    line-height: 0.9;
  }
  .histoire-hero__tag { font-size: 13px; letter-spacing: 0.18em; }
}

/* Citation intro */
.histoire-quote {
  padding: 56px 28px 40px;
  background: var(--paper);
  text-align: center;
}
.histoire-quote__mark {
  font-family: var(--font-display);
  font-size: 60px;
  color: var(--accent);
  line-height: 0.3;
  margin-bottom: 18px;
  display: block;
}
.histoire-quote__text {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.018em;
  color: var(--deep);
  margin: 0 auto;
  max-width: 540px;
}
.histoire-quote__text em {
  font-style: italic;
  color: var(--accent);
}
@media (min-width: 900px) {
  .histoire-quote { padding: 100px 56px 80px; }
  .histoire-quote__mark { font-size: 80px; margin-bottom: 24px; }
  .histoire-quote__text {
    font-size: 44px;
    letter-spacing: -0.022em;
    max-width: 800px;
  }
}

/* Sections "Story" en zigzag */
.story {
  padding: 56px 24px;
  background: var(--cream);
}
.story--paper { background: var(--paper); }

.story__inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.story__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.story__image img { width: 100%; height: 100%; object-fit: cover; }

.story__meta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.story__suptitle {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.story__title {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.018em;
  color: var(--deep);
  margin: 0 0 18px;
}
.story__paragraph {
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
  margin: 0 0 12px;
}
.story__paragraph strong {
  color: var(--deep);
  font-weight: 700;
}
.story__paragraph em { font-style: italic; }

@media (min-width: 900px) {
  .story { padding: 100px 56px; }
  .story__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
  }
  .story__image { aspect-ratio: 4 / 3.2; border-radius: var(--radius-lg); }
  .story__meta { font-size: 11px; letter-spacing: 0.25em; }
  .story__suptitle { font-size: 12px; letter-spacing: 0.22em; }
  .story__title {
    font-size: 56px;
    letter-spacing: -0.022em;
    margin-bottom: 24px;
  }
  .story__paragraph {
    font-size: 17px;
    line-height: 1.75;
    max-width: 520px;
    margin-bottom: 14px;
  }
  /* Variation reverse : image à droite, texte à gauche */
  .story--reverse .story__image { order: 2; }
  .story--reverse .story__text  { order: 1; }
}

/* 4e génération — polaroid */
.polaroid-section {
  padding: 64px 24px;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.polaroid {
  background: #fff;
  padding: 14px 14px 36px;
  box-shadow: 0 12px 32px rgba(31, 51, 64, 0.25);
  transform: rotate(-2deg);
  max-width: 280px;
  margin-bottom: 36px;
}
.polaroid__photo {
  width: 100%;
  aspect-ratio: 3 / 3.1;
  overflow: hidden;
}
.polaroid__photo img { width: 100%; height: 100%; object-fit: cover; }
.polaroid__caption {
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  color: var(--deep);
  margin-top: 14px;
  text-align: center;
}
.polaroid-section__suptitle {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.polaroid-section__title {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.018em;
  color: var(--deep);
  margin: 0 0 22px;
  max-width: 420px;
}
.polaroid-section__title em { font-style: italic; color: var(--accent); }
.polaroid-section__text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 360px;
  margin: 0 0 14px;
}
.polaroid-section__text strong { color: var(--deep); font-weight: 700; }

@media (min-width: 900px) {
  .polaroid-section {
    padding: 100px 56px;
    text-align: left;
  }
  .polaroid-section__inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    max-width: var(--max-width);
    margin: 0 auto;
    align-items: center;
  }
  .polaroid {
    padding: 20px 20px 56px;
    max-width: 420px;
    margin: 0;
  }
  .polaroid__caption { font-size: 32px; margin-top: 18px; }
  .polaroid-section__suptitle { font-size: 12px; letter-spacing: 0.25em; }
  .polaroid-section__title {
    font-size: 64px;
    letter-spacing: -0.022em;
    margin-bottom: 28px;
    max-width: none;
  }
  .polaroid-section__text {
    font-size: 17px;
    line-height: 1.7;
    max-width: 540px;
    margin-bottom: 14px;
  }
}

/* Yec'hed mat */
.yechedmat {
  background: linear-gradient(180deg, var(--deep) 0%, #14252F 100%);
  color: #fff;
  padding: 80px 24px 72px;
  text-align: center;
}
.yechedmat__title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 76px;
  line-height: 1;
  letter-spacing: -0.014em;
  color: var(--gold);
  margin: 0 0 14px;
}
.yechedmat__subtitle {
  font-size: 14px;
  font-style: italic;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 28px;
}
.yechedmat__sign {
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  color: var(--cream);
}
@media (min-width: 900px) {
  .yechedmat { padding: 120px 56px 100px; }
  .yechedmat__title { font-size: 140px; letter-spacing: -0.025em; }
  .yechedmat__subtitle { font-size: 15px; letter-spacing: 0.2em; margin-bottom: 40px; }
  .yechedmat__sign { font-size: 28px; }
}

/* CTA bas Histoire (variation cream) */
.cta-final--cream {
  background: var(--cream);
}

/* ==========================================================================
   MENU MOBILE (drawer plein écran, déclenché par .nav__burger)
   ========================================================================== */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  padding: 24px;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  visibility: hidden;
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}
.mobile-menu.is-open {
  transform: translateY(0);
  visibility: visible;
}

.mobile-menu__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
.mobile-menu__brand {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--deep);
  letter-spacing: -0.5px;
}
.mobile-menu__close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(31, 51, 64, 0.08);
  color: var(--deep);
  display: grid;
  place-items: center;
  transition: background 0.15s;
}
.mobile-menu__close:hover { background: rgba(31, 51, 64, 0.15); }

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
}
.mobile-menu__nav a {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  color: var(--deep);
  padding: 14px 0;
  border-bottom: 1px solid rgba(31, 51, 64, 0.08);
  transition: color 0.15s;
}
.mobile-menu__nav a:hover,
.mobile-menu__nav a.is-active {
  color: var(--accent);
}
.mobile-menu__nav a:last-child { border-bottom: 0; }

.mobile-menu__contact {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(31, 51, 64, 0.1);
}
.mobile-menu__tel {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 600;
  color: var(--deep);
  margin-bottom: 16px;
}
.mobile-menu__tel svg { color: var(--accent); }
.mobile-menu__cta {
  width: 100%;
  padding: 16px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-body);
  text-align: center;
  box-shadow: var(--shadow-accent);
}
.mobile-menu__cta:hover { background: #B05F3A; }

/* Cache le menu sur desktop */
@media (min-width: 900px) {
  .mobile-menu { display: none !important; }
}

/* Tag lieu */
.hero__loc {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 28px;
}
@media (min-width: 900px) {
  .hero__loc { font-size: 13px; letter-spacing: 0.15em; margin-bottom: 36px; }
}

/* CTA bottom mobile (full-width) */
.hero__cta {
  width: 100%;
  padding: 18px 24px;
  border-radius: 14px;
  background: var(--accent);
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow:
    0 12px 32px rgba(194, 107, 67, 0.66),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition: background 0.2s, transform 0.15s;
}
.hero__cta:hover { background: #B05F3A; }
.hero__cta:active { transform: translateY(1px); }
.hero__cta svg { width: 18px; height: 18px; }

/* Trust strip mobile (étoiles + avis + sms) */
.hero__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 14px;
  font-size: 12px;
  opacity: 0.95;
}
.hero__trust-divider {
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.4);
}
.hero__trust-stars {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero__trust-stars .stars {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 1px;
}

/* Desktop : 2 boutons côte-à-côte + trust à droite */
@media (min-width: 900px) {
  .hero__bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
  }
  .hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }
  .hero__cta { width: auto; padding: 18px 32px; }
  .hero__cta--ghost {
    background: rgba(255, 255, 255, 0.1);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    box-shadow: none;
  }
  .hero__cta--ghost:hover { background: rgba(255, 255, 255, 0.18); }
  .hero__trust {
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    font-size: 13px;
    margin: 0;
  }
}
