/* ============================================================
   Life Addict Auriculothérapie Laser — styles-laser.css
   Design premium, niveau agence — Palette nature/bien-être
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&family=Josefin+Sans:wght@300;400;600&display=swap');

/* ============================================================
   1. VARIABLES & RESET
   ============================================================ */
:root {
  --fond: #f7f3ed;
  --fond-alt: #eef0ea;
  --vert-sauge: #7a9e7e;
  --vert-fonce: #3d5c40;
  --or: #c9a84c;
  --or-clair: #e2c97e;
  --texte: #2c3e2f;
  --texte-leger: #6b7c6e;
  --blanc: #ffffff;
  --ombre: 0 4px 20px rgba(61, 92, 64, 0.12);
  --ombre-forte: 0 12px 40px rgba(61, 92, 64, 0.2);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
  --font-titre: 'Cormorant Garamond', Georgia, serif;
  --font-corps: 'Josefin Sans', Arial, sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-corps);
  background: var(--fond);
  color: var(--texte);
  line-height: 1.7;
  overflow-x: hidden;
}

body.no-scroll { overflow: hidden; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-titre);
  font-weight: 400;
  line-height: 1.15;
  color: var(--vert-fonce);
}

h1 { font-size: clamp(2rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.1rem; }

/* CRITICAL: Override browser blue on all links */
a { color: var(--texte); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--or); }

img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

::selection { background: var(--vert-sauge); color: white; }

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   2. BOUTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--or);
  color: var(--blanc) !important;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: var(--font-corps);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--or-clair);
  color: var(--blanc) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--vert-fonce) !important;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  border: 2px solid var(--vert-fonce);
  font-family: var(--font-corps);
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-secondary:hover {
  background: var(--vert-fonce);
  color: var(--blanc) !important;
  transform: translateY(-2px);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--blanc);
  color: var(--vert-fonce) !important;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: var(--font-corps);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-white:hover {
  background: var(--or);
  color: var(--blanc) !important;
  transform: translateY(-2px);
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--or) !important;
  padding: 0.75rem 1.8rem;
  border-radius: 50px;
  border: 2px solid var(--or);
  font-family: var(--font-corps);
  font-weight: 400;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-outline-gold:hover {
  background: var(--or);
  color: var(--blanc) !important;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.6rem 1.3rem;
  font-size: 0.82rem;
}

/* ============================================================
   3. LAYOUT SECTIONS
   ============================================================ */
.section { padding: 5rem 0; }
.section-alt { background: var(--fond-alt); }
.section-dark { background: var(--vert-fonce); color: var(--blanc); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--blanc); }

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

.section-pretitle {
  display: block;
  font-family: var(--font-corps);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 0.75rem;
}

.section-title { margin-bottom: 1rem; }

.section-subtitle {
  font-family: var(--font-corps);
  font-weight: 300;
  color: var(--texte-leger);
  font-size: 1rem;
  line-height: 1.8;
}

/* ============================================================
   4. NAVIGATION
   ============================================================ */
.nav-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.38rem 0;
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

.nav-fixed.scrolled {
  background: rgba(247, 243, 237, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(61, 92, 64, 0.1);
  padding: 0.25rem 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo img { height: 5.1cm; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links li { list-style: none; }

.nav-links a {
  font-family: var(--font-corps);
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--texte);
  transition: var(--transition);
  text-decoration: none;
}

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

.nav-cta.btn-primary {
  padding: 0.6rem 1.5rem !important;
  font-size: 0.82rem !important;
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1010;
}

.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--vert-fonce);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--fond);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.nav-mobile-overlay.open { display: flex; }

.nav-mobile-overlay li { list-style: none; }

.nav-mobile-overlay a {
  font-family: var(--font-titre);
  font-size: 2rem;
  color: var(--vert-fonce);
  text-align: center;
  text-decoration: none;
  display: block;
}

.nav-mobile-overlay a:hover { color: var(--or); }
.nav-mobile-overlay .btn-primary { font-size: 1rem; margin-top: 1rem; }

/* ============================================================
   5. HERO
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  padding-top: 4.2cm;
}

.hero-image {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.hero-badge-top {
  position: absolute;
  top: 3.6cm;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(61, 92, 64, 0.2);
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  font-family: var(--font-corps);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--vert-fonce);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
  white-space: nowrap;
}

/* ============================================================
   HERO CTA BAND
   ============================================================ */
.hero-cta-band {
  position: relative;
  z-index: 2;
  background: var(--vert-fonce);
  padding: 1.5rem 2rem;
}

.hero-cta-band-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--blanc) !important;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: var(--font-corps);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  border: 2px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--blanc);
  color: var(--blanc) !important;
}

.hero-guarantee-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--or-clair);
  font-family: var(--font-corps);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.hero-guarantee-badge svg {
  flex-shrink: 0;
  color: var(--or);
}

/* Mobile styles */
@media (max-width: 768px) {
  .hero-image {
    min-height: 60vh;
    max-height: none;
    object-position: top;
  }

  .hero-badge-top {
    top: 3cm;
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
    left: 50%;
    transform: translateX(-50%);
    white-space: normal;
    text-align: center;
    max-width: 90%;
  }

  .hero-cta-band {
    padding: 0.4rem 1.5rem;
  }

  .hero-cta-band-inner {
    flex-direction: column;
    gap: 1.5rem;
  }

  .hero-guarantee-badge {
    order: -1;
    margin-bottom: 0.5rem;
    text-align: center;
  }
}

/* ============================================================
   6. BANDE STATS
   ============================================================ */
.hero-cta-band {
  position: relative;
  z-index: 2;
  background: var(--vert-fonce);
  padding: 0.5rem 2rem;
}

#stats-banner { background: var(--vert-fonce); padding: 0.4rem 0; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 2rem 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item:last-child { border-right: none; }

.stat-icon { margin-bottom: 1rem; }
.stat-icon svg { stroke: var(--or); }

.stat-number {
  font-family: var(--font-titre);
  font-size: 3rem;
  color: var(--or);
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-family: var(--font-corps);
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================================
   7. CARTES MÉDAILLON
   ============================================================ */
.card-medaillon {
  background: var(--blanc);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 4px 30px rgba(61, 92, 64, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(122, 158, 126, 0.1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-medaillon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--vert-sauge), var(--or));
  opacity: 0;
  transition: opacity 0.3s;
}

.card-medaillon:hover {
  transform: translateY(-8px);
  box-shadow: var(--ombre-forte);
}

.card-medaillon:hover::before { opacity: 1; }

.card-icon-medallion {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  background: radial-gradient(circle at 35% 35%, var(--or-clair), var(--or) 60%, #a87b30);
  box-shadow:
    inset 0 2px 4px rgba(255, 255, 255, 0.4),
    inset 0 -2px 4px rgba(0, 0, 0, 0.15),
    0 4px 15px rgba(201, 168, 76, 0.35),
    2px 2px 0 rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}

.card-title { font-size: 1.3rem; margin-bottom: 0.5rem; text-align: center; }

.card-desc {
  font-family: var(--font-corps);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--texte-leger);
  margin-bottom: 1.2rem;
  line-height: 1.7;
  flex: 1;
  text-align: center;
}

.card-prix {
  font-family: var(--font-titre);
  font-size: 2rem;
  color: var(--or);
  font-weight: 500;
  display: block;
  margin-bottom: 0.4rem;
  text-align: center;
}

.card-badge {
  display: inline-block;
  background: var(--fond-alt);
  border-radius: 20px;
  padding: 0.3rem 0.85rem;
  font-family: var(--font-corps);
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--texte-leger);
  letter-spacing: 0.05em;
  margin-bottom: 1.2rem;
  text-align: center;
}

.card-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: auto;
  justify-content: center;
}

/* Logo traitement entre hero et contenu */
.page-logo-traitement {
  text-align: center;
  padding: 3rem 0 2rem;
  background: linear-gradient(180deg, var(--fond-alt) 0%, var(--fond) 100%);
}

.page-logo-traitement img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(61, 92, 64, 0.15));
  transition: transform 0.3s ease;
}

.page-logo-traitement img:hover {
  transform: scale(1.05);
}

.page-logo-double {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.page-logo-double img {
  width: 160px;
  height: 160px;
}

/* Carte sucre — vedette */
.card-medaillon-sucre {
  border: 2px solid var(--or);
  background: linear-gradient(135deg, var(--blanc) 0%, #fdf9f0 100%);
  grid-column: span 2;
}

.card-medaillon-sucre .card-icon-medallion {
  width: 160px;
  height: 160px;
  font-size: 2.2rem;
}

.card-medaillon-sucre .card-prix { font-size: 2.5rem; }

.card-vedette-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--or);
  color: var(--blanc);
  border-radius: 20px;
  padding: 0.3rem 0.85rem;
  font-family: var(--font-corps);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

/* ============================================================
   8. GRILLES
   ============================================================ */
.addictions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.bien-etre-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

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

/* ============================================================
   9. SECTION MÉTHODE
   ============================================================ */
.methode-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.methode-texte p {
  font-family: var(--font-corps);
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 1.5rem;
  color: var(--texte);
}

.timeline { padding-left: 0.5rem; }

.timeline-item {
  display: flex;
  gap: 1.5rem;
  padding-bottom: 2rem;
  position: relative;
}

.timeline-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 10px;
  top: 22px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--or) 0%, var(--vert-sauge) 100%);
}

.timeline-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--or);
  flex-shrink: 0;
  margin-top: 2px;
  border: 3px solid var(--blanc);
  box-shadow: 0 0 0 2px var(--or);
  z-index: 1;
}

.timeline-content h4 { font-size: 1rem; margin-bottom: 0.3rem; }

.timeline-content p {
  font-family: var(--font-corps);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--texte-leger);
  line-height: 1.7;
}

.comparaison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 3rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--ombre);
}

.comparaison-table thead th {
  background: var(--vert-fonce);
  color: var(--blanc);
  padding: 1rem 1.2rem;
  font-family: var(--font-corps);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

.comparaison-table thead th:first-child { text-align: left; }

.comparaison-table thead th.col-laser {
  background: var(--or);
  color: var(--blanc);
}

.comparaison-table td {
  padding: 0.85rem 1.2rem;
  border-bottom: 1px solid rgba(122, 158, 126, 0.12);
  font-family: var(--font-corps);
  font-size: 0.88rem;
  text-align: center;
  background: var(--blanc);
}

.comparaison-table td:first-child {
  text-align: left;
  font-weight: 400;
  color: var(--texte);
}

.comparaison-table tr:nth-child(even) td { background: var(--fond-alt); }

.check-oui { color: var(--vert-sauge); font-weight: 600; font-size: 1.1rem; }
.check-non { color: #c0392b; font-size: 1.1rem; }

/* ============================================================
   10. SECTION ÉQUIPEMENT
   ============================================================ */
#equipement { background: var(--vert-fonce); padding: 5rem 0; }

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

.equipment-carousel {
  position: relative;
  min-height: 420px;
}

.equipment-slides-container {
  position: relative;
  width: 100%;
}

.equipment-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
}
.equipment-slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.equipment-slide img {
  max-height: 420px;
  object-fit: contain;
  margin: 0 auto;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.4));
}

.equipment-placeholder {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 3rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--font-corps);
  font-size: 0.85rem;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border: 1px dashed rgba(255, 255, 255, 0.2);
}

.equipment-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 1.5rem;
}

.equipment-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.equipment-dot.active {
  background: var(--or);
  width: 24px;
  border-radius: 4px;
}

.equipment-info h3 {
  color: var(--or);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.equipment-subtitle {
  font-family: var(--font-corps);
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--or-clair);
  margin-bottom: 0.75rem;
}

.equipment-info p {
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-corps);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 0.92rem;
}

.equipment-features { list-style: none; }

.equipment-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-corps);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.equipment-features li:last-child { border-bottom: none; }

.equipment-features li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--or);
  flex-shrink: 0;
}

/* ============================================================
   11. TÉMOIGNAGES
   ============================================================ */
#temoignages { padding: 5rem 0; }

.testimonials-wrapper { position: relative; overflow: hidden; }

.testimonials-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-card {
  background: var(--blanc);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--ombre);
  min-width: 360px;
  flex-shrink: 0;
  border: 1px solid rgba(122, 158, 126, 0.08);
  display: flex;
  flex-direction: column;
}

.stars {
  color: var(--or);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 1.2rem;
}

.testimonial-text {
  font-family: var(--font-corps);
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--texte);
  margin-bottom: 1.5rem;
  font-style: italic;
  flex: 1;
  position: relative;
  padding-left: 1.8rem;
}

.testimonial-text::before {
  content: '\201C';
  font-family: var(--font-titre);
  font-size: 4rem;
  color: var(--or);
  opacity: 0.4;
  line-height: 0;
  position: absolute;
  left: 0;
  top: 0.8rem;
  font-style: normal;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--fond-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-titre);
  font-size: 1.2rem;
  color: var(--vert-fonce);
  flex-shrink: 0;
  border: 2px solid var(--or-clair);
}

.testimonial-name {
  font-family: var(--font-corps);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--vert-fonce);
}

.testimonial-meta {
  font-family: var(--font-corps);
  font-size: 0.75rem;
  color: var(--texte-leger);
  font-weight: 300;
}

.testimonials-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
  align-items: center;
}

.testi-prev,
.testi-next {
  background: none;
  border: 2px solid var(--vert-sauge);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  color: var(--vert-fonce);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testi-prev:hover,
.testi-next:hover {
  background: var(--vert-sauge);
  color: white;
}

.testimonials-dots { display: flex; gap: 8px; }

.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(61, 92, 64, 0.2);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.testi-dot.active { background: var(--or); }

/* ============================================================
   12. SECTION À PROPOS
   ============================================================ */
#apropos { padding: 5rem 0; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: center;
}

.about-photo-wrap { position: relative; }

.about-photo-inner {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--fond-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 450px;
}

.about-photo-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-photo-placeholder {
  text-align: center;
  color: var(--texte-leger);
  font-family: var(--font-corps);
  font-size: 0.85rem;
  padding: 2rem;
  border: 2px dashed rgba(122, 158, 126, 0.3);
  border-radius: var(--radius-lg);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.about-photo-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--or);
  color: var(--blanc);
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  text-align: center;
  box-shadow: var(--ombre);
}

.about-photo-accent p:first-child {
  font-family: var(--font-titre);
  font-size: 1.8rem;
  line-height: 1;
  color: var(--blanc);
}

.about-photo-accent p:last-child {
  font-family: var(--font-corps);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.9;
}

.about-tagline {
  font-family: var(--font-titre);
  font-size: 1.5rem;
  color: var(--or);
  font-style: italic;
  margin-bottom: 1.5rem;
  margin-top: -0.5rem;
}

.about-text {
  font-family: var(--font-corps);
  font-weight: 300;
  line-height: 1.9;
  color: var(--texte);
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--vert-fonce);
  color: var(--blanc);
  border-radius: var(--radius);
  padding: 0.55rem 1.1rem;
  font-family: var(--font-corps);
  font-size: 0.78rem;
  font-weight: 300;
}

.about-horaires {
  background: var(--fond-alt);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 2rem;
  border-left: 3px solid var(--or);
}

.about-horaires h4 { font-size: 0.95rem; margin-bottom: 0.75rem; }

.about-horaires p {
  font-family: var(--font-corps);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--texte-leger);
  margin-bottom: 0.25rem;
}

/* ============================================================
   13. PONT HYPNOSE
   ============================================================ */
.hypnose-bridge {
  background: linear-gradient(135deg, var(--vert-fonce) 0%, #1f3524 100%);
  padding: 1.5rem 0;
  position: relative;
  overflow: hidden;
}

.hypnose-bridge::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hypnose-bridge .section-title { color: var(--blanc); text-align: center; font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
.hypnose-bridge .section-pretitle { display: block; text-align: center; }
.hypnose-bridge .section-subtitle { color: rgba(255, 255, 255, 0.7); text-align: center; max-width: 600px; margin: 0 auto 0.8rem; }
.hypnose-bridge .section-header { max-width: 700px; }

.hypnose-bridge-inner {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* ============================================================
   14. SECTION CONTACT
   ============================================================ */
#contact { padding: 5rem 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.contact-info-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--fond-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--vert-fonce);
}

.contact-info-item h4 { font-size: 0.95rem; margin-bottom: 0.3rem; }

.contact-info-item p,
.contact-info-item a {
  font-family: var(--font-corps);
  font-weight: 300;
  color: var(--texte-leger);
  font-size: 0.9rem;
  line-height: 1.6;
}

.contact-info-item a:hover { color: var(--or); }

.contact-services { margin-top: 1rem; }
.contact-services h4 { margin-bottom: 1rem; font-size: 0.95rem; }

.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.service-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--fond-alt);
  border-radius: 20px;
  padding: 0.35rem 0.85rem;
  font-family: var(--font-corps);
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--texte-leger);
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 420px;
  box-shadow: var(--ombre);
}

.map-container iframe { width: 100%; height: 100%; border: none; }

.contact-cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* ============================================================
   15. FOOTER
   ============================================================ */
.footer { background: var(--vert-fonce); padding: 0.6rem 0 0; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0.4rem;
}

.footer-logo-wrap img {
  height: 36px;
  width: auto;
}

.footer-logo-main {
  font-family: var(--font-titre);
  font-size: 0.9rem;
  color: var(--blanc);
  font-weight: 500;
}

.footer-logo-sub {
  font-family: var(--font-corps);
  font-size: 0.55rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-desc {
  font-family: var(--font-corps);
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
}

.footer-col h4 {
  font-family: var(--font-corps);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.05rem; }

.footer-col a {
  font-family: var(--font-corps);
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
  text-decoration: none;
  line-height: 1.3;
}

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

.footer-col address { font-style: normal; }

.footer-col address p {
  font-family: var(--font-corps);
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
  margin-bottom: 0.15rem;
}

.footer-col address a { display: block; }

.footer-hours {
  font-family: var(--font-corps);
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 0.3rem;
  line-height: 1.4;
}

.footer-bottom {
  padding: 0.35rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.footer-bottom p {
  font-family: var(--font-corps);
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom p a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
}

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

.footer-gear {
  color: rgba(255, 255, 255, 0.2);
  transition: var(--transition);
  display: flex;
  align-items: center;
}

.footer-gear:hover { color: rgba(255, 255, 255, 0.7); }

/* ============================================================
   16. BARRE MOBILE CTA
   ============================================================ */
.mobile-cta-bar { display: none; }

/* ============================================================
   17. COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  background: var(--blanc);
  border-radius: var(--radius-lg);
  box-shadow: var(--ombre-forte);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  max-width: 860px;
  margin: 0 auto;
  border-left: 4px solid var(--or);
  transform: translateY(200%);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cookie-banner.visible { transform: translateY(0); }

.cookie-banner p {
  font-family: var(--font-corps);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--texte-leger);
  flex: 1;
  min-width: 200px;
}

.cookie-buttons {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* ============================================================
   18. PAGES SOUS-TRAITEMENTS
   ============================================================ */

/* Hero page traitement */
.page-hero {
  background: var(--vert-fonce);
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: 7rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--fond);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.page-hero-inner { max-width: 720px; }

.page-hero .section-pretitle {
  color: var(--or-clair);
  display: block;
  margin-bottom: 0.75rem;
}

.page-hero h1 {
  color: var(--blanc);
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 1rem;
}

.page-hero-subtitle {
  font-family: var(--font-corps);
  font-weight: 300;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201, 168, 76, 0.18);
  border: 1px solid var(--or);
  color: var(--or);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-family: var(--font-corps);
  font-size: 0.8rem;
  font-weight: 400;
  margin-bottom: 2rem;
  display: inline-flex;
}

.page-hero-prix {
  font-family: var(--font-titre);
  font-size: 2.5rem;
  color: var(--or);
  display: block;
  margin-bottom: 1.5rem;
}

.page-hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

/* Section symptômes */
.symptomes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.symptome-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--blanc);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  box-shadow: 0 2px 12px rgba(61, 92, 64, 0.06);
  border: 1px solid rgba(122, 158, 126, 0.1);
}

.symptome-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--or);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  color: white;
  font-size: 0.65rem;
  font-weight: bold;
}

.symptome-item p {
  font-family: var(--font-corps);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--texte);
  line-height: 1.6;
}

/* Ce qu'on travaille */
.travaille-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.travaille-item {
  background: var(--blanc);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 2px 15px rgba(61, 92, 64, 0.06);
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(122, 158, 126, 0.08);
}

.travaille-item:hover { transform: translateY(-4px); box-shadow: var(--ombre); }

.travaille-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.travaille-item h4 { font-size: 1rem; margin-bottom: 0.5rem; }

.travaille-item p {
  font-family: var(--font-corps);
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--texte-leger);
  line-height: 1.6;
}

/* FAQ accordion */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  border: 1px solid rgba(122, 158, 126, 0.18);
  background: var(--blanc);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  font-family: var(--font-corps);
  font-weight: 400;
  font-size: 0.92rem;
  color: var(--vert-fonce);
  transition: background 0.2s;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
}

.faq-question:hover { background: var(--fond-alt); }
.faq-question.active { background: var(--fond-alt); color: var(--or); }

.faq-chevron {
  transition: transform 0.3s;
  color: var(--or);
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-question.active .faq-chevron { transform: rotate(180deg); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }

.faq-answer-inner {
  padding: 0 1.5rem 1.5rem;
  font-family: var(--font-corps);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--texte-leger);
  line-height: 1.8;
}

/* Boîte tarif */
.tarif-box {
  background: var(--blanc);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--ombre);
  text-align: center;
  border: 2px solid var(--or);
  max-width: 500px;
  margin: 0 auto;
}

.tarif-prix {
  font-family: var(--font-titre);
  font-size: 4.5rem;
  color: var(--or);
  line-height: 1;
  margin: 1rem 0 0.5rem;
}

.tarif-mention {
  font-family: var(--font-corps);
  font-size: 0.82rem;
  color: var(--texte-leger);
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.tarif-garantie {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(61, 92, 64, 0.07);
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  font-family: var(--font-corps);
  font-size: 0.82rem;
  color: var(--vert-fonce);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(61, 92, 64, 0.12);
}

.tarif-separator { border: none; border-top: 1px solid var(--fond-alt); margin: 1.5rem 0; }

/* Autres traitements */
.autres-traitements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.autre-card {
  background: var(--blanc);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(122, 158, 126, 0.1);
  box-shadow: 0 2px 12px rgba(61, 92, 64, 0.05);
  display: flex;
  flex-direction: column;
}

.autre-card:hover { transform: translateY(-4px); box-shadow: var(--ombre); }
.autre-card-icon { font-size: 2.5rem; margin-bottom: 0.75rem; min-height: 140px; display: flex; align-items: center; justify-content: center; }
.autre-card h4 { font-size: 1.1rem; margin-bottom: 0.5rem; }

.autre-card p {
  font-family: var(--font-corps);
  font-size: 0.82rem;
  color: var(--texte-leger);
  margin-bottom: 1rem;
  flex: 1;
  font-weight: 300;
}

/* Section CTA final */
.cta-section {
  background: linear-gradient(135deg, var(--vert-fonce) 0%, #1f3524 100%);
  padding: 5rem 0;
  text-align: center;
}

.cta-section h2 { color: var(--blanc); margin-bottom: 1rem; }

.cta-section p {
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-corps);
  font-weight: 300;
  max-width: 520px;
  margin: 0 auto 2.5rem;
  font-size: 1rem;
  line-height: 1.8;
}

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

/* Témoignage unique (sous-pages) */
.temoignage-single {
  background: var(--blanc);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--ombre);
  max-width: 700px;
  margin: 0 auto;
  border-left: 4px solid var(--or);
}

/* Page confirmation */
.confirmation-hero {
  background: var(--vert-fonce);
  padding: 8rem 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.confirmation-hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--fond);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.confirmation-hero h1 { color: var(--blanc); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
.confirmation-hero p { color: rgba(255, 255, 255, 0.8); font-family: var(--font-corps); font-weight: 300; }

.confirmation-details {
  background: var(--blanc);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--ombre);
  max-width: 600px;
  margin: 0 auto;
}

.confirmation-detail-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--fond-alt);
}

.confirmation-detail-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.confirmation-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--fond-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--vert-fonce);
}

.confirmation-detail-item h4 { font-size: 0.82rem; color: var(--texte-leger); margin-bottom: 0.2rem; font-family: var(--font-corps); font-weight: 300; }
.confirmation-detail-item p { font-family: var(--font-corps); font-size: 0.95rem; font-weight: 600; color: var(--vert-fonce); }

#confetti-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10000;
}

/* Page légale */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 0;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin: 2rem 0 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--fond-alt);
}

.legal-content h2:first-child { border-top: none; margin-top: 0; }

.legal-content p {
  font-family: var(--font-corps);
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--texte);
  line-height: 1.9;
  margin-bottom: 1rem;
}

.legal-content ul {
  margin: 0.5rem 0 1rem 1.5rem;
  list-style: disc;
}

.legal-content li {
  font-family: var(--font-corps);
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--texte);
  line-height: 1.8;
  margin-bottom: 0.3rem;
}

.legal-content a { color: var(--vert-fonce); text-decoration: underline; }

/* Séance déroulé (subpage) */
.seance-timeline { max-width: 700px; margin: 0 auto; }

/* ============================================================
   19. ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); box-shadow: 0 0 0 8px rgba(61, 92, 64, 0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }
.animate-on-scroll.delay-5 { transition-delay: 0.5s; }

/* ============================================================
   20. UTILITAIRES
   ============================================================ */
.text-center { text-align: center; }
.text-gold { color: var(--or); }
.text-white { color: var(--blanc); }
.text-light { color: var(--texte-leger); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }

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

.img-placeholder {
  background: var(--fond-alt);
  border-radius: var(--radius);
  border: 2px dashed rgba(122, 158, 126, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  font-family: var(--font-corps);
  font-size: 0.82rem;
  color: var(--texte-leger);
  text-align: center;
  padding: 2rem;
  min-height: 200px;
}

.divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--or), var(--vert-sauge));
  margin: 1.5rem 0;
  border-radius: 2px;
}

.divider-center { margin: 1.5rem auto; }

/* ============================================================
   20b. SECTION LE CABINET
   ============================================================ */
.cabinet {
  background: var(--blanc-casse);
  padding: 6rem 0;
}

.cabinet .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.cabinet-gallery {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--vert-sauge) transparent;
}

.cabinet-gallery::-webkit-scrollbar {
  height: 6px;
}

.cabinet-gallery::-webkit-scrollbar-track {
  background: transparent;
}

.cabinet-gallery::-webkit-scrollbar-thumb {
  background: var(--vert-sauge);
  border-radius: 3px;
}

.cabinet-photo {
  flex: 0 0 70%;
  max-width: 400px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(61, 92, 64, 0.12);
  transition: transform var(--transition-base);
  scroll-snap-align: center;
}

.cabinet-photo:hover {
  transform: scale(1.02);
}

.cabinet-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.cabinet-text {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  color: var(--texte-leger);
  font-size: 1.05rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .cabinet-photo {
    flex: 0 0 85%;
    max-width: 350px;
  }
}

/* ============================================================
   21. RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255, 255, 255, 0.08); }
  .stat-item:last-child { border-bottom: none; }
  .methode-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo-wrap { max-width: 400px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .equipment-inner { grid-template-columns: 1fr; gap: 2rem; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .addictions-grid { grid-template-columns: 1fr; }
  .card-medaillon-sucre { grid-column: span 1; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .section { padding: 3.5rem 0; }
  .grid-2,
  .grid-3,
  .travaille-grid,
  .autres-traitements-grid,
  .addictions-grid { grid-template-columns: 1fr; }
  .card-medaillon-sucre { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .testimonial-card { min-width: 280px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo-accent { right: 0; bottom: -10px; }
  .tarif-box { padding: 2rem 1.5rem; }
  .tarif-prix { font-size: 3.5rem; }
  .page-hero { padding: 6rem 0 4rem; }
  .page-hero::before { display: none; }

  /* Mobile CTA bar visible */
  .mobile-cta-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    background: var(--blanc);
    padding: 0.75rem 1rem;
    gap: 0.75rem;
    box-shadow: 0 -4px 20px rgba(61, 92, 64, 0.15);
  }

  .mobile-cta-bar .btn-primary {
    flex: 1;
    font-size: 0.82rem;
    padding: 0.75rem 1rem;
  }

  .mobile-cta-bar .btn-secondary {
    font-size: 0.82rem;
    padding: 0.75rem 1rem;
    white-space: nowrap;
  }

  main { padding-bottom: 75px; }
}

@media (max-width: 480px) {
  h2 { font-size: 1.8rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255, 255, 255, 0.08); }
  .stat-number { font-size: 2.2rem; }
  .cookie-banner { flex-direction: column; left: 1rem; right: 1rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .about-photo-inner { min-height: 300px; }
  .confirmation-details { padding: 1.5rem; }
  .section-header { margin-bottom: 2.5rem; }
}
