/* ============================================
   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: 'Fraunces', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, system-ui, 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; }
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 — Fraunces avec un peu de SOFT pour les rondeurs
============================================ */
.font-display { font-family: var(--font-display); font-variation-settings: "SOFT" 50, "opsz" 80; }
.font-script  { font-family: var(--font-script); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0;
  color: var(--bleu-canard);
  font-variation-settings: "SOFT" 50, "opsz" 80;
}

.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;
  font-variation-settings: "SOFT" 50, "opsz" 60;
  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;
  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: hidden;
  isolation: isolate;
}
.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.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%);
}

.hero-floater-left,
.hero-floater-right {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  animation: floatGentle 8s ease-in-out infinite;
}
.hero-floater-left {
  width: 180px;
  top: 12%;
  left: -50px;
  opacity: 0.85;
}
.hero-floater-right {
  width: 130px;
  bottom: 18%;
  right: 6%;
  opacity: 0.65;
  animation-delay: 2s;
}

.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: 2;
  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;
  font-variation-settings: "SOFT" 100, "opsz" 144;
  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);
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.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;
}

/* ============================================
   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: 1fr 1fr;
  gap: 22px;
}
.engagement-card {
  background: var(--creme);
  padding: 34px 30px;
  border-radius: var(--radius-md);
  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: 50% 30% 50% 30% / 30% 50% 30% 50%;
}
.engagement-card.col-bleu {
  background: var(--bleu-canard);
  color: var(--white);
}
.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);
  font-variation-settings: "SOFT" 50, "opsz" 30;
}
.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%; }
}
@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%; }
}

.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;
  font-variation-settings: "SOFT" 100, "opsz" 100;
  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;
}
.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; }

.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;
  font-variation-settings: "SOFT" 100, "opsz" 120;
  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;
}
.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;
  font-variation-settings: "SOFT" 50, "opsz" 30;
}
.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::before {
  content: "";
  position: absolute;
  top: -8%; right: -10%;
  width: 420px; height: 420px;
  background: var(--terre-cuite-soft);
  border-radius: var(--radius-blob-2);
  opacity: 0.35;
  animation: blobFloat 26s ease-in-out infinite alternate;
}
.publics::after {
  content: "";
  position: absolute;
  bottom: -10%; 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;
}
.publics .container { position: relative; z-index: 2; }

.publics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 70px;
}
.public-card {
  position: relative;
  background: var(--creme);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.public-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px -25px rgba(44, 61, 58, 0.25);
}
.public-photo-wrap {
  padding: 18px 18px 0;
  position: relative;
}
.public-photo {
  height: 320px;
  background-size: cover;
  background-position: center;
  border-radius: 36px 36px 80px 30px / 36px 36px 50px 30px;
  position: relative;
  overflow: hidden;
  transition: border-radius .8s var(--ease);
}
.public-card:hover .public-photo {
  border-radius: 80px 30px 36px 60px / 50px 30px 36px 40px;
}
.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;
}
.public-name {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 8px;
  font-variation-settings: "SOFT" 50, "opsz" 40;
}
.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(--bleu-canard);
  color: var(--white);
  padding: 110px 0;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 60px 60px / 0 0 60px 60px;
}
.stats::before {
  content: "";
  position: absolute;
  top: -100px; left: -80px;
  width: 360px; height: 360px;
  background: rgba(219, 197, 168, 0.14);
  border-radius: var(--radius-blob-1);
  animation: blobFloat 20s ease-in-out infinite alternate;
}
.stats::after {
  content: "";
  position: absolute;
  bottom: -140px; right: -60px;
  width: 420px; height: 420px;
  background: rgba(184, 134, 107, 0.18);
  border-radius: var(--radius-blob-3);
  animation: blobFloat 26s ease-in-out infinite alternate-reverse;
}
.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;
  font-variation-settings: "SOFT" 100, "opsz" 120;
  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(3, 1fr);
  gap: 40px;
  max-width: 900px;
  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(255,255,255,0.18);
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 400;
  font-variation-settings: "SOFT" 100, "opsz" 144;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--white);
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}
.stat-number .unit {
  font-size: 0.45em;
  color: var(--sable);
  font-style: italic;
}
.stat-number.stat-label-text {
  font-style: italic;
  font-size: clamp(38px, 4.8vw, 60px);
  color: var(--sable);
  font-variation-settings: "SOFT" 100, "opsz" 100;
}
.stat-label {
  font-size: 14px;
  opacity: 0.8;
  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);
}
.case-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 24px;
}
.case-photo {
  aspect-ratio: 1 / 1;
  position: relative;
  background: var(--nude);
  border-radius: 24px 24px 36px 20px / 24px 24px 28px 20px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 14px;
  overflow: hidden;
  /* Placeholder pattern */
  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: 24px 24px;
  background-position: 0 0, 12px 12px;
}
.case-photo.case-after {
  border-radius: 20px 36px 24px 24px / 20px 28px 24px 24px;
  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: 24px 24px;
  background-position: 0 0, 12px 12px;
}
.case-label {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,0.95);
  color: var(--bleu-canard);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font-sans);
}
.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;
  font-variation-settings: "SOFT" 50, "opsz" 30;
  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;
  overflow: hidden;
}
.about::before {
  content: "";
  position: absolute;
  top: 10%; left: -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;
}
.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;
  background-image: url("https://images.unsplash.com/photo-1559839734-2b71ea197ec2?w=900&q=80&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
  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;
  font-variation-settings: "SOFT" 100, "opsz" 100;
  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(--creme);
  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; }
.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;
  font-variation-settings: "SOFT" 100, "opsz" 60;
  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;
  font-variation-settings: "SOFT" 50, "opsz" 30;
}
.step-text {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--texte-soft);
  margin: 0;
}

/* ============================================
   CTA — Color block terre cuite
============================================ */
.cta-block {
  position: relative;
  padding: var(--section-y) 0;
  background: var(--creme-deep);
  overflow: hidden;
}
.cta-card {
  background: linear-gradient(135deg, var(--terre-cuite) 0%, var(--terre-cuite-dark) 100%);
  border-radius: var(--radius-xl);
  padding: 90px 60px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-card::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 360px; height: 360px;
  background: rgba(255,255,255,0.10);
  border-radius: var(--radius-blob-1);
  animation: blobFloat 22s ease-in-out infinite alternate;
}
.cta-card::after {
  content: "";
  position: absolute;
  bottom: -120px; left: -80px;
  width: 320px; height: 320px;
  background: rgba(46, 99, 120, 0.18);
  border-radius: var(--radius-blob-2);
  animation: blobFloat 28s ease-in-out infinite alternate-reverse;
}
.cta-content { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.cta-script {
  font-family: var(--font-script);
  color: var(--sable-light);
  font-size: 32px;
  line-height: 1;
  margin-bottom: 6px;
}
.cta-title {
  font-size: clamp(36px, 4.8vw, 56px);
  color: var(--white);
  font-weight: 400;
  font-variation-settings: "SOFT" 100, "opsz" 120;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0 0 20px;
}
.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-card .btn-primary {
  background: var(--white);
  color: var(--bleu-canard);
}
.cta-card .btn-primary:hover {
  background: var(--bleu-canard);
  color: var(--white);
}
.cta-mention {
  margin-top: 28px;
  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;
  font-variation-settings: "SOFT" 50, "opsz" 30;
  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;
  font-variation-settings: "SOFT" 50, "opsz" 30;
}
.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-floater-left { width: 130px; }
  .hero-floater-right { width: 90px; }
  .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; }
  .traitements-grid { grid-template-columns: 1fr 1fr; }
  .publics-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .stats-grid { grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
  .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; }
  .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; }
}

@media (max-width: 720px) {
  :root { --gutter: 20px; --section-y: 70px; }
  .main-nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .hero { min-height: 85vh; }
  .hero-content-wrap { padding: 60px 0 100px; }
  .hero-handwriting { font-size: 26px; right: 5%; top: 80px; }
  .hero-floater-left { display: none; }
  .hero-floater-right { width: 70px; bottom: 12%; }
  .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-card { padding: 60px 30px; }
  .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: var(--radius-blob-2);
  opacity: 0.4;
  animation: blobFloat 24s ease-in-out infinite alternate;
  z-index: 0;
}
.page-hero::after {
  content: "";
  position: absolute;
  bottom: -20%; left: -8%;
  width: 320px; height: 320px;
  background: var(--sable-soft);
  border-radius: var(--radius-blob-3);
  opacity: 0.5;
  animation: blobFloat 28s ease-in-out infinite alternate-reverse;
  z-index: 0;
}
.page-hero .container { position: relative; z-index: 2; }

.page-hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.page-hero-content {
  position: relative;
}
.page-hero-title {
  font-size: clamp(40px, 5.6vw, 72px);
  font-weight: 400;
  font-variation-settings: "SOFT" 100, "opsz" 120;
  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;
}
.page-hero-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-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: 1fr 1fr;
  gap: 32px;
  margin-top: 60px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
.team-card {
  background: var(--creme);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  gap: 28px;
  align-items: center;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px -20px rgba(44, 61, 58, 0.18);
}
.team-photo {
  width: 130px; height: 130px;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--sable-soft);
  border-radius: 60% 40% 50% 50% / 55% 45% 55% 45%;
  animation: blobMorph 20s ease-in-out infinite alternate;
}
.team-card:nth-child(2) .team-photo {
  animation-delay: -8s;
}
.team-info h3 {
  font-size: 22px;
  margin-bottom: 6px;
  font-variation-settings: "SOFT" 50, "opsz" 30;
}
.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 30px;
  border-radius: var(--radius-lg);
  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);
}
.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;
  font-variation-settings: "SOFT" 50, "opsz" 30;
}
.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;
  gap: 20px;
  margin-top: 60px;
}
.gallery-item {
  background-size: cover;
  background-position: center;
  background-color: var(--sable-soft);
  position: relative;
  overflow: hidden;
  transition: all .5s var(--ease);
  border-radius: 24px;
}
.gallery-item:hover {
  border-radius: 60% 40% 50% 50% / 40% 60% 40% 60%;
}
.gallery-item.big {
  grid-column: span 2;
  grid-row: span 2;
  border-radius: 36px;
}
.gallery-item.big:hover {
  border-radius: 60% 40% 50% 50% / 40% 60% 40% 60%;
}
.gallery-item.tall {
  grid-row: span 2;
}
.gallery-label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  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);
}
.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; }

/* ============================================
   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 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-variation-settings: "SOFT" 100, "opsz" 144;
  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;
  font-variation-settings: "SOFT" 100, "opsz" 80;
  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;
}
.document-icon svg { width: 30px; height: 30px; }
.document-title {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 8px;
  font-variation-settings: "SOFT" 50, "opsz" 20;
  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;
}
.tarif-card {
  padding: 44px 38px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.tarif-card.minor {
  background: var(--bleu-canard);
  color: var(--white);
}
.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);
}
.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;
  font-variation-settings: "SOFT" 50, "opsz" 30;
}
.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);
  font-variation-settings: "SOFT" 30, "opsz" 30;
  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;
  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;
}
.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: 16px; left: 16px;
  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;
  font-variation-settings: "SOFT" 50, "opsz" 30;
}
.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 26px;
  border-radius: var(--radius-md);
  transition: all .4s var(--ease);
}
.tip-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -18px rgba(44, 61, 58, 0.18);
}
.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;
  font-variation-settings: "SOFT" 50, "opsz" 20;
}
.tip-text {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--texte-soft);
  margin: 0;
}

.urgencies {
  margin-top: 80px;
}
.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;
  font-variation-settings: "SOFT" 50, "opsz" 30;
}
.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;
}
.contact-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.contact-coords {
  background: var(--nude);
  padding: 44px 40px;
  border-radius: var(--radius-lg);
}
.contact-coords h3 {
  font-size: 26px;
  margin-bottom: 24px;
  font-variation-settings: "SOFT" 50, "opsz" 30;
}
.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: var(--radius-lg);
  border: 1.5px solid var(--hairline);
}
.contact-form h3 {
  font-size: 26px;
  margin-bottom: 26px;
  font-variation-settings: "SOFT" 50, "opsz" 30;
}
.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: var(--radius-lg);
  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 {
  width: 100%;
  height: 100%;
  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;
  font-variation-settings: "SOFT" 50, "opsz" 30;
  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);
  font-variation-settings: "SOFT" 30, "opsz" 20;
}
.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-visual { max-width: 380px; margin: 0 auto; }
  .team-grid { grid-template-columns: 1fr; }
  .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; }
  .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; }
}

@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: repeat(6, 200px);
  }
  .documents-grid { grid-template-columns: 1fr; }
  .videos-grid { grid-template-columns: 1fr; }
  .tips-grid { grid-template-columns: 1fr; }
  .team-card { flex-direction: column; text-align: center; }
  .team-photo { margin: 0 auto; }
  .form-row { grid-template-columns: 1fr; }
  .contact-coords,
  .contact-form { padding: 30px 24px; }
}
