/* ============================================
   DESIGN TOKENS — palette Dr Baron + VetPocket vibes
============================================ */
:root {
  --bleu-canard: #2E6378;
  --bleu-canard-dark: #244F60;
  --bleu-canard-light: #4A8497;
  --bleu-canard-soft: #E8F0F3;
  --nude: #F4EFE5;
  --creme: #FAF7F2;
  --creme-deep: #F5EFE4;
  --gris-pale: #F2EDE4;
  --sable: #DBC5A8;
  --sable-light: #E8D6BD;
  --sable-soft: #F0E3CE;
  --terre-cuite: #B8866B;
  --terre-cuite-dark: #9F7259;
  --terre-cuite-soft: #E8D2C2;
  --texte: #2C3D3A;
  --texte-soft: rgba(44, 61, 58, 0.75);
  --texte-muted: rgba(44, 61, 58, 0.55);
  --white: #FFFFFF;
  --hairline: rgba(44, 61, 58, 0.10);

  --font-display: 'Lora', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, 'Helvetica Neue', sans-serif;
  --font-script: 'Caveat', cursive;

  --container: 1240px;
  --gutter: 40px;
  --section-y: clamp(80px, 10vw, 140px);
  --radius-sm: 18px;
  --radius-md: 30px;
  --radius-lg: 48px;
  --radius-xl: 72px;
  --radius-blob-1: 60% 40% 50% 50% / 55% 45% 55% 45%;
  --radius-blob-2: 45% 55% 65% 35% / 50% 60% 40% 50%;
  --radius-blob-3: 55% 45% 40% 60% / 45% 50% 50% 55%;
  --ease: cubic-bezier(.22, .9, .26, 1);
  --shadow-soft: 0 10px 40px -15px rgba(44, 61, 58, 0.15);
  --shadow-card: 0 20px 60px -25px rgba(44, 61, 58, 0.22);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  background: var(--creme);
  color: var(--texte);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
ul, ol { list-style: none; padding: 0; margin: 0; }
::selection { background: var(--bleu-canard); color: var(--white); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); position: relative; }
.skip-link { position: absolute; top: -40px; left: 0; background: var(--bleu-canard); color: var(--white); padding: 8px 16px; z-index: 10000; }
.skip-link:focus { top: 0; }

/* ============================================
   TYPOGRAPHIE — Lora (serif) + Inter (sans-serif)
   Esthétique médicale moderne et chaleureuse
============================================ */
.font-display { font-family: var(--font-display); }
.font-script  { font-family: var(--font-script); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin: 0;
  color: var(--bleu-canard);
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terre-cuite);
  margin: 0 0 18px 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1.5px;
  background: var(--terre-cuite);
  border-radius: 2px;
}

/* ============================================
   BUTTONS
============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: all .35s var(--ease);
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--bleu-canard);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--bleu-canard-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -12px rgba(46, 99, 120, 0.45);
}
.btn-secondary {
  background: var(--terre-cuite);
  color: var(--white);
}
.btn-secondary:hover {
  background: var(--terre-cuite-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -12px rgba(184, 134, 107, 0.45);
}
.btn-ghost {
  background: transparent;
  color: var(--bleu-canard);
  border-color: var(--bleu-canard);
}
.btn-ghost:hover {
  background: var(--bleu-canard);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-ghost-light:hover {
  background: var(--white);
  color: var(--bleu-canard);
}
.btn .arrow { transition: transform .35s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ============================================
   HEADER
============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: all .35s var(--ease);
}
.site-header .logo,
.site-header .logo-name,
.site-header .main-nav a {
  color: var(--white);
  text-shadow: 0 2px 12px rgba(0,0,0,0.25);
  transition: color .35s var(--ease), text-shadow .35s var(--ease);
}
.site-header .logo-mark {
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
  transition: all .35s var(--ease);
}
.site-header .logo-sub {
  color: var(--sable-light);
}
.site-header.scrolled {
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--hairline);
  box-shadow: 0 4px 20px -10px rgba(44, 61, 58, 0.08);
}
.site-header.scrolled .logo,
.site-header.scrolled .logo-name {
  color: var(--bleu-canard);
  text-shadow: none;
}
.site-header.scrolled .main-nav a {
  color: var(--texte);
  text-shadow: none;
}
.site-header.scrolled .logo-mark {
  background: var(--bleu-canard);
  color: var(--white);
  border-color: transparent;
}
.site-header.scrolled .logo-sub {
  color: var(--terre-cuite);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--bleu-canard);
}
.logo-mark {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bleu-canard);
  border-radius: 50%;
  color: var(--white);
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -0.01em;
}
.logo-sub {
  font-family: var(--font-script);
  color: var(--terre-cuite);
  font-size: 15px;
  margin-top: 2px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
  margin-right: 8px;
}
.main-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--texte);
  position: relative;
  padding: 6px 0;
  transition: color .25s var(--ease);
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--terre-cuite);
  border-radius: 2px;
  transition: width .3s var(--ease);
}
.main-nav a:hover { color: var(--bleu-canard); }
.main-nav a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  align-items: center; justify-content: center;
  border-radius: 12px;
  background: transparent;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--texte);
  border-radius: 2px;
  margin: 3px 0;
  transition: all .3s var(--ease);
}

/* ============================================
   HERO — Full-screen video background
============================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: visible;
  z-index: 10;
}
.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  /* Fallback : photo du cabinet visible si la vidéo n'est pas chargée/présente */
  background-image: url("images/hero-cabinet.jpg");
  background-size: cover;
  background-position: center;
}
.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(46, 99, 120, 0.55) 0%, rgba(46, 99, 120, 0.25) 60%, rgba(36, 79, 96, 0.7) 100%),
    linear-gradient(180deg, rgba(36, 79, 96, 0.15) 0%, rgba(36, 79, 96, 0.55) 100%);
}

/* Blobs décoratifs du hero — formes irrégulières qui débordent en bas */
.hero-blob {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.18));
  transform-origin: center;
  will-change: transform;
}

/* Blob de gauche : sable, grand et étiré verticalement, déborde sur les stats */
.hero-blob-left {
  width: 460px;
  aspect-ratio: 280 / 400;
  top: 12%;
  left: -120px;
  bottom: auto;
  opacity: 0.78;
  background: #DBC5A8;
  border-radius: 60% 40% 55% 45% / 55% 50% 50% 45%;
  animation: blobDanceLeft 16s ease-in-out infinite;
}
/* Blob de droite : terre cuite, forme verticale allongée, déborde sur les stats */
.hero-blob-right {
  width: 400px;
  aspect-ratio: 320 / 520;
  top: 35%;
  bottom: auto;
  right: -120px;
  opacity: 0.72;
  background: #B8866B;
  border-radius: 50% 50% 45% 55% / 55% 45% 50% 50%;
  animation: blobDanceRight 14s ease-in-out infinite;
}

/* Animations indépendantes : translation + rotation amples */
@keyframes blobDanceLeft {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25%      { transform: translate(20px, -18px) rotate(6deg); }
  50%      { transform: translate(12px, 22px) rotate(-4deg); }
  75%      { transform: translate(-15px, 10px) rotate(3deg); }
}
@keyframes blobDanceRight {
  0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
  25%      { transform: translate(-35px, -28px) rotate(-10deg) scale(1.03); }
  50%      { transform: translate(20px, 32px) rotate(7deg) scale(0.97); }
  75%      { transform: translate(40px, -15px) rotate(-5deg) scale(1.02); }
}

.hero-handwriting {
  font-family: var(--font-script);
  font-size: 40px;
  color: var(--sable);
  position: absolute;
  top: 11%;
  right: 8%;
  transform: rotate(-5deg);
  line-height: 1;
  z-index: 3;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  pointer-events: none;
}

.hero-content-wrap {
  position: relative;
  z-index: 5;
  padding: 80px 0 120px;
}
.hero-content {
  max-width: 720px;
  color: var(--white);
}
.eyebrow-light {
  color: var(--sable-light) !important;
}
.eyebrow-light::before {
  background: var(--sable-light) !important;
}
.hero-title {
  font-size: clamp(48px, 7.5vw, 96px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.98;
  margin: 8px 0 16px;
  color: var(--white);
  text-shadow: 0 4px 30px rgba(0,0,0,0.2);
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--sable);
}
.hero-doodle {
  display: block;
  width: 280px;
  height: 28px;
  margin: 0 0 28px;
}
.hero-sub {
  font-size: 19px;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
  margin: 0 0 36px;
  max-width: 540px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

@keyframes floatGentle {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(3deg); }
}

/* Hero wave bottom */
.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 100px;
  display: block;
  z-index: 2;
}
.stats-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 80px;
  display: block;
  z-index: 2;
}

/* ============================================
   INFO STRIP — accès, parking, secteur, Doctolib
============================================ */
.info-strip {
  background: var(--nude);
  padding: 30px 0;
  border-bottom: 1px solid rgba(184, 134, 107, 0.12);
}
.info-strip-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: center;
}
.info-strip-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  line-height: 1.4;
  color: var(--texte-soft);
}
.info-strip-item strong {
  color: var(--bleu-canard);
  font-weight: 600;
  font-size: 14.5px;
}
.info-strip-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: var(--creme);
  color: var(--terre-cuite);
  border-radius: 50% 30% 50% 30% / 30% 50% 30% 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-radius .6s var(--ease);
}
.info-strip-item:hover .info-strip-icon {
  border-radius: 30% 50% 30% 50% / 50% 30% 50% 30%;
}
.info-strip-icon svg { width: 22px; height: 22px; }

/* ============================================
   APPROCHE — Notre constat / Notre engagement
============================================ */
.approche {
  background: var(--nude);
  padding: var(--section-y) 0;
  position: relative;
  overflow: hidden;
}
.approche::before {
  content: "";
  position: absolute;
  top: 8%; right: -8%;
  width: 380px; height: 380px;
  background: var(--sable-soft);
  border-radius: var(--radius-blob-2);
  opacity: 0.4;
  animation: blobFloat 22s ease-in-out infinite alternate;
}
.approche::after {
  content: "";
  position: absolute;
  bottom: 5%; left: -6%;
  width: 280px; height: 280px;
  background: var(--terre-cuite-soft);
  border-radius: var(--radius-blob-1);
  opacity: 0.35;
  animation: blobFloat 28s ease-in-out infinite alternate-reverse;
}
.approche .container { position: relative; z-index: 2; }

.approche-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: center;
}
.constat-card {
  background: var(--creme);
  padding: 60px 48px;
  border-radius: var(--radius-blob-1);
  position: relative;
  text-align: center;
  box-shadow: 0 30px 70px -25px rgba(44, 61, 58, 0.18);
  animation: blobMorph 18s ease-in-out infinite alternate;
}
.constat-card::before {
  content: "";
  position: absolute;
  top: -42px; left: 50%;
  transform: translateX(-50%);
  width: 84px; height: 84px;
  background: var(--terre-cuite);
  border-radius: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><path d='M9.5 2C7 2 5 4 5 7c0 1.5.5 2.5 1 3.5.5 1 .5 2 .5 3 0 4 1 7.5 3 7.5 1 0 1.5-1 2-3 .5 2 1 3 2 3 2 0 3-3.5 3-7.5 0-1 0-2 .5-3 .5-1 1-2 1-3.5 0-3-2-5-4.5-5-1.5 0-2 .5-2.5 1-.5-.5-1-1-2.5-1z'/></svg>");
  background-size: 42px;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 12px 30px -8px rgba(184, 134, 107, 0.55);
}
.constat-eyebrow {
  font-family: var(--font-script);
  color: var(--terre-cuite);
  font-size: 32px;
  margin: 16px 0 20px;
  line-height: 1;
}
.constat-text {
  color: var(--texte-soft);
  font-size: 15.5px;
  line-height: 1.7;
  margin: 0;
}

.engagements {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.engagement-card {
  background: var(--creme);
  padding: 45px 30px;
  border-radius: 50% 30% 50% 30% / 30% 50% 30% 50%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-radius .6s var(--ease);
}
.engagement-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px -22px rgba(44, 61, 58, 0.22);
  border-radius: 30% 50% 30% 50% / 50% 30% 50% 30%;
}
.engagement-card.col-bleu {
  background: var(--bleu-canard);
  color: var(--white);
  margin-top: 10px;
}
.engagement-card.col-bleu h3,
.engagement-card.col-bleu p { color: var(--white); }
.engagement-card.col-bleu .engagement-icon {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}
.engagement-card.col-terre {
  background: var(--terre-cuite);
  color: var(--white);
}
.engagement-card.col-terre h3,
.engagement-card.col-terre p { color: var(--white); }
.engagement-card.col-terre .engagement-icon {
  background: rgba(255,255,255,0.18);
  color: var(--white);
}
.engagement-icon {
  width: 56px; height: 56px;
  background: var(--sable-soft);
  color: var(--bleu-canard);
  border-radius: 50% 30% 50% 30% / 30% 50% 30% 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-radius .6s var(--ease);
}
.engagement-card:hover .engagement-icon {
  border-radius: 30% 50% 30% 50% / 50% 30% 50% 30%;
}
.engagement-icon svg { width: 26px; height: 26px; }
.engagement-card h3 {
  font-size: 20px;
  font-weight: 500;
  color: var(--bleu-canard);
}
.engagement-card p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  color: var(--texte-soft);
}

@keyframes blobMorph {
  0%   { border-radius: 60% 40% 50% 50% / 55% 45% 55% 45%; }
  50%  { border-radius: 45% 55% 60% 40% / 50% 60% 40% 50%; }
  100% { border-radius: 55% 45% 40% 60% / 45% 50% 50% 55%; }
}
/* Morphing rapide et prononcé au survol des cartes publics */
@keyframes blobMorphHover {
  0%   { border-radius: 60% 40% 50% 50% / 55% 45% 55% 45%; }
  33%  { border-radius: 70% 30% 55% 45% / 35% 65% 35% 65%; }
  66%  { border-radius: 35% 65% 40% 60% / 60% 35% 65% 40%; }
  100% { border-radius: 60% 40% 50% 50% / 55% 45% 55% 45%; }
}
@keyframes blobFloat {
  0%   { transform: translateY(0) rotate(0deg); border-radius: 60% 40% 50% 50% / 55% 45% 55% 45%; }
  50%  { transform: translateY(-30px) rotate(8deg); border-radius: 45% 55% 60% 40% / 50% 60% 40% 50%; }
  100% { transform: translateY(20px) rotate(-5deg); border-radius: 55% 45% 40% 60% / 45% 50% 50% 55%; }
}
/* Morphing biscornu prononcé pour les bulles décoratives du page-hero */
@keyframes blobMorphFloat1 {
  0%   { border-radius: 60% 40% 50% 50% / 55% 45% 55% 45%; transform: translate(0, 0) rotate(0deg); }
  25%  { border-radius: 40% 60% 65% 35% / 60% 40% 60% 40%; transform: translate(-18px, 20px) rotate(6deg); }
  50%  { border-radius: 55% 45% 35% 65% / 40% 55% 45% 60%; transform: translate(12px, 30px) rotate(-4deg); }
  75%  { border-radius: 35% 65% 55% 45% / 55% 35% 65% 45%; transform: translate(20px, 12px) rotate(5deg); }
  100% { border-radius: 60% 40% 50% 50% / 55% 45% 55% 45%; transform: translate(0, 0) rotate(0deg); }
}
@keyframes blobMorphFloat2 {
  0%   { border-radius: 50% 50% 40% 60% / 45% 55% 45% 55%; transform: translate(0, 0) rotate(0deg); }
  25%  { border-radius: 65% 35% 55% 45% / 55% 45% 65% 35%; transform: translate(22px, -18px) rotate(-7deg); }
  50%  { border-radius: 40% 60% 50% 50% / 60% 40% 55% 45%; transform: translate(-15px, -28px) rotate(5deg); }
  75%  { border-radius: 55% 45% 65% 35% / 35% 60% 40% 65%; transform: translate(-22px, 15px) rotate(-4deg); }
  100% { border-radius: 50% 50% 40% 60% / 45% 55% 45% 55%; transform: translate(0, 0) rotate(0deg); }
}

.approche-title-block {
  grid-column: 1 / -1;
  text-align: center;
  margin-bottom: 70px;
}
.approche-title {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 400;
  letter-spacing: -0.03em;
  max-width: 720px;
  margin: 14px auto 18px;
}
.approche-title em { font-style: italic; color: var(--terre-cuite); }
.approche-sub {
  font-size: 17px;
  color: var(--texte-soft);
  max-width: 580px;
  margin: 0 auto;
}

/* Wave separator */
.wave-sep {
  display: block;
  width: 100%;
  height: 80px;
}

/* ============================================
   TRAITEMENTS — central illustration + cards
============================================ */
.traitements {
  background: var(--creme);
  padding: var(--section-y) 0;
  position: relative;
  overflow: hidden;
}
/* Section technologies : fond beige nude (comme la section Valeurs) */
.traitements-nude { background: var(--nude); }
.traitements-bg-blob {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
}
.traitements-bg-blob.b1 { top: 20%; left: -8%; width: 320px; }
.traitements-bg-blob.b2 { bottom: 10%; right: -6%; width: 280px; }
.traitements-blob-right {
  position: absolute;
  top: 60px;
  right: -200px;
  width: 540px; height: 640px;
  background: var(--terre-cuite-soft);
  opacity: 0.4;
  border-radius: 50% 50% 45% 55% / 55% 45% 50% 50%;
  animation: blobMorphFloat1 24s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}

.section-head {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
  z-index: 2;
}
.section-title {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 400;
  letter-spacing: -0.03em;
  max-width: 760px;
  margin: 14px auto 20px;
  line-height: 1.05;
}
.section-title em { font-style: italic; color: var(--terre-cuite); }
.section-sub {
  font-size: 17px;
  color: var(--texte-soft);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.traitements-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  position: relative;
  z-index: 2;
  align-items: start;
}
/* Décalage vertical des cartes pour casser l'alignement (effet quinconce) */
.traitement-card:nth-child(2) { margin-top: 40px; }
.traitement-card:nth-child(3) { margin-top: 20px; }
.traitement-card:nth-child(5) { margin-top: 40px; }
.traitement-card:nth-child(6) { margin-top: 20px; }
.traitement-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  position: relative;
  transition: all .5s var(--ease);
  border: 1.5px solid transparent;
  overflow: hidden;
}
.traitement-card::before {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 160px; height: 160px;
  background: var(--sable-soft);
  border-radius: 50%;
  opacity: 0;
  transition: all .6s var(--ease);
  z-index: 0;
}
.traitement-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px -25px rgba(44, 61, 58, 0.22);
  border-color: var(--sable-light);
  border-radius: 60% 40% 50% 50% / 5% 5% 5% 5%;
}
.traitement-card:hover::before {
  opacity: 0.5;
  transform: scale(1.4);
}
.traitement-card > * { position: relative; z-index: 1; }

.traitement-num {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--terre-cuite);
  letter-spacing: 0.05em;
  margin-bottom: 18px;
  display: block;
}
.traitement-icon {
  width: 64px; height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bleu-canard-soft);
  border-radius: 50% 30% 50% 30% / 30% 50% 30% 50%;
  margin-bottom: 26px;
  transition: all .6s var(--ease);
}
.traitement-card:hover .traitement-icon {
  background: var(--bleu-canard);
  border-radius: 30% 50% 30% 50% / 50% 30% 50% 30%;
  transform: rotate(-8deg) scale(1.05);
}
.traitement-icon svg {
  width: 30px; height: 30px;
  color: var(--bleu-canard);
  transition: color .4s var(--ease);
}
.traitement-card:hover .traitement-icon svg { color: var(--white); }
.traitement-name {
  font-size: 23px;
  font-weight: 500;
  margin-bottom: 12px;
}
.traitement-text {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--texte-soft);
  margin: 0;
}

.traitements-cta {
  text-align: center;
  margin-top: 50px;
  position: relative;
  z-index: 2;
}

/* ============================================
   PUBLICS — À chaque âge son traitement
============================================ */
.publics {
  background: var(--nude);
  padding: var(--section-y) 0;
  position: relative;
  overflow: hidden;
}
.publics.publics-clair { background: var(--creme); }
.publics::before {
  content: "";
  position: absolute;
  top: 12%;
  left: -180px;
  width: 520px; height: 560px;
  background: var(--terre-cuite-soft);
  border-radius: 60% 40% 55% 45% / 55% 50% 50% 45%;
  opacity: 0.5;
  animation: blobMorphFloat1 20s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}
.publics::after {
  content: "";
  position: absolute;
  bottom: -180px; left: -8%;
  width: 360px; height: 360px;
  background: var(--sable-soft);
  border-radius: var(--radius-blob-3);
  opacity: 0.45;
  animation: blobFloat 30s ease-in-out infinite alternate-reverse;
  z-index: 1;
  pointer-events: none;
}
.publics .container { position: relative; z-index: 2; }
.publics-blob-right {
  position: absolute;
  top: 20px;
  right: -200px;
  width: 540px; height: 640px;
  background: var(--bleu-canard-light);
  opacity: 0.22;
  border-radius: 50% 50% 45% 55% / 55% 45% 50% 50%;
  animation: blobMorphFloat2 24s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}

.publics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 70px;
  align-items: start;
}
.public-card {
  position: relative;
  background: var(--creme);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid transparent;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-radius .6s var(--ease), border-color .5s var(--ease);
}
/* Tache décorative qui apparaît en bas au survol */
.public-card::after {
  content: "";
  position: absolute;
  bottom: -30px; left: -30px;
  width: 200px; height: 200px;
  background: var(--sable-soft);
  border-radius: 50% 50% 45% 55% / 55% 45% 50% 50%;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
  z-index: 0;
  pointer-events: none;
}
.public-card:hover::after {
  opacity: 0.6;
  transform: scale(1);
}
.public-card:nth-child(2) {
  margin-top: 60px;
}
.public-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px -25px rgba(44, 61, 58, 0.25);
  border-color: var(--sable-light);
  border-radius: 60% 40% 50% 50% / 5% 5% 5% 5%;
}
.public-photo-wrap {
  padding: 18px 18px 0;
  position: relative;
  z-index: 1;
}
.public-photo {
  height: 320px;
  background-size: cover;
  background-position: center;
  border-radius: 60% 40% 50% 50% / 55% 45% 55% 45%;
  position: relative;
  overflow: hidden;
  animation: blobMorph 16s ease-in-out infinite alternate;
  transition: border-radius .7s var(--ease);
}
.public-card:nth-child(2) .public-photo {
  animation-delay: -5s;
  animation-duration: 19s;
}
.public-card:nth-child(3) .public-photo {
  animation-delay: -10s;
  animation-duration: 22s;
}
/* Au survol : on remplace l'animation lente par un morphing rapide et prononcé */
.public-card:hover .public-photo {
  animation: blobMorphHover 3s ease-in-out infinite;
}
.public-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(46, 99, 120, 0.4) 100%);
}
.public-pastille {
  position: absolute;
  top: 36px;
  right: 36px;
  background: var(--white);
  color: var(--bleu-canard);
  padding: 9px 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-sans);
  z-index: 2;
  box-shadow: 0 8px 20px -8px rgba(44, 61, 58, 0.25);
}
.public-content {
  padding: 32px 34px 40px;
  position: relative;
  z-index: 1;
}
.public-name {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 8px;
}
.public-age {
  font-family: var(--font-script);
  color: var(--terre-cuite);
  font-size: 18px;
  margin-bottom: 16px;
}
.public-text {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--texte-soft);
  margin: 0 0 20px;
}
.public-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--bleu-canard);
  font-weight: 600;
  font-size: 14px;
  transition: gap .3s var(--ease);
}
.public-link:hover { gap: 12px; }
.public-link::after {
  content: "→";
  transition: transform .3s var(--ease);
}

/* ============================================
   STATS — Color block bleu canard
============================================ */
.stats {
  background: var(--nude);
  color: var(--bleu-canard);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: none;
}
.stats::after {
  content: none;
}
.stats-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}
.stats-eyebrow {
  font-family: var(--font-script);
  color: var(--sable);
  font-size: 30px;
  margin-bottom: 6px;
  line-height: 1;
}
.stats-title {
  font-size: clamp(36px, 5vw, 64px);
  color: var(--white);
  font-weight: 400;
  letter-spacing: -0.025em;
  max-width: 780px;
  margin: 0 auto 22px;
  line-height: 1.05;
}
.stats-title em { font-style: italic; color: var(--sable); }
.stats-sub {
  font-size: 17px;
  opacity: 0.85;
  max-width: 560px;
  margin: 0 auto 64px;
  line-height: 1.6;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}
.stat-item {
  position: relative;
  padding: 0 20px;
}
.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(184, 134, 107, 0.3);
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--bleu-canard);
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}
.stat-number .unit {
  font-size: 0.45em;
  color: var(--terre-cuite);
  font-style: italic;
}
.stat-number.stat-label-text {
  font-style: italic;
  font-size: clamp(38px, 4.8vw, 60px);
  color: var(--terre-cuite);
}
.stat-label {
  font-size: 14px;
  color: var(--terre-cuite);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ============================================
   CASES — Avant / Après
============================================ */
.cases {
  background: var(--creme);
  padding: var(--section-y) 0;
  position: relative;
  overflow: hidden;
}
.cases::before {
  content: "";
  position: absolute;
  top: 12%; right: -8%;
  width: 320px; height: 320px;
  background: var(--sable-soft);
  border-radius: var(--radius-blob-1);
  opacity: 0.4;
  animation: blobFloat 24s ease-in-out infinite alternate;
}
.cases::after {
  content: "";
  position: absolute;
  bottom: -8%; left: -8%;
  width: 280px; height: 280px;
  background: var(--terre-cuite-soft);
  border-radius: var(--radius-blob-3);
  opacity: 0.35;
  animation: blobFloat 28s ease-in-out infinite alternate-reverse;
}
.cases .container { position: relative; z-index: 2; }
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}
.case-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 22px;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.case-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -25px rgba(44, 61, 58, 0.2);
}
/* ============ Compare slider avant/après ============ */
.compare {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 28px;
  overflow: hidden;
  margin-bottom: 24px;
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
  --pos: 50%;
}
.compare-before,
.compare-after {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
/* AVANT : tons crème/sable (placeholder pattern) */
.compare-before {
  background-color: var(--nude);
  background-image:
    linear-gradient(135deg, var(--sable-soft) 25%, transparent 25%, transparent 75%, var(--sable-soft) 75%),
    linear-gradient(135deg, var(--sable-soft) 25%, transparent 25%, transparent 75%, var(--sable-soft) 75%);
  background-size: 28px 28px;
  background-position: 0 0, 14px 14px;
  /* Affichage tronqué par le curseur */
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
  z-index: 2;
  justify-content: flex-start;
}
/* APRÈS : tons bleus/terre cuite (placeholder pattern) */
.compare-after {
  background-color: var(--bleu-canard-soft);
  background-image:
    linear-gradient(135deg, var(--terre-cuite-soft) 25%, transparent 25%, transparent 75%, var(--terre-cuite-soft) 75%),
    linear-gradient(135deg, var(--terre-cuite-soft) 25%, transparent 25%, transparent 75%, var(--terre-cuite-soft) 75%);
  background-size: 28px 28px;
  background-position: 0 0, 14px 14px;
  z-index: 1;
  justify-content: flex-end;
}
/* Labels (badges Avant/Après) */
.compare-label {
  background: rgba(255,255,255,0.95);
  color: var(--bleu-canard);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font-sans);
  box-shadow: 0 4px 12px -4px rgba(0,0,0,0.15);
  pointer-events: none;
}
.compare-label-before { /* gauche */ }
.compare-label-after { /* droite */ }

/* Quand il y a une vraie photo : le style inline background-image gère l'image,
   on règle juste le cadrage et on retire la couleur de fond du placeholder */
.compare-before.has-photo,
.compare-after.has-photo {
  background-color: var(--creme);
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat;
}

/* La barre verticale + poignée */
.compare-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  transform: translateX(-50%);
  z-index: 3;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.compare-handle-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  background: var(--white);
  box-shadow: 0 0 16px rgba(0,0,0,0.35);
}
.compare-handle-button {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px -8px rgba(0,0,0,0.35), 0 0 0 4px rgba(255,255,255,0.4);
  color: var(--bleu-canard);
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
}
.compare-handle-button svg { width: 22px; height: 22px; }
.compare:hover .compare-handle-button,
.compare:active .compare-handle-button {
  transform: scale(1.08);
  background: var(--terre-cuite);
  color: var(--white);
}
/* Range input invisible mais qui couvre toute la zone, pour gérer le drag */
.compare-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  opacity: 0;
  cursor: ew-resize;
  z-index: 4;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
}
.compare-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 60px;
  height: 100%;
  background: transparent;
  cursor: ew-resize;
}
.compare-range::-moz-range-thumb {
  width: 60px;
  height: 100%;
  background: transparent;
  cursor: ew-resize;
  border: 0;
}
.compare-range:focus-visible {
  outline: none;
}
.compare-range:focus-visible ~ .compare-handle .compare-handle-button {
  box-shadow: 0 0 0 4px var(--terre-cuite-soft), 0 10px 28px -8px rgba(0,0,0,0.35);
}
.case-content { padding: 0 14px 18px; }
.case-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--terre-cuite);
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  font-weight: 500;
}
.case-title {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--bleu-canard);
}
.case-text {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--texte-soft);
  margin: 0 0 12px;
}
.case-meta {
  font-size: 13px;
  color: var(--texte-muted);
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid var(--hairline);
}
.case-meta strong {
  color: var(--bleu-canard);
  font-weight: 600;
}
.cases-disclaimer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 36px;
  font-size: 13px;
  color: var(--texte-muted);
  font-style: italic;
}
.cases-disclaimer svg { color: var(--terre-cuite); flex-shrink: 0; }

/* ============================================
   PRESENTATION DR BARON
============================================ */
.about {
  background: var(--creme);
  padding: var(--section-y) 0;
  position: relative;
}
.about::before {
  content: "";
  position: absolute;
  top: 10%; left: 0;
  width: 320px; height: 320px;
  background: var(--sable-soft);
  border-radius: var(--radius-blob-1);
  opacity: 0.4;
  animation: blobFloat 24s ease-in-out infinite alternate;
  z-index: 0;
}
.about::after {
  content: "";
  position: absolute;
  top: 220px; right: -120px;
  width: 480px; height: 560px;
  background: var(--terre-cuite-soft);
  border-radius: 55% 45% 50% 50% / 50% 55% 45% 50%;
  opacity: 0.4;
  animation: blobMorphFloat1 23s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}
.about .container { position: relative; z-index: 2; }

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
  aspect-ratio: 4 / 5;
}
.about-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 60% 40% 50% 50% / 55% 45% 55% 45%;
  z-index: 2;
  animation: blobMorph 18s ease-in-out infinite alternate;
  box-shadow: 0 30px 60px -20px rgba(44, 61, 58, 0.25);
}
.about-visual::before {
  content: "";
  position: absolute;
  width: 92%; height: 92%;
  right: -32px; top: -32px;
  background: var(--terre-cuite);
  border-radius: 45% 55% 65% 35% / 50% 60% 40% 50%;
  z-index: 1;
  opacity: 0.22;
  animation: blobMorph 22s ease-in-out infinite alternate-reverse;
}
.about-visual::after {
  content: "";
  position: absolute;
  width: 60%; height: 60%;
  left: -36px; bottom: -20px;
  background: var(--sable);
  border-radius: 55% 45% 40% 60% / 45% 50% 50% 55%;
  z-index: 0;
  opacity: 0.5;
  animation: blobMorph 26s ease-in-out infinite alternate;
}
.about-signature {
  position: absolute;
  bottom: 8%;
  right: -16px;
  z-index: 3;
  background: var(--white);
  padding: 16px 24px 18px;
  border-radius: 24px;
  box-shadow: 0 18px 40px -15px rgba(44, 61, 58, 0.28);
  transform: rotate(2deg);
}
.about-signature-name {
  font-family: var(--font-script);
  font-size: 32px;
  color: var(--bleu-canard);
  line-height: 1;
  margin-bottom: 4px;
}
.about-signature-role {
  font-size: 11px;
  color: var(--texte-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.about-content { position: relative; z-index: 2; }
.about-title {
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 14px 0 28px;
}
.about-title em { font-style: italic; color: var(--terre-cuite); }
.about-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--texte-soft);
  margin: 0 0 18px;
}
.about-diplomas {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--hairline);
}
.about-diplomas-title {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terre-cuite);
  margin-bottom: 16px;
}
.diplomas-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.diploma-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--texte);
}
.diploma-item svg {
  width: 16px; height: 16px;
  color: var(--bleu-canard);
  margin-top: 3px;
  flex-shrink: 0;
}

.about-bg-blob {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 0.45;
}
.about-bg-blob.b1 { top: 5%; right: -5%; width: 280px; }

/* ============================================
   PARCOURS — 5 étapes
============================================ */
.parcours {
  background: var(--sable-soft);
  padding: var(--section-y) 0;
  position: relative;
  overflow: hidden;
}
.parcours::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  right: 0; height: 60px;
  background: var(--nude);
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
  transform: scaleX(1.2);
}
.parcours::after {
  content: "";
  position: absolute;
  bottom: -10%; right: -8%;
  width: 380px; height: 380px;
  background: var(--terre-cuite-soft);
  border-radius: var(--radius-blob-2);
  opacity: 0.4;
  animation: blobFloat 28s ease-in-out infinite alternate;
}
.parcours .container { position: relative; z-index: 2; }
/* Moitié basse du blob sable qui chevauche la frontière Publics → Parcours
   (jumelle de .publics::after, centrée sur la même ligne, même animation) */
.parcours-blob-left {
  position: absolute;
  top: -180px; left: -8%;
  width: 360px; height: 360px;
  background: var(--sable-soft);
  border-radius: var(--radius-blob-3);
  opacity: 0.45;
  animation: blobFloat 30s ease-in-out infinite alternate-reverse;
  z-index: 1;
  pointer-events: none;
}
.parcours-inner {
  position: relative;
}
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 70px;
  position: relative;
}
.steps.steps-4 {
  grid-template-columns: repeat(4, 1fr);
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
.steps::before {
  content: "";
  position: absolute;
  top: 42px;
  left: 8%;
  right: 8%;
  height: 2px;
  background-image: linear-gradient(to right, var(--terre-cuite) 50%, transparent 50%);
  background-size: 12px 2px;
  background-repeat: repeat-x;
  z-index: 0;
}
.step {
  position: relative;
  z-index: 1;
  text-align: center;
}
.step-num {
  width: 84px; height: 84px;
  margin: 0 auto 26px;
  background: var(--creme);
  border: 2px solid var(--terre-cuite);
  border-radius: 60% 40% 50% 50% / 55% 45% 55% 45%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  color: var(--bleu-canard);
  font-style: italic;
  transition: all .5s var(--ease);
  position: relative;
  animation: blobMorph 18s ease-in-out infinite alternate;
}
.step:nth-child(2) .step-num { animation-delay: -3s; }
.step:nth-child(3) .step-num { animation-delay: -6s; }
.step:nth-child(4) .step-num { animation-delay: -9s; }
.step:nth-child(5) .step-num { animation-delay: -12s; }
.step:hover .step-num {
  background: var(--bleu-canard);
  color: var(--white);
  border-color: var(--bleu-canard);
  transform: scale(1.08);
}
.step-title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
}
.step-text {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--texte-soft);
  margin: 0;
}

/* ============ Variante BLEU : .parcours.parcours-blue ============
   Garde la même structure mais inverse les couleurs et ajoute une vague en bas */
.parcours.parcours-blue {
  background: var(--bleu-canard);
  padding: var(--section-y) 0 calc(var(--section-y) + 60px);
  /* Mask SVG : haut plat, vague en bas comme le CTA */
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 800' preserveAspectRatio='none'><path d='M 0 0 L 1440 0 L 1440 740 C 1200 770 960 720 720 750 C 480 780 240 720 0 740 Z' fill='black'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 800' preserveAspectRatio='none'><path d='M 0 0 L 1440 0 L 1440 740 C 1200 770 960 720 720 750 C 480 780 240 720 0 740 Z' fill='black'/></svg>");
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
/* Annule le ::before crème de la version sable, et change le blob */
.parcours.parcours-blue::before {
  display: none;
}
.parcours.parcours-blue::after {
  background: rgba(219, 197, 168, 0.14);
  bottom: 20%;
  right: -8%;
  animation: blobFloat 26s ease-in-out infinite alternate;
}
/* Ajoute un 2e blob pour densité visuelle */
.parcours.parcours-blue .container::before {
  content: "";
  position: absolute;
  top: 5%; left: -8%;
  width: 320px; height: 320px;
  background: rgba(184, 134, 107, 0.18);
  border-radius: var(--radius-blob-3);
  animation: blobFloat 30s ease-in-out infinite alternate-reverse;
  pointer-events: none;
  z-index: 0;
}

/* Eyebrow et titres en clair */
.parcours.parcours-blue .eyebrow {
  color: var(--sable);
}
.parcours.parcours-blue .eyebrow::before {
  background: var(--sable);
}
.parcours.parcours-blue .section-title {
  color: var(--white);
}
.parcours.parcours-blue .section-title em {
  color: var(--sable);
}
.parcours.parcours-blue .section-sub {
  color: rgba(255,255,255,0.85);
}

/* Cercles d'étapes : fond clair, contour sable */
.parcours.parcours-blue .steps::before {
  background-image: linear-gradient(to right, var(--sable) 50%, transparent 50%);
}
.parcours.parcours-blue .step-num {
  background: var(--white);
  border-color: var(--sable);
  color: var(--bleu-canard);
}
.parcours.parcours-blue .step:hover .step-num {
  background: var(--sable);
  color: var(--bleu-canard-dark);
  border-color: var(--sable);
}
.parcours.parcours-blue .step-title {
  color: var(--white);
}
.parcours.parcours-blue .step-text {
  color: rgba(255,255,255,0.82);
}
.parcours.parcours-blue .step-text strong {
  color: var(--sable);
}

/* ============================================
   CTA — Style VetPocket : color block + vagues
============================================ */
.cta-block {
  position: relative;
  padding: 0;
  background: transparent;
  overflow: visible;
  margin: 0;
}
.cta-band {
  background: var(--bleu-canard-dark);
  padding: 100px 0 100px;
  position: relative;
  overflow: hidden;
  /* Vague en HAUT : transition douce entre la section claire au-dessus et le bleu */
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 800' preserveAspectRatio='none'><path d='M 0 60 C 240 28 480 86 720 58 C 960 30 1200 80 1440 50 L 1440 800 L 0 800 Z' fill='black'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 800' preserveAspectRatio='none'><path d='M 0 60 C 240 28 480 86 720 58 C 960 30 1200 80 1440 50 L 1440 800 L 0 800 Z' fill='black'/></svg>");
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
.cta-band::before {
  content: "";
  position: absolute;
  top: 5%; right: -100px;
  width: 380px; height: 380px;
  background: rgba(219, 197, 168, 0.14);
  border-radius: var(--radius-blob-1);
  animation: blobFloat 24s ease-in-out infinite alternate;
  pointer-events: none;
}
.cta-band::after {
  content: "";
  position: absolute;
  bottom: 5%; left: -80px;
  width: 360px; height: 360px;
  background: rgba(184, 134, 107, 0.18);
  border-radius: var(--radius-blob-3);
  animation: blobFloat 30s ease-in-out infinite alternate-reverse;
  pointer-events: none;
}

/* Cards décoratives flottantes type VetPocket */
.cta-floater {
  position: absolute;
  background: var(--white);
  border-radius: 16px;
  padding: 14px 22px;
  box-shadow: 0 14px 32px -12px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  color: var(--bleu-canard);
  z-index: 3;
  animation: floatGentleCard 7s ease-in-out infinite;
}
.cta-floater svg {
  width: 20px; height: 20px;
  color: var(--terre-cuite);
}
.cta-floater.f-left {
  top: 30%;
  left: 6%;
  transform: rotate(-3deg);
  animation-delay: 0s;
}
.cta-floater.f-right {
  bottom: 30%;
  right: 7%;
  transform: rotate(2deg);
  animation-delay: 1.5s;
}
.cta-floater.f-sparkle {
  top: 25%;
  right: 12%;
  padding: 12px;
  background: var(--terre-cuite);
  border-radius: 50%;
  animation-delay: 0.8s;
}
.cta-floater.f-sparkle svg {
  color: var(--white);
  width: 22px; height: 22px;
}

@keyframes floatGentleCard {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-12px) rotate(0deg); }
}
.cta-floater.f-right { animation-name: floatGentleCardR; }
@keyframes floatGentleCardR {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50% { transform: translateY(-14px) rotate(-2deg); }
}
.cta-floater.f-sparkle { animation-name: floatSparkle; }
@keyframes floatSparkle {
  0%, 100% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(20deg) scale(1.1); }
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.cta-script {
  font-family: var(--font-script);
  color: var(--sable);
  font-size: 34px;
  line-height: 1;
  margin-bottom: 8px;
}
.cta-title {
  font-size: clamp(36px, 4.8vw, 56px);
  color: var(--white);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0 0 22px;
}
.cta-title em {
  font-style: italic;
  color: var(--sable);
}
.cta-text {
  font-size: 17px;
  color: rgba(255,255,255,0.88);
  margin: 0 auto 36px;
  max-width: 540px;
  line-height: 1.6;
}
.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-band .btn-primary {
  background: var(--white);
  color: var(--bleu-canard);
}
.cta-band .btn-primary:hover {
  background: var(--terre-cuite);
  color: var(--white);
}
.cta-mention {
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.75);
  font-size: 13px;
}
.cta-mention svg { width: 16px; height: 16px; color: var(--sable-light); }

/* ============================================
   CONTACT
============================================ */
.contact {
  background: var(--creme);
  padding: 40px 0 var(--section-y);
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.contact-card {
  background: var(--nude);
  padding: 42px 36px;
  border-radius: var(--radius-lg);
  transition: all .5s var(--ease);
  border: 1.5px solid transparent;
}
.contact-card:hover {
  background: var(--white);
  border-color: var(--sable-light);
  box-shadow: 0 25px 60px -25px rgba(44, 61, 58, 0.2);
  transform: translateY(-6px);
  border-radius: 60% 40% 50% 50% / 5% 5% 5% 5%;
}
.contact-icon {
  width: 60px; height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bleu-canard);
  border-radius: 50% 30% 50% 30% / 30% 50% 30% 50%;
  color: var(--white);
  margin-bottom: 26px;
  transition: border-radius .6s var(--ease);
}
.contact-card:hover .contact-icon {
  border-radius: 30% 50% 30% 50% / 50% 30% 50% 30%;
}
.contact-icon svg { width: 26px; height: 26px; }
.contact-label {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terre-cuite);
  margin-bottom: 10px;
  font-weight: 600;
}
.contact-value {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--bleu-canard);
  font-weight: 500;
  line-height: 1.3;
  margin: 0 0 6px;
}
.contact-extra {
  font-size: 14px;
  color: var(--texte-soft);
  line-height: 1.55;
  margin: 6px 0 0;
}

/* ============================================
   FOOTER
============================================ */
.footer {
  background: var(--bleu-canard-dark);
  color: rgba(255,255,255,0.85);
  padding: 90px 0 30px;
  position: relative;
  overflow: hidden;
  border-radius: 60px 60px 0 0 / 60px 60px 0 0;
  margin-top: -60px;
}
.footer::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 320px; height: 320px;
  background: rgba(219, 197, 168, 0.10);
  border-radius: var(--radius-blob-1);
  animation: blobFloat 24s ease-in-out infinite alternate;
}
.footer::after {
  content: "";
  position: absolute;
  bottom: -120px;
  left: -80px;
  width: 280px; height: 280px;
  background: rgba(184, 134, 107, 0.10);
  border-radius: var(--radius-blob-2);
  animation: blobFloat 30s ease-in-out infinite alternate-reverse;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 50px;
  position: relative;
  z-index: 2;
}
.footer-brand .logo { color: var(--white); }
.footer-brand .logo-mark {
  background: var(--white);
  color: var(--bleu-canard);
}
.footer-brand .logo-name { color: var(--white); }
.footer-brand .logo-sub { color: var(--sable-light); }
.footer-tag {
  margin-top: 22px;
  font-size: 14.5px;
  line-height: 1.6;
  opacity: 0.75;
  max-width: 280px;
}
.footer-col-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 22px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-size: 14.5px;
  opacity: 0.78;
  transition: opacity .25s var(--ease), color .25s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-links a:hover {
  opacity: 1;
  color: var(--sable-light);
}
.footer-contact-item {
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 16px;
  opacity: 0.85;
}
.footer-contact-item strong {
  display: block;
  color: var(--sable-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.footer-bottom {
  margin-top: 60px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  opacity: 0.6;
  flex-wrap: wrap;
  gap: 14px;
  position: relative;
  z-index: 2;
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a:hover { color: var(--sable-light); opacity: 1; }
.footer-credit {
  color: var(--sable-light);
  font-weight: 500;
  transition: opacity .25s var(--ease);
}
.footer-credit:hover { opacity: 0.7; }

/* ============================================
   ANIMATIONS
============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1024px) {
  :root { --gutter: 28px; }
  .hero-blob-left { width: 320px; top: 8%; left: -80px; }
  .hero-blob-right { width: 380px; bottom: -80px; right: -80px; }
  .hero-handwriting { top: 14%; right: 6%; font-size: 32px; }
  .info-strip-list { grid-template-columns: 1fr 1fr; gap: 20px; }
  .approche-inner { grid-template-columns: 1fr; gap: 50px; }
  .engagements { grid-template-columns: repeat(2, 1fr); }
  .traitements-grid { grid-template-columns: 1fr 1fr; }
  .traitement-card:nth-child(2),
  .traitement-card:nth-child(3),
  .traitement-card:nth-child(5),
  .traitement-card:nth-child(6) { margin-top: 0; }
  .publics-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .publics-blob-right { width: 300px; height: 360px; right: -150px; opacity: 0.15; }
  .public-card:nth-child(2),
  .public-card:nth-child(3) { margin-top: 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 32px 20px; }
  .stat-item:nth-child(2)::after { display: none; }
  .cases-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
  .about-inner { grid-template-columns: 1fr; gap: 60px; }
  .about-visual { max-width: 440px; margin: 0 auto; aspect-ratio: auto; }
  .about-photo { position: relative; inset: auto; width: 100%; height: auto; aspect-ratio: 4 / 5; }
  .steps { grid-template-columns: 1fr 1fr; }
  .steps.steps-4 { grid-template-columns: 1fr 1fr; }
  .steps::before { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .cta-floater.f-left,
  .cta-floater.f-right { display: none; }
  .cta-floater.f-sparkle { top: 10%; right: 8%; }
}

@media (max-width: 720px) {
  :root { --gutter: 20px; --section-y: 70px; }
  .main-nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .hero { min-height: auto; align-items: flex-start; }
  .hero-content-wrap { padding: 130px var(--gutter) 90px; }
  .hero-title { font-size: clamp(32px, 8.5vw, 46px); line-height: 1.04; }
  .hero-handwriting { font-size: 26px; right: 5%; top: 80px; }
  .hero-blob { display: none; }
  .hero-ctas { width: 100%; }
  .hero-ctas .btn { flex: 1; justify-content: center; }
  .info-strip { padding: 24px 0; }
  .info-strip-list { grid-template-columns: 1fr; gap: 14px; }
  .traitements-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; gap: 40px; }
  .stat-item:not(:last-child)::after { display: none; }
  .stat-item:not(:last-child) { padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .engagements { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .steps.steps-4 { grid-template-columns: 1fr; }
  .diplomas-list { grid-template-columns: 1fr; }
  .cta-band { padding: 60px 0 80px; }
  .cta-floater { display: none; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .about-signature { right: 10%; }
}

/* ============================================
   PAGES INTÉRIEURES — Bandeau hero réduit
============================================ */
.page-hero {
  position: relative;
  padding: 140px 0 100px;
  background: var(--nude);
  overflow: hidden;
  isolation: isolate;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -10%; right: -8%;
  width: 380px; height: 380px;
  background: var(--terre-cuite-soft);
  border-radius: 60% 40% 50% 50% / 55% 45% 55% 45%;
  opacity: 0.4;
  animation: blobMorphFloat1 18s ease-in-out infinite;
  z-index: 0;
}
.page-hero::after {
  content: "";
  position: absolute;
  bottom: -20%; left: -8%;
  width: 320px; height: 320px;
  background: var(--sable-soft);
  border-radius: 50% 50% 40% 60% / 45% 55% 45% 55%;
  opacity: 0.5;
  animation: blobMorphFloat2 22s ease-in-out infinite;
  z-index: 0;
}
.page-hero .container { position: relative; z-index: 2; }

.page-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 60px;
  align-items: center;
}
.page-hero-content {
  position: relative;
}
.page-hero-title {
  font-size: clamp(40px, 5.6vw, 72px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin: 8px 0 22px;
  color: var(--bleu-canard);
}
.page-hero-title em { font-style: italic; color: var(--terre-cuite); }
.page-hero-sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--texte-soft);
  margin: 0;
  max-width: 540px;
}
.page-hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
}
/* Traitements : cadre élargi pour voir les 2 personnes */
.page-hero-traitements .page-hero-visual {
  aspect-ratio: 3 / 2;
}
.page-hero-traitements .page-hero-inner {
  grid-template-columns: 1fr 1.6fr;
}
.page-hero-premiere .page-hero-visual {
  aspect-ratio: 3 / 2;
}
.page-hero-premiere .page-hero-inner {
  grid-template-columns: 1fr 1.6fr;
}
/* Contact : photo agrandie */
.page-hero-contact .page-hero-inner {
  grid-template-columns: 1fr 1.6fr;
}
.page-hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 60% 40% 50% 50% / 55% 45% 55% 45%;
  animation: blobMorph 18s ease-in-out infinite alternate;
  box-shadow: 0 30px 60px -20px rgba(44, 61, 58, 0.25);
}

/* Page hero – pour pages textuelles (mentions) */
.page-hero.minimal {
  padding: 130px 0 70px;
}
.page-hero.minimal .page-hero-inner {
  grid-template-columns: 1fr;
  text-align: center;
}
.page-hero.minimal .page-hero-sub { margin: 0 auto; }

/* Header dans les pages intérieures — toujours opaque, jamais transparent */
body.inner-page .site-header {
  position: sticky;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hairline);
}
body.inner-page .site-header .logo,
body.inner-page .site-header .logo-name {
  color: var(--bleu-canard);
  text-shadow: none;
}
body.inner-page .site-header .main-nav a {
  color: var(--texte);
  text-shadow: none;
}
body.inner-page .site-header .logo-mark {
  background: var(--bleu-canard);
  color: var(--white);
  border-color: transparent;
}
body.inner-page .site-header .logo-sub {
  color: var(--terre-cuite);
}

/* Active state pour la nav */
.main-nav a.active {
  color: var(--bleu-canard) !important;
  font-weight: 600;
}
.main-nav a.active::after {
  width: 100%;
}

/* ============================================
   PAGE CABINET — Équipe, technologies, galerie
============================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  align-items: start;
}
.team-card:nth-child(1) { margin-top: 24px; }
.team-card:nth-child(2) { margin-top: 64px; }
.team-card:nth-child(3) { margin-top: 0; }
.team-card {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
  text-align: center;
  transition: transform .4s var(--ease);
}
.team-card:hover {
  transform: translateY(-6px);
}
.team-photo {
  width: 320px; height: 320px;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--sable-soft);
  border-radius: 60% 40% 50% 50% / 55% 45% 55% 45%;
}
.team-card:hover .team-photo {
  animation: blobMorphHover 4s ease-in-out infinite;
}
.team-card:nth-child(1) .team-photo { width: 360px; height: 360px; }
.team-card:nth-child(2) .team-photo { width: 315px; height: 315px; }
.team-card:nth-child(3) .team-photo { width: 335px; height: 335px; }
.team-info h3 {
  font-size: 22px;
  margin-bottom: 6px;
}
.team-role {
  font-family: var(--font-script);
  color: var(--terre-cuite);
  font-size: 17px;
  margin-bottom: 10px;
}
.team-bio {
  font-size: 14px;
  color: var(--texte-soft);
  line-height: 1.55;
  margin: 0;
}

.techs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 60px;
}
.tech-card {
  background: var(--white);
  padding: 36px 45px;
  border-radius: 50% 30% 50% 30% / 30% 50% 30% 50%;
  transition: all .5s var(--ease);
  border: 1.5px solid transparent;
}
.tech-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px -20px rgba(44, 61, 58, 0.18);
  border-color: var(--sable-light);
  border-radius: 30% 50% 30% 50% / 50% 30% 50% 30%;
}
.tech-icon {
  width: 64px; height: 64px;
  background: var(--bleu-canard-soft);
  color: var(--bleu-canard);
  border-radius: 50% 30% 50% 30% / 30% 50% 30% 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: all .6s var(--ease);
}
.tech-card:hover .tech-icon {
  background: var(--bleu-canard);
  color: var(--white);
  border-radius: 30% 50% 30% 50% / 50% 30% 50% 30%;
  transform: rotate(-6deg);
}
.tech-icon svg { width: 32px; height: 32px; }
.tech-card h3 {
  font-size: 21px;
  margin-bottom: 12px;
}
.tech-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--texte-soft);
  margin: 0;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 240px 240px;
  grid-auto-rows: 240px;
  gap: 20px;
  margin-top: 60px;
}
.gallery-item {
  position: relative;
  transition: all .5s var(--ease);
}
.gallery-item:hover .gallery-photo {
  animation: blobMorphHover 4s ease-in-out infinite;
}
.gallery-item.big {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall {
  grid-row: span 2;
}
.gallery-label {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  background: rgba(255,255,255,0.95);
  color: var(--bleu-canard);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-sans);
  z-index: 2;
}
.gallery-placeholder {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, var(--sable-soft) 25%, transparent 25%, transparent 75%, var(--sable-soft) 75%),
    linear-gradient(135deg, var(--sable-soft) 25%, transparent 25%, transparent 75%, var(--sable-soft) 75%);
  background-size: 30px 30px;
  background-position: 0 0, 15px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terre-cuite);
}
.gallery-placeholder svg { width: 48px; height: 48px; opacity: 0.6; }
/* Vraie photo dans la galerie */
.gallery-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--sable-soft);
  border-radius: 60% 40% 50% 50% / 55% 45% 55% 45%;
}
.gallery-item.has-photo { cursor: pointer; }

/* ============================================
   PAGE TRAITEMENTS — Liste détaillée
============================================ */
.treatment-detail {
  background: var(--creme);
  padding: var(--section-y) 0;
  position: relative;
}
.treatment-detail.alt {
  background: var(--nude);
}
.treatment-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.treatment-row.reversed {
  grid-template-columns: 1.2fr 1fr;
}
.treatment-row.reversed .treatment-visual {
  order: 2;
}
.treatment-visual {
  position: relative;
  aspect-ratio: 1 / 1;
}
.treatment-illustration {
  position: absolute;
  inset: 0;
  background: var(--bleu-canard-soft);
  border-radius: 60% 40% 50% 50% / 55% 45% 55% 45%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: blobMorph 22s ease-in-out infinite alternate;
}
.treatment-illustration.has-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: transparent;
  animation: none;
}
.treatment-visual:hover .treatment-illustration.has-photo {
  animation: blobMorphHover 4s ease-in-out infinite;
}
.treatment-illustration svg {
  width: 50%;
  height: 50%;
  color: var(--bleu-canard);
}
.treatment-illustration::after {
  content: "";
  position: absolute;
  width: 80%; height: 80%;
  right: -22px; top: -22px;
  background: var(--terre-cuite);
  border-radius: 45% 55% 65% 35% / 50% 60% 40% 50%;
  opacity: 0.15;
  z-index: -1;
  animation: blobMorph 26s ease-in-out infinite alternate-reverse;
}
.treatment-num-big {
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 400;
  font-style: italic;
  color: var(--terre-cuite);
  line-height: 1;
  margin-bottom: 8px;
}
.treatment-meta {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin: 16px 0 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--hairline);
}
.treatment-meta-item {
  display: flex;
  flex-direction: column;
}
.treatment-meta-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terre-cuite);
  margin-bottom: 4px;
}
.treatment-meta-value {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--bleu-canard);
  font-weight: 500;
}
.treatment-title {
  font-size: clamp(30px, 3.8vw, 42px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0 0 18px;
}
.treatment-body p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--texte-soft);
  margin: 0 0 14px;
}
.treatment-body strong { color: var(--bleu-canard); font-weight: 600; }
.treatment-body ul {
  margin: 14px 0;
  padding: 0;
}
.treatment-body li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--texte-soft);
}
.treatment-body li::before {
  content: "";
  position: absolute;
  left: 0; top: 11px;
  width: 8px; height: 8px;
  background: var(--terre-cuite);
  border-radius: 50%;
}

/* ============================================
   PAGE PREMIÈRE VISITE
============================================ */
.documents-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 60px;
}
.document-card {
  background: var(--creme);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all .4s var(--ease);
}
.document-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -18px rgba(44, 61, 58, 0.18);
}
.document-icon {
  width: 64px; height: 64px;
  margin: 0 auto 20px;
  background: var(--terre-cuite-soft);
  color: var(--terre-cuite);
  border-radius: 50% 30% 50% 30% / 30% 50% 30% 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Orientation différente de la forme pour chaque icône */
.document-card:nth-child(1) .document-icon { border-radius: 50% 30% 50% 30% / 30% 50% 30% 50%; }
.document-card:nth-child(2) .document-icon { border-radius: 30% 50% 30% 50% / 50% 30% 50% 30%; }
.document-card:nth-child(3) .document-icon { border-radius: 50% 50% 30% 50% / 50% 30% 50% 50%; }
.document-card:nth-child(4) .document-icon { border-radius: 30% 50% 50% 30% / 30% 50% 50% 30%; }
.document-icon svg { width: 30px; height: 30px; }
.document-title {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--bleu-canard);
}
.document-text {
  font-size: 13.5px;
  color: var(--texte-soft);
  line-height: 1.5;
  margin: 0;
}

.tarifs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 60px;
  align-items: start;
}
.tarif-card {
  padding: 44px 38px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.tarif-card.minor {
  background: var(--bleu-canard);
  color: var(--white);
  border-radius: 100px 24px 80px 32px;
}
.tarif-card.minor h3,
.tarif-card.minor strong { color: var(--white); }
.tarif-card.minor p { color: rgba(255,255,255,0.85); }
.tarif-card.major {
  background: var(--terre-cuite);
  color: var(--white);
  border-radius: 24px 100px 32px 80px;
  margin-top: 56px;
}
.tarif-card.major h3,
.tarif-card.major strong { color: var(--white); }
.tarif-card.major p { color: rgba(255,255,255,0.85); }
.tarif-card::after {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-blob-1);
}
.tarif-card > * { position: relative; z-index: 1; }
.tarif-age {
  font-family: var(--font-script);
  font-size: 28px;
  margin-bottom: 4px;
  line-height: 1;
}
.tarif-card.minor .tarif-age { color: var(--sable-light); }
.tarif-card.major .tarif-age { color: var(--sable-light); }
.tarif-card h3 {
  font-size: 26px;
  margin-bottom: 18px;
}
.tarif-card p {
  font-size: 14.5px;
  line-height: 1.65;
  margin: 0 0 14px;
}
.tarif-highlight {
  margin-top: 22px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.15);
  border-radius: 14px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
}

.faq-list {
  max-width: 860px;
  margin: 60px auto 0;
}
.faq-item {
  background: var(--creme);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  border: 1.5px solid transparent;
  transition: all .3s var(--ease);
  overflow: hidden;
}
.faq-item[open] {
  border-color: var(--sable-light);
  box-shadow: 0 18px 40px -20px rgba(44, 61, 58, 0.15);
}
.faq-question {
  padding: 22px 28px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--bleu-canard);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  list-style: none;
  transition: color .25s var(--ease);
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: "+";
  font-family: var(--font-sans);
  font-size: 24px;
  color: var(--terre-cuite);
  font-weight: 400;
  width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--terre-cuite-soft);
  border-radius: 50%;
  transition: all .3s var(--ease);
  flex-shrink: 0;
}
.faq-item[open] .faq-question::after {
  content: "−";
  background: var(--terre-cuite);
  color: var(--white);
  transform: rotate(180deg);
}
.faq-answer {
  padding: 0 28px 24px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--texte-soft);
}

/* ============================================
   PAGE CONSEILS & VIDÉOS
============================================ */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 60px;
}
.video-card {
  background: var(--creme);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px -20px rgba(44, 61, 58, 0.18);
}
.video-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--bleu-canard-soft);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  border-radius: 58% 42% 48% 52% / 55% 50% 50% 45%;
  animation: blobMorph 18s ease-in-out infinite alternate;
}
.video-card:nth-child(2n) .video-thumb { animation-delay: -6s; animation-duration: 21s; }
.video-card:nth-child(3n) .video-thumb { animation-delay: -11s; animation-duration: 24s; }
.video-card:hover .video-thumb {
  animation: blobMorphHover 3.5s ease-in-out infinite;
}
.video-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(46, 99, 120, 0.05) 0%, rgba(46, 99, 120, 0.4) 100%);
}
.video-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px -10px rgba(0,0,0,0.4);
  transition: all .3s var(--ease);
}
.video-card:hover .video-play {
  background: var(--terre-cuite);
  transform: translate(-50%, -50%) scale(1.08);
}
.video-play svg {
  width: 22px; height: 22px;
  color: var(--bleu-canard);
  margin-left: 3px;
  transition: color .3s var(--ease);
}
.video-card:hover .video-play svg { color: var(--white); }
.video-tag {
  position: absolute;
  top: 22px; left: 24px;
  background: var(--white);
  color: var(--bleu-canard);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  font-family: var(--font-sans);
  z-index: 2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.video-info {
  padding: 26px 28px 30px;
}
.video-title {
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 8px;
}
.video-desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--texte-soft);
  margin: 0;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.tip-card {
  background: var(--creme);
  padding: 30px 28px 36px;
  border: 1.5px solid transparent;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-radius .6s var(--ease), border-color .4s var(--ease);
}
.tip-card > * { position: relative; z-index: 1; }
/* Tache décorative qui apparaît en bas au survol (comme les cartes Publics) */
.tip-card::after {
  content: "";
  position: absolute;
  bottom: -30px; left: -30px;
  width: 200px; height: 200px;
  background: var(--sable-soft);
  border-radius: 50% 50% 45% 55% / 55% 45% 50% 50%;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
  z-index: 0;
  pointer-events: none;
}
.tip-card:hover::after {
  opacity: 0.6;
  transform: scale(1);
}
.tip-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -18px rgba(44, 61, 58, 0.18);
  border-color: var(--sable-light);
  border-radius: 60% 40% 50% 50% / 5% 5% 5% 5%;
}
.tip-icon {
  width: 52px; height: 52px;
  background: var(--terre-cuite-soft);
  color: var(--terre-cuite);
  border-radius: 50% 30% 50% 30% / 30% 50% 30% 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: all .6s var(--ease);
}
.tip-card:hover .tip-icon {
  border-radius: 30% 50% 30% 50% / 50% 30% 50% 30%;
  background: var(--terre-cuite);
  color: var(--white);
}
.tip-icon svg { width: 26px; height: 26px; }
.tip-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}
.tip-text {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--texte-soft);
  margin: 0;
}

.urgencies {
  margin-top: 80px;
}
.urgencies-section {
  background: var(--creme-deep);
  padding: var(--section-y) 0;
  position: relative;
  overflow: hidden;
}
.urgencies-section::before {
  content: "";
  position: absolute;
  top: 10%; right: -8%;
  width: 320px; height: 320px;
  background: var(--terre-cuite-soft);
  border-radius: var(--radius-blob-1);
  opacity: 0.35;
  animation: blobFloat 26s ease-in-out infinite alternate;
  pointer-events: none;
}
.urgencies-section::after {
  content: "";
  position: absolute;
  bottom: -10%; left: -6%;
  width: 280px; height: 280px;
  background: var(--sable-soft);
  border-radius: var(--radius-blob-3);
  opacity: 0.5;
  animation: blobFloat 30s ease-in-out infinite alternate-reverse;
  pointer-events: none;
}
.urgencies-section .container { position: relative; z-index: 2; }
.urgencies-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 50px;
}
.urgency-card {
  background: linear-gradient(135deg, var(--terre-cuite) 0%, var(--terre-cuite-dark) 100%);
  color: var(--white);
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.urgency-card::after {
  content: "";
  position: absolute;
  bottom: -60px; right: -60px;
  width: 180px; height: 180px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-blob-1);
}
.urgency-card > * { position: relative; z-index: 1; }
.urgency-card h3 {
  color: var(--white);
  font-size: 21px;
  margin-bottom: 14px;
}
.urgency-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
  margin: 0;
}

/* ============================================
   PAGE CONTACT
============================================ */
.contact-block {
  background: var(--creme);
  padding: var(--section-y) 0;
  position: relative;
  overflow: hidden;
}
/* Formes biscornues décoratives en fond */
.contact-block::before {
  content: "";
  position: absolute;
  top: 220px; left: -160px;
  width: 460px; height: 500px;
  background: var(--terre-cuite-soft);
  border-radius: 60% 40% 55% 45% / 55% 50% 50% 45%;
  opacity: 0.4;
  animation: blobMorphFloat1 22s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}
.contact-block::after {
  content: "";
  position: absolute;
  bottom: 180px; right: -150px;
  width: 560px; height: 640px;
  background: var(--bleu-canard-light);
  border-radius: 50% 50% 45% 55% / 55% 45% 50% 50%;
  opacity: 0.16;
  animation: blobMorphFloat2 26s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}
.contact-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
  position: relative;
  z-index: 2;
}
.contact-coords {
  background: var(--nude);
  padding: 44px 40px;
  border-radius: 36px;
}
.contact-coords h3 {
  font-size: 26px;
  margin-bottom: 24px;
}
.coord-item {
  display: flex;
  gap: 18px;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--hairline);
}
.coord-item:last-child { border-bottom: 0; padding-bottom: 0; margin-bottom: 0; }
.coord-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: var(--white);
  color: var(--bleu-canard);
  border-radius: 50% 30% 50% 30% / 30% 50% 30% 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.coord-icon svg { width: 22px; height: 22px; }
.coord-content { flex: 1; }
.coord-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terre-cuite);
  margin-bottom: 4px;
}
.coord-value {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--bleu-canard);
  font-weight: 500;
  line-height: 1.3;
}
.coord-extra {
  font-size: 13.5px;
  color: var(--texte-soft);
  margin-top: 4px;
  line-height: 1.5;
}

.hours-table {
  margin-top: 24px;
  background: var(--white);
  border-radius: 18px;
  padding: 20px 24px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px dashed var(--hairline);
}
.hours-row:last-child { border-bottom: 0; }
.hours-day { color: var(--texte); font-weight: 500; }
.hours-time { color: var(--texte-soft); }
.hours-row.closed .hours-time { color: var(--terre-cuite); font-style: italic; }

.contact-form {
  background: var(--white);
  padding: 44px 40px;
  border-radius: 36px;
  border: 1.5px solid var(--hairline);
  margin-top: 40px;
}
.contact-form h3 {
  font-size: 26px;
  margin-bottom: 26px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-field {
  margin-bottom: 16px;
}
.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--bleu-canard);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.form-field label .req {
  color: var(--terre-cuite);
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--hairline);
  border-radius: 14px;
  background: var(--creme);
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--texte);
  transition: all .25s var(--ease);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--bleu-canard);
  background: var(--white);
  box-shadow: 0 0 0 4px var(--bleu-canard-soft);
}
.form-field textarea {
  resize: vertical;
  min-height: 130px;
  font-family: var(--font-sans);
}
.form-rgpd {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 22px 0;
  font-size: 13px;
  color: var(--texte-soft);
  line-height: 1.5;
}
.form-rgpd input { margin-top: 3px; accent-color: var(--bleu-canard); }
.form-submit {
  width: 100%;
  padding: 16px 28px;
  background: var(--bleu-canard);
  color: var(--white);
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: all .35s var(--ease);
  cursor: pointer;
  font-family: var(--font-sans);
}
.form-submit:hover {
  background: var(--bleu-canard-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -12px rgba(46, 99, 120, 0.45);
}

.map-wrap {
  margin-top: 60px;
  border-radius: 58% 42% 52% 48% / 30% 35% 65% 70%;
  overflow: hidden;
  border: 2px solid var(--white);
  box-shadow: 0 30px 60px -25px rgba(44, 61, 58, 0.2);
  position: relative;
  aspect-ratio: 16 / 7;
}
.map-wrap iframe {
  position: absolute;
  top: -60px;
  left: -80px;
  width: calc(100% + 160px);
  height: calc(100% + 120px);
  border: 0;
  display: block;
}

/* ============================================
   PAGE MENTIONS LÉGALES
============================================ */
.legal-body {
  background: var(--creme);
  padding: 60px 0 var(--section-y);
}
.legal-content {
  max-width: 820px;
  margin: 0 auto;
}
.legal-section {
  margin-bottom: 50px;
}
.legal-section h2 {
  font-size: 24px;
  margin-bottom: 18px;
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.legal-section h2::before {
  content: counter(legal-counter);
  counter-increment: legal-counter;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--terre-cuite);
  font-weight: 400;
  flex-shrink: 0;
}
.legal-content {
  counter-reset: legal-counter;
}
.legal-section h3 {
  font-size: 18px;
  margin: 22px 0 10px;
  color: var(--bleu-canard);
}
.legal-section p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--texte-soft);
  margin: 0 0 14px;
}
.legal-section strong { color: var(--bleu-canard); font-weight: 600; }
.legal-section a {
  color: var(--terre-cuite);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.legal-section a:hover { color: var(--terre-cuite-dark); }
.legal-section ul {
  padding-left: 0;
  list-style: none;
  margin: 12px 0;
}
.legal-section li {
  padding-left: 22px;
  margin-bottom: 8px;
  position: relative;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--texte-soft);
}
.legal-section li::before {
  content: "";
  position: absolute;
  left: 0; top: 10px;
  width: 6px; height: 6px;
  background: var(--terre-cuite);
  border-radius: 50%;
}

/* ============================================
   RESPONSIVE PAGES INTÉRIEURES
============================================ */
@media (max-width: 1024px) {
  .page-hero { padding: 110px 0 80px; }
  .page-hero-inner { grid-template-columns: 1fr; gap: 50px; }
  .page-hero-traitements .page-hero-inner { grid-template-columns: 1fr; }
  .page-hero-premiere .page-hero-inner { grid-template-columns: 1fr; }
  .page-hero-contact .page-hero-inner { grid-template-columns: 1fr; }
  .page-hero-visual { max-width: 380px; margin: 0 auto; aspect-ratio: auto; }
  .page-hero-photo { position: relative; inset: auto; width: 100%; height: auto; aspect-ratio: 1 / 1; }
  .page-hero-traitements .page-hero-photo,
  .page-hero-premiere .page-hero-photo { aspect-ratio: 3 / 2; }
  .team-grid { grid-template-columns: 1fr 1fr; max-width: 620px; }
  .team-card:nth-child(1), .team-card:nth-child(2), .team-card:nth-child(3) { margin-top: 0; }
  .techs-grid { grid-template-columns: 1fr 1fr; }
  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, 200px);
  }
  .gallery-item.big { grid-column: span 2; grid-row: span 1; }
  .gallery-item.tall { grid-row: span 1; }
  .treatment-row,
  .treatment-row.reversed {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .treatment-row.reversed .treatment-visual { order: 0; }
  .treatment-visual { max-width: 400px; margin: 0 auto; aspect-ratio: auto; }
  .treatment-illustration.has-photo { position: relative; inset: auto; width: 100%; height: auto; aspect-ratio: 1 / 1; }
  .documents-grid { grid-template-columns: 1fr 1fr; }
  .tarifs-grid { grid-template-columns: 1fr; }
  .videos-grid { grid-template-columns: 1fr 1fr; }
  .tips-grid { grid-template-columns: 1fr 1fr; }
  .urgencies-grid { grid-template-columns: 1fr; }
  .contact-detail-grid { grid-template-columns: 1fr; }
  .contact-form { margin-top: 0; }
}

@media (max-width: 720px) {
  .page-hero { padding: 90px 0 60px; }
  .page-hero-title { font-size: 38px; }
  .techs-grid { grid-template-columns: 1fr; }
  .gallery {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-rows: 240px;
  }
  .gallery-item.big,
  .gallery-item.wide,
  .gallery-item.tall { grid-column: span 1; grid-row: span 1; }
  .documents-grid { grid-template-columns: 1fr; }
  .videos-grid { grid-template-columns: 1fr; }
  .tips-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; max-width: 360px; }
  .team-photo { margin: 0 auto; }
  .form-row { grid-template-columns: 1fr; }
  .contact-coords,
  .contact-form { padding: 30px 24px; }
}

/* ============================================
   FORMULAIRE CONTACT — Honeypot + feedback
============================================ */
/* Honeypot anti-spam : invisible aux humains */
.form-honeypot {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* Zone de feedback après envoi */
.form-feedback {
  margin-top: 16px;
  padding: 0;
  font-size: 14px;
  line-height: 1.5;
  border-radius: 14px;
  display: none;
}
.form-feedback.is-visible {
  display: block;
  padding: 14px 18px;
  animation: feedbackIn 0.4s var(--ease);
}
.form-feedback.is-success {
  background: rgba(46, 99, 120, 0.08);
  border: 1.5px solid var(--bleu-canard);
  color: var(--bleu-canard);
}
.form-feedback.is-error {
  background: rgba(184, 134, 107, 0.10);
  border: 1.5px solid var(--terre-cuite);
  color: var(--terre-cuite-dark);
}
.form-feedback ul {
  margin: 8px 0 0;
  padding-left: 18px;
}
.form-feedback li {
  margin-bottom: 4px;
}
@keyframes feedbackIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Bouton submit pendant l'envoi */
.form-submit:disabled,
.form-submit.is-sending {
  opacity: 0.7;
  cursor: wait;
  pointer-events: none;
}
.form-submit.is-sending::after {
  content: "…";
  margin-left: 6px;
  display: inline-block;
  animation: dots 1.4s infinite;
}
@keyframes dots {
  0%, 80%, 100% { opacity: 0.3; }
  40% { opacity: 1; }
}

/* ============================================
   PAGE MERCI
============================================ */
.merci-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 20px 0 40px;
}


/* ============================================
   OVERRIDES Lora : redresser les poids des grands titres
   (Fraunces 400 ≈ Lora 500 pour garder la même présence)
============================================ */
.hero-title,
.page-hero-title,
.section-title,
.approche-title,
.stats-title,
.about-title,
.cta-title,
.treatment-title,
.case-title {
  font-weight: 500;
}
.hero-title em,
.page-hero-title em,
.section-title em,
.approche-title em,
.stats-title em,
.about-title em,
.cta-title em,
.treatment-title em,
.case-title em {
  font-weight: 500;
}
.stat-number {
  font-weight: 600;
}
.step-num {
  font-weight: 600;
}
.treatment-num-big {
  font-weight: 500;
}

/* ============================================
   PREMIÈRE VISITE — Étapes en liste verticale
============================================ */
.steps-vertical {
  max-width: 820px;
  margin: 60px auto 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.parcours-blue .steps-vertical { /* sur fond bleu */ }

.step-v {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  transition: transform .4s var(--ease), background .4s var(--ease);
}
.step-v:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.1);
}
.step-v-num {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--white);
  color: var(--bleu-canard);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  border: 2px solid var(--sable);
}
.step-v-body {
  flex: 1;
}
.step-v-title {
  font-size: 23px;
  color: var(--white);
  margin-bottom: 14px;
  font-weight: 600;
}
.step-v-text,
.step-v-body p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 12px;
}
.step-v-body p:last-child { margin-bottom: 0; }
.step-v-body strong { color: var(--sable); font-weight: 600; }
.step-v-list {
  margin: 8px 0 16px;
  padding: 0;
  list-style: none;
}
.step-v-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}
.step-v-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 10px;
  width: 7px; height: 7px;
  background: var(--sable);
  border-radius: 50%;
}

@media (max-width: 720px) {
  .step-v {
    flex-direction: column;
    gap: 16px;
    padding: 26px 24px;
  }
  .step-v-title { font-size: 20px; }
}

/* ============================================
   PAGE PREMIÈRE VISITE — Questionnaires à télécharger
============================================ */
.questionnaires {
  background: var(--creme);
  padding: var(--section-y) 0;
}
.questionnaires-card {
  background: var(--nude);
  border-radius: 48px 32px 48px 32px / 40% 48px 40% 48px;
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.questionnaires-card::before {
  content: "";
  position: absolute;
  top: -80px; right: -80px;
  width: 280px; height: 280px;
  background: var(--terre-cuite-soft);
  border-radius: var(--radius-blob-1);
  opacity: 0.4;
  animation: blobFloat 26s ease-in-out infinite alternate;
  pointer-events: none;
}
.questionnaires-text {
  position: relative;
  z-index: 2;
}
.questionnaires-text .section-title {
  text-align: left;
}
.questionnaires-text .section-sub {
  text-align: left;
  margin-left: 0;
}
.questionnaires-buttons {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.quest-btn {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--white);
  border: 1.5px solid var(--hairline);
  border-radius: 28px 14px 28px 14px;
  padding: 20px 28px;
  transition: all .35s var(--ease);
}
.quest-btn:nth-child(2) {
  margin-left: 36px;
  border-radius: 14px 28px 14px 28px;
}
.quest-btn:hover {
  border-color: var(--bleu-canard);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -18px rgba(46, 99, 120, 0.35);
}
.quest-btn-icon {
  width: 52px; height: 52px;
  flex-shrink: 0;
  background: var(--bleu-canard-soft);
  color: var(--bleu-canard);
  border-radius: 50% 30% 50% 30% / 30% 50% 30% 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .5s var(--ease);
}
.quest-btn:hover .quest-btn-icon {
  background: var(--bleu-canard);
  color: var(--white);
  border-radius: 30% 50% 30% 50% / 50% 30% 50% 30%;
}
.quest-btn-icon svg { width: 26px; height: 26px; }
.quest-btn-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.quest-btn-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--bleu-canard);
}
.quest-btn-sub {
  font-size: 13px;
  color: var(--terre-cuite);
  font-weight: 500;
}

@media (max-width: 1024px) {
  .questionnaires-card {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 44px 36px;
  }
  .quest-btn:nth-child(2) { margin-left: 0; }
}
@media (max-width: 720px) {
  .questionnaires-card { padding: 32px 24px; }
  .quest-btn { padding: 16px 18px; gap: 14px; }
}

/* ============================================
   BLOC SEO — Orthodontiste à Challans (accueil)
============================================ */
.seo-block {
  background: var(--creme);
  padding: var(--section-y) 0;
}
.seo-inner {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}
.seo-heading {
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 12px auto 28px;
  max-width: 960px;
}
.seo-heading em { font-style: italic; color: var(--terre-cuite); }
.seo-text {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.seo-text p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--texte-soft);
  text-align: justify;
}
.seo-text strong {
  color: var(--bleu-canard);
  font-weight: 600;
}
@media (max-width: 720px) {
  .seo-text p { font-size: 15px; }
}

/* ============================================
   LIGHTBOX / POPUP GALERIE
============================================ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(28, 40, 38, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s var(--ease);
}
.lightbox.open {
  opacity: 1;
  visibility: visible;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 16px;
  box-shadow: 0 40px 90px -20px rgba(0,0,0,0.5);
  transform: scale(0.95);
  transition: transform .35s var(--ease);
}
.lightbox.open .lightbox-img { transform: scale(1); }
.lightbox-video {
  max-width: 90vw;
  max-height: 85vh;
  width: 880px;
  border-radius: 16px;
  background: #000;
  box-shadow: 0 40px 90px -20px rgba(0,0,0,0.5);
  transform: scale(0.95);
  transition: transform .35s var(--ease);
}
.lightbox.open .lightbox-video { transform: scale(1); }
.lightbox-caption {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  background: rgba(255,255,255,0.12);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-family: var(--font-sans);
}
.lightbox-close {
  position: absolute;
  top: 24px; right: 28px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s var(--ease);
}
.lightbox-close:hover { background: rgba(255,255,255,0.3); }

/* ============================================
   Bannière de consentement cookies (RGPD)
============================================ */
.cookie-banner { position: fixed; left: 0; right: 0; bottom: 0; z-index: 9999; transform: translateY(120%); transition: transform .4s ease; pointer-events: none; }
.cookie-banner.is-visible { transform: translateY(0); pointer-events: auto; }
.cookie-banner-inner { max-width: 1080px; margin: 16px auto; background: var(--bleu-canard); color: #fff; border-radius: 16px; padding: 20px 24px; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; box-shadow: 0 18px 50px -12px rgba(0,0,0,.45); }
.cookie-banner-text { flex: 1 1 300px; }
.cookie-banner-text strong { display: block; font-family: 'Lora', Georgia, serif; font-size: 18px; margin-bottom: 5px; }
.cookie-banner-text p { margin: 0; font-size: 13.5px; line-height: 1.55; opacity: .95; }
.cookie-banner-text a { color: var(--sable-soft, #F0E3CE); text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: 12px; flex: 0 0 auto; }
.cookie-btn { cursor: pointer; border-radius: 999px; padding: 12px 26px; font-weight: 600; font-size: 14px; border: 1.5px solid #fff; transition: opacity .2s ease; }
.cookie-btn:hover { opacity: .85; }
.cookie-accept { background: #fff; color: var(--bleu-canard); }
.cookie-refuse { background: transparent; color: #fff; }
@media (max-width: 600px) {
  .cookie-banner-inner { margin: 10px; padding: 18px; gap: 16px; }
  .cookie-banner-actions { width: 100%; }
  .cookie-btn { flex: 1; padding: 12px 12px; }
}
/* Embed tiers sous consentement (carte Google Maps) */
.consent-embed:not(.is-loaded) iframe { display: none !important; }
.consent-embed-placeholder { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; text-align: center; padding: 28px; background: var(--nude, #F4EFE5); color: var(--bleu-canard); }
.consent-embed.is-loaded .consent-embed-placeholder { display: none; }
.consent-embed-placeholder p { margin: 0; max-width: 360px; font-size: 14px; line-height: 1.5; }
.consent-embed-load { cursor: pointer; border: none; border-radius: 999px; padding: 12px 26px; background: var(--bleu-canard); color: #fff; font-weight: 600; font-size: 14px; }
.consent-embed-load:hover { opacity: .9; }

/* ============================================
   LOGO IMAGE (2 versions : blanc / sombre)
============================================ */
.logo-img {
  display: block;
  height: 46px;
  width: auto;
  flex-shrink: 0;
}
.logo-img--dark { display: none; }

/* Header opaque (accueil scrollé) + pages internes -> version sombre */
.site-header.scrolled .logo-img--light,
body.inner-page .site-header .logo-img--light { display: none; }
.site-header.scrolled .logo-img--dark,
body.inner-page .site-header .logo-img--dark { display: block; }

/* Le footer est bleu canard -> on garde la version blanche */
.footer-brand .logo-img { height: 52px; }

@media (max-width: 900px) {
  .logo-img { height: 38px; }
  .footer-brand .logo-img { height: 44px; }
}
@media (max-width: 480px) {
  .logo-img { height: 32px; }
  .footer-brand .logo-img { height: 40px; }
}
