/* ============================================================
   PURE DENTAL CENTER — Dr Ahmed Ibn Lkhayat Idrissi
   Design : luxe sobre noir & blanc — charbon, ivoire, champagne
   Fonts : Cormorant Garamond + Montserrat (latin)
           Amiri + Tajawal (arabe)
   ============================================================ */

:root {
  /* Palette monochrome — noir, blanc, gris */
  --ink:        #141414;   /* noir profond */
  --ink-soft:   #222222;
  --ivory:      #F4F4F3;   /* fond gris clair */
  --cream:      #FBFBFA;
  --gold:       #757575;   /* gris moyen (accent) */
  --gold-light: #BDBDBD;
  --gold-dark:  #4E4E4E;
  --taupe:      #6A6A6A;   /* texte secondaire */
  --line:       rgba(20, 20, 20, .12);
  --line-gold:  rgba(20, 20, 20, .25);
  --gold-tint:  rgba(20, 20, 20, .05);
  --white:      #FFFFFF;
  --wa:         #25D366;
  --wa-dark:    #1DA851;

  --font-display: 'Cormorant Garamond', 'Amiri', Georgia, serif;
  --font-body:    'Montserrat', 'Tajawal', 'Segoe UI', sans-serif;

  --ease: cubic-bezier(.22, .8, .3, 1);
  --shadow-soft: 0 24px 60px -28px rgba(20, 20, 20, .3);
  --shadow-card: 0 16px 44px -20px rgba(20, 20, 20, .2);
  --r-lg: 6px;
  --r-md: 5px;
  --r-sm: 4px;

  --header-h: 88px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 10px); -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--ink);
  background: var(--ivory);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; background: none; border: none; cursor: pointer; }
input, select, textarea { font-family: inherit; font-size: 15px; color: var(--ink); }

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

.container { width: min(1200px, calc(100% - 48px)); margin-inline: auto; }

.section { padding: clamp(76px, 9vw, 120px) 0; }
.section-aqua { background: var(--cream); }

/* ---------- Typographie ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 42px; height: 1px; background: var(--gold); flex: none; }
.section-head.center .eyebrow::after { content: ""; width: 42px; height: 1px; background: var(--gold); flex: none; }
.eyebrow-light { color: var(--gold-light); }

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.15;
  letter-spacing: .01em;
  margin-bottom: 18px;
}
.section-sub, .lead { color: var(--taupe); font-size: 16.5px; max-width: 660px; }
.lead { margin-bottom: 16px; }
.section-head { max-width: 780px; margin-bottom: clamp(40px, 5vw, 60px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .section-sub { margin-inline: auto; }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease),
              background .45s, color .45s, border-color .45s;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.25) 50%, transparent 60%);
  transform: translateX(-130%);
  transition: transform .8s var(--ease);
}
.btn:hover::after { transform: translateX(130%); }
.btn:active { transform: scale(.98); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  box-shadow: 0 14px 30px -12px rgba(70, 70, 70, .55);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -12px rgba(70, 70, 70, .65); }

.btn-outline { border: 1px solid var(--ink); color: var(--ink); background: transparent; }
.btn-outline:hover { background: var(--ink); color: var(--ivory); transform: translateY(-3px); }

.btn-white { background: var(--white); color: var(--ink); box-shadow: 0 14px 30px -14px rgba(0, 0, 0, .35); }
.btn-white:hover { transform: translateY(-3px); }

.btn-outline-white { border: 1px solid rgba(255, 255, 255, .6); color: var(--white); background: rgba(255,255,255,.04); }
.btn-outline-white:hover { background: rgba(255, 255, 255, .12); border-color: var(--white); transform: translateY(-3px); }

.btn-wa {
  background: linear-gradient(135deg, var(--wa) 0%, var(--wa-dark) 100%);
  color: var(--white);
  box-shadow: 0 14px 30px -12px rgba(37, 211, 102, .5);
  width: 100%;
  letter-spacing: .1em;
}
.btn-wa:hover { transform: translateY(-3px); }
.btn-wa svg { width: 20px; height: 20px; flex: none; }

.btn-lg { padding: 18px 40px; }

/* ============================================================
   HEADER — ivoire, logo noir
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(252, 252, 252, .94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .4s var(--ease), border-color .4s;
}
.header.is-scrolled { box-shadow: 0 10px 34px -18px rgba(20, 20, 20, .3); border-color: var(--line); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: var(--header-h);
  transition: height .4s var(--ease);
}
.header.is-scrolled .header-inner { height: 70px; }

.logo { display: inline-flex; align-items: center; }
.logo img { height: 58px; width: auto; transition: height .4s var(--ease); }
.header.is-scrolled .logo img { height: 46px; }

.nav { display: flex; align-items: center; gap: clamp(14px, 2vw, 28px); }
.nav-link {
  position: relative;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--taupe);
  padding: 6px 2px;
  transition: color .35s;
}
.nav-link::after {
  content: "";
  position: absolute;
  inset-inline-start: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ease);
}
html[dir="rtl"] .nav-link::after { transform-origin: right; }
.nav-link:hover, .nav-link.active { color: var(--gold-dark); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 14px; }
.lang-switch {
  display: flex;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  overflow: hidden;
  background: var(--white);
}
.lang-btn {
  padding: 7px 13px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--taupe);
  transition: background .3s, color .3s;
}
.lang-btn:hover { color: var(--gold-dark); }
.lang-btn.active { background: var(--gold); color: var(--white); }

.btn-header { padding: 12px 22px; font-size: 11px; }

.burger { display: none; flex-direction: column; gap: 5.5px; padding: 8px; z-index: 110; }
.burger span {
  width: 26px; height: 1.8px;
  background: var(--ink);
  transition: transform .45s var(--ease), opacity .3s;
}
.header.menu-open .burger span:nth-child(1) { transform: translateY(7.3px) rotate(45deg); }
.header.menu-open .burger span:nth-child(2) { opacity: 0; }
.header.menu-open .burger span:nth-child(3) { transform: translateY(-7.3px) rotate(-45deg); }

/* ============================================================
   HERO — split, fond ivoire, touches champagne
   ============================================================ */
.hero {
  position: relative;
  padding: calc(var(--header-h) + clamp(40px, 6vw, 80px)) 0 clamp(110px, 12vw, 150px);
  background: linear-gradient(160deg, #F7F7F6 0%, #FBFBFA 45%, #EFEFED 100%);
  overflow: hidden;
}

/* Halos flottants champagne */
.hero-blobs { position: absolute; inset: 0; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .5; }
.blob-1 { width: 420px; height: 420px; background: #E4E4E2; top: -120px; inset-inline-start: -120px; animation: drift 14s ease-in-out infinite alternate; }
.blob-2 { width: 360px; height: 360px; background: #ECECEA; bottom: -100px; inset-inline-end: 8%; animation: drift 17s ease-in-out infinite alternate-reverse; }
.blob-3 { width: 260px; height: 260px; background: #DBDBD9; top: 30%; inset-inline-end: -90px; animation: drift 12s ease-in-out infinite alternate; }
@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(40px, 30px) scale(1.12); }
}
.spark { position: absolute; color: var(--gold); opacity: .8; animation: twinkle 3.4s ease-in-out infinite; }
.spark-1 { top: 18%; inset-inline-start: 45%; font-size: 18px; }
.spark-2 { top: 62%; inset-inline-start: 6%; font-size: 13px; animation-delay: 1.1s; }
.spark-3 { top: 24%; inset-inline-end: 6%; font-size: 15px; animation-delay: 2s; }
@keyframes twinkle { 0%, 100% { opacity: .2; transform: scale(.8) rotate(0deg); } 50% { opacity: .85; transform: scale(1.15) rotate(20deg); } }

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(36px, 5vw, 70px);
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold-dark);
  border: 1px solid var(--line-gold);
  background: var(--white);
  padding: 10px 22px;
  border-radius: 100px;
  margin-bottom: 26px;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(42px, 6.6vw, 80px);
  line-height: 1.06;
  letter-spacing: .005em;
  margin-bottom: 24px;
}
.hero-title-line { display: block; }
.grad-text {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(100deg, var(--gold-dark) 0%, var(--gold) 45%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  max-width: 560px;
  font-size: clamp(15px, 1.5vw, 17px);
  font-weight: 400;
  color: var(--taupe);
  margin-bottom: 34px;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }

.hero-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: 100px;
  border: 1px solid var(--line-gold);
  background: transparent;
  color: var(--gold-dark);
  transition: transform .35s var(--ease), background .35s, color .35s;
}
.chip:hover { transform: translateY(-3px); background: var(--gold); color: var(--white); }
.chip-teal, .chip-violet, .chip-sun, .chip-coral { background: transparent; color: var(--gold-dark); }
.chip-teal:hover, .chip-violet:hover, .chip-sun:hover, .chip-coral:hover { background: var(--gold); color: var(--white); }

/* Visuel : diaporama + cartes flottantes */
.hero-visual { position: relative; }
.hero-frame {
  position: relative;
  height: clamp(260px, 34vw, 400px);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.hero-frame::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: inherit;
  z-index: 2;
  pointer-events: none;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.6s var(--ease);
}
.hero-slide.is-active { opacity: 1; animation: kenburns 8s var(--ease) forwards; }
@keyframes kenburns {
  from { transform: scale(1.12) translate(1.5%, -1%); }
  to   { transform: scale(1.01) translate(0, 0); }
}

.hero-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 9px;
  z-index: 3;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 100px;
  background: rgba(255, 255, 255, .5);
  transition: background .35s, width .35s var(--ease);
}
.hero-dot:hover { background: rgba(255, 255, 255, .85); }
.hero-dot.is-active { background: var(--gold-light); width: 24px; }

.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: var(--ivory);
  border: 1px solid var(--line-gold);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-card);
  padding: 12px 18px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .06em;
  animation: floaty 5s ease-in-out infinite;
}
.float-ic { font-size: 18px; }
.float-card-1 { top: 8%; inset-inline-start: -30px; animation-delay: .4s; }
.float-card-2 { bottom: 10%; inset-inline-end: -22px; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* Vague de séparation */
.wave { position: absolute; bottom: -1px; left: 0; width: 100%; height: clamp(40px, 7vw, 90px); }

/* ============================================================
   STRIP — distinctions
   ============================================================ */
.strip { background: var(--cream); padding: clamp(30px, 4vw, 50px) 0 clamp(50px, 6vw, 70px); }
.strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.strip-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 28px 26px;
  transition: transform .45s var(--ease), box-shadow .45s, border-color .45s;
}
.strip-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); border-color: var(--line-gold); }
.strip-ic {
  display: inline-flex;
  width: 52px; height: 52px;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  border-radius: 50%;
  border: 1px solid var(--line-gold);
  background: var(--gold-tint);
  margin-bottom: 16px;
}
.ic-teal, .ic-violet, .ic-sun, .ic-coral { background: var(--gold-tint); }
.strip-item h3 { font-family: var(--font-display); font-size: 23px; font-weight: 600; margin-bottom: 4px; }
.strip-item p { font-size: 13px; color: var(--taupe); line-height: 1.7; }

/* ============================================================
   LE PRATICIEN
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(40px, 6vw, 84px);
  align-items: center;
}

.about-media { position: relative; }
.about-frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.about-frame::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: inherit;
  z-index: 2;
  pointer-events: none;
}
.about-frame img {
  height: clamp(260px, 34vw, 420px);
  object-fit: cover;
  width: 100%;
  transition: transform 1.3s var(--ease);
}
.about-frame:hover img { transform: scale(1.05); }
.about-media::after {
  content: "";
  position: absolute;
  inset: 22px -22px -22px 22px;
  border: 1px solid var(--line-gold);
  border-radius: var(--r-lg);
  z-index: -1;
}
html[dir="rtl"] .about-media::after { inset: 22px 22px -22px -22px; }

.about-card-float {
  position: absolute;
  bottom: 24px;
  inset-inline-end: -16px;
  background: var(--ink);
  color: var(--ivory);
  padding: 16px 26px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 2px;
  animation: floaty 6s ease-in-out infinite;
}
.about-float-title { font-family: var(--font-display); font-size: 19px; letter-spacing: .05em; }
.about-float-sub { font-size: 10px; font-weight: 600; color: var(--gold-light); text-transform: uppercase; letter-spacing: .24em; }

.about-role {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin: -6px 0 18px;
}

.about-qualities { display: grid; gap: 16px; margin: 28px 0 32px; }
.about-qualities li { display: flex; gap: 16px; align-items: flex-start; }
.q-icon {
  flex: none;
  display: inline-flex;
  width: 46px; height: 46px;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  border-radius: 50%;
  border: 1px solid var(--line-gold);
  background: var(--gold-tint);
}
.q-teal, .q-sun, .q-violet { background: var(--gold-tint); }
.about-qualities h4 { font-family: var(--font-display); font-size: 20px; font-weight: 600; }
.about-qualities p { font-size: 13.5px; color: var(--taupe); line-height: 1.65; }

/* ============================================================
   SPÉCIALITÉS — fond charbon
   ============================================================ */
.services { background: var(--ink); color: var(--ivory); }
.services .section-title { color: var(--cream); }
.services .section-sub { color: rgba(245, 245, 245, .6); }
.services .eyebrow { color: var(--gold-light); }

.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

.service-card {
  position: relative;
  background: rgba(252, 252, 252, .04);
  border: 1px solid rgba(252, 252, 252, .1);
  border-radius: var(--r-lg);
  padding: clamp(28px, 3.4vw, 42px);
  overflow: hidden;
  transition: transform .5s var(--ease), border-color .5s, background .5s;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; inset-inline-start: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent 70%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .7s var(--ease);
}
html[dir="rtl"] .service-card::before { background: linear-gradient(-90deg, var(--gold), transparent 70%); transform-origin: right; }
.service-card:hover { transform: translateY(-8px); border-color: var(--line-gold); background: rgba(252, 252, 252, .07); }
.service-card:hover::before { transform: scaleX(1); }
.sc-teal, .sc-violet, .sc-sun, .sc-coral { border-top-color: rgba(252, 252, 252, .1); }

.service-icon {
  display: inline-flex;
  width: 60px; height: 60px;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  border-radius: 50%;
  border: 1px solid var(--line-gold);
  background: rgba(128, 128, 128, .1);
  margin-bottom: 20px;
  transition: transform .5s var(--ease), background .5s;
}
.sc-teal .service-icon, .sc-violet .service-icon, .sc-sun .service-icon, .sc-coral .service-icon { background: rgba(128, 128, 128, .1); }
.service-card:hover .service-icon { background: rgba(128, 128, 128, .2); transform: rotate(-6deg) scale(1.08); }

.service-card h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.2vw, 29px);
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 10px;
}
.service-card > p { font-size: 14px; color: rgba(245, 245, 245, .62); margin-bottom: 20px; }

.service-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.service-tags li {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(252, 252, 252, .18);
  color: rgba(245, 245, 245, .75);
  background: transparent;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.service-link::after { content: "→"; transition: transform .35s var(--ease); }
.service-link:hover::after { transform: translateX(6px); }
html[dir="rtl"] .service-link::after { content: "←"; }
html[dir="rtl"] .service-link:hover::after { transform: translateX(-6px); }

/* ============================================================
   ESTHÉTIQUE — image arrondie élégante
   ============================================================ */
.esthetic-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(40px, 6vw, 84px);
  align-items: center;
}

.esthetic-media { position: relative; }
.blob-frame {
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  max-width: 540px;
  margin-inline: auto;
  border-radius: 20px 90px 20px 90px;
  animation: blobmorph 14s ease-in-out infinite alternate;
}
.blob-frame img {
  height: clamp(240px, 30vw, 380px);
  width: 100%;
  object-fit: cover;
  transition: transform 1.3s var(--ease);
}
.blob-frame:hover img { transform: scale(1.06); }
@keyframes blobmorph {
  0%   { border-radius: 20px 90px 20px 90px; }
  100% { border-radius: 90px 20px 90px 20px; }
}
.esthetic-dot { position: absolute; border-radius: 50%; }
.dot-1 { width: 20px; height: 20px; background: var(--gold); top: 4%; inset-inline-end: 10%; animation: floaty 4.5s ease-in-out infinite; }
.dot-2 { width: 12px; height: 12px; background: var(--gold-light); bottom: 6%; inset-inline-start: 4%; animation: floaty 5.5s ease-in-out infinite reverse; }

.check-list { display: grid; gap: 13px; margin: 24px 0 32px; }
.check-list li { display: flex; align-items: flex-start; gap: 13px; font-size: 15px; }
.check {
  flex: none;
  width: 23px; height: 23px;
  margin-top: 3px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  position: relative;
}
.check::after {
  content: "";
  position: absolute;
  left: 7px; top: 4.5px;
  width: 6px; height: 9px;
  border: solid var(--gold-dark);
  border-width: 0 1.6px 1.6px 0;
  transform: rotate(45deg);
}

/* ============================================================
   GALERIE
   ============================================================ */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.gallery-item {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.gallery-item img {
  width: 100%;
  height: clamp(220px, 24vw, 300px);
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, .6), transparent 42%);
  pointer-events: none;   /* laisse passer le clic vers la photo */
}
.gallery-item { cursor: zoom-in; }
.gallery-item figcaption { pointer-events: none; }
.gallery-item figcaption {
  position: absolute;
  bottom: 16px;
  inset-inline-start: 20px;
  z-index: 2;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  gap: 12px;
}
.gallery-item figcaption::before { content: ""; width: 26px; height: 1px; background: var(--gold); }

/* ============================================================
   INSTAGRAM — fond ivoire animé flottant
   ============================================================ */
.insta {
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, #F7F7F6 0%, #FBFBFA 40%, #EFEFED 100%);
}
.insta > .container { position: relative; z-index: 2; }

.insta-deco { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.deco-blob { position: absolute; border-radius: 50%; filter: blur(55px); opacity: .5; }
.deco-blob.db1 { width: 380px; height: 380px; background: #E4E4E2; top: -110px; inset-inline-start: -110px; animation: drift 15s ease-in-out infinite alternate; }
.deco-blob.db2 { width: 320px; height: 320px; background: #ECECEA; bottom: -90px; inset-inline-end: -80px; animation: drift 18s ease-in-out infinite alternate-reverse; }
.deco-blob.db3 { width: 220px; height: 220px; background: #DBDBD9; top: 38%; inset-inline-end: -70px; animation: drift 13s ease-in-out infinite alternate; }

.deco-ring { position: absolute; border-radius: 50%; border: 1px dashed var(--line-gold); }
.deco-ring.dr1 { width: 130px; height: 130px; top: 14%; inset-inline-start: 8%; animation: ringSpin 26s linear infinite, floaty 7s ease-in-out infinite; }
.deco-ring.dr2 { width: 84px; height: 84px; bottom: 16%; inset-inline-end: 10%; border-color: rgba(128, 128, 128, .45); animation: ringSpin 20s linear infinite reverse, floaty 6s ease-in-out infinite; }

.deco-dot { position: absolute; border-radius: 50%; }
.deco-dot.dd1 { width: 14px; height: 14px; background: var(--gold);       top: 24%; inset-inline-end: 20%; animation: floaty 5s ease-in-out infinite; }
.deco-dot.dd2 { width: 10px; height: 10px; background: var(--gold-light); top: 62%; inset-inline-start: 12%; animation: floaty 6.5s ease-in-out infinite reverse; }
.deco-dot.dd3 { width: 12px; height: 12px; background: var(--gold-dark);  bottom: 12%; inset-inline-start: 32%; animation: floaty 5.6s ease-in-out infinite; }
.deco-dot.dd4 { width: 8px;  height: 8px;  background: var(--ink);        top: 12%; inset-inline-start: 40%; opacity: .35; animation: floaty 7.2s ease-in-out infinite reverse; }

.deco-spark { position: absolute; color: var(--gold); animation: twinkle 3.6s ease-in-out infinite; }
.deco-spark.ds1 { top: 20%; inset-inline-end: 32%; font-size: 19px; }
.deco-spark.ds2 { bottom: 24%; inset-inline-start: 20%; font-size: 14px; animation-delay: 1.2s; color: var(--gold-dark); }
.deco-spark.ds3 { top: 55%; inset-inline-end: 8%; font-size: 16px; animation-delay: 2.1s; color: var(--gold-light); }

.deco-tooth { position: absolute; font-size: 32px; opacity: .14; filter: grayscale(1); animation: toothFloat 9s ease-in-out infinite; }
.deco-tooth.dt1 { top: 30%; inset-inline-start: 6%; }
.deco-tooth.dt2 { bottom: 10%; inset-inline-end: 22%; font-size: 25px; animation-delay: 3s; animation-duration: 11s; }

@keyframes ringSpin { to { transform: rotate(360deg); } }
@keyframes toothFloat {
  0%, 100% { transform: translateY(0) rotate(-8deg); }
  50%      { transform: translateY(-22px) rotate(10deg); }
}

.insta-embed { display: flex; justify-content: center; margin-bottom: 30px; }
.insta-embed .instagram-media {
  margin: 0 auto !important;
  border-radius: var(--r-md) !important;
  box-shadow: var(--shadow-card) !important;
  border: 1px solid var(--line) !important;
}

/* ============================================================
   RENDEZ-VOUS — formulaire WhatsApp, fond charbon
   ============================================================ */
.booking {
  background: linear-gradient(135deg, #1E1E1E 0%, var(--ink) 60%, #0D0D0D 100%);
  position: relative;
  overflow: hidden;
}
.booking::before, .booking::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(128, 128, 128, .18);
}
.booking::before { width: 420px; height: 420px; top: -160px; inset-inline-end: -100px; }
.booking::after { width: 280px; height: 280px; bottom: -120px; inset-inline-start: -80px; }

.booking-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(40px, 5vw, 70px);
  align-items: center;
}
.booking-intro { color: var(--ivory); }
.booking-intro .section-title { color: var(--cream); }
.booking-sub { color: rgba(245, 245, 245, .7); font-size: 16px; margin-bottom: 26px; }
.booking-alt { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; color: rgba(245, 245, 245, .6); font-weight: 500; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; }

.booking-form {
  background: var(--cream);
  border-radius: var(--r-lg);
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, .6);
  padding: clamp(26px, 3vw, 40px);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-field label {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink);
}
.form-field input, .form-field select, .form-field textarea {
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 12px 16px;
  background: var(--white);
  outline: none;
  transition: border-color .3s, box-shadow .3s;
  width: 100%;
}
.form-field textarea { resize: vertical; min-height: 84px; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(128, 128, 128, .16);
}
.form-error {
  color: #A33B3B;
  background: #F7E9E9;
  border-radius: var(--r-sm);
  padding: 10px 16px;
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 14px;
}
.form-note { font-size: 12px; color: var(--taupe); margin-top: 12px; text-align: center; }

/* ============================================================
   FAQ — accordéon
   ============================================================ */
.faq-wrap { max-width: 860px; }
.faq-list { display: grid; gap: 14px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color .35s, box-shadow .35s;
}
.faq-item[open] { border-color: var(--line-gold); box-shadow: var(--shadow-card); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  list-style: none;
  padding: 18px 24px;
  font-weight: 600;
  font-size: 15.5px;
  transition: color .3s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold-dark); }
.faq-plus {
  flex: none;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid var(--line-gold);
  background: var(--gold-tint);
  position: relative;
  transition: transform .4s var(--ease), background .35s;
}
.faq-plus::before, .faq-plus::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  background: var(--gold-dark);
  border-radius: 2px;
  transform: translate(-50%, -50%);
}
.faq-plus::before { width: 12px; height: 2px; }
.faq-plus::after { width: 2px; height: 12px; transition: opacity .3s; }
.faq-item[open] .faq-plus { transform: rotate(180deg); background: var(--gold); }
.faq-item[open] .faq-plus::after { opacity: 0; }
.faq-item[open] .faq-plus::before { background: var(--white); }
.faq-item p { padding: 0 24px 20px; color: var(--taupe); font-size: 14.5px; }

/* ============================================================
   CTA — bandeau charbon & or
   ============================================================ */
.cta {
  position: relative;
  padding: clamp(80px, 10vw, 130px) 0;
  text-align: center;
  color: var(--ivory);
  background:
    radial-gradient(circle at 15% 20%, rgba(128, 128, 128, .16), transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(128, 128, 128, .12), transparent 40%),
    linear-gradient(120deg, #1E1E1E 0%, var(--ink) 55%, #0D0D0D 100%);
  overflow: hidden;
}
.cta-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 4.6vw, 54px);
  color: var(--cream);
  margin-bottom: 14px;
}
.cta-desc { max-width: 560px; margin: 0 auto 34px; color: rgba(245, 245, 245, .72); font-size: 16px; font-weight: 300; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.cta .btn-white { color: var(--ink); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(28px, 4vw, 52px);
  align-items: stretch;
}
.contact-cards { display: grid; gap: 18px; }
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 26px 28px;
  transition: transform .45s var(--ease), box-shadow .45s, border-color .45s;
}
.contact-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); border-color: var(--line-gold); }
.contact-ic {
  display: inline-flex;
  width: 50px; height: 50px;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  border-radius: 50%;
  border: 1px solid var(--line-gold);
  background: var(--gold-tint);
  margin-bottom: 14px;
}
.contact-card h3 { font-family: var(--font-display); font-size: 22px; font-weight: 600; margin-bottom: 6px; }
.contact-card p { font-size: 13.5px; color: var(--taupe); margin-bottom: 12px; }
.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-dark);
  border-bottom: 1px solid var(--line-gold);
  padding-bottom: 3px;
  transition: color .3s, border-color .3s;
}
.contact-link:hover { color: var(--ink); border-color: var(--ink); }

.contact-map {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line);
  min-height: 400px;
}
.contact-map iframe { width: 100%; height: 100%; min-height: 400px; border: 0; filter: saturate(.7) contrast(1.02); }

/* ============================================================
   FOOTER — ivoire, logo noir
   ============================================================ */
.footer { background: var(--cream); border-top: 1px solid var(--line); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1fr;
  gap: clamp(30px, 4vw, 56px);
  padding: clamp(54px, 6vw, 80px) 0 44px;
}
.logo-footer img { height: 74px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 13.5px; color: var(--taupe); line-height: 1.85; max-width: 320px; }
.footer-doctor { margin-top: 10px; color: var(--gold-dark) !important; font-weight: 600; letter-spacing: .04em; }
.footer-col { display: flex; flex-direction: column; align-items: flex-start; }
.footer-col h4 {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 16px;
}
.footer-col a {
  font-size: 14px;
  padding: 5px 0;
  color: var(--taupe);
  transition: color .3s, transform .35s var(--ease);
}
.footer-col a:hover { color: var(--gold-dark); transform: translateX(4px); }
html[dir="rtl"] .footer-col a:hover { transform: translateX(-4px); }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 20px 0;
  font-size: 12.5px;
  letter-spacing: .04em;
  color: var(--taupe);
}

/* ============================================================
   FAB WhatsApp
   ============================================================ */
.fab-wa {
  position: fixed;
  bottom: 24px;
  inset-inline-end: 24px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--wa) 0%, var(--wa-dark) 100%);
  color: var(--white);
  box-shadow: 0 16px 36px -12px rgba(37, 211, 102, .6);
  transition: transform .4s var(--ease);
  animation: waPulse 2.6s ease-out infinite;
}
.fab-wa svg { width: 30px; height: 30px; }
.fab-wa:hover { transform: scale(1.1) rotate(6deg); }
@keyframes waPulse {
  0%   { box-shadow: 0 16px 36px -12px rgba(37, 211, 102, .6), 0 0 0 0 rgba(37, 211, 102, .4); }
  70%  { box-shadow: 0 16px 36px -12px rgba(37, 211, 102, .6), 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 16px 36px -12px rgba(37, 211, 102, .6), 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ============================================================
   PAGES SPÉCIALITÉS & BLOG (articles)
   ============================================================ */
.page-hero {
  padding: calc(var(--header-h) + clamp(36px, 5vw, 64px)) 0 clamp(48px, 6vw, 72px);
  background: linear-gradient(160deg, #F7F7F6 0%, #FBFBFA 55%, #EFEFED 100%);
  position: relative;
  overflow: hidden;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 18px;
}
.breadcrumb a { color: var(--gold-dark); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .sep { color: var(--taupe); }
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 4.8vw, 52px);
  line-height: 1.14;
  letter-spacing: .01em;
  margin-bottom: 14px;
}
.page-hero .lead { font-size: 17px; max-width: 720px; }

.page-body { padding: clamp(50px, 6vw, 80px) 0; }
.page-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
  gap: clamp(36px, 5vw, 64px);
  align-items: start;
}
.article h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 600;
  margin: 34px 0 12px;
}
.article h2:first-of-type { margin-top: 0; }
.article h3 { font-family: var(--font-display); font-size: 21px; font-weight: 600; margin: 22px 0 8px; }
.article p { color: var(--taupe); margin-bottom: 14px; }
.article a { color: var(--gold-dark); font-weight: 600; }
.article a:hover { text-decoration: underline; }
.article ul { margin: 0 0 16px; display: grid; gap: 10px; }
.article ul li { display: flex; gap: 12px; align-items: flex-start; color: var(--taupe); }
.article ul li::before {
  content: "";
  flex: none;
  width: 8px; height: 8px;
  margin-top: 10px;
  border-radius: 50%;
  background: var(--gold);
}
.article .article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--taupe);
  margin-bottom: 22px;
}
.article .article-meta span { display: inline-flex; align-items: center; gap: 7px; }

.page-aside { position: sticky; top: calc(var(--header-h) + 20px); display: grid; gap: 20px; }
.aside-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 26px;
}
.aside-card h3 { font-family: var(--font-display); font-size: 21px; font-weight: 600; margin-bottom: 8px; }
.aside-card p { font-size: 13.5px; color: var(--taupe); margin-bottom: 16px; }
.aside-card .btn { width: 100%; }
.aside-img { border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-card); }
.aside-img img { height: 220px; object-fit: cover; width: 100%; }

/* ============================================================
   BLOG — cartes
   ============================================================ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .5s var(--ease), box-shadow .5s, border-color .5s;
}
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card); border-color: var(--line-gold); }
.blog-card-img { overflow: hidden; display: block; }
.blog-card-img img {
  width: 100%;
  height: clamp(170px, 16vw, 210px);
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.blog-card:hover .blog-card-img img { transform: scale(1.07); }
.blog-card-body { padding: 24px 26px 28px; display: flex; flex-direction: column; gap: 10px; flex: 1; text-align: start; }
.blog-tag {
  align-self: flex-start;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  border: 1px solid var(--line-gold);
  background: var(--gold-tint);
  color: var(--gold-dark);
}
.blog-card h3 { font-family: var(--font-display); font-size: 21px; font-weight: 600; line-height: 1.3; }
.blog-card h3 a { transition: color .3s; }
.blog-card h3 a:hover { color: var(--gold-dark); }
.blog-card p { font-size: 13.5px; color: var(--taupe); flex: 1; }
.blog-card .service-link { margin-top: 4px; color: var(--gold-dark); }

/* ============================================================
   LIGHTBOX — clic sur une photo pour l'agrandir
   ============================================================ */
/* Toutes les images sont cliquables → curseur loupe partout */
img:not(.lightbox-img), .hero-frame, .zoomable { cursor: zoom-in; }
.lightbox-img { cursor: default; }
/* Le clic du diaporama est capté par son cadre, pas par les calques */
.hero-slide { pointer-events: none; }
.hero-dots { pointer-events: auto; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 48px);
  background: rgba(10, 10, 10, .94);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .45s var(--ease), visibility .45s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }

.lightbox-figure {
  position: relative;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transform: scale(.92);
  opacity: 0;
  transition: transform .5s var(--ease), opacity .4s var(--ease);
}
.lightbox.is-open .lightbox-figure { transform: scale(1); opacity: 1; }
.lightbox-figure.is-swapping { opacity: 0; transform: scale(.97); }

.lightbox-img {
  max-width: 100%;
  max-height: calc(100vh - 150px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--r-md);
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, .8);
  background: var(--ink);
}

.lightbox-caption {
  color: rgba(255, 255, 255, .85);
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: .04em;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 14px;
}
.lightbox-caption::before, .lightbox-caption::after {
  content: "";
  width: 26px; height: 1px;
  background: rgba(255, 255, 255, .45);
}
.lightbox-count {
  position: absolute;
  top: -34px;
  inset-inline-start: 0;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .22em;
  color: rgba(255, 255, 255, .55);
}

.lightbox-btn {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .3);
  background: rgba(255, 255, 255, .07);
  color: var(--white);
  backdrop-filter: blur(4px);
  transition: background .3s, border-color .3s, transform .3s var(--ease);
  z-index: 2;
}
.lightbox-btn:hover { background: rgba(255, 255, 255, .18); border-color: var(--white); transform: scale(1.08); }
.lightbox-btn svg { width: 20px; height: 20px; }
.lightbox-close { top: clamp(14px, 3vw, 30px); right: clamp(14px, 3vw, 30px); position: fixed; }
.lightbox-prev { left: clamp(10px, 2.5vw, 34px); top: 50%; margin-top: -25px; position: fixed; }
.lightbox-next { right: clamp(10px, 2.5vw, 34px); top: 50%; margin-top: -25px; position: fixed; }
.lightbox.is-single .lightbox-prev,
.lightbox.is-single .lightbox-next,
.lightbox.is-single .lightbox-count { display: none; }

@media (max-width: 600px) {
  .lightbox-img { max-height: calc(100vh - 190px); }
  .lightbox-btn { width: 42px; height: 42px; }
  .lightbox-prev { top: auto; bottom: 22px; left: 22%; margin-top: 0; }
  .lightbox-next { top: auto; bottom: 22px; right: 22%; margin-top: 0; }
  .lightbox-caption { font-size: 16px; }
}

/* ============================================================
   CADRAGE DES PHOTOS DU CABINET
   Les clichés sont au format portrait 3:4 : on fixe le point
   focal de chaque photo pour que le recadrage paysage (PC comme
   mobile) garde toujours le sujet et coupe le plafond.
   ============================================================ */
img[src*="accueil"]       { object-position: center 64%; }
img[src*="salle-soins.jpg"]   { object-position: center 62%; }
img[src*="salle-soins-2"] { object-position: center 66%; }
img[src*="sterilisation"] { object-position: center 68%; }
img[src*="bureau"]        { object-position: center 60%; }
img[src*="logo-mural"]    { object-position: center 42%; }
img[src*="smile-esthetic"]{ object-position: center 45%; }

.hero-slide:nth-child(1) { background-position: center 64%; }
.hero-slide:nth-child(2) { background-position: center 62%; }
.hero-slide:nth-child(3) { background-position: center 42%; }

/* ============================================================
   REVEAL + hero entrance
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.d1 { transition-delay: .1s; }
.reveal.d2 { transition-delay: .2s; }
.reveal.d3 { transition-delay: .3s; }
.reveal.d4 { transition-delay: .4s; }
.reveal.d5 { transition-delay: .5s; }
.reveal.in-view { opacity: 1; transform: none; }

.reveal-hero { opacity: 0; transform: translateY(30px); animation: heroIn 1s var(--ease) forwards; animation-delay: .15s; }
.reveal-hero.d1 { animation-delay: .3s; }
.reveal-hero.d2 { animation-delay: .45s; }
.reveal-hero.d3 { animation-delay: .6s; }
.reveal-hero.d4 { animation-delay: .75s; }
.reveal-hero.d5 { animation-delay: .9s; }
@keyframes heroIn { to { opacity: 1; transform: none; } }

/* ============================================================
   Accessibilité — mouvement réduit
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal, .reveal-hero { opacity: 1; transform: none; }
}
