/* ═══════════════════════════════════════════════════
   CHEZ LAURETTE — Malaucène, au pied du Ventoux
   "Un dîner au sommet du monde"
   ═══════════════════════════════════════════════════ */

/* --- VARIABLES — Palette prestige : noir profond + gris + rose poudré --- */
:root {
  --ardoise: #1E1E24;            /* anthracite profond (éclairci) */
  --ardoise-light: #2A2A31;      /* gris carbone */
  --gris: #3A3A42;               /* gris anthracite */
  --gris-light: #4A4A52;         /* gris satiné */
  --creme: #F4EDE8;              /* blanc rosé pour le texte */
  --creme-soft: #E8DDD5;
  --or: #D4A5A5;                 /* rose poudré (accent principal) */
  --or-light: #E8C5C5;            /* rose champagne (hover) */
  --rose-deep: #B07A82;           /* rose mauve profond */
  --vin: #6B2D3E;
  --vin-light: #8A3D52;
  --text: #F4EDE8;
  --text-muted: rgba(244, 237, 232, 0.62);
  --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-display-alt: 'Italiana', 'Cormorant Garamond', serif;
  --font-body: 'Jost', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'Jost', sans-serif;
  --grain-opacity: 0.04;
  --shadow-prestige: 0 24px 60px rgba(0, 0, 0, 0.55);
  --shadow-rose: 0 8px 30px rgba(212, 165, 165, 0.15);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--ardoise);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* --- GRAIN OVERLAY (premium texture) --- */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: var(--grain-opacity);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: 0.015em;
  line-height: 1.15;
}

h1 {
  font-family: var(--font-display-alt);
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  font-weight: 400;
  letter-spacing: 0.04em;
}
h2 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-style: italic;
  font-weight: 300;
}
h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.7rem);
  font-weight: 400;
}

/* Letter-spacing fin pour l'aspect prestige */
.section-label {
  font-feature-settings: "ss01", "liga";
}

p {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  max-width: 60ch;
}

a { color: var(--or); text-decoration: none; transition: color 0.3s ease; }
a:hover { color: var(--or-light); }

/* --- UTILITY --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  position: relative;
}

.section-label::before,
.section-label::after {
  content: '';
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--or), transparent);
  display: inline-block;
  opacity: 0.7;
}

/* Séparateur prestige (volute) */
.separator-wrap {
  text-align: center;
  padding: 2.5rem 0;
}

.separator-prestige {
  width: 220px;
  height: 28px;
  color: var(--or);
  opacity: 0.7;
}

/* Bibliothèque d'icônes uniformes */
.ico {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}
.ico-sm { font-size: 0.95rem; }
.ico-lg { font-size: 2.6rem; }
.ico-accent { color: var(--or); }
svg.ico { fill: none; stroke: currentColor; }

/* --- SCROLL REVEAL ANIMATIONS --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger children */
.stagger-children .reveal:nth-child(2) { transition-delay: 0.15s; }
.stagger-children .reveal:nth-child(3) { transition-delay: 0.3s; }
.stagger-children .reveal:nth-child(4) { transition-delay: 0.45s; }
.stagger-children .reveal:nth-child(5) { transition-delay: 0.6s; }

/* --- NAVBAR --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(28, 31, 38, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.6rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--creme);
  white-space: nowrap;
}

.nav-brand span {
  color: var(--or);
}

.nav-links {
  display: none;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--or);
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--creme);
}

.nav-links a:hover::after,
.nav-links a:focus::after {
  width: 100%;
}

.nav-social {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.nav-social a {
  color: var(--text-muted);
  transition: color 0.3s ease, transform 0.3s ease;
  display: flex;
  align-items: center;
}

.nav-social a:hover {
  color: var(--or);
  transform: scale(1.1);
}

.nav-social svg {
  width: 20px;
  height: 20px;
}

/* CTA dans le header */
.nav-cta {
  background: var(--or);
  color: var(--ardoise);
  border: 1px solid var(--or);
  padding: 0.55rem 1.25rem;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--or-light);
  border-color: var(--or-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-rose);
}

@media (max-width: 640px) {
  .nav-cta {
    padding: 0.45rem 0.9rem;
    font-size: 0.72rem;
    letter-spacing: 0.05em;
  }
  .nav-social {
    display: none;
  }
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--creme);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(28, 31, 38, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--creme);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease, color 0.3s ease;
}

.mobile-menu.open a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.open a:nth-child(2) { transition-delay: 0.05s; }
.mobile-menu.open a:nth-child(3) { transition-delay: 0.1s; }
.mobile-menu.open a:nth-child(4) { transition-delay: 0.15s; }
.mobile-menu.open a:nth-child(5) { transition-delay: 0.2s; }
.mobile-menu.open a:nth-child(6) { transition-delay: 0.25s; }
.mobile-menu.open a:nth-child(7) { transition-delay: 0.3s; }
.mobile-menu.open a:nth-child(8) { transition-delay: 0.35s; }

.mobile-menu a:hover { color: var(--or); }

.mobile-social {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.mobile-social a {
  color: var(--text-muted);
}

.mobile-social svg {
  width: 24px;
  height: 24px;
}

/* --- HERO SECTION --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 80%, rgba(212, 165, 165, 0.10) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 20%, rgba(176, 122, 130, 0.08) 0%, transparent 55%),
    linear-gradient(180deg, var(--ardoise) 0%, var(--gris) 100%);
  z-index: 0;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  opacity: 0.55;
  filter: brightness(0.7) saturate(0.92);
}

/* Voile sombre derrière le texte du hero pour la lisibilité */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(14, 14, 16, 0.55) 0%, rgba(14, 14, 16, 0.35) 40%, transparent 75%),
    linear-gradient(180deg, rgba(14, 14, 16, 0.4) 0%, transparent 30%, transparent 70%, rgba(14, 14, 16, 0.5) 100%);
  pointer-events: none;
}

/* Volute prestige sous le titre */
.hero-flourish {
  margin: 0.6rem auto 1.4rem;
  width: 220px;
  color: var(--or);
  opacity: 0;
  animation: fadeUp 1s ease 0.6s forwards;
}
.hero-flourish svg { width: 100%; height: 24px; }

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-wind-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.5;
  pointer-events: none;
}

.hero-ventoux {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 2;
  opacity: 0.6;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 0 1.5rem;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.3s forwards;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}

.hero h1 {
  color: var(--creme);
  margin-bottom: 0.5rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.5s forwards;
}

.hero h1 em {
  font-style: italic;
  color: var(--or);
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.6vw, 1.55rem);
  color: var(--creme);
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.08em;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.8s forwards;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.75);
}

.hero-cta {
  opacity: 0;
  animation: fadeUp 1s ease 0.9s forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  opacity: 0;
  animation: fadeUp 1s ease 1.2s forwards;
}

.scroll-indicator span {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--or), transparent);
  margin: 0 auto;
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.6; }
  50% { transform: scaleY(0.5); opacity: 0.3; }
}

/* --- BUTTONS --- */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--or) 0%, var(--rose-deep) 100%);
  color: var(--ardoise);
  font-weight: 500;
  border: 1px solid rgba(212, 165, 165, 0.4);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--or-light) 0%, var(--or) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 0;
}

.btn-primary:hover::before {
  transform: scaleX(1);
}

.btn-primary span {
  position: relative;
  z-index: 1;
}

.btn-primary:hover {
  box-shadow: var(--shadow-rose), 0 12px 40px rgba(0, 0, 0, 0.4);
  transform: translateY(-2px);
}

.btn-primary:focus-visible {
  outline: 2px solid var(--or-light);
  outline-offset: 4px;
}

.btn-outline {
  background: transparent;
  color: var(--or);
  border: 1px solid var(--or);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-outline:hover {
  background: rgba(212, 165, 165, 0.08);
  color: var(--or-light);
  border-color: var(--or-light);
  box-shadow: var(--shadow-rose);
  transform: translateY(-2px);
}

.btn-outline:focus-visible {
  outline: 2px solid var(--or);
  outline-offset: 4px;
}

/* --- SECTION: L'ESPRIT --- */
.esprit {
  padding: 6rem 0;
  position: relative;
}

.esprit-grid {
  display: grid;
  gap: 3rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.esprit h2 {
  color: var(--creme);
}

.esprit-text {
  color: var(--text-muted);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.9;
  max-width: 55ch;
  margin: 0 auto;
}

.esprit-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.pillar {
  text-align: center;
  padding: 2rem 1.2rem;
  position: relative;
  border-radius: 4px;
  transition: background 0.4s ease, transform 0.4s ease;
}

.pillar::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  border-radius: 4px;
  background: linear-gradient(180deg, transparent, rgba(212, 165, 165, 0.05) 50%, transparent) border-box;
  pointer-events: none;
  transition: border-color 0.4s ease;
}

.pillar:hover {
  transform: translateY(-4px);
}

.pillar:hover::before {
  border-color: rgba(212, 165, 165, 0.18);
}

.pillar-icon {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  display: inline-block;
  color: var(--or);
}

.pillar-icon svg.ico { stroke-width: 1.2; }

.pillar h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--creme);
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.6rem;
}

.pillar p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin: 0 auto;
  line-height: 1.65;
}

/* Esprit text — italics raffiné */
.esprit-text em {
  font-style: italic;
  color: var(--or);
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* --- SECTION: ASCENSION GOURMANDE (WOW) --- */
.ascension {
  position: relative;
  padding: 4rem 0;
  min-height: 100vh;
}

.ascension-intro {
  text-align: center;
  margin-bottom: 4rem;
}

.ascension h2 {
  color: var(--creme);
}

.altitude-track {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

/* Altitude line */
.altitude-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--or), rgba(196,148,74,0.1));
  transform: translateX(-50%);
  display: none;
}

.altitude-marker {
  position: sticky;
  top: 50vh;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.altitude-marker span {
  font-size: 0.65rem;
  color: var(--or);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Palier (step) */
.palier {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 4rem;
  align-items: center;
}

.palier-visual {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: var(--ardoise-light);
  border: 1px solid rgba(212, 165, 165, 0.22);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(212, 165, 165, 0.05),
    0 0 50px rgba(212, 165, 165, 0.08);
  transition: box-shadow 0.5s ease, transform 0.5s ease;
}
.palier-visual:hover {
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(212, 165, 165, 0.12),
    0 0 70px rgba(212, 165, 165, 0.16);
  transform: translateY(-3px);
}
/* Cadre intérieur subtle (sur l'image elle-même) */
.palier-visual::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(212, 165, 165, 0.18);
  border-radius: 4px;
  pointer-events: none;
  z-index: 4;
  transition: border-color 0.4s ease;
}
.palier-visual:hover::before {
  border-color: rgba(212, 165, 165, 0.35);
}

.palier-visual:has(.palier-img--detoured) {
  background:
    radial-gradient(ellipse at center 62%, rgba(212, 165, 165, 0.22) 0%, rgba(176, 122, 130, 0.1) 35%, transparent 75%),
    linear-gradient(180deg, var(--ardoise-light) 0%, var(--ardoise) 100%);
  border: 1px solid rgba(212, 165, 165, 0.28);
}

.palier-visual .palier-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease, filter 0.4s ease;
}

.palier-img--detoured {
  padding: 1.2rem 0.8rem;
  filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.45));
}
.palier-visual:hover .palier-img--detoured {
  filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.45)) brightness(0.85) saturate(1.05);
}

.palier-visual:hover .palier-img,
.palier-visual.detail-visible .palier-img {
  transform: scale(1.04);
  filter: brightness(0.55) saturate(0.9);
}

.palier-detail {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem 1.1rem;
  background: linear-gradient(to bottom, rgba(20,20,20,0) 30%, rgba(20,20,20,0.55) 100%);
  color: var(--creme);
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.4s ease;
  transform: translateY(8px);
  pointer-events: none;
  z-index: 2;
}

.palier-visual:hover .palier-detail,
.palier-visual:focus-within .palier-detail,
.palier-visual.detail-visible .palier-detail {
  opacity: 1;
  transform: translateY(0);
}

.palier-detail-label {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--or);
  border: 1px solid rgba(196, 148, 74, 0.45);
  padding: 0.22rem 0.55rem;
  margin-bottom: 0.55rem;
  background: rgba(20, 20, 20, 0.5);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.palier-detail p {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--creme);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
}
.palier-detail p strong {
  font-weight: 500;
  font-style: normal;
  color: var(--or-light);
  letter-spacing: 0.01em;
}
.palier-detail-price {
  display: inline-block;
  margin-left: 0.4em;
  font-family: var(--font-display-alt);
  font-style: normal;
  font-size: 0.92em;
  color: var(--or);
  letter-spacing: 0.06em;
  white-space: nowrap;
}

/* Loupe au survol — appliquée à tous les conteneurs .zoomable */
.zoomable {
  cursor: zoom-in;
}
.zoomable::after {
  content: "";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at center, rgba(20, 20, 20, 0.35) 0%, rgba(20, 20, 20, 0) 60%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='%23F4EDE8' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='27' cy='27' r='15'/%3E%3Cpath d='M38 38 L52 52'/%3E%3Cpath d='M22 27 L32 27 M27 22 L27 32' stroke-width='2'/%3E%3C/svg%3E") no-repeat center;
  background-size: cover, 56px 56px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 3;
}
.zoomable:hover::after,
.zoomable:focus-visible::after {
  opacity: 1;
}
@media (hover: none) {
  /* Sur tactile, indice loupe permanent en haut à droite */
  .zoomable::after {
    inset: auto auto auto auto;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background:
      rgba(20, 20, 20, 0.55)
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='%23F4EDE8' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='27' cy='27' r='15'/%3E%3Cpath d='M38 38 L52 52'/%3E%3C/svg%3E") no-repeat center;
    background-size: 22px 22px;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    opacity: 0.9;
  }
}

/* ─── LIGHTBOX ─── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(12, 10, 12, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  cursor: zoom-out;
}
.lightbox[hidden] { display: none; }
.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-figure {
  margin: 0;
  max-width: min(94vw, 1600px);
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  cursor: default;
  transform: scale(0.96);
  transition: transform 0.35s ease;
}
.lightbox.open .lightbox-figure {
  transform: scale(1);
}
.lightbox-img {
  display: block;
  max-width: 100%;
  max-height: 86vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(212, 165, 165, 0.2);
}
.lightbox-caption {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--creme);
  text-align: center;
  max-width: 70ch;
  line-height: 1.5;
  opacity: 0.85;
}
.lightbox-caption:empty { display: none; }

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(244, 237, 232, 0.25);
  background: rgba(20, 20, 20, 0.5);
  color: var(--creme);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.lightbox-close:hover {
  background: rgba(212, 165, 165, 0.25);
  border-color: var(--or);
  transform: scale(1.05);
}
.lightbox-close svg { width: 20px; height: 20px; }

.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 1px solid rgba(244, 237, 232, 0.2);
  background: rgba(20, 20, 20, 0.45);
  color: var(--creme);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.2s ease, border-color 0.2s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0.9;
}
.lightbox-nav:hover {
  background: rgba(212, 165, 165, 0.25);
  border-color: var(--or);
  opacity: 1;
}
.lightbox-prev { left: 18px; }
.lightbox-next { right: 18px; }
.lightbox-nav svg { width: 22px; height: 22px; }

@media (max-width: 540px) {
  .lightbox-nav { width: 40px; height: 40px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-close { top: 10px; right: 10px; }
}

.palier-visual .palier-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--ardoise-light), var(--ardoise));
  border: 1px solid rgba(196, 148, 74, 0.15);
}

.palier-placeholder svg {
  width: 60px;
  height: 60px;
  opacity: 0.3;
}

.palier-altitude {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--or);
  border: 1px solid rgba(196,148,74,0.3);
  padding: 0.3rem 0.8rem;
  margin-bottom: 0.8rem;
}

.palier-info h3 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  color: var(--creme);
  margin-bottom: 0.8rem;
}

.palier-info p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --- SECTION: DEUX AMBIANCES --- */
.ambiances {
  padding: 4rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.ambiances-inner {
  text-align: center;
  max-width: 1280px;
  margin: 0 auto;
}

.ambiance-toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin: 1.8rem 0 2rem;
}

.ambiance-label {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.4s ease;
  cursor: pointer;
}

.ambiance-label.active {
  color: var(--or);
}

.toggle-switch {
  position: relative;
  width: 56px;
  height: 28px;
  background: var(--ardoise-light);
  border: 1px solid rgba(196,148,74,0.3);
  border-radius: 14px;
  cursor: pointer;
  transition: background 0.4s ease;
  flex-shrink: 0;
}

.toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: var(--or);
  border-radius: 50%;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.toggle-switch.switched::after {
  transform: translateX(28px);
}

.toggle-switch:focus-visible {
  outline: 2px solid var(--or);
  outline-offset: 4px;
}

.ambiance-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: clamp(380px, 62vh, 560px);
  display: flex;
  align-items: flex-end;
  background: var(--ardoise-light);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(212, 165, 165, 0.18),
    0 0 100px rgba(212, 165, 165, 0.06);
}

.ambiance-bg {
  position: absolute;
  inset: 0;
  transition: opacity 0.8s ease;
}

.ambiance-bg-interieur {
  background: linear-gradient(135deg, #2A2520 0%, #1C1F26 50%, #2A2520 100%);
}

.ambiance-bg-terrasse {
  background: linear-gradient(135deg, #1E2A35 0%, #1C1F26 50%, #2A2520 100%);
  opacity: 0;
}

.ambiance-card.terrasse-active .ambiance-bg-interieur {
  opacity: 0;
}

.ambiance-card.terrasse-active .ambiance-bg-terrasse {
  opacity: 1;
}

/* Decorative elements for ambiances */
.ambiance-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
}

.ambiance-decor-interieur {
  background:
    radial-gradient(circle at 30% 40%, rgba(196, 148, 74, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 70% 60%, rgba(196, 148, 74, 0.08) 0%, transparent 35%);
}

.ambiance-decor-terrasse {
  opacity: 0;
  background:
    radial-gradient(circle at 50% 30%, rgba(196, 148, 74, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(107, 45, 62, 0.08) 0%, transparent 40%);
}

.ambiance-card.terrasse-active .ambiance-decor-interieur { opacity: 0; }
.ambiance-card.terrasse-active .ambiance-decor-terrasse { opacity: 1; }

.ambiance-text {
  position: relative;
  z-index: 2;
  padding: 3rem 2.4rem 2rem;
  text-align: left;
  width: 100%;
  background: linear-gradient(to top, rgba(20, 20, 26, 0.92) 0%, rgba(20, 20, 26, 0.65) 50%, transparent 100%);
}

.ambiance-title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
  color: var(--creme);
  margin: 0 0 0.7rem;
  letter-spacing: 0.01em;
  line-height: 1.05;
  transition: opacity 0.4s ease;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}

.ambiance-desc {
  color: var(--creme);
  opacity: 0.88;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  line-height: 1.65;
  max-width: 56ch;
  transition: opacity 0.4s ease;
  margin: 0 0 1.6rem;
}

.ambiance-details {
  display: flex;
  gap: 2.4rem;
  margin-top: 1.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(212, 165, 165, 0.25);
  flex-wrap: wrap;
}

.ambiance-detail {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--or);
}

.ambiance-detail svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

@media (max-width: 540px) {
  .ambiance-text { padding: 2.5rem 1.6rem 2rem; }
  .ambiance-details { gap: 1.4rem; }
}

/* --- SECTION: LA DÉMARCHE (6 piliers) --- */
.demarche {
  padding: 6rem 0;
  position: relative;
}

.demarche-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}

.demarche h2 {
  color: var(--creme);
}

.demarche-intro {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-top: 1rem;
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
}

.demarche-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.6rem;
  max-width: 1100px;
  margin: 0 auto;
}

.demarche-card {
  position: relative;
  padding: 2.6rem 1.8rem 2rem;
  text-align: center;
  background: linear-gradient(180deg, var(--ardoise-light), rgba(26, 26, 29, 0.4));
  border: 1px solid rgba(212, 165, 165, 0.1);
  border-radius: 6px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              border-color 0.4s ease,
              box-shadow 0.4s ease;
  overflow: hidden;
}

.demarche-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--or), transparent);
  opacity: 0;
  transition: width 0.5s ease, opacity 0.4s ease;
}

.demarche-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 165, 165, 0.28);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.demarche-card:hover::before {
  width: 70%;
  opacity: 0.9;
}

.demarche-num {
  position: absolute;
  top: 0.9rem;
  right: 1.1rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--or);
  opacity: 0.35;
  letter-spacing: 0.06em;
  transition: opacity 0.4s ease;
}

.demarche-card:hover .demarche-num {
  opacity: 0.7;
}

.demarche-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  margin-bottom: 1rem;
  color: var(--or);
}

.demarche-icon svg.ico { stroke-width: 1.1; width: 1em; height: 1em; }

.demarche-card h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--creme);
  font-size: 1.3rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.7rem;
}

.demarche-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* --- SECTION: LE MARCHÉ (INATTENDUE) --- */
.marche {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.marche-inner {
  text-align: center;
}

.marche h2 {
  color: var(--creme);
}

.marche-subtitle {
  color: var(--text-muted);
  font-style: italic;
  margin-top: 0.5rem;
  font-size: 1.05rem;
}

.etal {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 3rem 0 2rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.etal::-webkit-scrollbar { display: none; }

.ingredient-card {
  flex: 0 0 240px;
  scroll-snap-align: center;
  background: linear-gradient(180deg, var(--ardoise-light), var(--gris));
  border: 1px solid rgba(212, 165, 165, 0.12);
  border-radius: 4px;
  padding: 2.4rem 1.6rem;
  text-align: center;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              border-color 0.4s ease,
              box-shadow 0.4s ease;
  position: relative;
}

.ingredient-card::after {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background: var(--or);
  opacity: 0;
  transition: opacity 0.4s ease, width 0.5s ease;
}

.ingredient-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 165, 165, 0.32);
  box-shadow: var(--shadow-prestige), var(--shadow-rose);
}

.ingredient-card:hover::after {
  opacity: 0.85;
  width: 80px;
}

.ingredient-icon {
  font-size: 2.6rem;
  display: inline-block;
  margin-bottom: 1.2rem;
  color: var(--or);
}
.ingredient-icon svg.ico { stroke-width: 1.1; }

.ingredient-card h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--creme);
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.6rem;
}

.ingredient-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-style: normal;
  line-height: 1.65;
  margin: 0 auto;
}

/* --- SECTION: LA CARTE (iframe PDF) --- */
.carte {
  padding: 6rem 0;
  position: relative;
}
.carte::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(212, 165, 165, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 70%, rgba(176, 122, 130, 0.05) 0%, transparent 60%);
  pointer-events: none;
}
.carte-inner {
  position: relative;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}
.carte h2 { color: var(--creme); }
.carte-subtitle {
  color: var(--text-muted);
  font-style: italic;
  max-width: 56ch;
  margin: 1rem auto 0;
  font-size: 1.05rem;
  line-height: 1.7;
}
.carte-frame {
  margin: 3.5rem auto 0;
  width: 100%;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(212, 165, 165, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 0% 100%, rgba(176, 122, 130, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, #FCF4F2 0%, #F7E6E4 100%);
  border-radius: 6px;
  border: 1px solid rgba(176, 122, 130, 0.3);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(212, 165, 165, 0.12),
    0 0 80px rgba(212, 165, 165, 0.12),
    inset 0 0 60px rgba(255, 255, 255, 0.4);
  overflow: hidden;
  position: relative;
  color: #3A2A2E;
  text-align: left;
}
/* Cadre intérieur (filet décoratif) */
.carte-frame::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(176, 122, 130, 0.28);
  border-radius: 3px;
  pointer-events: none;
  z-index: 1;
}
/* Texture papier subtile */
.carte-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.45 0 0 0 0 0.32 0 0 0 0 0.34 0 0 0 0.06 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  z-index: 0;
}

/* Ornements aux 4 coins */
.carte-corner {
  position: absolute;
  width: 78px;
  height: 78px;
  pointer-events: none;
  z-index: 4;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120' fill='none'%3E%3Cpath d='M10 110 L10 30 C10 20, 20 10, 30 10 L110 10' stroke='%23B07A82' stroke-width='0.7' stroke-linecap='round' opacity='0.7'/%3E%3Cpath d='M14 14 L26 14 M14 14 L14 26' stroke='%23B07A82' stroke-width='0.6' opacity='0.55'/%3E%3Ccircle cx='14' cy='14' r='2.2' fill='none' stroke='%23B07A82' stroke-width='0.6' opacity='0.75'/%3E%3Cpath d='M30 14 C36 10, 42 14, 42 18 C42 14, 48 10, 54 14' stroke='%23B07A82' stroke-width='0.6' opacity='0.5' fill='none'/%3E%3Cpath d='M14 30 C10 36, 14 42, 18 42 C14 42, 10 48, 14 54' stroke='%23B07A82' stroke-width='0.6' opacity='0.5' fill='none'/%3E%3Ccircle cx='42' cy='16' r='0.8' fill='%23B07A82'/%3E%3Ccircle cx='16' cy='42' r='0.8' fill='%23B07A82'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.carte-corner--tl { top: 22px; left: 22px; }
.carte-corner--tr { top: 22px; right: 22px; transform: scaleX(-1); }
.carte-corner--bl { bottom: 22px; left: 22px; transform: scaleY(-1); }
.carte-corner--br { bottom: 22px; right: 22px; transform: scale(-1, -1); }

/* Letterhead */
.carte-letterhead {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 3.5rem 2rem 2rem;
}
.carte-letterhead-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.66rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--rose-deep);
  opacity: 0.75;
  margin-bottom: 1rem;
}
.carte-letterhead-name {
  font-family: var(--font-display-alt);
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  font-weight: 400;
  color: #3A2A2E;
  margin: 0;
  letter-spacing: 0.04em;
  line-height: 1;
}
.carte-letterhead-name em {
  font-family: var(--font-display);
  font-style: italic;
  letter-spacing: 0.01em;
  color: var(--rose-deep);
  font-weight: 500;
}
.carte-letterhead-flourish {
  margin: 1.2rem auto 0.8rem;
  width: 240px;
  max-width: 70%;
  color: var(--rose-deep);
  opacity: 0.85;
}
.carte-letterhead-flourish svg {
  width: 100%;
  height: auto;
  display: block;
}
.carte-letterhead-subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  color: rgba(58, 42, 46, 0.75);
  margin: 0;
  letter-spacing: 0.02em;
}

@media (max-width: 540px) {
  .carte-corner { width: 56px; height: 56px; }
  .carte-corner--tl, .carte-corner--tr { top: 14px; }
  .carte-corner--bl, .carte-corner--br { bottom: 14px; }
  .carte-corner--tl, .carte-corner--bl { left: 14px; }
  .carte-corner--tr, .carte-corner--br { right: 14px; }
  .carte-letterhead { padding: 2.4rem 1rem 1rem; }
  .carte-frame::before { inset: 8px; }
}
.carte-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

/* ─── Onglets principaux ─── */
.carte-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
  margin: 0 auto 0;
  max-width: 920px;
}
.carte-tab {
  background: transparent;
  border: 1px solid transparent;
  padding: 0.5rem 1.4rem;
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  font-style: italic;
  font-weight: 400;
  color: rgba(58, 42, 46, 0.55);
  cursor: pointer;
  position: relative;
  letter-spacing: 0.04em;
  transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  border-radius: 999px;
}
.carte-tab:hover {
  color: var(--rose-deep);
  border-color: rgba(176, 122, 130, 0.3);
}
.carte-tab.active {
  color: #FCF4F2;
  background: var(--rose-deep);
  border-color: var(--rose-deep);
  letter-spacing: 0.06em;
}
.carte-tab.active::after { content: none; }

/* Liseré décoratif sous les onglets */
.carte-tabs-divider,
.carte-tabs::after {
  content: '';
  display: block;
  margin: 1.6rem auto 0;
  width: 86%;
  max-width: 760px;
  height: 1px;
  background:
    linear-gradient(to right,
      transparent 0%,
      rgba(176, 122, 130, 0.4) 20%,
      rgba(176, 122, 130, 0.4) 80%,
      transparent 100%);
  position: relative;
  flex-basis: 100%;
}

/* ─── Panneau ─── */
.carte-panel {
  display: none;
  padding: 2.4rem 2rem 1rem;
  position: relative;
  z-index: 2;
  animation: cartePanelIn 0.45s ease both;
}
.carte-panel.active {
  display: block;
}
@keyframes cartePanelIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── Menus (formules) ─── */
.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
  max-width: 920px;
  margin: 0 auto;
}
@media (min-width: 720px) {
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .menu-card--featured { grid-column: 1 / -1; }
}
.menu-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 250, 248, 0.55));
  border: 1px solid rgba(176, 122, 130, 0.28);
  border-radius: 6px;
  padding: 1.8rem 1.7rem;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  box-shadow: 0 2px 8px rgba(176, 122, 130, 0.06), inset 0 0 30px rgba(255, 255, 255, 0.3);
}
.menu-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(176, 122, 130, 0.18), inset 0 0 40px rgba(255, 255, 255, 0.4);
  border-color: rgba(176, 122, 130, 0.55);
}
.menu-card--featured {
  background:
    radial-gradient(ellipse at top, rgba(255, 240, 240, 0.85), rgba(255, 235, 235, 0.6)),
    linear-gradient(180deg, rgba(255, 245, 245, 0.75), rgba(255, 235, 235, 0.55));
  border-color: rgba(176, 122, 130, 0.5);
  text-align: center;
  box-shadow: 0 6px 28px rgba(176, 122, 130, 0.18), inset 0 0 40px rgba(255, 220, 220, 0.4);
}
.menu-card--featured::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(176, 122, 130, 0.25);
  border-radius: 3px;
  pointer-events: none;
}
.menu-card header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px dashed rgba(176, 122, 130, 0.35);
  gap: 0.25rem;
}
.menu-card--featured header {
  align-items: center;
}
.menu-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  font-weight: 500;
  color: #3A2A2E;
  margin: 0;
  letter-spacing: 0.01em;
}
.menu-subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.92rem;
  color: rgba(58, 42, 46, 0.7);
}
.menu-price {
  font-family: var(--font-display-alt);
  font-size: 1.4rem;
  color: var(--rose-deep);
  letter-spacing: 0.04em;
  margin-top: 0.1rem;
}
.menu-price small {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.78rem;
  color: rgba(58, 42, 46, 0.55);
  letter-spacing: 0;
}
.menu-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose-deep);
  border: 1px solid rgba(176, 122, 130, 0.45);
  padding: 0.22rem 0.6rem;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.6);
}
.menu-formule {
  list-style: none;
  padding: 0;
  margin: 0 0 0.8rem;
  font-family: var(--font-display);
  font-size: 1rem;
  color: #3A2A2E;
}
.menu-card--featured .menu-formule {
  text-align: center;
}
.menu-formule li {
  padding: 0.32rem 0;
  border-bottom: 1px dotted rgba(176, 122, 130, 0.18);
}
.menu-formule li:last-child { border-bottom: 0; }
.menu-formule--detail li {
  font-size: 0.92rem;
  line-height: 1.5;
  text-align: left;
}
.menu-formule--detail strong {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  color: var(--rose-deep);
}
.menu-note {
  margin: 0.5rem 0 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.88rem;
  color: rgba(58, 42, 46, 0.7);
}
.menu-card--featured .menu-note { text-align: center; }
.menu-fineprint {
  margin: 0.6rem 0 0;
  font-size: 0.74rem;
  font-style: italic;
  color: rgba(58, 42, 46, 0.55);
  line-height: 1.4;
}

/* ─── Plats à la carte ─── */
.dish-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  max-width: 760px;
  margin-inline: auto;
}
.dish {
  padding: 0.6rem 0.4rem 1.4rem;
  position: relative;
}
.dish:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 25%;
  right: 25%;
  bottom: 0;
  height: 1px;
  background:
    linear-gradient(to right,
      transparent 0%,
      rgba(176, 122, 130, 0.35) 30%,
      rgba(176, 122, 130, 0.35) 70%,
      transparent 100%);
}
.dish-head {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.dish-head h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.15rem, 2.3vw, 1.4rem);
  font-weight: 500;
  color: #3A2A2E;
  margin: 0;
  letter-spacing: 0.015em;
  line-height: 1.2;
  white-space: normal;
}
/* Leader dots entre nom et prix */
.dish-head::before {
  content: '';
  flex: 1;
  margin: 0 0.5rem 0.45em;
  border-bottom: 1px dotted rgba(58, 42, 46, 0.32);
  height: 0;
  min-width: 1.5rem;
  order: 2;
}
.dish-head h3 { order: 1; }
.dish-head .dish-price { order: 3; }
.dish-price {
  font-family: var(--font-display-alt);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--rose-deep);
  letter-spacing: 0.05em;
  white-space: nowrap;
  font-feature-settings: "lnum";
}
.dish-desc {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.96rem;
  line-height: 1.55;
  color: rgba(58, 42, 46, 0.78);
  margin: 0;
  letter-spacing: 0.005em;
}
.dish-fineprint {
  margin: 0.4rem 0 0;
  font-size: 0.78rem;
  font-style: italic;
  color: rgba(58, 42, 46, 0.55);
}
.dish-allergens {
  display: inline-block;
  margin-top: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(58, 42, 46, 0.45);
}

/* ─── Vins ─── */
.vin-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
}
.vin-tab {
  background: transparent;
  border: 1px solid rgba(176, 122, 130, 0.3);
  padding: 0.4rem 1.1rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(58, 42, 46, 0.6);
  cursor: pointer;
  border-radius: 999px;
  transition: all 0.2s ease;
}
.vin-tab:hover {
  border-color: var(--rose-deep);
  color: var(--rose-deep);
}
.vin-tab.active {
  background: var(--rose-deep);
  border-color: var(--rose-deep);
  color: #FBF1F1;
}
.vin-legend {
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.78rem;
  color: rgba(58, 42, 46, 0.55);
  margin: 0.6rem 0 1.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
}
.vin-bio {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #6FA86C;
  border-radius: 1px;
  vertical-align: middle;
}

.vin-panel {
  display: none;
  animation: cartePanelIn 0.4s ease both;
}
.vin-panel.active { display: block; }

.vin-aoc {
  margin-bottom: 1.8rem;
  break-inside: avoid;
}
.vin-aoc h4 {
  font-family: var(--font-display-alt);
  font-style: normal;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--rose-deep);
  margin: 0 0 0.6rem;
  padding-bottom: 0.4rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.vin-aoc h4::after {
  content: '';
  flex: 1;
  height: 1px;
  background:
    linear-gradient(to right,
      rgba(176, 122, 130, 0.4) 0%,
      rgba(176, 122, 130, 0.1) 100%);
}
.vin-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.vin-list li {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  padding: 0.36rem 0;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: #3A2A2E;
  line-height: 1.4;
}
.vin-list li > span {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  order: 1;
}
.vin-list li::before {
  content: '';
  flex: 1;
  margin: 0 0.4rem 0.35em;
  border-bottom: 1px dotted rgba(58, 42, 46, 0.28);
  height: 0;
  min-width: 1rem;
  order: 2;
}
.vin-list li > em {
  font-family: var(--font-display-alt);
  font-style: normal;
  font-size: 0.95rem;
  color: var(--rose-deep);
  white-space: nowrap;
  letter-spacing: 0.05em;
  order: 3;
  font-feature-settings: "lnum";
}

@media (min-width: 900px) {
  [data-vin-panel="blancs"],
  [data-vin-panel="rouges"] {
    column-count: 2;
    column-gap: 2.4rem;
  }
}

.carte-allergens {
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.78rem;
  color: rgba(58, 42, 46, 0.55);
  margin: 1rem 1.5rem 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(176, 122, 130, 0.18);
}

@media (max-width: 540px) {
  .carte-tabs { padding: 1rem 0.6rem 0; }
  .carte-tab { padding: 0.5rem 0.7rem 0.9rem; font-size: 0.95rem; }
  .carte-panel { padding: 1.6rem 1rem 0.6rem; }
}

/* --- SECTION: MURMURES (AVIS) --- */
.murmures {
  padding: 6rem 0;
  position: relative;
}

.murmures-inner {
  text-align: center;
}

.murmures h2 { color: var(--creme); }

.avis-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.avis-card {
  background: linear-gradient(180deg, var(--ardoise-light) 0%, var(--gris) 100%);
  border-left: 2px solid var(--or);
  padding: 2rem 2.2rem;
  text-align: left;
  border-radius: 0 4px 4px 0;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  position: relative;
}

.avis-card:hover {
  transform: translateX(6px);
  border-color: var(--or-light);
  box-shadow: -6px 0 24px rgba(212, 165, 165, 0.12), var(--shadow-prestige);
}

.avis-card blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.2rem;
  color: var(--creme);
  line-height: 1.6;
  margin: 0;
  letter-spacing: 0.01em;
}

.avis-card blockquote::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--or);
  line-height: 0;
  vertical-align: -0.5em;
  margin-right: 0.2em;
  font-style: italic;
}

/* --- MURMURES CAROUSEL --- */
.murmures-carousel {
  position: relative;
  margin: 3rem auto 0;
  max-width: 760px;
  min-height: 220px;
  padding: 0 3rem;
}

.murmure-track {
  position: relative;
  min-height: 200px;
}

.murmure-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
  padding: 1.5rem 0.5rem;
}

.murmure-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}

.murmure-stars {
  color: var(--or);
  font-size: 0.95rem;
  letter-spacing: 0.4em;
  margin-bottom: 1rem;
  text-shadow: 0 0 12px rgba(212, 165, 165, 0.3);
}

.murmure-slide blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.05rem, 2.4vw, 1.4rem);
  font-weight: 400;
  color: var(--creme);
  line-height: 1.65;
  margin: 0 0 1.2rem;
  max-width: 60ch;
  letter-spacing: 0.005em;
}

.murmure-slide blockquote::before {
  content: '\201C';
  font-family: var(--font-display);
  color: var(--or);
  font-size: 2.4em;
  line-height: 0;
  vertical-align: -0.45em;
  margin-right: 0.05em;
}
.murmure-slide blockquote::after {
  content: '\201D';
  font-family: var(--font-display);
  color: var(--or);
  font-size: 2.4em;
  line-height: 0;
  vertical-align: -0.65em;
  margin-left: 0.05em;
}

.murmure-slide cite {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.murmure-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  background: transparent;
  border: 1px solid rgba(212, 165, 165, 0.3);
  color: var(--or);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: all 0.25s ease;
  opacity: 0.7;
}
.murmure-nav:hover {
  border-color: var(--or);
  background: rgba(212, 165, 165, 0.1);
  opacity: 1;
  transform: translateY(-50%) scale(1.05);
}
.murmure-nav svg { width: 18px; height: 18px; }
.murmure-prev { left: 0; }
.murmure-next { right: 0; }

.murmure-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 1.6rem;
}
.murmure-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 1px solid rgba(212, 165, 165, 0.45);
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.25s ease;
}
.murmure-dots button.active {
  background: var(--or);
  transform: scale(1.2);
  border-color: var(--or);
}
.murmure-dots button:hover { border-color: var(--or); }

.murmure-source {
  margin: 1.4rem auto 0;
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  letter-spacing: 0.04em;
}

@media (max-width: 540px) {
  .murmures-carousel { padding: 0 1rem; }
  .murmure-nav { width: 32px; height: 32px; }
  .murmure-prev { left: -8px; }
  .murmure-next { right: -8px; }
}

/* --- BANDE PHOTOS DÉFILANTE --- */
.band-section {
  padding: 4rem 0 1rem;
  position: relative;
  overflow: hidden;
}

.band {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}

.band-track {
  display: flex;
  gap: 10px;
  width: max-content;
  will-change: transform;
}

.band-track img {
  height: 240px;
  width: auto;
  flex: 0 0 auto;
  display: block;
  border-radius: 4px;
  object-fit: cover;
  filter: saturate(1.02) brightness(0.97);
  transition: filter 0.3s ease, transform 0.3s ease;
  cursor: zoom-in;
}
.band-track img:hover {
  filter: saturate(1.1) brightness(1.05);
  transform: scale(1.04);
}

@media (max-width: 768px) {
  .band-track img { height: 180px; }
  .band-section { padding: 2.4rem 0 0.5rem; }
}

/* --- SECTION: INFOS PRATIQUES --- */
.infos {
  padding: 6rem 0;
  position: relative;
}

.infos-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.infos h2 { color: var(--creme); }

.infos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
  text-align: left;
}

.info-box {
  background: linear-gradient(180deg, var(--ardoise-light), var(--gris));
  border-radius: 4px;
  padding: 2.2rem 2rem;
  border: 1px solid rgba(212, 165, 165, 0.12);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.info-box:hover {
  border-color: rgba(212, 165, 165, 0.25);
  box-shadow: var(--shadow-rose);
}

.info-box h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--or);
  font-size: 1.3rem;
  letter-spacing: 0.02em;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.info-box h3 svg.ico {
  font-size: 1.3rem;
  flex-shrink: 0;
  stroke-width: 1.2;
}

.horaires-table {
  width: 100%;
  border-collapse: collapse;
}

.horaires-table tr {
  border-bottom: 1px solid rgba(245, 237, 224, 0.06);
}

.horaires-table tr:last-child { border: none; }

.horaires-table td {
  padding: 0.6rem 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.horaires-table td:first-child {
  color: var(--creme);
  font-weight: 500;
  width: 40%;
}

.horaires-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 0.8rem;
  opacity: 0.7;
}

.services-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.service-item svg.ico {
  font-size: 1.05rem;
  color: var(--or);
  flex-shrink: 0;
  stroke-width: 1.2;
}

.service-note {
  display: inline;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: italic;
  margin-left: 0.2rem;
  opacity: 0.8;
}

.services-note {
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(212, 165, 165, 0.1);
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.5;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-item svg.ico {
  font-size: 1.1rem;
  color: var(--or);
  flex-shrink: 0;
  stroke-width: 1.2;
}

.langues-list {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.langue-tag {
  padding: 0.3rem 0.8rem;
  border: 1px solid rgba(196, 148, 74, 0.2);
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--or);
}

/* --- SECTION: GOOGLE MAPS --- */
.localisation {
  padding: 4rem 0 6rem;
}

.localisation-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.localisation h2 { color: var(--creme); }

.map-container {
  margin-top: 2rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(196, 148, 74, 0.1);
  position: relative;
}

.map-container iframe {
  width: 100%;
  height: 350px;
  border: none;
  display: block;
  filter: grayscale(0.3) contrast(1.05);
}

.map-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

/* --- FOOTER --- */
.footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(196, 148, 74, 0.1);
  text-align: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--creme);
  margin-bottom: 1rem;
}

.footer-brand span { color: var(--or); }

.footer-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.footer-links a {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.footer-links a:hover { color: var(--or); }

.footer-social {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.footer-social a {
  color: var(--text-muted);
  transition: color 0.3s ease, transform 0.3s ease;
  display: flex;
}

.footer-social a:hover {
  color: var(--or);
  transform: scale(1.1);
}

.footer-social svg {
  width: 22px;
  height: 22px;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0.5;
}

.footer-emblem {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: default;
  padding: 0.5rem;
  opacity: 0.4;
  transition: opacity 0.5s ease, transform 0.5s ease, color 0.5s ease;
  margin-top: 0.6rem;
  color: var(--or);
  font-size: 1.8rem;
}

.footer-emblem:hover {
  opacity: 0.85;
  transform: rotate(15deg);
  color: var(--or-light);
}

.footer-emblem svg.ico { stroke-width: 1; }

/* --- PHONE OVERLAY --- */
.phone-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28, 31, 38, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.phone-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.phone-card {
  position: relative;
  text-align: center;
  padding: 3rem 2rem;
  max-width: 400px;
  width: 90%;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.phone-card .btn-close-overlay {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  width: 36px;
  height: 36px;
  padding: 0;
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: color 0.3s ease, background 0.3s ease;
}

.phone-card .btn-close-overlay:hover {
  color: var(--or);
  background: rgba(212, 165, 165, 0.1);
}

.phone-card .btn-close-overlay svg {
  width: 20px;
  height: 20px;
}

.phone-overlay.open .phone-card {
  transform: scale(1) translateY(0);
}

.phone-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--creme);
  margin-bottom: 0.5rem;
}

.phone-card .phone-subtitle {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.phone-number {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.4rem);
  color: var(--or);
  margin-bottom: 0.5rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease 0.2s, transform 0.5s ease 0.2s;
  display: block;
}

.phone-overlay.open .phone-number {
  opacity: 1;
  transform: translateY(0);
}

.phone-mobile {
  font-size: clamp(1rem, 3vw, 1.3rem);
  color: var(--text-muted);
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease 0.35s, transform 0.5s ease 0.35s;
  display: block;
}

.phone-overlay.open .phone-mobile {
  opacity: 1;
  transform: translateY(0);
}

.phone-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-copy {
  padding: 0.8rem 1.5rem;
  background: var(--or);
  color: var(--ardoise);
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.btn-copy:hover {
  background: var(--or-light);
  transform: translateY(-2px);
}

.btn-copy:focus-visible {
  outline: 2px solid var(--or);
  outline-offset: 4px;
}

.btn-copy.copied {
  background: #4a9c6d;
}

.btn-close-overlay {
  padding: 0.8rem 1.5rem;
  background: transparent;
  color: var(--text-muted);
  border: 1px solid rgba(245, 237, 224, 0.2);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.btn-close-overlay:hover {
  color: var(--creme);
  border-color: var(--creme);
}

.btn-close-overlay:focus-visible {
  outline: 2px solid var(--or);
  outline-offset: 4px;
}

/* --- EASTER EGG CYCLIST --- */
.easter-cyclist {
  position: fixed;
  bottom: 15%;
  left: -100px;
  z-index: 8000;
  pointer-events: none;
  opacity: 0;
  transition: none;
}

.easter-cyclist.animate {
  animation: cyclistRide 4s ease-in-out forwards;
}

.easter-cyclist svg {
  width: 80px;
  height: 40px;
}

.easter-cyclist .cyclist-message {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--or);
  opacity: 0;
  animation: msgAppear 2s ease 1.5s forwards;
}

@keyframes cyclistRide {
  0% { left: -100px; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { left: calc(100vw + 100px); opacity: 0; }
}

@keyframes msgAppear {
  0% { opacity: 0; transform: translateX(-50%) translateY(5px); }
  30% { opacity: 1; transform: translateX(-50%) translateY(0); }
  80% { opacity: 1; }
  100% { opacity: 0; }
}

/* --- WIND PARTICLES CANVAS --- */
#wind-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 5;
  opacity: 0.3;
}

/* --- STICKY CTA (mobile) --- */
.sticky-cta {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 900;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.sticky-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.sticky-cta button {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--or);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(196, 148, 74, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sticky-cta button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(196, 148, 74, 0.5);
}

.sticky-cta button:focus-visible {
  outline: 2px solid var(--creme);
  outline-offset: 4px;
}

.sticky-cta svg {
  width: 24px;
  height: 24px;
  color: var(--ardoise);
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */

/* Tablet */
@media (min-width: 640px) {
  .avis-grid {
    grid-template-columns: 1fr 1fr;
  }

  .infos-grid {
    grid-template-columns: 1fr 1fr;
  }

  .palier {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .palier:nth-child(even) .palier-visual {
    order: 2;
  }

  .palier:nth-child(even) .palier-info {
    order: 1;
  }
}

/* Desktop */
@media (min-width: 960px) {
  .nav-links {
    display: flex;
  }

  .hamburger {
    display: none;
  }

  .altitude-line {
    display: block;
  }

  .altitude-marker {
    display: flex;
  }

  .palier {
    gap: 4rem;
    margin-bottom: 6rem;
  }

  .map-container iframe {
    height: 450px;
  }

  .sticky-cta {
    display: none;
  }
}

/* --- LEGAL PAGES --- */
.legal-page {
  padding: 8rem 0 4rem;
  min-height: 100vh;
}

.legal-page .container {
  max-width: 800px;
}

.legal-page h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--creme);
  margin-bottom: 2rem;
}

.legal-page h2 {
  font-size: 1.3rem;
  color: var(--or);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.legal-page p,
.legal-page li {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 0.8rem;
}

.legal-page ul {
  list-style: none;
  padding-left: 1rem;
}

.legal-page ul li::before {
  content: '—';
  color: var(--or);
  margin-right: 0.5rem;
}

.legal-page a {
  color: var(--or);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.legal-back:hover { color: var(--or); }

.todo-marker {
  background: rgba(196, 148, 74, 0.15);
  color: var(--or);
  padding: 0.1rem 0.4rem;
  border-radius: 3px;
  font-size: 0.85rem;
}

/* Focus styles */
:focus-visible {
  outline: 2px solid var(--or);
  outline-offset: 3px;
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal, .reveal-left, .reveal-right {
    opacity: 1;
    transform: none;
  }

  #wind-canvas { display: none; }
}

/* --- AMBIANCE BACKGROUND IMAGES --- */
.ambiance-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  filter: brightness(0.9);
}

/* --- SECTION: GALERIE PHOTOS --- */
.galerie {
  padding: 6rem 0;
  position: relative;
}

.galerie-inner {
  text-align: center;
}

.galerie-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-flow: dense;
  gap: 1rem;
  margin-top: 3rem;
}

.galerie-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.galerie-item.galerie-large {
  grid-column: span 2;
  aspect-ratio: 16/7;
}

.galerie-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: brightness(1);
}

.galerie-item:hover img {
  transform: scale(1.05);
  filter: brightness(1);
}

@media (min-width: 768px) {
  .galerie-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
  }

  .galerie-item.galerie-large {
    grid-column: span 2;
    aspect-ratio: 16/9;
  }
}

@media (min-width: 1024px) {
  .galerie-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

/* --- SECTION: LA CHEFFE --- */
.cheffe {
  padding: 6rem 0;
  position: relative;
}

.cheffe-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.cheffe-photo {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.cheffe-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cheffe-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(196, 148, 74, 0.2);
  border-radius: 8px;
  pointer-events: none;
}

.cheffe-text h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: var(--creme);
  margin-bottom: 1.2rem;
  letter-spacing: 0.02em;
}

.cheffe-text p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.85;
  max-width: 500px;
  margin-bottom: 1rem;
}

.cheffe-signature {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--or);
  font-size: 1.15rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.5rem;
  letter-spacing: 0.02em;
}
.cheffe-signature em { font-style: italic; }
.cheffe-signature svg.ico { font-size: 1.2rem; stroke-width: 1.1; }

.cheffe-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(212, 165, 165, 0.25);
  border-radius: 4px;
  pointer-events: none;
}

.cheffe-photo {
  border-radius: 4px;
}

.cheffe-photo img {
  filter: brightness(0.85) saturate(0.85);
  transition: filter 0.6s ease;
}

.cheffe-photo:hover img {
  filter: brightness(1) saturate(1);
}

@media (min-width: 768px) {
  .cheffe-inner {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

/* ═══════════════════════════════════════════════════
   GALERIE — filtres prestige
   ═══════════════════════════════════════════════════ */
.galerie-item {
  border-radius: 4px;
  border: 1px solid transparent;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}
.galerie-item img {
  filter: brightness(1) saturate(1) contrast(1.02);
}
.galerie-item:hover {
  border-color: rgba(212, 165, 165, 0.3);
  box-shadow: var(--shadow-rose);
}

/* ═══════════════════════════════════════════════════
   AVIS-CARD : icône quote SVG
   ═══════════════════════════════════════════════════ */
.avis-card blockquote::before {
  content: none;
}
.avis-card {
  position: relative;
}
.avis-card::before {
  content: '';
  position: absolute;
  top: 0.8rem;
  left: 1.2rem;
  width: 26px;
  height: 26px;
  background-color: var(--or);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'><path d='M14 24 C14 18, 18 14, 24 14 L24 22 C22 22, 22 26, 24 26 L24 36 C18 36, 14 32, 14 26 Z M34 24 C34 18, 38 14, 44 14 L44 22 C42 22, 42 26, 44 26 L44 36 C38 36, 34 32, 34 26 Z'/></svg>") no-repeat center / contain;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'><path d='M14 24 C14 18, 18 14, 24 14 L24 22 C22 22, 22 26, 24 26 L24 36 C18 36, 14 32, 14 26 Z M34 24 C34 18, 38 14, 44 14 L44 22 C42 22, 42 26, 44 26 L44 36 C38 36, 34 32, 34 26 Z'/></svg>") no-repeat center / contain;
  opacity: 0.4;
}
.avis-card blockquote {
  padding-left: 2rem;
  padding-top: 1rem;
}

/* ═══════════════════════════════════════════════════
   NAV — touche prestige
   ═══════════════════════════════════════════════════ */
.nav-brand {
  font-family: var(--font-display-alt);
  font-size: 1.45rem;
  letter-spacing: 0.08em;
  font-weight: 400;
}
.nav-brand span {
  color: var(--or);
  font-style: italic;
  font-family: var(--font-display);
}
.navbar.scrolled {
  background: rgba(14, 14, 16, 0.92);
  border-bottom: 1px solid rgba(212, 165, 165, 0.08);
}
.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  font-weight: 400;
}

/* ═══════════════════════════════════════════════════
   FOOTER — touche prestige
   ═══════════════════════════════════════════════════ */
.footer {
  border-top: 1px solid rgba(212, 165, 165, 0.12);
  padding-top: 4rem;
}
.footer-brand {
  font-family: var(--font-display-alt);
  font-size: 1.6rem;
  letter-spacing: 0.08em;
}
.footer-brand span {
  color: var(--or);
  font-style: italic;
  font-family: var(--font-display);
}

/* ═══════════════════════════════════════════════════
   SECTION-LABEL : retire les barres pour les centrés inline-flex
   ═══════════════════════════════════════════════════ */
.section-label { white-space: nowrap; }

/* ═══════════════════════════════════════════════════
   EASTER EGG — pluie de pétales rose
   ═══════════════════════════════════════════════════ */
.easter-petals {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9000;
  overflow: hidden;
}
.easter-petal {
  position: absolute;
  top: -30px;
  width: 22px;
  height: 22px;
  display: inline-block;
  animation: petalFall linear forwards;
}
.easter-petal svg { width: 100%; height: 100%; }
@keyframes petalFall {
  0%   { transform: translateY(0) rotate(0deg); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.85; }
  100% { transform: translateY(110vh) rotate(540deg); opacity: 0; }
}
.easter-message {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--or-light);
  text-align: center;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.6);
  opacity: 0;
  animation: msgPrestige 6s ease forwards;
}
@keyframes msgPrestige {
  0%, 15% { opacity: 0; transform: translate(-50%, -40%); }
  25%     { opacity: 1; transform: translate(-50%, -50%); }
  75%     { opacity: 1; }
  100%    { opacity: 0; transform: translate(-50%, -60%); }
}

/* ═══════════════════════════════════════════════════
   PHONE-OVERLAY — palette prestige
   ═══════════════════════════════════════════════════ */
.phone-overlay {
  background: rgba(14, 14, 16, 0.96);
}
.phone-card {
  background: linear-gradient(180deg, var(--ardoise-light), var(--gris));
  border: 1px solid rgba(212, 165, 165, 0.15);
  border-radius: 4px;
  box-shadow: var(--shadow-prestige);
}
.btn-copy {
  background: linear-gradient(135deg, var(--or), var(--rose-deep));
}
.btn-copy:hover { background: var(--or-light); }
.btn-copy.copied { background: #6F8C7E; }

/* ═══════════════════════════════════════════════════
   STICKY-CTA — palette prestige
   ═══════════════════════════════════════════════════ */
.sticky-cta button {
  background: linear-gradient(135deg, var(--or), var(--rose-deep));
  box-shadow: 0 4px 24px rgba(212, 165, 165, 0.4);
  border: 1px solid rgba(232, 197, 197, 0.3);
}
.sticky-cta button:hover {
  box-shadow: 0 6px 30px rgba(212, 165, 165, 0.55);
}

/* ═══════════════════════════════════════════════════
   MAP — désaturation prestige
   ═══════════════════════════════════════════════════ */
.map-container {
  border: 1px solid rgba(212, 165, 165, 0.18);
  border-radius: 4px;
}
.map-container iframe {
  filter: grayscale(0.6) contrast(1.05) brightness(0.85);
}

/* ═══════════════════════════════════════════════════
   PALIER (ascension) : palette rose
   ═══════════════════════════════════════════════════ */
.palier-altitude {
  border-color: rgba(212, 165, 165, 0.35);
  color: var(--or);
}
.palier-info h3 {
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.altitude-line {
  background: linear-gradient(to bottom, var(--or), rgba(212, 165, 165, 0.1));
}
.palier-visual {
  border-radius: 4px;
  border: 1px solid rgba(212, 165, 165, 0.1);
}

/* ═══════════════════════════════════════════════════
   AMBIANCE-CARD : palette prestige
   ═══════════════════════════════════════════════════ */
.ambiance-card {
  border-radius: 4px;
  border: 1px solid rgba(212, 165, 165, 0.15);
}
.ambiance-detail {
  color: var(--or-light);
}
.ambiance-detail svg.ico {
  font-size: 1rem;
}
.toggle-switch {
  border-color: rgba(212, 165, 165, 0.35);
}
.toggle-switch::after {
  background: linear-gradient(135deg, var(--or), var(--rose-deep));
}

/* ═══════════════════════════════════════════════════
   LANGUE TAG : prestige
   ═══════════════════════════════════════════════════ */
.langue-tag {
  border-color: rgba(212, 165, 165, 0.3);
  color: var(--or);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  padding: 0.3rem 1rem;
}

/* ═══════════════════════════════════════════════════
   HERO : ajout d'un voile rose subtil
   ═══════════════════════════════════════════════════ */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(14, 14, 16, 0.4) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero h1 {
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}

.hero h1 em {
  background: linear-gradient(135deg, var(--or-light), var(--or));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
}

/* ═══════════════════════════════════════════════════
   NAVBAR : alignement nav-links centré desktop
   ═══════════════════════════════════════════════════ */
@media (min-width: 960px) {
  .navbar .container {
    max-width: 1400px;
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    column-gap: 1.8rem;
  }
  .nav-links {
    justify-self: center;
    gap: 1.6rem;
  }
  .nav-links a {
    letter-spacing: 0.14em;
  }
  .nav-social {
    gap: 1rem;
  }
}
@media (min-width: 1280px) {
  .navbar .container { column-gap: 2.4rem; }
  .nav-links { gap: 2rem; }
  .nav-links a { letter-spacing: 0.16em; }
}
@media (min-width: 1440px) {
  .navbar .container { column-gap: 3rem; }
  .nav-links { gap: 2.4rem; }
  .nav-links a { letter-spacing: 0.18em; }
}

/* ═══════════════════════════════════════════════════
   RECADRAGE MANUEL DES IMAGES
   Généré via le mode ?recadrage
   ═══════════════════════════════════════════════════ */
/* Paliers : photos affichées à leur résolution d'origine, pas de cadrage */
.galerie-item img[src$="devanture.jpg"] { object-position: 100.0% 50.0%; }
.galerie-item img[src$="photo7.jpg"] { object-position: 50.0% 62.6%; }
.galerie-item img[src$="photo5.jpg"] { object-position: 50.0% 71.8%; }
.galerie-item img[src$="photo10.jpg"] { object-position: 50.0% 42.4%; }
.cheffe-photo img[src$="photo14.jpg"] { object-position: 50.0% 72.1%; }

/* ═══════════════════════════════════════════════════
   WOW EFFECTS — curseur, shimmer, particules, parallaxe
   ═══════════════════════════════════════════════════ */

/* Curseur lumineux (halo rose qui suit la souris) */
.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 480px;
  height: 480px;
  margin: -240px 0 0 -240px;
  background: radial-gradient(circle, rgba(212, 165, 165, 0.22) 0%, rgba(212, 165, 165, 0.08) 35%, transparent 70%);
  pointer-events: none;
  z-index: 4;
  mix-blend-mode: screen;
  will-change: transform;
  transform: translate3d(-1000px, -1000px, 0);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.cursor-glow.active { opacity: 1; }

/* Curseur secondaire — petit point précis */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  margin: -4px 0 0 -4px;
  background: var(--or);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  will-change: transform;
  transform: translate3d(-1000px, -1000px, 0);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.18s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 0 12px rgba(212, 165, 165, 0.5);
}
.cursor-dot.active { opacity: 0.9; }
.cursor-dot.hover-target {
  width: 30px;
  height: 30px;
  margin: -15px 0 0 -15px;
  background: rgba(212, 165, 165, 0.15);
  border: 1px solid var(--or);
}

/* Shimmer (sweep doré sur les titres lors de l'entrée) */
section h2.shimmer-active {
  background: linear-gradient(
    100deg,
    currentColor 0%,
    currentColor 25%,
    rgba(232, 197, 197, 1) 50%,
    currentColor 75%,
    currentColor 100%
  );
  background-size: 200% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmerSweep 2s cubic-bezier(0.4, 0, 0.2, 1) 0.4s 1 forwards;
}
@keyframes shimmerSweep {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}
/* Force le H2 à conserver sa couleur après l'animation */
section h2.shimmer-done {
  background: none;
  -webkit-text-fill-color: currentColor;
}

/* Canvas particules sectionnelles */
.section-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.7;
}

/* Conteneurs prêts à recevoir des particules */
.carte,
.murmures,
.cheffe,
.demarche {
  position: relative;
}
.carte > .container,
.murmures > .container,
.cheffe > .container,
.demarche > .container {
  position: relative;
  z-index: 2;
}

/* Parallaxe : éléments à mouvement vertical sur scroll */
[data-parallax-amount] {
  will-change: transform;
}

/* Effet "tilt" sur les cartes au survol (3D subtle) */
.tilt {
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  transform-style: preserve-3d;
  will-change: transform;
}

/* Spotlight sur les cartes ingrédient au survol */
.demarche-card,
.menu-card,
.dish {
  position: relative;
}
.demarche-card::before,
.menu-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    300px circle at var(--mx, 50%) var(--my, 50%),
    rgba(212, 165, 165, 0.15) 0%,
    transparent 50%
  );
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 0;
}
.demarche-card:hover::before,
.menu-card:hover::before {
  opacity: 1;
}

/* Réduction de motion */
@media (prefers-reduced-motion: reduce) {
  .cursor-glow,
  .cursor-dot { display: none; }
  section h2.shimmer-active { animation: none; background: none; -webkit-text-fill-color: currentColor; }
  .section-particles { display: none; }
  [data-parallax-amount] { transform: none !important; }
}

/* Désactiver curseur custom sur tactile */
@media (hover: none) {
  .cursor-glow,
  .cursor-dot { display: none; }
}

/* ═══════════════════════════════════════════════════
   MOBILE-ONLY : carousels + ajustements
   ═══════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* — Carousel : piliers (Raffinement / Élégance / Équilibre) — */
  /* — Carousel : démarche (6 cartes) — */
  .esprit-pillars,
  .demarche-grid {
    display: flex !important;
    flex-wrap: nowrap;
    grid-template-columns: none !important;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 1rem;
    padding: 0.6rem 8% 1.6rem;
    margin-inline: -1.5rem;
    max-width: none;
    scroll-padding-inline: 8%;
  }
  .esprit-pillars::-webkit-scrollbar,
  .demarche-grid::-webkit-scrollbar { display: none; }

  .pillar,
  .demarche-card {
    flex: 0 0 84%;
    min-width: 240px;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  /* Cadre subtil pour les piliers (compense l'absence de hover sur mobile) */
  .pillar {
    background: linear-gradient(180deg, rgba(212, 165, 165, 0.05), transparent 70%);
    border: 1px solid rgba(212, 165, 165, 0.16);
    border-radius: 6px;
    padding: 1.8rem 1.4rem;
  }

  /* Indication visuelle "swipable" : barre de scroll discrète */
  .esprit-pillars::after,
  .demarche-grid::after {
    content: '◂  ◂  ◂';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(212, 165, 165, 0.35);
    font-size: 0.65rem;
    letter-spacing: 0.6em;
    pointer-events: none;
  }
  .esprit { position: relative; }
  .esprit-pillars { position: relative; }
  .demarche { position: relative; }
  .demarche-grid { position: relative; }

  /* — Sticky CTA téléphone : caché sur mobile — */
  .sticky-cta { display: none !important; }

  /* — Photos d'ascension : plus petites — */
  .palier-visual {
    max-width: 78%;
    margin-inline: auto;
  }
  .palier {
    gap: 1rem;
  }
}

/* Pour très petits écrans, encore plus compact */
@media (max-width: 420px) {
  .pillar,
  .demarche-card {
    flex-basis: 88%;
  }
  .palier-visual {
    max-width: 84%;
  }
}
