/* ══════════════════════════════════════════
   Centre dentaire Karine Bastien – Souris à la vie
   Direction visuelle : chaleureuse, douce, premium
   ══════════════════════════════════════════ */

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

/* ── Reset & base ── */

/* ── Variables ── */
:root {
  /* Couleurs principales */
  --color-primary:       #1D273F;   /* bleu-noir profond – CTA, titres forts */
  --color-primary-dark:  #111827;
  --color-primary-light: #e8ecf5;   /* teinte très pâle du primary */

  /* Accent rouge – logo, micro-accents uniquement */
  --color-red:           #D9A39A;
  --color-red-light:     #fcecea;
  --color-red-muted:     #B06060;   /* rouge brique – couleur logo */

  /* Accent clay chaleureux */
  --color-clay:          #C4A49B;
  --color-clay-dark:     #A07E74;
  --color-clay-light:    #F5EAE7;

  /* Fonds */
  --color-bg:            #FAFAFA;   /* blanc pur – fond principal */
  --color-surface:       #F5EDE9;   /* beige rosé clair */
  --color-sage:          #EDE0DB;   /* beige pâle – blocs alternatifs */
  --color-sage-dark:     #A07E74;

  /* Texte */
  --color-text:          #1D273F;   /* bleu-noir profond */
  --color-text-soft:     #2c3a58;   /* variante légèrement atténuée */
  --color-muted:         #5a6478;   /* texte secondaire / descriptions */

  /* Bords & ombres */
  --color-border:        #E5D9CC;   /* bordure chaude, jamais grise froide */
  --shadow-xs:           0 1px 4px rgba(23,73,77,.06);
  --shadow-sm:           0 2px 10px rgba(23,73,77,.08);
  --shadow-md:           0 6px 24px rgba(23,73,77,.10);

  /* Géométrie */
  --radius-sm:   8px;
  --radius:      12px;
  --radius-lg:   18px;
  --radius-xl:   24px;

  /* Typographie */
  --font-title:  'Playfair Display', Georgia, serif;
  --font-body:   'Montserrat', system-ui, sans-serif;

  /* Layout */
  --max-w: 1400px;
  --section-py: 100px;
}

/* ── Cursor custom ── */
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-red-muted);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
  transition: opacity .25s, transform .3s cubic-bezier(.25,.46,.45,.94);
}
.cursor-dot.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* ── Base ── */
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: #fff;
  line-height: 1.65;
  font-size: 1rem;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
}

h1 { font-family: var(--font-title); font-weight: 700; line-height: 1.1; letter-spacing: -.02em; }
h2 { font-family: var(--font-title); font-weight: 800; line-height: 1.15; letter-spacing: -.01em; }
h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--color-red);
  border-radius: 2px;
  margin-top: 1.25rem;
}
h3 { font-family: var(--font-title); font-weight: 700; line-height: 1.25; }
h4, h5, h6 { font-family: var(--font-body); font-weight: 600; }

a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
a:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 3px; border-radius: 4px; }

img { max-width: 100%; display: block; }

/* Bullets roses */
.info-section ul li,
.srv-section ul li,
.ap-mission-text ul li,
.step-card ul li,
.steps-banner-col ul li,
.srv-featured-text ul li {
  list-style: none;
  position: relative;
  padding-left: 1.2rem;
}
.info-section ul li::before,
.srv-section ul li::before,
.ap-mission-text ul li::before,
.step-card ul li::before,
.steps-banner-col ul li::before,
.srv-featured-text ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .65em;
  width: 6px;
  height: 6px;
  background: var(--color-red);
  border-radius: 50%;
}

/* ── Utilities ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }

.grid { display: grid; gap: 1.75rem; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.grid-5 { grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }

/* ── Page Loader ── */
/* ── LOADER (désactivé — en banque pour la fin) ──
.page-loader {
  position: fixed;
  inset: 0;
  background: #F5EAE7;
  z-index: 100000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  clip-path: inset(0 0 0% 0);
  transition: clip-path 0.9s cubic-bezier(.4,0,.2,1), opacity 0.9s ease;
  pointer-events: all;
}
.page-loader.loader-done {
  clip-path: inset(0 0 100% 0);
  opacity: 0;
  pointer-events: none;
}
.loader-apple {
  width: clamp(180px, 28vw, 280px);
  height: auto;
  animation: loaderAppleIn 1.2s cubic-bezier(.25,.46,.45,.94) both;
}
@keyframes loaderAppleIn {
  0%   { opacity: 0; transform: scale(.7); color: var(--color-red); }
  100% { opacity: 1; transform: scale(1);  color: var(--color-red); }
}
── */


/* ── Boutons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .8rem 2.1rem;
  border-radius: 12px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .78rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color .2s, transform .15s, box-shadow .15s, color .2s;
  white-space: nowrap;
  letter-spacing: .13em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.12);
  opacity: 0;
  transition: opacity .25s ease;
  z-index: -1;
}
.btn:hover::before { opacity: 1; }
.btn:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 3px; }

/* Principal – rouge logo */
.btn-primary {
  background: var(--color-red);
  color: #fff;
  border-color: var(--color-red);
}
.btn-primary:hover {
  border-color: var(--color-red-muted);
  background: var(--color-red-muted);
  text-decoration: none;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(217,163,154,.35);
}

/* Blanc – sur fonds foncés */
.btn-white {
  background: #fff;
  color: var(--color-primary);
  border-color: #fff;
  font-weight: 700;
}
.btn-white:hover {
  background: var(--color-primary-light);
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* Contour clair – sur fonds foncés */
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.55);
}
.btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
  text-decoration: none;
}

/* Contour sombre – sur fonds clairs */
.btn-outline-dark {
  background: transparent;
  color: var(--color-clay);
  border-color: var(--color-clay);
}
.btn-outline-dark:hover {
  background: var(--color-clay-light);
  border-color: var(--color-clay-dark);
  color: var(--color-clay-dark);
  text-decoration: none;
}

/* ── Typographie de section ── */
.section-eyebrow {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--color-red);
  margin-bottom: .6rem;
}
.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 2px;
  background: var(--color-red);
  border-radius: 2px;
  flex-shrink: 0;
}
.section-header { margin-bottom: 3rem; }
.section-header h2,
.value-content h2 {
  font-size: clamp(1.5rem, 3vw, 2.75rem);
  color: var(--color-text);
  margin-bottom: .6rem;
}
.section-header h2::after { display: block; margin-left: auto; margin-right: auto; }
.section-subtitle {
  color: var(--color-muted);
  font-size: 1.05rem;
  max-width: 580px;
  line-height: 1.75;
  margin-left: auto;
  margin-right: auto;
}
.section-header--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

section { padding: var(--section-py) 0 calc(var(--section-py) + 1rem); }

/* ── Top Bar ── */
.top-bar {
  background: var(--color-primary);
  color: rgba(255,255,255,.88);
  font-size: .8rem;
  font-weight: 500;
  padding: .5rem 0;
  letter-spacing: .01em;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.today-open  { color: var(--color-red); font-weight: 600; }
.today-closed { color: var(--color-red); font-weight: 600; }
.top-bar-phone {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: #fff;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .03em;
}
.top-bar-phone:hover { color: var(--color-red); text-decoration: none; }

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease, top .15s ease;
}
.site-header.scrolled {
  background: #fff;
  border-bottom-color: var(--color-border);
  box-shadow: 0 4px 20px rgba(29, 39, 63, .08), 0 1px 4px rgba(29, 39, 63, .04);
}

/* Barre de progression du scroll */
.scroll-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(to right, var(--color-red-muted), var(--color-red));
  border-radius: 0 2px 2px 0;
  transition: width .1s linear;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 0 8px rgba(217,163,154,.5);
}
.site-header.scrolled .scroll-progress {
  opacity: 1;
}
.site-header .container {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: .85rem;
  padding-bottom: .85rem;
}

.logo { flex-shrink: 0; display: flex; align-items: center; }
.logo img { height: 62px; width: auto; transition: height .3s ease; }
.site-header.scrolled .logo img { height: 52px; }

.nav { flex: 1; }
.nav > ul {
  display: flex;
  gap: .15rem;
  list-style: none;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* Pastille glissante */
.nav-pill {
  position: absolute;
  left: 0;
  top: 0;
  background: #F0D5CF;
  border-radius: var(--radius-sm);
  pointer-events: none;
  z-index: 0;
  will-change: transform, width, height;
  transition: transform .3s cubic-bezier(.4, 0, .2, 1),
              width   .3s cubic-bezier(.4, 0, .2, 1),
              height  .3s cubic-bezier(.4, 0, .2, 1),
              opacity .2s ease;
}

.nav a {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--color-text-soft);
  font-weight: 600;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .42rem .7rem;
  border-radius: var(--radius-sm);
  transition: color .15s;
  background: transparent;
}
.nav a:hover { color: var(--color-red-muted); text-decoration: none; }
.nav a.active { color: var(--color-red-muted); background: #F0D5CF; font-weight: 700; text-decoration: none; }
/* Masque le fond CSS de l'active pendant que la pastille JS prend le relais */
.nav > ul.is-hovering a.active { background: transparent; }

/* ── Dropdown sous-menu ── */
.has-dropdown { position: relative; }

.dropdown-arrow {
  display: inline-block;
  vertical-align: middle;
  margin-left: .2rem;
  margin-top: -1px;
  transition: transform .2s ease;
}
.has-dropdown:hover .dropdown-arrow,
.has-dropdown:focus-within .dropdown-arrow {
  transform: rotate(180deg);
}

/* Pont invisible pour ne pas perdre le hover entre le lien et le panel */
.has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -20px;
  right: -20px;
  height: 14px;
  background: transparent;
}

.dropdown {
  display: flex;
  flex-direction: column;
  gap: 0;
  justify-content: flex-start;
  flex-wrap: nowrap;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(29,39,63,.12);
  padding: .4rem;
  list-style: none;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown li a {
  display: block;
  padding: .55rem .85rem;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .01em;
  text-transform: none;
  color: var(--color-text-soft);
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: background .15s, color .15s;
  background: transparent;
}
.dropdown li a:hover {
  background: #F0D5CF;
  color: var(--color-red-muted);
  text-decoration: none;
}

/* Empêche la pastille JS de couvrir le dropdown */
.has-dropdown { z-index: 1; }

.nav-cta { flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
  border-radius: 6px;
}
.nav-toggle:hover { background: var(--color-surface); }
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all .2s;
}

/* ── Animations hero ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Animations au scroll (IntersectionObserver) ── */
[data-anim] {
  opacity: 0;
  transform: translateY(16px);
  filter: blur(4px);
  transition: opacity .6s cubic-bezier(.25, .46, .45, .94), transform .6s cubic-bezier(.25, .46, .45, .94), filter .45s ease;
}
[data-anim].anim-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Split reveal directionnel */
[data-anim-dir="left"] {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity .9s cubic-bezier(.25,0,.2,1), transform .9s cubic-bezier(.25,0,.2,1);
}
[data-anim-dir="right"] {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity .9s cubic-bezier(.25,0,.2,1), transform .9s cubic-bezier(.25,0,.2,1);
}
[data-anim-dir].anim-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Scale reveal — carrousel témoignages */
[data-anim-scale] {
  opacity: 0;
  transform: scale(.94) translateY(28px);
  transition: opacity 1.1s cubic-bezier(.25,.46,.45,.94), transform 1.1s cubic-bezier(.25,.46,.45,.94);
  transition-delay: .2s;
}
[data-anim-scale].anim-visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}
[data-anim-flip] {
  opacity: 0;
  transform: perspective(900px) rotateX(8deg) translateY(24px);
  transition: opacity .75s cubic-bezier(.25,.46,.45,.94), transform .75s cubic-bezier(.25,.46,.45,.94);
}
[data-anim-flip].anim-visible {
  opacity: 1;
  transform: perspective(900px) rotateX(0deg) translateY(0);
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(48px); }
  to   { opacity: 1; transform: translateX(0); }
}

.hero-eyebrow   { animation: fadeUp .6s ease both; animation-delay: .1s; }
.hero h1        { animation: fadeUp .7s ease both; animation-delay: .25s; }
.hero-sub       { animation: fadeUp .7s ease both; animation-delay: .4s; border-right: 2px solid var(--color-red); padding-right: 2px; animation: fadeUp .7s ease both, heroCursor .6s step-end infinite; animation-delay: .4s, 1.2s; }
@keyframes heroCursor {
  0%, 100% { border-color: var(--color-red); }
  50%      { border-color: transparent; }
}
.hero-actions   { animation: fadeUp .7s ease both; animation-delay: .55s; }
.hero-contact   { animation: fadeUp .6s ease both; animation-delay: .7s; }
.hero-visual    { animation: none; }

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, #F5EAE7 0%, #fce4de 25%, #F5EAE7 50%, #e8d5cf 75%, #F5EAE7 100%);
  background-size: 400% 400%;
  animation: heroGradient 12s ease infinite;
  margin: 15px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  padding: 4rem 0 3rem;
  padding-top: calc(4rem + 80px);
  min-height: var(--hero-h, calc(100vh - 66px));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
@keyframes heroGradient {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-deco-apple {
  position: absolute;
  bottom: -12%;
  left: 2%;
  width: 900px;
  height: auto;
  opacity: .20;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  filter: brightness(0) invert(1);
  animation: applePulse 6s ease-in-out infinite;
}
@keyframes applePulse {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: .20; }
  50%      { transform: scale(1.03) rotate(1deg); opacity: .25; }
}

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

.hero-content { padding: 2rem 0; }

.hero-eyebrow {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--color-clay);
  margin-bottom: 1.1rem;
}

.hero h1 {
  font-size: clamp(2.1rem, 3.2vw, 3.6rem);
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

.hero h1::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--color-red);
  border-radius: 2px;
  margin-top: 1.5rem;
}

.hero-sub {
  font-size: .95rem;
  color: var(--color-muted);
  line-height: 2.5;
  margin-bottom: 3rem;
  max-width: 480px;
  font-weight: 500;
  letter-spacing: .01em;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

/* Infos de contact en bas du hero */
.hero-contact {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-contact-item {
  display: flex;
  align-items: center;
  gap: .85rem;
  color: var(--color-text);
  text-decoration: none;
  transition: color .15s;
}
.hero-contact-item:hover { color: var(--color-primary); text-decoration: none; }

.hero-contact-icon {
  width: 42px;
  height: 42px;
  background: var(--color-red-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-red);
  flex-shrink: 0;
  border: 1px solid rgba(200, 54, 42, .2);
  transition: background .2s, color .2s;
}
.hero-contact-item:hover .hero-contact-icon { background: var(--color-red); color: #fff; }
.hero-contact-icon svg { width: 16px; height: 16px; }

.hero-contact-label {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--color-muted);
  margin-bottom: .1rem;
}
.hero-contact-value {
  display: block;
  font-size: .95rem;
  font-weight: 700;
  color: var(--color-text);
}

/* Image droite */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrap {
  width: 545px;
  height: 642px;
  flex-shrink: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  clip-path: inset(0 0 100% 0 round var(--radius-xl));
  transition: clip-path 1.1s cubic-bezier(.77, 0, .175, 1) .3s;
}
.hero-image-wrap.revealed {
  clip-path: inset(0 0 0% 0 round var(--radius-xl));
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.15) translateY(0px);
  will-change: transform;
}
.hero-image-wrap.revealed img {
  transform: scale(1.15) translateY(0px);
}

/* Responsive hero */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { display: none; }
  .hero { min-height: auto; padding: 3rem 0; }
}

/* ── Value Proposition ── */
.value-prop { background: #fff; }

/* Layout splitté */
.value-grid {
  display: grid;
  grid-template-columns: 530px 1fr;
  gap: 80px;
  align-items: center;
}

/* Colonne droite — contenu */
.value-content .section-eyebrow { margin-bottom: .8rem; }
.value-content h2 { margin-bottom: 1.5rem; }

.value-intro {
  color: var(--color-muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.value-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.value-list li {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding-top: 1.75rem;
  border-top: 1px solid var(--color-border);
  transition: opacity 1.1s cubic-bezier(.25,.46,.45,.94), transform 1.1s cubic-bezier(.25,.46,.45,.94);
}
.value-list li:first-child {
  padding-top: 0;
  border-top: none;
}
.value-list-icon {
  width: 52px;
  height: 52px;
  background: #F5EAE7;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-red-muted);
  flex-shrink: 0;
  align-self: center;
}
.value-list-icon svg { width: 24px; height: 24px; }
.value-list li strong {
  display: block;
  color: var(--color-primary);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .4rem;
}
.value-list li p {
  color: var(--color-muted);
  font-size: .9rem;
  line-height: 1.7;
  margin: 0;
}

/* Colonne gauche — photo unique */
.value-photo-single {
  width: 480px;
  flex-shrink: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  clip-path: inset(0 0 100% 0 round var(--radius-xl));
  transition: clip-path 1.1s cubic-bezier(.77,0,.175,1);
}
.value-photo-single.revealed { clip-path: inset(0 0 0% 0 round var(--radius-xl)); }
.value-photo-single img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  display: block;
  transform: scale(1.06);
  transition: transform 1.4s cubic-bezier(.77,0,.175,1);
}
.value-photo-single.revealed img { transform: scale(1); }

/* ── Featured Services ── */
.featured-services { background: linear-gradient(to bottom, var(--color-primary) 0%, #111827 100%); position: relative; }
.featured-services::after,
.blog-preview::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: .4;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  mix-blend-mode: overlay;
}
.featured-services > .container { position: relative; z-index: 1; }
.featured-services .section-header h2 { color: #fff; }
.featured-services .section-intro {
  color: rgba(255,255,255,.88);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 780px;
  margin: 2.5rem auto 0;
}
.services-deco-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.services-deco-apple {
  position: absolute;
  top: -15%;
  right: -8%;
  width: 900px;
  height: auto;
  opacity: .08;
  user-select: none;
  filter: brightness(0) invert(1);
}
.featured-services .section-eyebrow { color: rgba(255,255,255,.6); }
.featured-services .section-eyebrow::before { background: var(--color-red); }
.featured-services .section-header { margin-bottom: 80px; }
.featured-services .section-header h2::after { display: block; margin-left: auto; margin-right: auto; background: var(--color-red); }

/* Rangées alternées — effet portefeuille */
.service-rows {
  display: flex;
  flex-direction: column;
  gap: 24px;
  /* Padding pour que les ombres et les bords ne soient pas rognés */
  padding: 0 6px 6px;
  margin: 0 -6px;
}
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  padding: 50px;
  border-top: 1px solid var(--color-border);
  /* Sticky stacking */
  position: sticky;
  background: #fff;
  border-radius: var(--radius-xl);
  transform-origin: top center;
  will-change: transform;
}
/* Décalage progressif : chaque carte colle un peu plus bas → peek de la précédente */
.service-row:nth-child(1) { z-index: 1; top: 100px; }
.service-row:nth-child(2) { z-index: 2; top: 108px; box-shadow: 0 -20px 60px rgba(10,16,32,.35); }
.service-row:nth-child(3) { z-index: 3; top: 116px; box-shadow: 0 -20px 60px rgba(10,16,32,.35); }
.service-row:nth-child(4) { z-index: 4; top: 124px; box-shadow: 0 -20px 60px rgba(10,16,32,.35); }
.service-row--reverse {
  grid-template-columns: 1fr 1fr;
}
.service-row--reverse .service-row-text { order: 2; }
.service-row--reverse .service-row-img  { order: 1; }

.service-row-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-self: stretch;
}
.service-row-body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

.service-row-text h3 {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.service-row-text p {
  color: var(--color-muted);
  font-size: .975rem;
  line-height: 1.8;
}
.service-row-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: opacity 1.1s cubic-bezier(.25,.46,.45,.94), transform 1.1s cubic-bezier(.25,.46,.45,.94);
}
.service-row-img img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}
.link-more {
  color: var(--color-primary);
  font-weight: 600;
  font-size: .875rem;
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  transition: color .15s, gap .15s;
}
.link-more:hover { color: var(--color-red); gap: .45rem; text-decoration: none; }

/* ── About Intro ── */
.about-intro { background: #FDF6F4; }
.about-header {
  margin-bottom: 3rem;
}
.about-header h2 {
  font-size: clamp(1.5rem, 3vw, 2.75rem);
  color: var(--color-text);
  margin-bottom: 1.75rem;
}
.about-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}
.about-header-row p { color: var(--color-text-soft); line-height: 1.85; max-width: 900px; margin: 0; }
.about-header-row .btn { flex-shrink: 0; }

.about-visual {
  position: relative;
}
.about-image-wrap {
  width: 100%;
  height: 480px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  clip-path: inset(0 0 100% 0 round var(--radius-xl));
  transition: clip-path 1.1s cubic-bezier(.77, 0, .175, 1);
}
.about-image-wrap.anim-visible {
  clip-path: inset(0 0 0% 0 round var(--radius-xl));
}
.about-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.06);
  transition: transform 1.4s cubic-bezier(.77, 0, .175, 1);
}
.about-image-wrap.anim-visible img {
  transform: scale(1);
}
.about-badge {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: #fff;
  border-radius: var(--radius);
  padding: .9rem 1.35rem;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  border-left: 3px solid var(--color-red);
}
.about-badge strong { color: var(--color-primary); font-size: 1.6rem; font-family: var(--font-title); }
.about-badge span { color: var(--color-muted); font-size: .83rem; margin-top: .1rem; }

/* ── Service Categories ── */
.service-categories { background: #fff; }

.category-accent { display: none; }

.category-icon-ghost {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 72px;
  height: 72px;
  opacity: 0;
  pointer-events: none;
  color: #fff;
  transition: opacity .35s;
}
.category-icon-ghost svg { width: 100%; height: 100%; }
.category-card:hover .category-icon-ghost { opacity: .13; }

.category-arrow {
  margin-top: auto;
  padding-top: 1.25rem;
  padding-right: 6px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--color-red);
  transition: color .35s;
}
.category-card:hover .category-arrow { color: var(--color-red); }

.category-arrow-label {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .04em;
  white-space: nowrap;
  max-width: 0;
  opacity: 0;
  transform: translateX(-8px);
  transition: max-width .35s cubic-bezier(.25,.46,.45,.94), opacity .3s ease, transform .35s ease;
  overflow: hidden;
}
.category-card:hover .category-arrow-label {
  max-width: 120px;
  opacity: 1;
  transform: translateX(0);
}

.category-arrow svg {
  flex-shrink: 0;
  margin-left: 0;
  transition: transform .35s cubic-bezier(.25,.46,.45,.94), margin .35s;
}
.category-card:hover .category-arrow svg { transform: translateX(4px); margin-left: .4rem; }

.category-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.85rem 1.6rem;
  color: var(--color-text);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.25,.46,.45,.94), box-shadow .35s, border-color .35s, color .35s;
  z-index: 0;
}
.category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, #111827 100%);
  opacity: 0;
  transition: opacity .35s cubic-bezier(.25,.46,.45,.94);
  z-index: -1;
}
.category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
  color: #fff;
  text-decoration: none;
}
.category-card:hover::before { opacity: 1; }

.category-icon {
  width: 56px;
  height: 56px;
  background: var(--color-clay-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: calc(1.1rem + 5px);
  color: var(--color-clay);
  transition: background .35s, color .35s, transform .35s cubic-bezier(.25,.46,.45,.94);
}
.category-card:hover .category-icon { background: rgba(255,255,255,.15); color: #fff; transform: scale(1.15); }
.category-icon svg { width: 36px; height: 36px; object-fit: contain; color: var(--color-clay); transition: color .35s; }
.category-icon svg path, .category-icon svg polyline, .category-icon svg circle, .category-icon svg rect, .category-icon svg line { stroke-width: 7; }
.category-card:hover .category-icon svg { color: #fff; }
.category-card h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-primary);
  margin-bottom: .45rem;
  transition: color .35s;
}
.category-card:hover h3 { color: #fff; }
.category-card p {
  color: var(--color-muted);
  font-size: .875rem;
  line-height: 1.65;
  transition: color .35s;
}
.category-card:hover p { color: rgba(255,255,255,.75); }


/* ── Blog Preview ── */
.blog-preview { background: linear-gradient(to bottom, var(--color-primary) 0%, var(--color-primary) 60%, #111827 100%); position: relative; }

/* Header blog */
.blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
}
.blog-header h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.75rem); }
.blog-header h2::after { background: var(--color-red); }
.blog-header .section-subtitle { color: rgba(255,255,255,.65); margin-top: .75rem; }
.btn-outline-light {
  flex-shrink: 0;
  border: 1.5px solid rgba(255,255,255,.4);
  color: #fff;
  background: transparent;
  padding: .75rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .875rem;
  transition: background .2s, border-color .2s;
  white-space: nowrap;
}
.btn-outline-light:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7); text-decoration: none; color: #fff; }

/* Layout magazine */
.blog-magazine {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

/* Article vedette */
.blog-featured {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: background .2s;
  position: relative;
  clip-path: inset(0 0 100% 0 round var(--radius-xl));
  transition: clip-path 1.1s cubic-bezier(.77,0,.175,1), background .3s, border-color .3s;
}
.blog-featured.revealed {
  clip-path: inset(0 0 0% 0 round var(--radius-xl));
}
.blog-featured:hover { background: #fff; border-color: transparent; }
.blog-featured:hover .blog-featured-body h3 { color: var(--color-primary); }
.blog-featured:hover .blog-featured-body p { color: var(--color-text-soft); }
.blog-featured:hover .blog-link { color: var(--color-primary); }
.blog-featured-img {
  height: 280px;
  background-size: cover;
  background-position: center;
}
.blog-featured-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}
.blog-featured-body h3 { font-size: 1.4rem; font-weight: 800; color: #fff; line-height: 1.3; transition: color .3s; }
.blog-featured-body p { color: rgba(255,255,255,.65); font-size: .95rem; line-height: 1.75; flex: 1; transition: color .3s; }

/* Articles secondaires */
.blog-side { display: flex; flex-direction: column; gap: 1.5rem; }
.blog-small {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 140px 1fr;
  flex: 1;
  position: relative;
  clip-path: inset(0 0 100% 0 round var(--radius-xl));
  transition: clip-path 1.1s cubic-bezier(.77,0,.175,1), background .3s, border-color .3s;
}
.blog-small.revealed {
  clip-path: inset(0 0 0% 0 round var(--radius-xl));
}
.blog-small:hover { background: #fff; border-color: transparent; }
.blog-small:hover .blog-small-body h3 { color: var(--color-primary); }
.blog-small:hover .blog-small-body p { color: var(--color-text-soft); }
.blog-small:hover .blog-link { color: var(--color-primary); }
.blog-small-img { background-size: cover; background-position: center; min-height: 140px; }
.blog-small-body { padding: 1.5rem; display: flex; flex-direction: column; gap: .75rem; }
.blog-small-body h3 { font-size: 1rem; font-weight: 700; color: #fff; line-height: 1.35; transition: color .3s; }
.blog-small-body p { color: rgba(255,255,255,.6); font-size: .875rem; line-height: 1.65; flex: 1; transition: color .3s; }

/* Tag + lien */
.blog-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(107,114,128,.35);
  padding: .3rem .75rem;
  border-radius: 99px;
  align-self: flex-start;
  transition: color .3s, background .3s;
}
.blog-featured:hover .blog-tag,
.blog-small:hover .blog-tag {
  color: var(--color-red);
  background: rgba(217,163,154,.12);
}
.blog-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .875rem;
  font-weight: 700;
  color: var(--color-red);
  text-decoration: none;
  transition: gap .35s;
  align-self: flex-start;
}
.blog-link svg { flex-shrink: 0; }
.blog-link-label {
  max-width: 0;
  opacity: 0;
  transform: translateX(-8px);
  white-space: nowrap;
  overflow: hidden;
  transition: max-width .35s cubic-bezier(.25,.46,.45,.94), opacity .3s ease, transform .35s ease;
}
.blog-featured:hover .blog-link .blog-link-label,
.blog-small:hover .blog-link .blog-link-label {
  max-width: 120px;
  opacity: 1;
  transform: translateX(0);
}
.blog-link:hover { gap: .65rem; color: var(--color-primary); text-decoration: none; }
.blog-link.stretched::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}

.blog-thumb--1 { background-image: url('https://images.unsplash.com/photo-1559305616-3f99cd43e353?w=600&q=70'); }
.blog-thumb--2 { background-image: url('https://images.unsplash.com/photo-1506784983877-45594efa4cbe?w=600&q=70'); }
.blog-thumb--3 { background-image: url('https://images.unsplash.com/photo-1494790108377-be9c29b29330?w=600&q=70'); }

/* ── Appointment CTA ── */
.appointment-cta {
  background: #F5EAE7;
  padding: 7rem 0 6.5rem;
  text-align: center;
}
.cta-eyebrow {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--color-red);
  margin-bottom: 1.25rem;
}
.cta-headline {
  font-size: clamp(2rem, 4vw, 3.25rem);
  color: var(--color-primary);
  margin-bottom: 2.5rem;
  line-height: 1.2;
}
.cta-headline::after { margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; margin-bottom: 1.5rem; }
.cta-tel {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
  transition: color .2s;
}
.cta-tel:hover { color: var(--color-clay); }

/* ── Footer ── */
.site-footer { background: var(--color-primary-dark); color: #a8bfbf; font-size: .9rem; position: relative; overflow: hidden; }

.footer-address-display {
  text-align: center;
  padding: 4.5rem 0 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
  margin-bottom: 3.5rem;
}
.footer-address-link { text-decoration: none; display: block; }
.footer-address-street {
  display: block;
  font-size: clamp(2.25rem, 6.5vw, 5.5rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -.03em;
  line-height: 1;
  margin-bottom: .5rem;
  font-family: var(--font-title);
  transition: color .2s ease;
}
.footer-address-city {
  display: block;
  font-size: clamp(.9rem, 2vw, 1.4rem);
  font-weight: 500;
  color: rgba(255,255,255,.35);
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: color .2s ease;
}
.footer-address-link:hover .footer-address-street { color: var(--color-clay); }
.footer-address-link:hover .footer-address-city { color: rgba(255,255,255,.55); }
.footer-deco-apple {
  position: absolute;
  bottom: -15%;
  right: -4%;
  width: 500px;
  height: auto;
  opacity: .06;
  pointer-events: none;
  user-select: none;
  filter: brightness(0) invert(1);
  animation: applePulse 8s ease-in-out infinite;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-top: 3.75rem;
  padding-bottom: 3rem;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-brand img {
  margin-bottom: 1.1rem;
  filter: brightness(0) invert(1);
  opacity: .88;
}
.footer-brand p { line-height: 1.75; max-width: 270px; margin-bottom: .85rem; color: #a8bfbf; font-size: .8rem; }
.footer-brand address { font-style: normal; color: #7a9e9e; font-size: .8rem; line-height: 1.6; }
.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  margin-top: auto;
  padding-top: .5rem;
}
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  color: #a8bfbf;
  font-size: .9rem;
}
.footer-contact-list svg { flex-shrink: 0; margin-top: 2px; color: var(--color-red); }
.footer-contact-list a { color: #a8bfbf; text-decoration: none; }
.footer-contact-list li { transition: color .2s; }
.footer-contact-list li:hover { color: var(--color-red); }
.footer-contact-list li:hover a,
.footer-contact-list li:hover address { color: var(--color-red); }
.footer-contact-list li:hover svg { color: var(--color-red); }
.footer-contact-list address { font-style: normal; line-height: 1.6; font-size: .9rem; }

.footer-social {
  display: flex;
  gap: .75rem;
  margin-top: 1rem;
}
.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(255,255,255,.2);
  color: #a8bfbf;
  transition: border-color .2s, color .2s, background .2s;
}
.footer-social-link:hover { border-color: var(--color-red); color: var(--color-red); background: rgba(217,163,154,.12); }
.footer-email-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  height: 34px;
  padding: 0 1.1rem;
  border-radius: var(--radius-sm);
  border-color: rgba(255,255,255,.2) !important;
  color: #a8bfbf;
  box-sizing: border-box;
}
.footer-email-btn:hover { border-color: var(--color-red); color: var(--color-red); background: rgba(217,163,154,.12); }

.footer-col h4 {
  color: #fff;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .13em;
  margin-bottom: 1.1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .55rem; }
.footer-col ul li { color: #a8bfbf; }
.footer-col ul a { color: #a8bfbf; }
.footer-col ul a:hover { color: var(--color-red); text-decoration: none; }

.hours-footer { list-style: none !important; }
.hours-footer li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .32rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: .87rem;
  color: #a8bfbf;
}
.hours-footer .today-row { color: var(--color-red); font-weight: 600; }
.contact-info-card .hours-footer .today-row { color: var(--color-red-muted); }
.contact-info-card .hours-footer li {
  color: var(--color-muted);
  border-bottom-color: rgba(0,0,0,.08);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.35rem 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .8rem;
  color: #5a8080;
}
.footer-bottom a { color: #5a8080; }
.footer-bottom a:hover { color: #fff; text-decoration: none; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.75rem; }
  .about-image-placeholder { max-width: 480px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav-cta { display: none; }
  .nav { display: none; order: 99; }
  .nav.open {
    display: block;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: #fff;
    border-top: 1px solid var(--color-border);
    padding: 1rem 2rem 1.5rem;
    box-shadow: var(--shadow-md);
  }
  .nav.open ul { flex-direction: column; gap: 0; }
  .nav.open a {
    display: block;
    padding: .7rem 0;
    border-bottom: 1px solid var(--color-border);
    border-radius: 0;
    font-size: .95rem;
  }
  .nav.open a:last-child { border-bottom: none; }
  .nav-toggle { display: flex; }
  .cta-phone { letter-spacing: -.02em; }
  .section-header--row { flex-direction: column; align-items: flex-start; }
  :root { --section-py: 4rem; }
}

@media (max-width: 640px) {
  .hero { min-height: 75vh; }
  .hero h1 { font-size: 2.1rem; }
  .grid-5 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .top-bar-hours { font-size: .74rem; }
  :root { --section-py: 3.25rem; }
}

/* ══════════════════════════════════════
   À PROPOS PAGE
   ══════════════════════════════════════ */

/* ── Hero banner ── */
.ap-hero {
  background: #F5EAE7;
  margin: 15px;
  border-radius: var(--radius-xl);
  padding: calc(4rem + 80px) 0 5rem;
  position: relative;
  overflow: hidden;
}
.ap-hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.ap-hero-content h1 {
  font-size: clamp(2.1rem, 3.2vw, 3.6rem);
  color: var(--color-text);
  margin-bottom: 1.5rem;
}
.ap-hero-content h1::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--color-red);
  border-radius: 2px;
  margin-top: 1.5rem;
}
.ap-hero-content p {
  font-size: .95rem;
  color: var(--color-muted);
  line-height: 2;
  max-width: 480px;
  font-weight: 500;
}
.ap-hero-visual {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.ap-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ap-hero-deco {
  position: absolute;
  bottom: -12%;
  left: 2%;
  width: 900px;
  height: auto;
  opacity: .20;
  pointer-events: none;
  filter: brightness(0) invert(1);
}

/* ── Mission / Approche ── */
.ap-mission {
  padding: calc(var(--section-py) + 2rem) 0;
  background: #fff;
}
.ap-mission .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.ap-mission-text h2 { font-size: clamp(1.5rem, 3vw, 2.75rem); margin-bottom: 1.5rem; }
.ap-mission-text p {
  color: var(--color-muted);
  font-size: .95rem;
  line-height: 1.85;
  margin-bottom: 1.25rem;
}
.ap-mission-text p:last-child { margin-bottom: 0; }
.ap-mission-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.ap-mission-img img { width: 100%; display: block; object-fit: cover; }

/* Mission funky animations */
.ap-mission-text[data-anim-dir="left"] {
  opacity: 0;
  transform: translateX(-40px) rotate(-1.5deg);
  transition: opacity .9s cubic-bezier(.25,0,.2,1), transform .9s cubic-bezier(.25,0,.2,1);
}
.ap-mission-text[data-anim-dir="left"].anim-visible {
  opacity: 1;
  transform: translateX(0) rotate(0);
}
.ap-mission-img[data-anim-dir="right"] {
  opacity: 0;
  transform: translateX(60px) scale(.88) rotate(2deg);
  clip-path: inset(8% 8% 8% 8% round var(--radius-xl));
  transition: opacity .9s cubic-bezier(.25,0,.2,1), transform .9s cubic-bezier(.25,0,.2,1), clip-path .9s cubic-bezier(.25,0,.2,1);
}
.ap-mission-img[data-anim-dir="right"].anim-visible {
  opacity: 1;
  transform: translateX(0) scale(1) rotate(0);
  clip-path: inset(0 0 0 0 round var(--radius-xl));
}

/* ── Ce qui nous distingue ── */
.ap-distinctions {
  padding: calc(var(--section-py) + 2rem) 0;
  background: linear-gradient(to bottom, var(--color-primary) 0%, #111827 100%);
  position: relative;
}
.ap-distinctions .section-header { text-align: center; margin-bottom: 3rem; }
.ap-distinctions .section-header h2 { color: #fff; }
.ap-distinctions .section-subtitle { color: rgba(255,255,255,.8); }

/* Distinctions funky animations */
.ap-distinctions .section-header h2[data-anim] {
  opacity: 0;
  filter: blur(8px);
  transform: scale(.9);
  transition: opacity .7s ease, filter .7s ease, transform .7s cubic-bezier(.34,1.56,.64,1);
}
.ap-distinctions .section-header h2[data-anim].anim-visible {
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
}
.ap-dist-card[data-anim] {
  opacity: 0;
  transform: perspective(800px) rotateY(25deg) translateY(30px) scale(.9);
  transition: opacity .7s cubic-bezier(.25,.46,.45,.94), transform .7s cubic-bezier(.25,.46,.45,.94);
}
.ap-dist-card[data-anim].anim-visible {
  opacity: 1;
  transform: perspective(800px) rotateY(0) translateY(0) scale(1);
}
.ap-dist-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.ap-dist-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s;
}
.ap-dist-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.ap-dist-icon {
  width: 64px;
  height: 64px;
  background: #F5EAE7;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-red-muted);
  margin: 0 auto 1.5rem;
}
.ap-dist-icon svg { width: 28px; height: 28px; }
.ap-dist-card h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: .6rem;
}
.ap-dist-card p {
  color: var(--color-muted);
  font-size: .88rem;
  line-height: 1.7;
  margin: 0;
}

/* ── Dentistes principaux ── */
.ap-dentists {
  padding: var(--section-py) 0 calc(var(--section-py) + 3rem);
  background: #fff;
}
.ap-dentists .section-header { text-align: center; margin-bottom: 4rem; }
.ap-dentist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}
.ap-dentist-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  position: relative;
  z-index: 0;
  transition: transform .35s cubic-bezier(.25,.46,.45,.94), box-shadow .35s;
}
.ap-dentist-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, #111827 100%);
  opacity: 0;
  transition: opacity .35s cubic-bezier(.25,.46,.45,.94);
  z-index: -1;
}
.ap-dentist-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(29,39,63,.18);
}
.ap-dentist-card:hover::before { opacity: 1; }
.ap-dentist-photo {
  width: 100%;
  height: 380px;
  overflow: hidden;
  background: #EDE0DB;
}
.ap-dentist-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform .5s cubic-bezier(.25,.46,.45,.94);
}
.ap-dentist-card:hover .ap-dentist-photo img { transform: scale(1.04); }
.ap-dentist-info {
  padding: 2rem 2rem 2.25rem;
}
.ap-dentist-info h3 {
  font-family: var(--font-title);
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: .3rem;
  transition: color .35s;
}
.ap-dentist-card:hover .ap-dentist-info h3 { color: #fff; }
.ap-dentist-info .ap-dentist-title {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-red);
  margin-bottom: 1rem;
  transition: color .35s;
}
.ap-dentist-card:hover .ap-dentist-info .ap-dentist-title { color: var(--color-red-light); }
.ap-dentist-info p {
  color: var(--color-muted);
  font-size: .9rem;
  line-height: 1.75;
  margin: 0;
  transition: color .35s;
}
.ap-dentist-card:hover .ap-dentist-info p { color: rgba(255,255,255,.75); }

/* Flèche "En savoir plus" — style accueil */
.ap-dentist-arrow {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--color-red);
  transition: color .35s;
}
.ap-dentist-arrow-label {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .04em;
  white-space: nowrap;
  max-width: 0;
  opacity: 0;
  transform: translateX(-8px);
  transition: max-width .35s cubic-bezier(.25,.46,.45,.94), opacity .3s ease, transform .35s ease;
  overflow: hidden;
}
.ap-dentist-card:hover .ap-dentist-arrow-label {
  max-width: 120px;
  opacity: 1;
  transform: translateX(0);
}
.ap-dentist-arrow svg {
  flex-shrink: 0;
  margin-left: 0;
  transition: transform .35s cubic-bezier(.25,.46,.45,.94), margin .35s;
}
.ap-dentist-card:hover .ap-dentist-arrow { color: var(--color-red); }
.ap-dentist-card:hover .ap-dentist-arrow svg {
  transform: translateX(4px);
  margin-left: .4rem;
}

/* Modal dentiste */
.ap-dentist-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}
.ap-dentist-modal.active { opacity: 1; visibility: visible; }
.ap-dentist-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.7);
}
.ap-dentist-modal-content {
  position: relative;
  background: #fff;
  border-radius: var(--radius-xl);
  max-width: 700px;
  width: 92%;
  max-height: 85vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 240px 1fr;
  box-shadow: 0 24px 64px rgba(0,0,0,.25);
  transform: scale(.92) translateY(20px);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}
.ap-dentist-modal.active .ap-dentist-modal-content {
  transform: scale(1) translateY(0);
}
.ap-dentist-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--color-muted);
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background .2s, color .2s;
  z-index: 1;
}
.ap-dentist-modal-close:hover { background: var(--color-surface); color: var(--color-text); }
.ap-dentist-modal-photo {
  border-radius: var(--radius-xl) 0 0 var(--radius-xl);
  overflow: hidden;
}
.ap-dentist-modal-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 360px;
}
.ap-dentist-modal-body {
  padding: 2.5rem 2.5rem 2.5rem 2rem;
}
.ap-dentist-modal-body h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: .3rem;
}
.ap-dentist-modal-body .ap-dentist-title {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-red);
  margin-bottom: 1.5rem;
}
.ap-dentist-modal-body p {
  color: var(--color-muted);
  font-size: .92rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.ap-dentist-modal-body p:last-child { margin-bottom: 0; }

@media (max-width: 600px) {
  .ap-dentist-modal-content {
    grid-template-columns: 1fr;
    max-height: 90vh;
  }
  .ap-dentist-modal-photo {
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    height: 220px;
  }
  .ap-dentist-modal-body { padding: 1.5rem; }
}

/* ── Bandeau chiffres clés ── */
.ap-stats {
  padding: 4.5rem 0;
  background: var(--color-primary);
  position: relative;
  overflow: hidden;
}
.ap-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.ap-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
}
.ap-stat-number {
  font-family: var(--font-title);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 900;
  color: var(--color-red);
  line-height: 1;
}
.ap-stat-label {
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  letter-spacing: .02em;
}
.ap-stat[data-anim] {
  opacity: 0;
  transform: translateY(20px) scale(.9);
  transition: opacity .6s cubic-bezier(.25,.46,.45,.94), transform .6s cubic-bezier(.34,1.56,.64,1);
}
.ap-stat[data-anim].anim-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
@media (max-width: 640px) {
  .ap-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
}

/* ── Carrousel équipe ── */
.ap-team {
  padding: var(--section-py) 0;
  background: #F5EAE7;
  overflow: hidden;
}
.ap-team .section-header { text-align: center; margin-bottom: 3rem; }
.ap-team-wrap { position: relative; }
.ap-team-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 1rem 0 2rem;
  scrollbar-width: none;
  cursor: grab;
}
.ap-team-track.grabbing {
  cursor: grabbing;
  scroll-behavior: auto;
  scroll-snap-type: none;
}
.ap-team-track::-webkit-scrollbar { display: none; }
.ap-team-card {
  flex: 0 0 200px;
  scroll-snap-align: start;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform .3s, box-shadow .3s;
}
.ap-team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.ap-team-photo {
  width: 100%;
  height: 220px;
  background: #EDE0DB;
  overflow: hidden;
}
.ap-team-photo img { width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; user-select: none; }
.ap-team-card h4 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 1rem 1rem .2rem;
}
.ap-team-card p {
  font-size: .78rem;
  color: var(--color-muted);
  margin: 0 1rem 1rem;
}
.ap-carousel-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: .5rem;
}
.ap-carousel-btn {
  width: 44px;
  height: 44px;
  border: 2px solid var(--color-red);
  border-radius: 50%;
  background: var(--color-red);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background .2s, border-color .2s, transform .2s;
}
.ap-carousel-btn:hover {
  background: var(--color-red);
  border-color: var(--color-red);
  transform: scale(1.1);
}

/* Bullets carrousel */
.ap-carousel-dots {
  display: flex;
  justify-content: center;
  gap: .4rem;
  margin-bottom: 1.25rem;
}
.ap-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--color-border);
  cursor: pointer;
  padding: 0;
  transition: background .3s, transform .3s;
}
.ap-carousel-dot.active {
  background: var(--color-red);
  transform: scale(1.3);
}

/* Animation entrée cartes équipe */
.ap-team-card {
  opacity: 0;
  transform: translateY(30px) scale(.9);
}
.ap-team.anim-fired .ap-team-card {
  animation: teamCardIn .6s cubic-bezier(.34,1.56,.64,1) both;
}
.ap-team.anim-fired .ap-team-card:nth-child(1) { animation-delay: 0s; }
.ap-team.anim-fired .ap-team-card:nth-child(2) { animation-delay: .08s; }
.ap-team.anim-fired .ap-team-card:nth-child(3) { animation-delay: .16s; }
.ap-team.anim-fired .ap-team-card:nth-child(4) { animation-delay: .24s; }
.ap-team.anim-fired .ap-team-card:nth-child(5) { animation-delay: .32s; }
.ap-team.anim-fired .ap-team-card:nth-child(6) { animation-delay: .4s; }
.ap-team.anim-fired .ap-team-card:nth-child(7) { animation-delay: .48s; }
@keyframes teamCardIn {
  0%   { opacity: 0; transform: translateY(30px) scale(.9) rotate(2deg); }
  100% { opacity: 1; transform: translateY(0) scale(1) rotate(0); }
}

/* ── Découvrez notre clinique ── */
.ap-clinic {
  padding: var(--section-py) 0;
  background: #fff;
}
.ap-clinic .section-header { text-align: center; margin-bottom: 3.5rem; }
.ap-clinic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 260px;
  gap: 1.25rem;
}
.ap-clinic-grid .ap-clinic-img:first-child {
  grid-row: 1 / 3;
}
.ap-clinic-img {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  opacity: 0;
  transform: scale(.85) rotate(2deg);
  clip-path: inset(10% round var(--radius));
  transition: opacity .7s cubic-bezier(.25,.46,.45,.94), transform .7s cubic-bezier(.34,1.56,.64,1), clip-path .7s cubic-bezier(.25,.46,.45,.94);
}
.ap-clinic-img.revealed {
  opacity: 1;
  transform: scale(1) rotate(0);
  clip-path: inset(0% round var(--radius));
}
.ap-clinic-img:nth-child(1) { transition-delay: 0s; }
.ap-clinic-img:nth-child(2) { transition-delay: .1s; }
.ap-clinic-img:nth-child(3) { transition-delay: .2s; }
.ap-clinic-img:nth-child(4) { transition-delay: .3s; }
.ap-clinic-img:nth-child(5) { transition-delay: .4s; }
.ap-clinic-img:nth-child(6) { transition-delay: .5s; }
.ap-clinic-img:nth-child(7) { transition-delay: .6s; }
.ap-clinic-img:nth-child(8) { transition-delay: .7s; }
.ap-clinic-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}
.ap-clinic-img:hover img { transform: scale(1.04); }
.ap-clinic-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.25rem;
  background: linear-gradient(transparent, rgba(0,0,0,.5));
  color: #fff;
  font-size: .82rem;
  font-weight: 600;
}

.ap-clinic-hidden { display: none; }
.ap-clinic-grid.ap-clinic-expanded .ap-clinic-hidden { display: block; }
.ap-clinic-grid.ap-clinic-expanded { grid-template-rows: 260px 260px 260px; }
.ap-clinic-more { text-align: center; margin-top: 2rem; }
.ap-clinic-img { cursor: pointer; }

/* Lightbox */
.ap-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}
.ap-lightbox.active { opacity: 1; visibility: visible; }
.ap-lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius);
  object-fit: contain;
  transform: scale(.92);
  transition: transform .3s cubic-bezier(.25,.46,.45,.94);
}
.ap-lightbox.active .ap-lightbox-img { transform: scale(1); }
.ap-lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background .2s;
}
.ap-lightbox-close:hover { background: rgba(255,255,255,.15); }

/* ── Preuve de confiance ── */
.ap-trust {
  padding: var(--section-py) 0;
  background: linear-gradient(to bottom, var(--color-primary) 0%, #111827 100%);
  position: relative;
  overflow: hidden;
}
.ap-trust-deco-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.ap-trust-deco-apple {
  position: absolute;
  bottom: -15%;
  right: -4%;
  width: 500px;
  height: auto;
  opacity: .06;
  user-select: none;
  filter: brightness(0) invert(1);
}
.ap-trust > .container { position: relative; z-index: 1; }
.ap-trust .section-header { text-align: center; margin-bottom: 3rem; }
.ap-trust .section-header h2 { color: #fff; }
.ap-trust .section-subtitle { color: rgba(255,255,255,.8); }
.ap-trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
}
.ap-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  max-width: 160px;
  text-align: center;
}
.ap-trust-badge {
  width: 72px;
  height: 72px;
  background: var(--color-red-muted);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  color: #fff;
}
.ap-trust-badge svg { width: 32px; height: 32px; }
.ap-trust-item[data-anim].anim-visible .ap-trust-badge {
  animation: trustPop .6s cubic-bezier(.34,1.56,.64,1) both;
}
.ap-trust-item[data-anim-delay="200"].anim-visible .ap-trust-badge { animation-delay: .15s; }
.ap-trust-item[data-anim-delay="300"].anim-visible .ap-trust-badge { animation-delay: .3s; }
.ap-trust-item[data-anim-delay="400"].anim-visible .ap-trust-badge { animation-delay: .45s; }
@keyframes trustPop {
  0%   { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.ap-trust-item span {
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  line-height: 1.4;
}

/* ── Commodités ── */
.ap-amenities {
  padding: var(--section-py) 0;
  background: #fff;
}
.ap-amenities .section-header { text-align: center; margin-bottom: 3.5rem; }
.ap-amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.ap-amenity {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 0;
  transition: transform .35s, box-shadow .35s, border-color .35s;
}

/* Amenities funky animations */
.ap-amenity[data-anim] {
  opacity: 0;
  transform: translateY(40px) scale(.85);
  filter: blur(4px);
  transition: opacity .6s cubic-bezier(.25,.46,.45,.94), transform .6s cubic-bezier(.34,1.56,.64,1), filter .6s ease;
}
.ap-amenity[data-anim].anim-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}
.ap-amenity[data-anim].anim-visible .ap-amenity-icon {
  animation: amenitySpin .7s cubic-bezier(.34,1.56,.64,1) both;
}
@keyframes amenitySpin {
  0%   { transform: rotate(-180deg) scale(0); }
  100% { transform: rotate(0deg) scale(1); }
}
.ap-amenity::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, #111827 100%);
  opacity: 0;
  transition: opacity .35s cubic-bezier(.25,.46,.45,.94);
  z-index: -1;
}
.ap-amenity:hover {
  transform: translateY(-3px);
  border-color: transparent;
  box-shadow: var(--shadow-md);
}
.ap-amenity:hover::before { opacity: 1; }
.ap-amenity:hover .ap-amenity-icon {
  background: rgba(255,255,255,.15);
  color: var(--color-red);
}
.ap-amenity:hover h4 { color: #fff; }
.ap-amenity:hover p { color: rgba(255,255,255,.75); }
.ap-amenity-icon {
  width: 56px;
  height: 56px;
  background: #F5EAE7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--color-red-muted);
  transition: background .35s, color .35s;
}
.ap-amenity-icon svg { width: 24px; height: 24px; }
.ap-amenity h4 {
  font-size: .88rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: .35rem;
  transition: color .35s;
}
.ap-amenity p {
  font-size: .82rem;
  color: var(--color-muted);
  line-height: 1.6;
  margin: 0;
  transition: color .35s;
}

/* ── Responsive À propos ── */
@media (max-width: 1024px) {
  .ap-dentist-grid { grid-template-columns: 1fr; max-width: 440px; }
  .ap-dist-grid { grid-template-columns: repeat(2, 1fr); }
  .ap-amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .ap-clinic-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .ap-clinic-grid .ap-clinic-img:first-child { grid-row: auto; }
}
@media (max-width: 900px) {
  .ap-hero .container { grid-template-columns: 1fr; gap: 2.5rem; }
  .ap-hero-visual { max-width: 500px; }
  .ap-mission .container { grid-template-columns: 1fr; gap: 2.5rem; }
  .ap-mission-img { max-width: 500px; }
}
@media (max-width: 640px) {
  .ap-dist-grid { grid-template-columns: 1fr; }
  .ap-amenities-grid { grid-template-columns: 1fr 1fr; }
  .ap-dentist-photo { height: 280px; }
  .ap-clinic-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════
   SERVICE PAGES (Dentisterie générale, etc.)
   ══════════════════════════════════════ */

/* ── Hero service ── */
/* ── Page service : header solide ── */
.page-service .site-header {
  background: #fff;
  border-bottom: 1px solid var(--color-border);
}
.page-service .site-header.scrolled {
  position: fixed;
  top: 0;
}
.page-service .top-bar {
  position: relative;
}

/* ── Hero service : sobre ── */
.srv-hero {
  background: #F5EAE7;
  padding: calc(3rem + 100px) 0 3rem;
  position: relative;
  overflow: hidden;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}
/* Hero funky animations */
.srv-hero .srv-hero-eyebrow[data-anim] {
  opacity: 0;
  transform: scale(.6) translateY(20px);
  transition: opacity .6s cubic-bezier(.25,.46,.45,.94), transform .6s cubic-bezier(.34,1.56,.64,1);
}
.srv-hero .srv-hero-eyebrow[data-anim].anim-visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}
.srv-hero h1[data-anim] {
  opacity: 0;
  transform: translateY(30px) scale(.95);
  filter: blur(6px);
  transition: opacity .9s cubic-bezier(.25,.46,.45,.94), transform .9s cubic-bezier(.34,1.56,.64,1), filter .9s ease;
}
.srv-hero h1[data-anim].anim-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}
.srv-hero p[data-anim] {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(20px);
  transition: opacity .7s ease, filter .7s ease, transform .7s ease;
}
.srv-hero p[data-anim].anim-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}
.srv-hero-deco {
  position: absolute;
  bottom: -15%;
  left: 8%;
  width: 550px;
  height: auto;
  opacity: .25;
  pointer-events: none;
  filter: brightness(0) invert(1);
  z-index: 0;
  animation: heroDecoFloat 6s ease-in-out infinite;
}
@keyframes heroDecoFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(3deg); }
}
.srv-hero .container {
  position: relative;
  z-index: 1;
}
.srv-hero-eyebrow {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--color-red);
  margin-bottom: 1.25rem;
}
.srv-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 1.25rem;
}
.srv-hero h1::after {
  display: none;
}
.srv-hero p {
  font-size: 1rem;
  color: var(--color-muted);
  line-height: 1.9;
  max-width: 620px;
  margin: 0 auto;
  font-weight: 500;
}

/* ── Layout contenu pleine largeur ── */
.srv-layout {
  padding: 0;
}

/* ── Barre d'ancres sticky ── */
.srv-anchors-wrap {
  position: sticky;
  top: var(--header-h, 64px);
  z-index: 90;
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  transition: background .3s, box-shadow .2s;
}
.srv-anchors-wrap.shadowed {
  background: #F5EAE7;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.srv-anchors {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: .75rem 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.srv-anchors::-webkit-scrollbar { display: none; }
.srv-anchors a {
  flex-shrink: 0;
  padding: .4rem .9rem;
  border-radius: 999px;
  font-size: .80rem;
  font-weight: 600;
  color: var(--color-muted);
  background: transparent;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s, color .2s, opacity .5s, transform .5s cubic-bezier(.34,1.56,.64,1);
  opacity: 0;
  transform: translateY(-10px);
}
.srv-anchors-wrap.anim-ready a {
  opacity: 1;
  transform: translateY(0);
}
.srv-anchors a:nth-child(1) { transition-delay: .1s; }
.srv-anchors a:nth-child(2) { transition-delay: .18s; }
.srv-anchors a:nth-child(3) { transition-delay: .26s; }
.srv-anchors a:nth-child(4) { transition-delay: .34s; }
.srv-anchors a:nth-child(5) { transition-delay: .42s; }
.srv-anchors a:nth-child(6) { transition-delay: .5s; }
.srv-anchors a:nth-child(7) { transition-delay: .58s; }
.srv-anchors a:nth-child(8) { transition-delay: .66s; }
.srv-anchors a:hover {
  background: #F5EAE7;
  color: var(--color-red-muted);
  text-decoration: none;
}
.srv-anchors a.active {
  background: #F0D5CF;
  color: var(--color-red-muted);
  font-weight: 700;
}

/* ── Section de service ── */
.srv-section {
  padding: var(--section-py) 0;
  scroll-margin-top: calc(var(--header-h, 64px) + 60px);
}
/* Alternance blanc / rose / bleu */
.srv-section:nth-child(3n+1) { background: #fff; }
.srv-section:nth-child(3n+2) { background: #F5EAE7; }
.srv-section:nth-child(3n+3) {
  background: linear-gradient(to bottom, var(--color-primary) 0%, #111827 100%);
}
.srv-section:nth-child(3n+3) h2 { color: #fff; }
.srv-section:nth-child(3n+3) h2::after { background: var(--color-red); }
.srv-section:nth-child(3n+3) p,
.srv-section:nth-child(3n+3) li { color: rgba(255,255,255,.8); }
.srv-section:nth-child(3n+3) strong { color: #fff; }
.srv-section:nth-child(3n+3) .btn-primary { background: var(--color-red); border-color: var(--color-red); }
.srv-section:nth-child(3n+3) .srv-blog-link { color: rgba(255,255,255,.9); }
.srv-section:nth-child(3n+3) .srv-related span { color: rgba(255,255,255,.7); }
.srv-section:nth-child(3n+3) .srv-related a { color: #fff; }
.srv-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.75rem);
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 1.25rem;
}
.srv-section h2::after {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background: var(--color-red);
  border-radius: 2px;
  margin-top: .75rem;
}
.srv-section p {
  color: var(--color-muted);
  font-size: .95rem;
  line-height: 1.85;
  margin-bottom: 1rem;
  max-width: 700px;
}
.srv-section p:last-of-type { margin-bottom: 1.5rem; }
.srv-section ul { margin-bottom: 1.5rem; }
.srv-section .btn { margin-top: .5rem; }

/* Section avec image — layout alternant */
.srv-section > .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.srv-section:nth-child(even) > .container { direction: rtl; }
.srv-section:nth-child(even) > .container > * { direction: ltr; }
.srv-section-img {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #EDE0DB;
  box-shadow: 0 8px 30px rgba(0,0,0,.1);
}
.srv-section-img img { width: 100%; height: 100%; display: block; object-fit: cover; }
@media (max-width: 768px) {
  .srv-section > .container { grid-template-columns: 1fr; }
  .srv-section:nth-child(even) > .container { direction: ltr; }
}

/* ── Bandeau statistique ── */
.srv-stat-banner {
  background: var(--color-primary);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.srv-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.srv-stat-item {
  color: #fff;
}
.srv-stat-number {
  display: block;
  font-family: var(--font-title);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: .5rem;
  color: var(--color-red);
  opacity: 0;
  transition: opacity .3s;
}
.srv-stat-label {
  font-size: .88rem;
  color: rgba(255,255,255,.75);
  line-height: 1.4;
}
@media (max-width: 768px) {
  .srv-stat-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ── Grille bénéfices cartes ── */
.srv-benefits {
  padding: var(--section-py) 0;
  background: #F5EAE7;
}
.srv-benefits .section-header { text-align: center; margin-bottom: 3rem; }
.srv-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.srv-benefit-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 0;
  transition: transform .35s, box-shadow .35s, border-color .35s;
}
.srv-benefit-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, #111827 100%);
  opacity: 0;
  transition: opacity .35s cubic-bezier(.25,.46,.45,.94);
  z-index: -1;
}
.srv-benefit-card:hover {
  transform: translateY(-3px);
  border-color: transparent;
  box-shadow: var(--shadow-md);
}
.srv-benefit-card:hover::before { opacity: 1; }
.srv-benefit-icon {
  width: 56px;
  height: 56px;
  background: #F5EAE7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--color-red-muted);
  transition: background .35s, color .35s;
}
.srv-benefit-card:hover .srv-benefit-icon {
  background: rgba(255,255,255,.15);
  color: var(--color-red);
}
.srv-benefit-icon svg { width: 24px; height: 24px; }
.srv-benefit-card h3 {
  font-size: .88rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: .35rem;
  transition: color .35s;
}
.srv-benefit-card:hover h3 { color: #fff; }
.srv-benefit-card p {
  font-size: .82rem;
  color: var(--color-muted);
  line-height: 1.6;
  margin: 0;
  transition: color .35s;
}
.srv-benefit-card:hover p { color: rgba(255,255,255,.75); }
@media (max-width: 992px) {
  .srv-benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .srv-benefits-grid { grid-template-columns: 1fr; }
}

/* Lien interne article */
.srv-blog-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .88rem;
  font-weight: 700;
  color: var(--color-red);
  text-decoration: none;
  transition: color .2s, gap .2s;
  margin-top: .5rem;
}
.srv-blog-link:hover { color: var(--color-red-muted); gap: .7rem; text-decoration: none; }
.srv-blog-link svg { flex-shrink: 0; }

/* Transition vers autre service */
.srv-related {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: #F5EAE7;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}
.srv-related span {
  font-size: .85rem;
  color: var(--color-muted);
}
.srv-related a {
  font-size: .85rem;
  font-weight: 700;
  color: var(--color-red-muted);
  text-decoration: none;
}
.srv-related a:hover { text-decoration: underline; }

/* ── Carte vedette service (lien vers page dédiée) ── */
.srv-featured {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2.5rem;
  align-items: center;
  background: #F5EAE7;
  border-radius: var(--radius-xl);
  padding: 3rem;
  margin: 3rem 0;
  border-bottom: none;
}
.srv-featured-text h2 { margin-bottom: 1rem; }
.srv-featured-text h2::after {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background: var(--color-red);
  border-radius: 2px;
  margin-top: .75rem;
}
.srv-featured-text p {
  color: var(--color-muted);
  font-size: .95rem;
  line-height: 1.85;
  margin-bottom: 1rem;
  max-width: 560px;
}
.srv-featured-text .btn { margin-top: .75rem; }
.srv-featured-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.srv-featured-img img { width: 100%; display: block; object-fit: cover; height: 260px; }

/* Section problème / intention */
.srv-problem {
  padding: var(--section-py) 0;
  background: #fff;
}
.srv-problem .container {
  max-width: 780px;
}
.srv-problem h2 { margin-bottom: 1.5rem; }
.srv-problem > .container > p {
  color: var(--color-muted);
  font-size: .95rem;
  line-height: 1.85;
  margin-bottom: 1.5rem;
}
.srv-problem-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.srv-problem-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--color-surface);
  border-radius: var(--radius);
}
.srv-problem-icon {
  width: 44px;
  height: 44px;
  background: #F5EAE7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-red-muted);
  flex-shrink: 0;
}
.srv-problem-icon svg { width: 20px; height: 20px; }
.srv-problem-item strong {
  display: block;
  font-size: .9rem;
  color: var(--color-primary);
  margin-bottom: .2rem;
}
.srv-problem-item p {
  font-size: .85rem;
  color: var(--color-muted);
  line-height: 1.6;
  margin: 0;
}

/* ── Étapes (avant / pendant / après) ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 2rem;
  position: relative;
}
/* Ligne horizontale de la timeline */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 20px;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 3px;
  background: linear-gradient(to right, var(--color-red-muted), var(--color-red));
  border-radius: 2px;
  z-index: 0;
}
.step-card {
  background: transparent;
  padding: 0 1.5rem;
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.step-card:hover {
  transform: none;
  box-shadow: none;
}
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #fff;
  color: var(--color-red-muted);
  border: 3px solid var(--color-red);
  border-radius: 50%;
  font-size: .85rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  transition: background .3s, color .3s;
}
.step-card:hover .step-number {
  background: var(--color-red);
  color: #fff;
}
.step-card-content {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm);
  width: 100%;
  flex: 1;
  transition: transform .3s, box-shadow .3s;
}
.step-card:hover .step-card-content {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.step-card h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: .6rem;
}
.step-card p, .step-card ul {
  color: var(--color-muted);
  font-size: .88rem;
  line-height: 1.7;
  margin: 0;
  text-align: left;
}
.step-card ul { list-style: none; padding-left: 0; margin-top: .5rem; }
.step-card ul li { margin-bottom: .35rem; }

/* Variante enfants — icônes au lieu des numéros */
.steps-grid--kids::before {
  background: linear-gradient(to right, var(--color-red), var(--color-red-muted), var(--color-red));
}
.step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #fff;
  border: 3px solid var(--color-red);
  border-radius: 50%;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  color: var(--color-red-muted);
  transition: background .3s, color .3s;
}
.step-icon svg { width: 22px; height: 22px; }
.step-card:hover .step-icon {
  background: var(--color-red);
  color: #fff;
}
.steps-grid--kids .step-card-content {
  background: #fff;
  border-radius: var(--radius-xl);
}

/* Bannière unifiée 3 colonnes */
.steps-banner {
  background: #F5EAE7;
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  display: flex;
  gap: 0;
}
.steps-banner-col {
  flex: 1;
  text-align: center;
  padding: 1rem 1.5rem;
}
.steps-banner-icon {
  width: 52px;
  height: 52px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--color-red-muted);
}
.steps-banner-icon svg { width: 24px; height: 24px; }
.steps-banner-col h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: .6rem;
}
.steps-banner-col ul {
  list-style: none;
  padding: 0;
  color: var(--color-muted);
  font-size: .88rem;
  line-height: 1.7;
  text-align: left;
}
.steps-banner-col ul li { margin-bottom: .35rem; }
.steps-banner-divider {
  width: 1px;
  background: rgba(176,96,96,.2);
  align-self: stretch;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .steps-banner {
    flex-direction: column;
    gap: 0;
  }
  .steps-banner-divider {
    width: 60%;
    height: 1px;
    margin: 1rem auto;
    align-self: center;
  }
  .steps-banner-col { padding: 1rem 0; }
}

/* ── Accordéon FAQ ── */
.faq-section {
  padding: var(--section-py) 0;
}
.faq-section { background: #F5EAE7; }
.faq-section .section-header { margin-bottom: 2.5rem; }
.faq-list {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq-item {
  background: #fff;
  border: none;
  border-left: 3px solid transparent;
  border-radius: var(--radius);
  overflow: hidden;
  transition: background .3s, box-shadow .3s, border-color .3s;
}
.faq-item.open {
  background: #fff;
  box-shadow: var(--shadow-md);
  border-left-color: var(--color-red);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: .92rem;
  font-weight: 700;
  color: var(--color-primary);
  transition: color .2s;
}
.faq-question:hover { color: var(--color-red-muted); }
.faq-item:hover { border-left-color: var(--color-red); }
.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform .3s;
  color: var(--color-muted);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--color-red); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 1.5rem;
}
.faq-item.open .faq-answer {
  max-height: 600px;
  padding: 0 1.5rem 1.25rem;
}
.faq-answer p {
  color: var(--color-muted);
  font-size: .9rem;
  line-height: 1.8;
  margin: 0 0 .75rem;
}
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer ul {
  color: var(--color-muted);
  font-size: .9rem;
  line-height: 1.8;
  padding-left: 1.25rem;
  margin: 0 0 .75rem;
}

/* Info section (texte éditorial) */
.info-section {
  padding: var(--section-py) 0;
}
.info-section:nth-child(even) { background: var(--color-surface); }
.info-section:nth-child(odd) { background: #fff; }
.info-section h2 { margin-bottom: 1.5rem; }
.info-section h2::after {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background: var(--color-red);
  border-radius: 2px;
  margin-top: .75rem;
}
.info-section p {
  color: var(--color-muted);
  font-size: .95rem;
  line-height: 1.85;
  margin-bottom: 1rem;
}
.info-section ul {
  color: var(--color-muted);
  font-size: .95rem;
  line-height: 1.85;
  padding-left: 0;
  margin-bottom: 1.5rem;
}
.info-section ul li { margin-bottom: .4rem; }

.section-deco-apple {
  position: absolute;
  top: -15%;
  right: -8%;
  width: 900px;
  height: auto;
  opacity: .04;
  pointer-events: none;
  user-select: none;
  filter: brightness(0) invert(1);
}

.info-section--dark h3 { color: #fff; }
.info-section--dark .steps-banner-col ul li { color: rgba(255,255,255,.7); }
.info-section--dark .steps-banner-col ul li::before { background: var(--color-red); }
.info-section--dark .steps-banner-icon { background: rgba(255,255,255,.1); color: var(--color-red); }
.info-section--dark .steps-banner-divider { background: rgba(255,255,255,.12); }
.info-section--dark h2::after { background: var(--color-red); }

/* FAQ sur fond bleu */
/* FAQ sur fond blanc — items rosés */
.faq-section--light .faq-item { background: #F5EAE7; }
.faq-section--light .faq-item.open { background: #F5EAE7; }

.faq-section--dark h2 { color: #fff; }
.faq-section--dark h2::after { background: var(--color-red); }
.faq-section--dark .faq-item {
  background: rgba(255,255,255,.07);
  border-left-color: transparent;
}
.faq-section--dark .faq-item:hover { border-left-color: var(--color-red); }
.faq-section--dark .faq-item.open {
  background: #fff;
  border-left-color: var(--color-red);
  box-shadow: var(--shadow-md);
}
.faq-section--dark .faq-question { color: #fff; }
.faq-section--dark .faq-item.open .faq-question { color: var(--color-primary); }
.faq-section--dark .faq-question:hover { color: var(--color-red); }
.faq-section--dark .faq-chevron { color: rgba(255,255,255,.5); }
.faq-section--dark .faq-item.open .faq-chevron { color: var(--color-red); }
.faq-section--dark .faq-answer p,
.faq-section--dark .faq-answer ul { color: var(--color-muted); }

/* ── Animations patients page ── */

/* Step cards — slide up avec rebond en cascade */
.step-card[data-anim] {
  opacity: 0;
  transform: translateY(40px) scale(.92);
  transition: opacity .7s cubic-bezier(.25,.46,.45,.94), transform .7s cubic-bezier(.34,1.56,.64,1);
}
.step-card[data-anim].anim-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Timeline line — draw in */
.steps-grid::before {
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s cubic-bezier(.25,.46,.45,.94) .3s;
}
.steps-grid.anim-line::before {
  transform: scaleX(1);
}

/* Steps banner — scale up doux */
.steps-banner[data-anim] {
  opacity: 0;
  transform: scale(.95) translateY(20px);
  transition: opacity .8s cubic-bezier(.25,.46,.45,.94), transform .8s cubic-bezier(.34,1.56,.64,1);
}
.steps-banner[data-anim].anim-visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* FAQ items — slide in depuis la gauche en cascade */
.faq-item[data-anim] {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity .5s cubic-bezier(.25,.46,.45,.94), transform .5s cubic-bezier(.25,.46,.45,.94);
}
.faq-item[data-anim].anim-visible {
  opacity: 1;
  transform: translateX(0);
}
.faq-item[data-anim]:nth-child(2) { transition-delay: .08s; }
.faq-item[data-anim]:nth-child(3) { transition-delay: .16s; }
.faq-item[data-anim]:nth-child(4) { transition-delay: .24s; }
.faq-item[data-anim]:nth-child(5) { transition-delay: .32s; }

/* ── Animations blog page ── */

/* Filtres — fade in scale */
.blog-filters[data-anim] {
  opacity: 0;
  transform: translateY(10px) scale(.95);
  transition: opacity .6s ease, transform .6s cubic-bezier(.34,1.56,.64,1);
}
.blog-filters[data-anim].anim-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Blog cards — cascade stagger */
.blog-card[data-anim] {
  opacity: 0;
  transform: translateY(40px) scale(.93);
  filter: blur(4px);
  transition: opacity .6s cubic-bezier(.25,.46,.45,.94), transform .6s cubic-bezier(.34,1.56,.64,1), filter .6s ease;
}
.blog-card[data-anim].anim-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}
.blog-card[data-anim]:nth-child(2) { transition-delay: .08s; }
.blog-card[data-anim]:nth-child(3) { transition-delay: .16s; }
.blog-card[data-anim]:nth-child(4) { transition-delay: .24s; }
.blog-card[data-anim]:nth-child(5) { transition-delay: .32s; }
.blog-card[data-anim]:nth-child(6) { transition-delay: .4s; }
.blog-card[data-anim]:nth-child(7) { transition-delay: .48s; }
.blog-card[data-anim]:nth-child(8) { transition-delay: .56s; }
.blog-card[data-anim]:nth-child(9) { transition-delay: .64s; }

/* ══════════════════════════════════════
   CONTACT PAGE
   ══════════════════════════════════════ */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 3.5rem;
  padding: var(--section-py) 0;
  align-items: stretch;
}

/* ── Formulaire ── */
.contact-form-wrap {
  background: #fff;
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}
.contact-form-wrap h2 {
  font-size: clamp(1.5rem, 3vw, 2.75rem);
  color: var(--color-primary);
  margin-bottom: .5rem;
}
.contact-form-wrap h2::after {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background: var(--color-red);
  border-radius: 2px;
  margin-top: .6rem;
  margin-bottom: 1.5rem;
}
.contact-form-wrap > p {
  color: var(--color-muted);
  font-size: .9rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  margin-bottom: 1rem;
}
.form-group label {
  font-size: .82rem;
  font-weight: 700;
  color: var(--color-primary);
}
.form-group label .required {
  color: var(--color-red);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: .9rem;
  padding: .75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--color-text);
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-red);
  box-shadow: 0 0 0 3px rgba(217,163,154,.2);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #e53e3e;
}
.form-group textarea { resize: vertical; min-height: 180px; }
.form-group select { cursor: pointer; appearance: auto; }

.form-file-group {
  display: none;
  margin-bottom: 1rem;
}
.form-file-group.visible { display: block; }
.form-file-label {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 1rem 1.25rem;
  border: 2px dashed var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-surface);
  cursor: pointer;
  transition: border-color .2s;
  font-size: .85rem;
  color: var(--color-muted);
}
.form-file-label:hover { border-color: var(--color-red); }
.form-file-label svg { color: var(--color-red-muted); flex-shrink: 0; }
.form-file-label input[type="file"] { display: none; }
.form-file-name {
  font-weight: 600;
  color: var(--color-primary);
  font-size: .85rem;
  margin-top: .35rem;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  margin-top: 40px;
  margin-bottom: 1.5rem;
  font-size: .82rem;
  color: var(--color-muted);
  line-height: 1.5;
}
.form-consent input[type="checkbox"] {
  margin-top: 2px;
  accent-color: var(--color-red);
}

.form-status {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: .88rem;
  font-weight: 600;
  margin-bottom: 1rem;
  display: none;
}
.form-status.success {
  display: block;
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}
.form-status.error-msg {
  display: block;
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* ── Sidebar contact ── */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-info-card {
  background: #F5EAE7;
  border-radius: var(--radius);
  padding: 2rem;
}
.contact-info-card h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1rem;
}
.contact-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .88rem;
  color: var(--color-muted);
  line-height: 1.5;
}
.contact-info-list svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-red-muted);
}
.contact-info-list a { color: var(--color-muted); text-decoration: none; }
.contact-info-list a:hover { color: var(--color-red-muted); }

.contact-pdf-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-pdf-card h3 {
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: .5rem;
}
.contact-pdf-card p {
  font-size: .82rem;
  color: var(--color-muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}
.contact-pdf-card .btn { width: 100%; justify-content: center; }

/* ── Section carte ── */
.contact-map {
  padding: var(--section-py) 0;
  background: var(--color-surface);
}
.contact-map .section-header { text-align: center; margin-bottom: 2.5rem; }
.contact-map-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 400px;
}
.contact-map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; }
  .contact-sidebar { order: -1; }
  .form-row { grid-template-columns: 1fr; }
  .srv-section-split { grid-template-columns: 1fr; }
  .srv-section-img { max-width: 400px; }
  .srv-featured { grid-template-columns: 1fr; padding: 2rem; }
  .srv-featured-img img { height: 200px; }
  .srv-problem-list { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════
   BLOG LISTING PAGE
   ══════════════════════════════════════ */

.blog-listing {
  padding: 50px 0 var(--section-py);
  background: #fff;
}

/* Filtres catégories */
.blog-filters {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
}
.blog-filter-btn {
  padding: .5rem 1.2rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: .80rem;
  font-weight: 600;
  color: var(--color-muted);
  background: var(--color-surface);
  border: none;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.blog-filter-btn:hover {
  background: #F5EAE7;
  color: var(--color-red-muted);
}
.blog-filter-btn.active {
  background: #F0D5CF;
  color: var(--color-red-muted);
  font-weight: 700;
}

/* Grille articles */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Carte article */
.blog-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .35s, transform .35s, box-shadow .35s;
  text-decoration: none;
  color: inherit;
  position: relative;
  z-index: 0;
}
.blog-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, #111827 100%);
  opacity: 0;
  transition: opacity .35s cubic-bezier(.25,.46,.45,.94);
  z-index: -1;
}
.blog-card:hover {
  border-color: transparent;
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}
.blog-card:hover::before { opacity: 1; }
.blog-card-img {
  height: 200px;
  overflow: hidden;
  background: var(--color-surface);
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  flex: 1;
}
.blog-card-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .35rem;
  font-size: .75rem;
}
.blog-card-cat {
  display: inline-block;
  padding: .25rem .7rem;
  border-radius: var(--radius-sm);
  background: rgba(217,163,154,.15);
  color: var(--color-red);
  font-weight: 700;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  align-self: flex-start;
  transition: color .3s, background .3s;
}
.blog-card:hover .blog-card-cat {
  color: #fff;
  background: rgba(255,255,255,.15);
}
.blog-card-date {
  color: var(--color-muted);
}
.blog-card-body h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.4;
  margin: 0;
  transition: color .3s;
}
.blog-card:hover h3 { color: #fff; }
.blog-card:hover .blog-card-date { color: rgba(255,255,255,.5); }
.blog-card-body p {
  font-size: .88rem;
  color: var(--color-muted);
  line-height: 1.7;
  margin: 0;
  flex: 1;
  transition: color .3s;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card:hover p { color: rgba(255,255,255,.75); }
.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
  font-weight: 700;
  color: var(--color-red);
  margin-top: auto;
  padding-top: .5rem;
  transition: color .3s;
}
.blog-card-link .blog-card-link-label {
  max-width: 0;
  opacity: 0;
  transform: translateX(-8px);
  white-space: nowrap;
  overflow: hidden;
  transition: max-width .35s cubic-bezier(.25,.46,.45,.94), opacity .3s ease, transform .35s ease;
}
.blog-card:hover .blog-card-link-label {
  max-width: 120px;
  opacity: 1;
  transform: translateX(0);
}
.blog-card:hover .blog-card-link { color: var(--color-red); }

/* Charger plus */
.blog-load-more {
  text-align: center;
  margin-top: 3rem;
}

@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
