/* =========================================================
   Dr Marco Lopes — Orthodontiste à Jonzac
   Feuille de style partagée · Nicolam Studio
   ========================================================= */

/* ---------- Reset léger ---------- */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{-webkit-text-size-adjust:100%;scroll-behavior:smooth;scroll-padding-top:calc(var(--header-h) + 20px)}
img{max-width:100%;display:block;height:auto}
button,input,select,textarea{font:inherit;color:inherit}
a{color:inherit;text-decoration:none}
ul{list-style:none}

/* ---------- Design tokens ---------- */
:root{
  /* Palette client */
  --blue:#2C5A73;
  --blue-deep:#16303F;
  --cream:#FBFAF7;
  --beige:#E4D3B8;
  --ink:#1C2A30;
  --gold:#C9A24B;

  --blue-tint:#EAF1F4;      /* voile clair dérivé du bleu */
  --beige-soft:#F1E6D2;     /* beige adouci pour fonds de carte */
  --line:rgba(28,42,48,.10);
  --muted:#5B6b71;

  /* Espacement */
  --space-1:8px;--space-2:16px;--space-3:24px;--space-4:32px;
  --space-5:48px;--space-6:64px;--space-7:80px;--space-8:96px;

  /* Rayons */
  --radius-sm:8px;--radius-md:14px;--radius-lg:22px;--radius-pill:999px;

  /* Ombres */
  --shadow-sm:0 1px 2px rgba(16,32,40,.06);
  --shadow-md:0 6px 20px rgba(16,32,40,.08);
  --shadow-lg:0 20px 50px rgba(16,32,40,.12);

  /* Typo */
  --font-title:'Lora',Georgia,serif;
  --font-body:'Manrope',system-ui,sans-serif;

  --header-h:76px;
  --maxw:1200px;
}

/* ---------- Base ---------- */
body{
  font-family:var(--font-body);
  font-weight:400;
  font-size:clamp(16px,1.05vw,17px);
  line-height:1.6;
  color:var(--ink);
  background:var(--cream);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

h1,h2,h3{font-family:var(--font-title);font-weight:600;line-height:1.15;text-wrap:balance;color:var(--ink)}
h4{font-family:var(--font-body);font-weight:600;line-height:1.25}
h1{font-size:clamp(2rem,5.2vw,3.4rem)}
h2{font-size:clamp(1.6rem,3.6vw,2.5rem)}
h3{font-size:clamp(1.25rem,2.4vw,1.6rem)}
h4{font-size:clamp(1.05rem,1.6vw,1.2rem)}
p{max-width:68ch}
strong{font-weight:600;color:var(--blue)}

/* ---------- Conteneur & sections ---------- */
.container{width:100%;max-width:var(--maxw);margin-inline:auto;padding-inline:clamp(20px,5vw,40px)}
.section{padding-block:clamp(56px,8vw,var(--space-8))}
.section--tight{padding-block:clamp(40px,6vw,var(--space-7))}
.section--cream{background:var(--cream)}
.section--beige{background:var(--beige-soft)}
.section--deep{background:var(--blue-deep);color:#EAF1F4}
.section--deep h1,.section--deep h2,.section--deep h3{color:#fff}
.section--deep p{color:rgba(234,241,244,.82)}

.section__head{max-width:720px;margin-bottom:var(--space-5)}
.section__head--center{margin-inline:auto;text-align:center}
.eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  font-size:.8rem;font-weight:600;letter-spacing:.14em;text-transform:uppercase;
  color:var(--blue);margin-bottom:var(--space-2);
}
.section--deep .eyebrow{color:var(--beige)}
.section__head p{margin-top:var(--space-2);color:var(--muted);font-size:1.05rem}
.section--deep .section__head p{color:rgba(234,241,244,.8)}

/* ---------- Grille ---------- */
.grid{display:grid;gap:var(--space-4)}

/* ---------- Boutons ---------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  min-height:52px;padding:0 26px;border-radius:var(--radius-pill);
  font-weight:600;font-size:1rem;cursor:pointer;border:1.5px solid transparent;
  transition:transform .18s ease,box-shadow .18s ease,background .18s ease,color .18s ease,border-color .18s ease;
  white-space:nowrap;
}
.btn svg{width:19px;height:19px}
.btn--primary{background:var(--blue);color:#fff;box-shadow:var(--shadow-md)}
.btn--primary:hover{transform:translateY(-2px);box-shadow:var(--shadow-lg);background:#26506a}
.btn--ghost{background:transparent;border-color:rgba(28,42,48,.22);color:var(--ink)}
.btn--ghost:hover{transform:translateY(-2px);border-color:var(--blue);color:var(--blue)}
.section--deep .btn--ghost{border-color:rgba(255,255,255,.35);color:#fff}
.section--deep .btn--ghost:hover{border-color:#fff;background:rgba(255,255,255,.08);color:#fff}
.btn--light{background:#fff;color:var(--blue-deep);box-shadow:var(--shadow-md)}
.btn--light:hover{transform:translateY(-2px);box-shadow:var(--shadow-lg)}
.btn--block{width:100%}
:focus-visible{outline:3px solid var(--blue);outline-offset:3px;border-radius:6px}

/* ---------- Cartes ---------- */
.card{
  background:#fff;border:1px solid var(--line);border-radius:var(--radius-lg);
  padding:var(--space-4);box-shadow:var(--shadow-sm);
  transition:transform .2s ease,box-shadow .2s ease;
}
.card--beige{background:var(--beige-soft);border-color:rgba(28,42,48,.06)}
.card--tint{background:var(--blue-tint);border-color:rgba(44,90,115,.12)}
.card--glass{background:rgba(255,255,255,.06);border-color:rgba(255,255,255,.14);backdrop-filter:blur(8px)}
.card__icon{
  width:52px;height:52px;display:grid;place-items:center;border-radius:var(--radius-md);
  background:var(--blue-tint);color:var(--blue);margin-bottom:var(--space-3);
}
.card__icon svg{width:26px;height:26px}

/* =========================================================
   ANNONCE
   ========================================================= */
.announce{
  background:var(--blue-deep);color:#EAF1F4;font-size:.86rem;font-weight:500;
  text-align:center;padding:9px 16px;
}
.announce span{opacity:.9}
.announce .dot{margin:0 8px;opacity:.5}

/* =========================================================
   HEADER
   ========================================================= */
.header{
  position:sticky;top:0;z-index:60;
  background:rgba(251,250,247,.72);backdrop-filter:blur(12px);
  border-bottom:1px solid transparent;
  transition:background .25s ease,box-shadow .25s ease,border-color .25s ease;
}
.header.scrolled{background:rgba(251,250,247,.94);box-shadow:var(--shadow-sm);border-color:var(--line)}
.header__inner{display:flex;align-items:center;gap:var(--space-4);min-height:var(--header-h)}
.brand{display:flex;align-items:center;gap:10px;flex-shrink:0}
.brand img{height:56px;width:auto;border-radius:var(--radius-sm)}
.nav{display:flex;align-items:center;gap:4px;margin-left:auto}
.nav a{
  padding:9px 14px;border-radius:var(--radius-pill);font-weight:600;font-size:.95rem;
  color:var(--ink);transition:background .15s ease,color .15s ease;
}
.nav a:hover{background:var(--blue-tint);color:var(--blue)}
.header__cta{margin-left:8px;display:flex;align-items:center;gap:8px}
.header__cta .btn{min-height:46px;padding:0 20px;font-size:.95rem}

.burger{
  display:none;margin-left:auto;width:46px;height:46px;border:1px solid var(--line);
  background:#fff;border-radius:var(--radius-md);cursor:pointer;align-items:center;justify-content:center;
}
.burger svg{width:24px;height:24px}

/* Overlay mobile */
.mobile-nav{
  position:fixed;inset:0;z-index:70;background:var(--blue-deep);color:#fff;
  display:flex;flex-direction:column;padding:22px clamp(20px,6vw,40px) 32px;
  transform:translateY(-100%);opacity:0;pointer-events:none;
  transition:transform .35s cubic-bezier(.4,0,.2,1),opacity .35s ease;
}
.mobile-nav.open{transform:translateY(0);opacity:1;pointer-events:auto}
.mobile-nav__top{display:flex;align-items:center;justify-content:space-between}
.mobile-nav__top .brand-mark{height:56px;background:#fff;padding:6px 10px;border-radius:var(--radius-sm)}
.mobile-nav__close{width:46px;height:46px;border:1px solid rgba(255,255,255,.25);background:transparent;color:#fff;border-radius:var(--radius-md);cursor:pointer;display:grid;place-items:center}
.mobile-nav__close svg{width:24px;height:24px}
.mobile-nav__links{display:flex;flex-direction:column;gap:6px;margin-top:var(--space-5)}
.mobile-nav__links a{font-family:var(--font-title);font-size:1.5rem;padding:12px 0;border-bottom:1px solid rgba(255,255,255,.1)}
.mobile-nav__foot{margin-top:auto;display:flex;flex-direction:column;gap:14px}
.mobile-nav__foot .tel{font-size:1.2rem;font-weight:600}
.mobile-nav__foot .muted{color:rgba(234,241,244,.7);font-size:.9rem}

/* Barre d'appel sticky mobile */
.callbar{
  position:fixed;left:0;right:0;bottom:0;z-index:55;display:none;
  gap:10px;padding:10px 14px calc(10px + env(safe-area-inset-bottom));
  background:rgba(251,250,247,.96);backdrop-filter:blur(10px);border-top:1px solid var(--line);
}
.callbar .btn{flex:1;min-height:50px}
.callbar .btn--phone{flex:0 0 auto;width:54px;padding:0}

/* =========================================================
   HERO
   ========================================================= */
.hero{position:relative;min-height:min(92vh,820px);display:flex;align-items:center;overflow:hidden;color:#fff;background:var(--blue-deep)}
.hero__bg{position:absolute;inset:0;z-index:0;background:var(--blue-deep)}
/* Vidéo : toujours strictement 16:9 et couvrante (pas de bande) */
.hero__video{
  position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);
  width:100vw;height:56.25vw;min-width:177.78vh;min-height:100vh;
  border:0;pointer-events:none;
}
/* Image : recadrage propre, affichée en secours / sur mobile */
.hero__img{
  position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center 42%;display:none;
}
.hero__veil{position:absolute;inset:0;z-index:1;background:linear-gradient(180deg,rgba(22,48,63,.55) 0%,rgba(22,48,63,.5) 45%,rgba(22,48,63,.72) 100%)}
.hero__inner{position:relative;z-index:2;padding-block:clamp(90px,12vh,140px);max-width:760px}
.hero h1{color:#fff;margin:var(--space-3) 0 var(--space-2);font-size:clamp(2.4rem,6vw,4rem)}
/* Bouton secondaire du hero : lisible sur la vidéo sombre */
.hero .btn--ghost{border-color:rgba(255,255,255,.55);color:#fff;background:rgba(255,255,255,.06)}
.hero .btn--ghost:hover{border-color:#fff;background:rgba(255,255,255,.16);color:#fff}
.hero__logo{background:#fff;padding:8px 14px;border-radius:var(--radius-md);height:56px;width:auto;box-shadow:var(--shadow-md)}
.hero__tagline{font-size:clamp(1.1rem,2vw,1.35rem);font-weight:600;color:#fff}
.hero__desc{color:rgba(255,255,255,.9);margin-top:var(--space-3);font-size:1.05rem;max-width:60ch}
.hero__reassure{display:flex;flex-wrap:wrap;gap:12px;margin-top:var(--space-4)}
.hero__reassure li{
  display:inline-flex;align-items:center;gap:9px;font-size:.92rem;font-weight:500;
  background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.2);
  padding:9px 16px;border-radius:var(--radius-pill);backdrop-filter:blur(4px);
}
.hero__reassure svg{width:18px;height:18px;color:var(--beige)}
.hero__cta{display:flex;flex-wrap:wrap;gap:14px;margin-top:var(--space-5)}

/* Pastille avis Google */
.grating{display:inline-flex;align-items:center;gap:12px;background:rgba(255,255,255,.95);color:var(--ink);padding:8px 16px 8px 12px;border-radius:var(--radius-pill);box-shadow:var(--shadow-md)}
.grating__g{width:22px;height:22px;flex-shrink:0}
.grating__stars{display:inline-flex;gap:1px}
.grating__stars svg{width:16px;height:16px;color:var(--gold);fill:var(--gold)}
.grating__num{font-weight:700}
.grating__count{color:var(--muted);font-size:.86rem}
.grating--dark{background:transparent;color:#fff;box-shadow:none;padding:0}
.grating--dark .grating__count{color:rgba(255,255,255,.75)}

/* =========================================================
   SPLIT (texte + image)
   ========================================================= */
.split{display:grid;grid-template-columns:1fr 1fr;gap:clamp(32px,5vw,var(--space-7));align-items:center}
.split--rev .split__media{order:-1}
.split__media{position:relative}
.split__media img{border-radius:var(--radius-lg);box-shadow:var(--shadow-lg);width:100%;object-fit:cover;aspect-ratio:4/3}
.split__accent{
  position:absolute;bottom:-26px;right:-18px;width:42%;max-width:220px;
  border-radius:var(--radius-md);box-shadow:var(--shadow-lg);border:5px solid var(--cream);
  aspect-ratio:1/1;object-fit:cover;
}
.section--deep .split__accent{border-color:var(--blue-deep)}
.split__text .subhead{margin-top:var(--space-4)}
.split__text p{margin-top:var(--space-2)}
.ordre-badge{
  display:inline-flex;align-items:center;gap:8px;margin-top:var(--space-3);
  font-size:.82rem;color:var(--muted);background:var(--blue-tint);
  padding:7px 14px;border-radius:var(--radius-pill);
}
.section--deep .ordre-badge{background:rgba(255,255,255,.08);color:rgba(255,255,255,.8)}
.labels{display:flex;flex-wrap:wrap;gap:10px;margin-top:var(--space-4)}
.labels li{
  display:inline-flex;align-items:center;gap:8px;font-weight:600;font-size:.92rem;
  padding:9px 16px;border-radius:var(--radius-pill);background:var(--blue-tint);color:var(--blue);
}
.section--deep .labels li{background:rgba(255,255,255,.1);color:#fff}
.labels svg{width:17px;height:17px}

/* ---------- Section équipe (titre / photo / textes) ---------- */
.team{
  display:grid;grid-template-columns:1fr 1fr;
  column-gap:clamp(32px,5vw,var(--space-7));row-gap:var(--space-3);
  align-items:start;
}
.team__head{grid-column:1;grid-row:1;align-self:start}
.team__head p{margin-top:var(--space-3)}
.team__head .ordre-badge{margin-top:var(--space-3)}
.team__body{grid-column:1;grid-row:2;align-self:start}
.team__body h3{color:var(--blue)}
.team__body p{margin-top:var(--space-2)}
.team__media{grid-column:2;grid-row:1 / span 2;align-self:center}
.team__media img{width:100%;border-radius:var(--radius-lg);box-shadow:var(--shadow-lg);object-fit:cover;aspect-ratio:4/3}

/* =========================================================
   GALERIE (grille + lightbox)
   ========================================================= */
.gallery{display:grid;grid-template-columns:repeat(4,1fr);gap:var(--space-3)}
.gallery figure{position:relative;overflow:hidden;border-radius:var(--radius-md);box-shadow:var(--shadow-sm);cursor:pointer;margin:0;aspect-ratio:3/2}
.gallery figure img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease}
.gallery figure::after{
  content:"";position:absolute;inset:0;background:rgba(22,48,63,0);transition:background .3s ease;
}
.gallery figure:hover img{transform:scale(1.06)}
.gallery figure:hover::after{background:rgba(22,48,63,.14)}
.gallery__zoom{
  position:absolute;top:12px;right:12px;z-index:2;width:34px;height:34px;border-radius:50%;
  background:rgba(255,255,255,.9);display:grid;place-items:center;opacity:0;transform:scale(.8);
  transition:opacity .25s ease,transform .25s ease;color:var(--blue-deep);
}
.gallery figure:hover .gallery__zoom{opacity:1;transform:scale(1)}
.gallery__zoom svg{width:17px;height:17px}

.lightbox{
  position:fixed;inset:0;z-index:90;background:rgba(15,28,36,.9);backdrop-filter:blur(6px);
  display:flex;align-items:center;justify-content:center;padding:24px;
  opacity:0;pointer-events:none;transition:opacity .25s ease;
}
.lightbox.open{opacity:1;pointer-events:auto}
.lightbox img{max-width:min(1000px,92vw);max-height:84vh;width:auto;border-radius:var(--radius-md);box-shadow:var(--shadow-lg)}
.lightbox__btn{
  position:absolute;top:20px;right:20px;width:50px;height:50px;border-radius:50%;
  background:rgba(255,255,255,.14);border:1px solid rgba(255,255,255,.25);color:#fff;cursor:pointer;display:grid;place-items:center;
}
.lightbox__nav{position:absolute;top:50%;transform:translateY(-50%);width:50px;height:50px;border-radius:50%;background:rgba(255,255,255,.14);border:1px solid rgba(255,255,255,.25);color:#fff;cursor:pointer;display:grid;place-items:center}
.lightbox__nav svg,.lightbox__btn svg{width:24px;height:24px}
.lightbox__nav.prev{left:20px}
.lightbox__nav.next{right:20px}

/* Bandeau équipements sous galerie */
.equip-strip{display:grid;grid-template-columns:repeat(4,1fr);gap:var(--space-3);margin-top:var(--space-5)}
.equip-strip li{display:flex;align-items:center;gap:12px;font-weight:600;font-size:.95rem;background:#fff;border:1px solid var(--line);border-radius:var(--radius-md);padding:16px}
.equip-strip svg{width:22px;height:22px;color:var(--blue);flex-shrink:0}

/* =========================================================
   CARTES ÂGE
   ========================================================= */
.age-grid{grid-template-columns:repeat(3,1fr)}
.age-card{display:flex;flex-direction:column}
.age-card h4{color:var(--blue);margin-bottom:var(--space-2);font-size:1.15rem}
.age-card .tag{
  display:inline-flex;align-items:center;gap:7px;align-self:flex-start;margin-bottom:var(--space-3);
  font-size:.78rem;font-weight:700;letter-spacing:.06em;text-transform:uppercase;color:var(--blue);
  background:var(--blue-tint);padding:6px 13px;border-radius:var(--radius-pill);
  border:1px solid rgba(44,90,115,.30);
}
.age-card .tag svg{width:15px;height:15px}

/* =========================================================
   STEPPER (méthode)
   ========================================================= */
.steps{grid-template-columns:repeat(4,1fr);position:relative}
.step{position:relative;background:#fff;border:1px solid var(--line);border-radius:var(--radius-lg);padding:var(--space-4);box-shadow:var(--shadow-sm)}
.section--deep .step{background:rgba(255,255,255,.05);border-color:rgba(255,255,255,.12);color:#EAF1F4}
.step__num{
  width:48px;height:48px;border-radius:50%;display:grid;place-items:center;
  font-family:var(--font-title);font-size:1.3rem;font-weight:600;
  background:var(--blue);color:#fff;margin-bottom:var(--space-3);box-shadow:var(--shadow-md);
}
.step h4{margin-bottom:8px}
.section--deep .step h4{color:#fff}
.step p{font-size:.95rem;color:var(--muted)}
.section--deep .step p{color:rgba(234,241,244,.78)}
/* connecteur */
.step:not(:last-child)::after{
  content:"";position:absolute;top:calc(var(--space-4) + 24px);right:-16px;width:32px;height:2px;
  background:repeating-linear-gradient(90deg,var(--blue) 0 6px,transparent 6px 12px);z-index:1;
}
.section--deep .step:not(:last-child)::after{background:repeating-linear-gradient(90deg,var(--beige) 0 6px,transparent 6px 12px)}

/* =========================================================
   AVANT / APRÈS
   ========================================================= */
.ba-grid{grid-template-columns:repeat(3,1fr)}
.ba-card{background:#fff;border:1px solid var(--line);border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow-sm)}
.ba-card__imgs{display:grid;grid-template-columns:1fr 1fr;gap:2px}
.ba-ph{
  position:relative;aspect-ratio:1/1;min-width:0;overflow:hidden;
  display:grid;place-items:center;text-align:center;
  background:linear-gradient(135deg,var(--blue-tint),#dfe9ee);color:var(--blue);
}
.ba-ph.after{background:linear-gradient(135deg,var(--beige-soft),var(--beige))}
.ba-ph svg{width:30px;height:30px;opacity:.55}
.ba-ph span{position:absolute;top:10px;left:10px;font-size:.7rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase;background:rgba(255,255,255,.85);padding:4px 10px;border-radius:var(--radius-pill)}
.ba-card__body{padding:var(--space-3)}
.ba-card__body h4{font-size:1rem}
.ba-card__body p{font-size:.88rem;color:var(--muted);margin-top:4px}
.ba-note{margin-top:var(--space-4);font-size:.85rem;color:var(--muted);text-align:center}
.mockup-note{
  margin:var(--space-5) auto 0;max-width:840px;
  background:var(--blue-tint);border:1.5px dashed rgba(44,90,115,.42);
  border-radius:var(--radius-md);padding:var(--space-4);
}
.mockup-note__badge{
  display:inline-flex;align-items:center;gap:8px;margin-bottom:var(--space-2);
  font-size:.72rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--blue);
  background:#fff;border:1px solid rgba(44,90,115,.22);padding:6px 12px;border-radius:var(--radius-pill);
}
.mockup-note__badge svg{width:15px;height:15px}
.mockup-note p{font-size:.92rem;line-height:1.6;color:#3a4a51;margin:0;max-width:none}
.mockup-note__foot{margin-top:var(--space-2)!important;font-size:.8rem;font-style:italic;color:var(--muted)}

/* =========================================================
   AVIS
   ========================================================= */
.reviews-top{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:var(--space-4);margin-bottom:var(--space-5)}
.rating-big{display:flex;align-items:center;gap:var(--space-3)}
.rating-big__score{font-family:var(--font-title);font-size:3.4rem;line-height:1;color:#fff}
.rating-big__meta .stars{display:flex;gap:2px;margin-bottom:6px}
.rating-big__meta .stars svg{width:22px;height:22px;color:var(--gold);fill:var(--gold)}
.rating-big__meta .count{display:flex;align-items:center;gap:8px;color:rgba(234,241,244,.85);font-size:.95rem}
.rating-big__meta .count svg{width:18px;height:18px}
.reviews-actions{display:flex;gap:12px;flex-wrap:wrap}

.ticker{overflow:hidden;-webkit-mask-image:linear-gradient(90deg,transparent,#000 6%,#000 94%,transparent);mask-image:linear-gradient(90deg,transparent,#000 6%,#000 94%,transparent)}
.ticker__row{display:flex;gap:var(--space-3);width:max-content}
.ticker__row + .ticker__row{margin-top:var(--space-3)}
.ticker__track{display:flex;gap:var(--space-3);animation:scrollx 60s linear infinite;will-change:transform;backface-visibility:hidden}
.ticker__row.rtl .ticker__track{animation-direction:reverse;animation-duration:52s}
.ticker:hover .ticker__track{animation-play-state:paused}
@keyframes scrollx{to{transform:translateX(-50%)}}

.review{
  flex:0 0 clamp(280px,80vw,360px);background:#fff;border-radius:var(--radius-lg);
  padding:var(--space-3);box-shadow:var(--shadow-md);border:1px solid var(--line);
}
.review__head{display:flex;align-items:center;gap:12px;margin-bottom:12px}
.review__avatar{width:42px;height:42px;border-radius:50%;display:grid;place-items:center;font-weight:700;color:#fff;flex-shrink:0}
.review__name{font-weight:700;font-size:.98rem;color:var(--ink)}
.review__stars{display:flex;gap:1px}
.review__stars svg{width:14px;height:14px;color:var(--gold);fill:var(--gold)}
.review__g{margin-left:auto;width:20px;height:20px;flex-shrink:0}
.review p{font-size:.93rem;color:#3a4a51;line-height:1.55}

/* =========================================================
   NOUS TROUVER
   ========================================================= */
.find{display:grid;grid-template-columns:1fr 1fr;gap:clamp(28px,4vw,var(--space-6));align-items:stretch}
.find__map{border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow-md);min-height:340px;border:1px solid var(--line)}
.find__map iframe{width:100%;height:100%;min-height:340px;border:0;display:block}
.info-list{display:flex;flex-direction:column;gap:var(--space-2)}
.info-item{display:flex;gap:14px;align-items:flex-start;background:#fff;border:1px solid var(--line);border-radius:var(--radius-md);padding:16px 18px;box-shadow:var(--shadow-sm)}
.info-item__icon{width:40px;height:40px;border-radius:var(--radius-sm);background:var(--blue-tint);color:var(--blue);display:grid;place-items:center;flex-shrink:0}
.info-item__icon svg{width:20px;height:20px}
.info-item h4{font-size:1rem;margin-bottom:2px}
.info-item p{font-size:.94rem;color:var(--muted);margin:0}
.info-item .hours span{display:block}
.find__cta{margin-top:var(--space-3)}

/* =========================================================
   FOOTER
   ========================================================= */
.footer{background:var(--blue-deep);color:#EAF1F4}
.footer__map{width:100%;height:300px;border:0;display:block;filter:saturate(.9)}
.footer .container{padding-block:var(--space-6)}
.foot-sep{height:1px;background:rgba(255,255,255,.12);margin-block:var(--space-5)}
.foot-id{display:grid;grid-template-columns:1.4fr 1fr;gap:var(--space-5)}
.foot-id__brand img{height:44px;background:#fff;padding:6px 12px;border-radius:var(--radius-sm);margin-bottom:var(--space-3)}
.foot-id__brand .name{font-family:var(--font-title);font-size:1.3rem;color:#fff}
.foot-id__brand .role{color:var(--beige);font-weight:600;font-size:.9rem;margin-bottom:var(--space-2)}
.foot-id__brand p{color:rgba(234,241,244,.72);font-size:.92rem;max-width:44ch}
.foot-reassure{display:flex;flex-wrap:wrap;gap:10px;margin-top:var(--space-3)}
.foot-reassure li{display:inline-flex;align-items:center;gap:7px;font-size:.82rem;background:rgba(255,255,255,.07);padding:7px 13px;border-radius:var(--radius-pill)}
.foot-reassure svg{width:15px;height:15px;color:var(--beige)}
.foot-contact h4{color:#fff;margin-bottom:var(--space-3);font-size:1.05rem}
.foot-contact a{color:#EAF1F4}
.foot-contact a:hover{color:var(--beige)}
.foot-line{display:flex;align-items:flex-start;gap:10px;margin-bottom:12px;font-size:.94rem;color:rgba(234,241,244,.85)}
.foot-line svg{width:18px;height:18px;color:var(--beige);flex-shrink:0;margin-top:2px}
.foot-line .hours span{display:block}
.foot-nav{display:flex;flex-wrap:wrap;gap:8px 22px}
.foot-nav a{color:rgba(234,241,244,.8);font-weight:600;font-size:.95rem}
.foot-nav a:hover{color:#fff}
.foot-social{display:flex;gap:12px}
.foot-social a{width:44px;height:44px;border-radius:50%;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.14);display:grid;place-items:center;transition:background .2s ease,transform .2s ease}
.foot-social a:hover{background:var(--blue);transform:translateY(-2px)}
.foot-social svg{width:20px;height:20px}
.foot-legal{font-size:.8rem;color:rgba(234,241,244,.6);line-height:1.7}
.foot-legal a{color:rgba(234,241,244,.7);text-decoration:underline;text-underline-offset:2px}
.foot-legal a:hover{color:#fff}
.foot-bottom{display:flex;flex-direction:column;gap:var(--space-3)}
.foot-legal-links{display:flex;flex-wrap:wrap;gap:8px 20px}
.foot-legal-links a{font-size:.86rem;color:rgba(234,241,244,.72);transition:color .15s ease}
.foot-legal-links a:hover{color:#fff}
.foot-copy{display:flex;flex-wrap:wrap;justify-content:space-between;gap:4px 24px;font-size:.8rem;color:rgba(234,241,244,.5)}

/* =========================================================
   PAGE RENDEZ-VOUS
   ========================================================= */
.page-hero{background:var(--blue-deep);color:#fff;padding-block:clamp(var(--space-6),10vw,120px) clamp(var(--space-6),9vw,100px)}
.page-hero .container{max-width:820px}
.page-hero .breadcrumb{font-size:.85rem;color:rgba(234,241,244,.65);margin-bottom:var(--space-3)}
.page-hero .breadcrumb a:hover{color:#fff}
.page-hero h1{color:#fff}
.page-hero p{color:rgba(234,241,244,.85);margin-top:var(--space-3);font-size:1.1rem}
.rdv-grid{display:grid;grid-template-columns:1.35fr 1fr;gap:var(--space-4);align-items:start}
.rdv-card{background:#fff;border:1px solid var(--line);border-radius:var(--radius-lg);box-shadow:var(--shadow-md);overflow:hidden}
.rdv-card__head{display:flex;align-items:center;gap:14px;padding:var(--space-4);border-bottom:1px solid var(--line)}
.rdv-card__head .ic{width:48px;height:48px;border-radius:var(--radius-md);background:var(--blue-tint);color:var(--blue);display:grid;place-items:center;flex-shrink:0}
.rdv-card__head .ic svg{width:24px;height:24px}
.rdv-card__head h2{font-size:1.35rem}
.rdv-card__head p{font-size:.9rem;color:var(--muted);margin-top:2px}
.rdv-card__body{padding:0}
.doctolib-frame{width:100%;height:640px;border:0;display:block}
.rdv-phone{padding:var(--space-4)}
.rdv-phone .big-tel{font-family:var(--font-title);font-size:2rem;color:var(--blue);margin:var(--space-2) 0}
.rdv-phone .hours{background:var(--beige-soft);border-radius:var(--radius-md);padding:16px 18px;margin-top:var(--space-3)}
.rdv-phone .hours h4{font-size:.95rem;margin-bottom:8px}
.rdv-phone .hours span{display:block;font-size:.92rem;color:var(--muted)}

/* =========================================================
   REVEAL AU SCROLL
   ========================================================= */
.reveal{opacity:0;transform:translateY(30px);transition:opacity .6s ease-in-out,transform .6s ease-in-out}
.reveal.in-view{opacity:1;transform:none}
.reveal.d1{transition-delay:.08s}
.reveal.d2{transition-delay:.16s}
.reveal.d3{transition-delay:.24s}
.reveal.d4{transition-delay:.32s}

@media (prefers-reduced-motion:reduce){
  *{animation:none!important;scroll-behavior:auto!important}
  .reveal{opacity:1;transform:none;transition:none}
  .ticker__track{animation:none!important}
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width:1024px){
  .gallery{grid-template-columns:repeat(2,1fr)}
  .equip-strip{grid-template-columns:repeat(2,1fr)}
  .steps{grid-template-columns:repeat(2,1fr)}
  .step:not(:last-child)::after{display:none}
  .age-grid{grid-template-columns:1fr}
}
@media (max-width:900px){
  .nav,.header__cta{display:none}
  .burger{display:flex}
  .callbar{display:flex}
  .split{grid-template-columns:1fr;gap:var(--space-5)}
  .split--rev .split__media{order:0}
  .team{display:block}
  .team__media{margin-block:var(--space-3)}
  .split__accent{position:static;width:55%;margin-top:-40px;margin-left:auto;border-width:4px}
  .find{grid-template-columns:1fr}
  .rdv-grid{grid-template-columns:1fr}
  .foot-id{grid-template-columns:1fr;gap:var(--space-4)}
  .ba-grid{grid-template-columns:1fr;max-width:520px;margin-inline:auto}
  body{padding-bottom:76px} /* place pour la callbar */
}
@media (max-width:640px){
  .gallery{grid-template-columns:repeat(2,1fr)}
  .equip-strip{grid-template-columns:1fr}
  .steps{grid-template-columns:1fr}
  .ba-grid{grid-template-columns:1fr}
  .reviews-top{flex-direction:column;align-items:flex-start}
  .hero__cta .btn{width:100%}
  .rating-big__score{font-size:2.8rem}
  .review{flex-basis:82vw}
  /* Hero mobile : image fixe au lieu de la vidéo */
  .hero__video{display:none}
  .hero__img{display:block}
  /* Pastille Google : réduite, mais plus grande que les réassurances */
  .grating{gap:8px;padding:7px 13px 7px 10px}
  .grating__g{width:19px;height:19px}
  .grating__stars svg{width:14px;height:14px}
  .grating__num{font-size:.98rem}
  .grating__count{font-size:.8rem}
  /* Réassurances : les 2 pastilles sur une seule ligne, plus petites */
  .hero__reassure{flex-wrap:nowrap;gap:8px}
  .hero__reassure li{flex:1 1 0;justify-content:center;text-align:center;font-size:.72rem;gap:6px;padding:7px 9px;line-height:1.2}
  .hero__reassure svg{width:15px;height:15px;flex-shrink:0}
}
