/* ============================================
   Thérapeute.club — Template Site Thérapeute
   Direction : éditorial / slow-living / raffiné
   ============================================ */

/* === RESET === */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, ul, ol, li, figure, blockquote {
  margin: 0;
  padding: 0;
}
ul { list-style: none; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { background: none; border: none; font: inherit; cursor: pointer; color: inherit; }

/* === VARIABLES === */

:root {
  /* Palette — ivoire chaud, vert sauge, terracotta */
  --ivory: #F7F2EA;
  --ivory-warm: #F1E9DB;
  --paper: #FBF8F2;
  --cream: #EFE5D3;

  --sage-900: #1E2B22;
  --sage-800: #2D3E31;
  --sage-700: #3D5242;
  --sage-500: #6B8070;
  --sage-300: #A8B8AA;
  --sage-100: #D9DFD0;

  --terracotta: #B8604A;
  --terracotta-soft: #D6947E;
  --terracotta-pale: #F3DFD2;

  --ink: #1A1814;
  --ink-soft: #3D3830;
  --mute: #75695A;
  --hair: #D8CEBE;

  /* Typographie */
  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --w-max: 1240px;
  --w-narrow: 760px;
  --radius: 3px;
  --shadow-soft: 0 20px 40px -18px rgba(30, 43, 34, 0.15);
  --shadow-card: 0 1px 3px rgba(30, 43, 34, 0.04), 0 12px 30px -15px rgba(30, 43, 34, 0.12);
}

/* === BASE === */

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

/* Grain subtil sur le body */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--sage-900);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

em, .italic {
  font-style: italic;
  font-weight: 400;
}

.container {
  max-width: var(--w-max);
  margin: 0 auto;
  padding: 0 32px;
}

.narrow {
  max-width: var(--w-narrow);
  margin-left: auto;
  margin-right: auto;
}

/* Eyebrow uppercase */
.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 20px;
  display: inline-block;
}

/* Chiffres romains — pour numérotation de section */
.roman {
  font-family: var(--font-display);
  font-size: 13px;
  font-style: italic;
  letter-spacing: 0.1em;
  color: var(--mute);
  text-transform: uppercase;
}

/* === BOUTONS === */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
}

.btn-primary {
  background: var(--sage-800);
  color: var(--ivory);
}

.btn-primary:hover {
  background: var(--sage-900);
  transform: translateY(-1px);
  box-shadow: 0 10px 25px -10px rgba(30, 43, 34, 0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--sage-900);
  border: 1px solid var(--sage-300);
}

.btn-ghost:hover {
  background: var(--sage-100);
  border-color: var(--sage-700);
}

.btn-text {
  color: var(--sage-800);
  padding: 8px 0;
  border-bottom: 1px solid var(--sage-800);
  font-weight: 500;
}

.btn-text:hover { color: var(--terracotta); border-color: var(--terracotta); }

/* === HEADER === */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 242, 234, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
  /* Étendre dans la safe area iOS (notch / barre d'état) */
  padding-top: env(safe-area-inset-top);
}

.header.scrolled { border-bottom-color: var(--hair); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 40px;
  max-width: var(--w-max);
  margin: 0 auto;
  gap: 20px;
  padding-left: max(40px, env(safe-area-inset-left));
  padding-right: max(40px, env(safe-area-inset-right));
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-shrink: 0;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--sage-900);
}

.brand-tag {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: nowrap;
}

.nav-desktop a {
  font-size: 14px;
  color: var(--ink-soft);
  font-weight: 400;
  position: relative;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-desktop a:hover { color: var(--sage-900); }

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

.nav-desktop a:hover::after { width: 100%; }

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-tel {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--sage-800);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}

.header-tel svg { width: 15px; height: 15px; }

.header .btn {
  padding: 12px 22px;
  font-size: 13px;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--sage-900);
  margin: 5px 0;
  transition: all 0.3s;
}

/* === HERO === */

.hero {
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 10%;
  right: -5%;
  width: 45%;
  height: 80%;
  background: radial-gradient(circle at center, var(--terracotta-pale) 0%, transparent 65%);
  opacity: 0.55;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 5%;
  left: -10%;
  width: 35%;
  height: 60%;
  background: radial-gradient(circle at center, var(--sage-100) 0%, transparent 60%);
  opacity: 0.4;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content .eyebrow { margin-bottom: 24px; }

.hero-content h1 {
  font-size: clamp(42px, 5.8vw, 78px);
  line-height: 1.02;
  margin-bottom: 28px;
  color: var(--sage-900);
}

.hero-content h1 em {
  font-style: italic;
  color: var(--terracotta);
  font-weight: 400;
}

.hero-lede {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-meta {
  display: flex;
  gap: 40px;
  padding-top: 36px;
  border-top: 1px solid var(--hair);
}

.hero-meta-item .label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 6px;
}

.hero-meta-item .value {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--sage-900);
  font-style: italic;
}

/* Hero visuel */
.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
}

.hero-portrait {
  width: 100%;
  height: 100%;
  background: linear-gradient(165deg, var(--cream) 0%, var(--ivory-warm) 40%, var(--sage-100) 100%);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
}

.hero-decor {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-placeholder {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 30px;
}

.hero-placeholder-circle {
  width: 120px;
  height: 120px;
  margin: 0 auto 22px;
  border: 1px dashed rgba(61, 82, 66, 0.45);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(247, 242, 234, 0.35);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-portrait:hover .hero-placeholder-circle {
  transform: scale(1.05) rotate(-2deg);
}

.hero-placeholder-circle svg {
  width: 46px;
  height: 46px;
  color: var(--sage-700);
  opacity: 0.55;
}

.hero-placeholder-label {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  font-weight: 500;
  color: var(--sage-900);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}

.hero-placeholder-sub {
  font-family: var(--font-body);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-700);
  opacity: 0.75;
  font-weight: 500;
}

.hero-badge {
  position: absolute;
  top: 28px;
  left: -28px;
  background: var(--ivory);
  padding: 14px 22px;
  border-radius: 100px;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--sage-900);
  transform: rotate(-2deg);
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--terracotta);
}

.hero-quote {
  position: absolute;
  bottom: -30px;
  right: -40px;
  background: var(--ivory);
  padding: 28px 32px;
  max-width: 280px;
  box-shadow: var(--shadow-card);
  border-radius: var(--radius);
  transform: rotate(1.5deg);
}

.hero-quote-text {
  font-family: var(--font-display);
  font-size: 17px;
  font-style: italic;
  line-height: 1.4;
  color: var(--sage-900);
  margin-bottom: 12px;
}

.hero-quote-author {
  font-size: 12px;
  color: var(--mute);
  letter-spacing: 0.05em;
}

/* === SECTIONS GÉNÉRIQUES === */

section {
  padding: 120px 0;
  position: relative;
}

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 80px;
}

.section-head h2 {
  font-size: clamp(34px, 4.2vw, 52px);
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--sage-900);
}

.section-head h2 em {
  font-style: italic;
  color: var(--terracotta);
}

.section-head p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
}

/* === RECONNAISSANCE / DOULEURS === */

.recognition {
  background: var(--paper);
  position: relative;
}

.recognition-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.recognition-left {
  position: sticky;
  top: 140px;
}

.recognition-left .eyebrow { color: var(--sage-700); }

.recognition-left h2 {
  font-size: clamp(34px, 4vw, 48px);
  margin-bottom: 24px;
}

.recognition-left p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
}

.recognition-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.recognition-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--hair);
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.recognition-item:first-child { border-top: 1px solid var(--hair); }

.recognition-item .num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--terracotta);
  min-width: 24px;
  padding-top: 3px;
}

.recognition-item .body {
  flex: 1;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 400;
  color: var(--sage-900);
  line-height: 1.4;
}

/* === CE QUI PEUT CHANGER === */

.promise {
  background: var(--sage-900);
  color: var(--ivory);
  padding: 140px 0;
}

.promise .eyebrow { color: var(--terracotta-soft); }

.promise .section-head h2 {
  color: var(--ivory);
  font-size: clamp(38px, 5vw, 60px);
}

.promise .section-head h2 em { color: var(--terracotta-soft); }

.promise .section-head p { color: rgba(247, 242, 234, 0.75); }

.promise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: rgba(247, 242, 234, 0.1);
  margin-top: 60px;
}

.promise-item {
  background: var(--sage-900);
  padding: 48px 32px;
  transition: background 0.4s ease;
}

.promise-item:hover { background: var(--sage-800); }

.promise-item .roman {
  color: var(--terracotta-soft);
  margin-bottom: 24px;
  display: block;
}

.promise-item h3 {
  font-size: 24px;
  color: var(--ivory);
  margin-bottom: 14px;
  font-weight: 500;
}

.promise-item p {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(247, 242, 234, 0.75);
}

/* === À PROPOS / MA DÉMARCHE === */

.about {
  padding: 140px 0;
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
  align-items: center;
}

.about-visual {
  position: relative;
  aspect-ratio: 3 / 4;
}

.about-img {
  width: 100%;
  height: 100%;
  background: linear-gradient(195deg, var(--ivory-warm) 0%, var(--cream) 45%, var(--sage-100) 100%);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
}

.about-decor {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.about-placeholder {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 30px;
}

.about-placeholder-circle {
  width: 110px;
  height: 110px;
  margin: 0 auto 20px;
  border: 1px dashed rgba(61, 82, 66, 0.45);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(247, 242, 234, 0.35);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.about-img:hover .about-placeholder-circle {
  transform: scale(1.05) rotate(2deg);
}

.about-placeholder-circle svg {
  width: 42px;
  height: 42px;
  color: var(--sage-700);
  opacity: 0.55;
}

.about-placeholder-label {
  font-family: var(--font-display);
  font-size: 19px;
  font-style: italic;
  font-weight: 500;
  color: var(--sage-900);
  margin-bottom: 5px;
}

.about-placeholder-sub {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-700);
  opacity: 0.75;
  font-weight: 500;
}

.about-signature {
  position: absolute;
  bottom: -40px;
  right: -20px;
  background: var(--ivory);
  padding: 24px 28px;
  max-width: 260px;
  box-shadow: var(--shadow-card);
  border-left: 3px solid var(--terracotta);
}

.about-signature .label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 8px;
}

.about-signature .formations {
  font-family: var(--font-display);
  font-size: 15px;
  font-style: italic;
  color: var(--sage-900);
  line-height: 1.4;
}

.about-content .eyebrow { color: var(--sage-700); }

.about-content h2 {
  font-size: clamp(36px, 4.4vw, 54px);
  margin-bottom: 32px;
}

.about-content h2 em { color: var(--terracotta); font-style: italic; }

.about-content p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 20px;
}

.about-content p:last-of-type { margin-bottom: 36px; }

.about-content .signoff {
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  color: var(--sage-900);
  margin-top: 36px;
}

/* === PROBLÉMATIQUES ACCOMPAGNÉES === */

.topics {
  background: var(--paper);
  padding: 140px 0;
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hair);
  border: 1px solid var(--hair);
  margin-top: 60px;
}

.topic-card {
  background: var(--paper);
  padding: 44px 36px;
  transition: background 0.4s ease;
  position: relative;
}

.topic-card:hover { background: var(--ivory); }

.topic-card .num {
  font-family: var(--font-display);
  font-size: 48px;
  font-style: italic;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 20px;
  opacity: 0.6;
}

.topic-card h3 {
  font-size: 23px;
  font-weight: 500;
  color: var(--sage-900);
  margin-bottom: 14px;
  line-height: 1.25;
}

.topic-card p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--mute);
}

/* === DÉROULÉ D'UNE SÉANCE === */

.journey {
  padding: 140px 0;
}

.journey-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-top: 60px;
  position: relative;
}

.journey-steps::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--hair) 20%, var(--hair) 80%, transparent);
}

.journey-step {
  position: relative;
  text-align: center;
}

.journey-step .marker {
  width: 72px;
  height: 72px;
  margin: 0 auto 28px;
  border-radius: 50%;
  background: var(--ivory);
  border: 1px solid var(--hair);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 28px;
  font-style: italic;
  color: var(--terracotta);
  position: relative;
  z-index: 1;
}

.journey-step h3 {
  font-size: 22px;
  color: var(--sage-900);
  margin-bottom: 12px;
  font-weight: 500;
}

.journey-step .duration {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
  display: block;
}

.journey-step p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* === TARIFS === */

.pricing {
  background: var(--ivory-warm);
  padding: 140px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1040px;
  margin: 60px auto 0;
}

.pricing-card {
  background: var(--paper);
  padding: 48px 36px;
  border-radius: var(--radius);
  border: 1px solid var(--hair);
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.pricing-card.featured {
  background: var(--sage-900);
  color: var(--ivory);
  border-color: var(--sage-900);
}

.pricing-card.featured h3,
.pricing-card.featured .price { color: var(--ivory); }

.pricing-card.featured .price-unit,
.pricing-card.featured p,
.pricing-card.featured .features li { color: rgba(247, 242, 234, 0.75); }

.pricing-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--terracotta);
  color: var(--ivory);
  padding: 6px 18px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 100px;
  font-weight: 500;
}

.pricing-card h3 {
  font-size: 26px;
  color: var(--sage-900);
  margin-bottom: 8px;
  font-weight: 500;
}

.pricing-card .duration-label {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 32px;
  display: block;
}

.pricing-card.featured .duration-label { color: rgba(247, 242, 234, 0.6); }

.pricing-card .price {
  font-family: var(--font-display);
  font-size: 54px;
  font-weight: 500;
  color: var(--sage-900);
  line-height: 1;
  margin-bottom: 6px;
}

.pricing-card .price-unit {
  font-size: 13px;
  color: var(--mute);
  display: block;
  margin-bottom: 28px;
}

.pricing-card .features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.pricing-card .features li {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-soft);
  padding-left: 22px;
  position: relative;
}

.pricing-card .features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 1px;
  background: var(--terracotta);
}

.pricing-note {
  text-align: center;
  font-size: 13px;
  color: var(--mute);
  margin-top: 48px;
  font-style: italic;
  font-family: var(--font-display);
  font-size: 16px;
}

/* === TÉMOIGNAGES === */

.testimonials {
  padding: 140px 0;
}

.testimonials-rating {
  text-align: center;
  margin-bottom: 80px;
}

.testimonials-rating .stars {
  font-size: 20px;
  color: var(--terracotta);
  letter-spacing: 4px;
  margin-bottom: 12px;
}

.testimonials-rating .note {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 500;
  color: var(--sage-900);
  line-height: 1;
}

.testimonials-rating .note em {
  font-size: 36px;
  color: var(--mute);
  font-style: italic;
}

.testimonials-rating .sub {
  font-size: 14px;
  color: var(--mute);
  margin-top: 14px;
  letter-spacing: 0.02em;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card {
  background: var(--paper);
  padding: 36px;
  border-radius: var(--radius);
  border: 1px solid var(--hair);
  position: relative;
}

.testimonial-card .quote-mark {
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 0.8;
  color: var(--terracotta-pale);
  position: absolute;
  top: 20px;
  right: 28px;
  font-weight: 500;
}

.testimonial-card .text {
  font-family: var(--font-display);
  font-size: 17px;
  font-style: italic;
  line-height: 1.55;
  color: var(--sage-900);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--hair);
}

.testimonial-card .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--terracotta-pale);
  color: var(--terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  font-style: italic;
}

.testimonial-card .info .name {
  font-weight: 500;
  color: var(--sage-900);
  font-size: 14px;
}

.testimonial-card .info .theme {
  font-size: 12px;
  color: var(--mute);
  letter-spacing: 0.02em;
}

/* === FAQ === */

.faq {
  background: var(--paper);
  padding: 140px 0;
}

.faq-wrap {
  max-width: 820px;
  margin: 60px auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--hair);
}

.faq-item:first-child { border-top: 1px solid var(--hair); }

.faq-question {
  width: 100%;
  text-align: left;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 500;
  color: var(--sage-900);
  transition: color 0.2s;
}

.faq-question:hover { color: var(--terracotta); }

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
  transition: transform 0.3s ease;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--terracotta);
  transition: opacity 0.3s;
}

.faq-icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  transform: translateY(-50%);
}

.faq-icon::after {
  left: 50%;
  top: 0;
  height: 100%;
  width: 1px;
  transform: translateX(-50%);
}

.faq-item.active .faq-icon::after { opacity: 0; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer { max-height: 500px; }

.faq-answer-inner {
  padding: 0 0 32px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-soft);
}

/* === CONTACT === */

.contact {
  padding: 140px 0;
  background: var(--sage-900);
  color: var(--ivory);
  position: relative;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, var(--sage-800) 0%, transparent 60%);
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  position: relative;
  z-index: 1;
}

.contact-left .eyebrow { color: var(--terracotta-soft); }

.contact-left h2 {
  color: var(--ivory);
  font-size: clamp(38px, 5vw, 56px);
  margin-bottom: 24px;
}

.contact-left h2 em { color: var(--terracotta-soft); }

.contact-left p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(247, 242, 234, 0.8);
  margin-bottom: 40px;
  max-width: 440px;
}

.contact-coords {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-coord {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid rgba(247, 242, 234, 0.15);
}

.contact-coord:last-child { border-bottom: 1px solid rgba(247, 242, 234, 0.15); }

.contact-coord .icon {
  width: 20px;
  height: 20px;
  color: var(--terracotta-soft);
  flex-shrink: 0;
  margin-top: 3px;
}

.contact-coord .label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247, 242, 234, 0.55);
  margin-bottom: 4px;
  display: block;
}

.contact-coord .value {
  font-size: 17px;
  color: var(--ivory);
  font-weight: 400;
}

.contact-coord a.value:hover { color: var(--terracotta-soft); }

.contact-map {
  aspect-ratio: 1 / 1;
  background: var(--sage-800);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(247, 242, 234, 0.15);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  filter: sepia(15%) saturate(60%) hue-rotate(30deg);
  border: 0;
}

/* === FOOTER === */

.footer {
  background: var(--sage-900);
  color: rgba(247, 242, 234, 0.6);
  padding: 48px 0 36px;
  border-top: 1px solid rgba(247, 242, 234, 0.1);
  font-size: 13px;
}

.footer-inner {
  max-width: var(--w-max);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer .brand-name {
  color: var(--ivory);
  font-size: 18px;
}

.footer a:hover { color: var(--terracotta-soft); }

/* === BANNER MARQUE + CONTACT WILLIAM === */

.marque-banner {
  background: var(--terracotta-pale);
  color: var(--sage-900);
  padding: 32px 24px;
  text-align: center;
  border-top: 1px solid var(--terracotta-soft);
}

.marque-banner-inner {
  max-width: 720px;
  margin: 0 auto;
}

.marque-banner-text {
  font-size: 14px;
  line-height: 1.55;
  margin: 0 0 8px;
}

.marque-banner strong { font-weight: 600; }

.marque-banner-sub {
  display: block;
  margin: 0 0 20px;
  font-size: 13px;
  font-style: italic;
  font-family: var(--font-display);
  color: var(--sage-800);
  opacity: 0.85;
}

.marque-banner-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.marque-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.marque-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.marque-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px -8px rgba(30, 43, 34, 0.3);
}

.marque-btn-whatsapp {
  background: #25D366;
  color: white;
}
.marque-btn-whatsapp:hover {
  background: #20BD5A;
}

.marque-btn-tel {
  background: white;
  color: var(--sage-900);
  border: 1px solid var(--hair);
}
.marque-btn-tel:hover {
  background: var(--ivory);
  border-color: var(--sage-300);
}

/* === HERO CAPSULE (remplace l'eyebrow texte) === */

.hero-capsule {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px 10px 16px;
  background: var(--paper);
  border: 1px solid var(--sage-300);
  border-radius: 100px;
  margin-bottom: 28px;
  box-shadow: 0 1px 3px rgba(30, 43, 34, 0.04);
  position: relative;
  overflow: hidden;
}

.hero-capsule::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, var(--terracotta-pale) 100%);
  opacity: 0.3;
  z-index: 0;
}

.hero-capsule > * { position: relative; z-index: 1; }

.capsule-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--terracotta);
  box-shadow: 0 0 0 3px var(--terracotta-pale);
  flex-shrink: 0;
  animation: pulse-dot 2.5s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px var(--terracotta-pale); }
  50%      { box-shadow: 0 0 0 5px rgba(216, 148, 126, 0.3); }
}

.capsule-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-900);
}

.capsule-sep {
  width: 1px;
  height: 14px;
  background: var(--sage-300);
  flex-shrink: 0;
}

.capsule-location {
  font-family: var(--font-display);
  font-size: 15px;
  font-style: italic;
  font-weight: 500;
  color: var(--terracotta);
  line-height: 1;
}

.capsule-location sup {
  font-size: 0.6em;
  margin-left: 1px;
}

/* === MOBILE DRAWER === */

.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-drawer.open {
  pointer-events: auto;
  opacity: 1;
}

.drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(30, 43, 34, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(360px, 88vw);
  height: 100%;
  background: var(--ivory);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.2, 0.85, 0.25, 1);
  box-shadow: -20px 0 60px -20px rgba(30, 43, 34, 0.3);
  overflow-y: auto;
}

.mobile-drawer.open .drawer-panel { transform: translateX(0); }

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid var(--hair);
}

.drawer-head .brand {
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.drawer-head .brand-name { font-size: 20px; }

.drawer-head .brand-tag { font-size: 10px; }

.drawer-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--sage-900);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  flex-shrink: 0;
}

.drawer-close:hover { background: var(--sage-100); }

.drawer-nav {
  display: flex;
  flex-direction: column;
  padding: 20px 28px;
  flex: 1;
}

.drawer-nav a {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--sage-900);
  padding: 16px 0;
  border-bottom: 1px solid var(--hair);
  transition: color 0.2s, padding-left 0.2s;
  position: relative;
}

.drawer-nav a::before {
  content: "→";
  position: absolute;
  left: -24px;
  opacity: 0;
  color: var(--terracotta);
  transition: all 0.3s ease;
  font-size: 18px;
}

.drawer-nav a:hover {
  color: var(--terracotta);
  padding-left: 4px;
}

.drawer-nav a:hover::before {
  opacity: 1;
  left: 0;
  padding-right: 28px;
}

.drawer-footer {
  padding: 20px 28px 32px;
  border-top: 1px solid var(--hair);
  background: var(--paper);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: stretch;
}

.drawer-tel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  background: var(--ivory);
  border: 1px solid var(--hair);
  border-radius: var(--radius);
  color: var(--sage-900);
  transition: all 0.2s;
  aspect-ratio: 1;
  min-width: 48px;
}

.drawer-tel svg {
  width: 18px;
  height: 18px;
}

.drawer-tel:hover {
  background: var(--sage-100);
  border-color: var(--sage-300);
}

.drawer-cta {
  width: 100%;
  justify-content: center;
  padding: 14px 18px;
  font-size: 14px;
}

/* Block scroll body quand drawer ouvert */
body.drawer-open { overflow: hidden; }

/* === FLOATING CTA === */

.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 80;
  background: var(--ivory);
  border: 1px solid var(--hair);
  border-radius: 14px;
  box-shadow: 0 20px 50px -15px rgba(30, 43, 34, 0.35),
              0 1px 3px rgba(30, 43, 34, 0.08);
  padding: 18px 22px 18px 22px;
  max-width: 320px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.98);
  transition: all 0.45s cubic-bezier(0.2, 0.85, 0.25, 1);
  overflow: hidden;
}

.floating-cta::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 90px;
  height: 90px;
  background: radial-gradient(circle at top right, var(--terracotta-pale) 0%, transparent 70%);
  opacity: 0.6;
  pointer-events: none;
}

.floating-cta.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.floating-cta.dismissed {
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.98);
}

.floating-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  color: var(--mute);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 2;
}

.floating-close:hover {
  background: var(--paper);
  color: var(--sage-900);
}

.floating-content {
  position: relative;
  z-index: 1;
}

.floating-text {
  margin-bottom: 14px;
  padding-right: 16px;
}

.floating-title {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--sage-900);
  line-height: 1.2;
  margin-bottom: 4px;
}

.floating-title::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--terracotta);
  border-radius: 50%;
  margin-left: 6px;
  margin-bottom: 2px;
  vertical-align: middle;
}

.floating-sub {
  display: block;
  font-size: 13.5px;
  color: var(--mute);
  line-height: 1.4;
  font-style: italic;
  font-family: var(--font-display);
  font-size: 15px;
}

.floating-actions {
  display: flex;
  gap: 8px;
  align-items: stretch;
}

.floating-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: 8px;
  transition: all 0.25s ease;
  font-family: var(--font-body);
}

.floating-btn-tel {
  background: var(--paper);
  color: var(--sage-900);
  border: 1px solid var(--sage-300);
  flex-shrink: 0;
  padding: 10px 12px;
}

.floating-btn-tel:hover {
  background: var(--sage-100);
  border-color: var(--sage-700);
}

.floating-btn-rdv {
  background: var(--sage-800);
  color: var(--ivory);
  flex: 1;
}

.floating-btn-rdv:hover {
  background: var(--sage-900);
  transform: translateY(-1px);
}

/* === ANIMATIONS === */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in.delay-1 { transition-delay: 0.15s; }
.fade-in.delay-2 { transition-delay: 0.3s; }
.fade-in.delay-3 { transition-delay: 0.45s; }

/* === RESPONSIVE === */

@media (max-width: 1024px) {
  .hero-grid,
  .about-grid,
  .recognition-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero-visual { max-width: 500px; margin: 0 auto; }
  .about-visual { max-width: 400px; margin: 0 auto; }

  .recognition-left { position: static; }

  .topics-grid,
  .pricing-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .journey-steps {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .journey-steps::before { display: none; }
}

@media (max-width: 860px) {
  .nav-desktop { display: none; }
  .header-cta .btn { display: none; }
  .header-cta .header-tel .phone-label { display: none; }
  .nav-toggle { display: block; }

  .header-inner {
    padding: 18px 24px;
  }
}

@media (max-width: 680px) {
  .container { padding: 0 20px; }
  .header-inner {
    padding: 16px max(20px, env(safe-area-inset-right)) 16px max(20px, env(safe-area-inset-left));
  }

  .header-cta { gap: 8px; }

  .header-tel {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    justify-content: center;
    border: 1px solid var(--hair);
    padding: 0;
    transition: all 0.2s;
  }

  .header-tel:hover {
    background: var(--paper);
    border-color: var(--sage-300);
  }

  /* Espacements sections — réduits sur mobile */
  section { padding: 60px 0; }
  .section-head { margin-bottom: 40px; }
  .section-head p { font-size: 15px; }

  /* === HERO mobile === */
  .hero { padding: 60px 0 40px; }
  .hero-grid { gap: 40px; }
  .hero-content h1 { font-size: 42px; }
  .hero-lede { font-size: 16px; margin-bottom: 28px; }

  .hero-capsule {
    padding: 8px 16px 8px 14px;
    gap: 10px;
  }
  .capsule-label { font-size: 11px; }
  .capsule-location { font-size: 14px; }

  /* Hero stats en ligne (3 colonnes compactes) */
  .hero-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding-top: 28px;
  }
  .hero-meta-item .label {
    font-size: 10px;
    letter-spacing: 0.1em;
  }
  .hero-meta-item .value {
    font-size: 20px;
  }

  .hero-ctas { flex-direction: column; gap: 10px; margin-bottom: 32px; }
  .hero-ctas .btn { width: 100%; justify-content: center; }

  /* Hero visual — compact et sans chevauchement */
  .hero-visual {
    max-width: 100%;
    aspect-ratio: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .hero-portrait {
    aspect-ratio: 4/3;
    width: 100%;
  }
  .hero-placeholder {
    padding: 20px;
  }
  .hero-placeholder-circle {
    width: 80px;
    height: 80px;
    margin-bottom: 14px;
  }
  .hero-placeholder-circle svg {
    width: 32px;
    height: 32px;
  }
  .hero-placeholder-label {
    font-size: 17px;
  }
  .hero-placeholder-sub {
    font-size: 9.5px;
  }

  /* FIX CHEVAUCHEMENT HERO : on repositionne les badges hors de la zone portrait */
  .hero-badge {
    position: static;
    transform: none;
    margin-bottom: 14px;
    display: inline-flex;
    font-size: 12px;
    padding: 10px 16px;
  }
  .hero-quote {
    position: static;
    transform: none;
    max-width: 100%;
    margin-top: 14px;
    padding: 18px 20px;
  }
  .hero-quote-text {
    font-size: 15px;
  }
  .hero-quote-author {
    font-size: 11px;
  }

  /* === RECOGNITION (douleurs) === */
  .recognition-grid { gap: 36px; }
  .recognition-left h2 { font-size: 32px; }
  .recognition-left p { font-size: 15px; }
  .recognition-item {
    padding: 18px 0;
    gap: 14px;
  }
  .recognition-item .body {
    font-size: 16px;
    line-height: 1.45;
  }

  /* === PROMISE (ce qui peut changer) === */
  .promise { padding: 70px 0; }
  .promise .section-head h2 {
    font-size: 32px;
  }
  .promise-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    margin-top: 36px;
  }
  .promise-item {
    padding: 28px 18px;
  }
  .promise-item .roman {
    font-size: 12px;
    margin-bottom: 14px;
  }
  .promise-item h3 {
    font-size: 17px;
    margin-bottom: 8px;
  }
  .promise-item p {
    font-size: 13px;
    line-height: 1.5;
  }

  /* === ABOUT === */
  .about { padding: 70px 0; }
  .about-grid { gap: 40px; }
  .about-visual {
    max-width: 100%;
    aspect-ratio: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .about-img {
    aspect-ratio: 4/3;
    width: 100%;
  }
  .about-placeholder { padding: 20px; }
  .about-placeholder-circle {
    width: 72px;
    height: 72px;
    margin-bottom: 12px;
  }
  .about-placeholder-circle svg {
    width: 28px;
    height: 28px;
  }
  .about-placeholder-label { font-size: 16px; }
  .about-placeholder-sub { font-size: 9px; }

  /* FIX CHEVAUCHEMENT ABOUT : signature sort du conteneur */
  .about-signature {
    position: static;
    transform: none;
    margin-top: 20px;
    max-width: 100%;
    box-shadow: var(--shadow-card);
  }
  .about-content h2 {
    font-size: 30px;
  }
  .about-content p {
    font-size: 15px;
    line-height: 1.7;
  }
  .about-content .signoff {
    font-size: 19px;
  }

  /* === TOPICS (ce que j'accompagne) === */
  .topics { padding: 70px 0; }
  .topics-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 36px;
  }
  .topic-card {
    padding: 24px 18px;
  }
  .topic-card .num {
    font-size: 32px;
    margin-bottom: 12px;
  }
  .topic-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
    line-height: 1.2;
  }
  .topic-card p {
    font-size: 12.5px;
    line-height: 1.5;
  }

  /* === JOURNEY === */
  .journey { padding: 70px 0; }
  .journey-steps {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 36px;
  }
  .journey-steps::before { display: none; }
  .journey-step .marker {
    width: 56px;
    height: 56px;
    font-size: 22px;
    margin-bottom: 16px;
  }
  .journey-step h3 { font-size: 18px; }
  .journey-step p { font-size: 14px; }

  /* === PRICING === */
  .pricing { padding: 70px 0; }
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 36px;
  }
  .pricing-card.featured { order: -1; }
  .pricing-card {
    padding: 32px 24px;
  }
  .pricing-card .price {
    font-size: 44px;
  }

  /* === TESTIMONIALS === */
  .testimonials { padding: 70px 0; }
  .testimonials-rating { margin-bottom: 36px; }
  .testimonials-rating .note {
    font-size: 48px;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .testimonial-card {
    padding: 28px 24px;
  }
  .testimonial-card .text {
    font-size: 15px;
  }

  /* === FAQ === */
  .faq { padding: 70px 0; }
  .faq-wrap { margin-top: 36px; }
  .faq-question {
    padding: 22px 0;
    font-size: 17px;
    gap: 16px;
  }
  .faq-answer-inner {
    font-size: 14.5px;
  }

  /* === CONTACT === */
  .contact { padding: 70px 0; }
  .contact-grid { gap: 40px; }
  .contact-left h2 {
    font-size: 32px;
  }
  .contact-left p { font-size: 15px; }
  .contact-coord .value { font-size: 15px; }
  .contact-map { aspect-ratio: 4/3; }

  /* === FOOTER === */
  .footer-inner { flex-direction: column; text-align: center; }

  /* === Floating CTA mobile === */
  .floating-cta {
    left: max(16px, env(safe-area-inset-left));
    right: max(16px, env(safe-area-inset-right));
    bottom: max(16px, env(safe-area-inset-bottom));
    max-width: none;
    padding: 16px 18px;
  }
  .floating-text { padding-right: 24px; }
  .floating-title { font-size: 17px; }
  .floating-sub { font-size: 13px; }
  .floating-btn-tel span { display: none; }
  .floating-btn-tel { padding: 10px 14px; }

  /* === BANNIÈRE MARQUE mobile === */
  .marque-banner { padding: 28px 20px; }
  .marque-banner-text { font-size: 13px; }
  .marque-banner-sub { font-size: 12px; margin-bottom: 18px; }
  .marque-banner-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .marque-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 15px;
  }
}

@media (max-width: 400px) {
  .drawer-nav a { font-size: 22px; padding: 14px 0; }
  .hero-content h1 { font-size: 36px; }
  .recognition-left h2,
  .promise .section-head h2,
  .about-content h2,
  .contact-left h2 { font-size: 28px; }
}

/* === BOOKING MODAL (popup démo de prise de rendez-vous) === */

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.booking-modal[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}

.booking-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(30, 43, 34, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.booking-modal-content {
  position: relative;
  background: var(--paper);
  border-radius: 8px;
  max-width: 540px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.4);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.booking-modal[aria-hidden="false"] .booking-modal-content {
  transform: translateY(0) scale(1);
}

.booking-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--hair);
  color: var(--sage-800);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: all 0.2s ease;
  backdrop-filter: blur(6px);
}
.booking-close:hover {
  background: var(--ivory);
  border-color: var(--sage-300);
  transform: rotate(90deg);
}

/* Header */
.booking-header {
  padding: 36px 40px 24px;
  border-bottom: 1px solid var(--hair);
  text-align: center;
}

.booking-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 500;
  display: block;
  margin-bottom: 12px;
}

.booking-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  color: var(--sage-900);
  line-height: 1.15;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}

.booking-title em {
  color: var(--terracotta);
  font-style: italic;
  font-weight: 500;
}

.booking-sub {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--mute);
  margin: 0;
  line-height: 1.5;
}

/* Body */
.booking-body {
  padding: 28px 40px;
}

/* Calendar */
.booking-calendar {
  margin-bottom: 24px;
}

.booking-cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.booking-cal-month {
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  color: var(--sage-900);
}

.booking-cal-nav {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--hair);
  color: var(--sage-700);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.booking-cal-nav:hover:not(:disabled) {
  background: var(--ivory);
  border-color: var(--sage-300);
}
.booking-cal-nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.booking-cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 8px;
}

.booking-cal-weekdays span {
  text-align: center;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 500;
  padding: 6px 0;
}

.booking-cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.booking-cal-days button {
  aspect-ratio: 1;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--sage-900);
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.15s ease;
  font-weight: 500;
}

.booking-cal-days button:hover:not(.off):not(:disabled) {
  background: var(--cream);
}

.booking-cal-days button.off {
  color: var(--mute);
  opacity: 0.35;
  cursor: not-allowed;
}

.booking-cal-days button.active {
  background: var(--sage-800);
  color: var(--paper);
}
.booking-cal-days button.active:hover {
  background: var(--sage-900);
}

.booking-cal-days button:disabled {
  cursor: default;
}

/* Slots */
.booking-slots {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--hair);
}

.booking-slots-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 14px;
}

.booking-slots-day {
  font-family: var(--font-display);
  font-size: 17px;
  font-style: italic;
  color: var(--sage-900);
}

.booking-slots-count {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 500;
}

.booking-slots-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 8px;
}

.booking-slot {
  padding: 12px 8px;
  background: var(--ivory);
  border: 1px solid var(--hair);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--sage-800);
  cursor: pointer;
  transition: all 0.15s ease;
}

.booking-slot:hover {
  background: var(--cream);
  border-color: var(--sage-300);
}

.booking-slot.active {
  background: var(--terracotta);
  color: var(--paper);
  border-color: var(--terracotta);
}

/* Confirm */
.booking-confirm {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--hair);
}

.booking-summary {
  margin-bottom: 16px;
  padding: 16px;
  background: var(--ivory-warm);
  border-radius: 6px;
  border-left: 3px solid var(--terracotta);
}

.booking-summary-line {
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  color: var(--sage-900);
  margin-bottom: 4px;
}

.booking-summary-sub {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--mute);
}

.booking-confirm-btn {
  width: 100%;
  padding: 16px 24px;
  background: var(--sage-800);
  color: var(--paper);
  border: none;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  cursor: not-allowed;
  opacity: 0.7;
  letter-spacing: 0.02em;
}

/* Demo notice */
.booking-demo-notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 16px 24px;
  background: var(--terracotta-pale);
  color: var(--sage-900);
  font-family: var(--font-body);
  font-size: 12.5px;
  line-height: 1.55;
  border-top: 1px solid var(--terracotta-soft);
}

.booking-demo-notice svg {
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--terracotta);
}

.booking-demo-notice strong {
  font-weight: 600;
  color: var(--sage-900);
}

/* No scroll on body when modal open */
body.booking-open {
  overflow: hidden;
}

/* Mobile responsive */
@media (max-width: 680px) {
  .booking-modal { padding: 0; align-items: flex-end; }
  .booking-modal-content {
    max-height: 95vh;
    border-radius: 16px 16px 0 0;
    transform: translateY(40px);
  }
  .booking-modal[aria-hidden="false"] .booking-modal-content {
    transform: translateY(0);
  }

  .booking-header {
    padding: 28px 24px 20px;
  }
  .booking-title { font-size: 26px; }
  .booking-sub { font-size: 13px; }
  .booking-eyebrow { font-size: 10px; }

  .booking-body { padding: 20px 24px; }

  .booking-cal-days button { font-size: 13px; }
  .booking-slots-list { grid-template-columns: repeat(3, 1fr); }
  .booking-slot { font-size: 13px; padding: 10px 6px; }

  .booking-confirm-btn { padding: 14px 20px; font-size: 14px; }

  .booking-demo-notice { padding: 14px 20px; font-size: 12px; }
}

/* === CTA Réservation dans Contact === */

.contact-booking-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 22px 24px;
  margin-top: 28px;
  background: var(--terracotta);
  color: var(--paper);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-family: var(--font-body);
  text-align: left;
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 8px 22px -10px rgba(184, 96, 74, 0.45);
}

.contact-booking-cta:hover {
  background: #A6543F;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -12px rgba(184, 96, 74, 0.6);
}

.contact-booking-cta:hover .contact-booking-cta-arrow {
  transform: translateX(4px);
}

.contact-booking-cta > svg:first-child {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  opacity: 0.9;
}

.contact-booking-cta-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.contact-booking-cta-label {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.contact-booking-cta-sub {
  font-size: 12.5px;
  opacity: 0.85;
  font-weight: 400;
}

.contact-booking-cta-arrow {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.85;
  transition: transform 0.25s ease;
}

/* Séparateur "ou contactez-moi directement" */
.contact-or {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 32px 0 24px;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--mute);
  font-size: 14px;
}

.contact-or::before,
.contact-or::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--hair);
}

.contact-or span {
  white-space: nowrap;
}

/* Mobile responsive */
@media (max-width: 680px) {
  .contact-booking-cta {
    padding: 18px 18px;
    gap: 12px;
    margin-top: 24px;
  }
  .contact-booking-cta-label { font-size: 15px; }
  .contact-booking-cta-sub { font-size: 12px; }
  .contact-booking-cta > svg:first-child { width: 22px; height: 22px; }

  .contact-or {
    margin: 24px 0 18px;
    font-size: 13px;
  }
}
