/* ============================================================
   ONAE Pertuis — feuille de style
   Palette issue du logo : corail #E05030 · marine #004060
   ============================================================ */

:root {
  --navy: #004060;
  --navy-deep: #0B2D40;
  --coral: #E05030;
  --coral-soft: #F6D9CF;
  --cream: #FAF7F4;
  --cream-2: #FFF6F3;
  --white: #FFFFFF;
  --ink: #12283A;
  --muted: #5C6B75;
  --line: rgba(0, 64, 96, 0.12);
  --shadow: 0 20px 50px -24px rgba(0, 64, 96, 0.35);

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;

  --container: 1180px;
  --gutter: clamp(20px, 4vw, 40px);
  --radius: 22px;
  --radius-sm: 12px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img, picture { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3 { margin: 0; font-family: var(--font-display); font-weight: 300; line-height: 1.08; letter-spacing: -0.015em; color: var(--navy-deep); }
h1 { font-size: clamp(2.6rem, 6.2vw, 5rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.2rem); }
h3 { font-size: 1.5rem; font-weight: 400; }
h1 em, h2 em { font-style: italic; color: var(--coral); font-weight: 300; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.container { width: min(var(--container), 100% - 2 * var(--gutter)); margin-inline: auto; }
.section { padding: clamp(4.5rem, 9vw, 8rem) 0; }
.section--tint { background: var(--cream-2); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  margin: 0 0 1.1rem;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--coral);
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: currentColor; }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.25rem); color: var(--muted); max-width: 34em; }

.section__head { max-width: 42em; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section__head--split { max-width: none; display: grid; gap: 1.5rem 3rem; align-items: end; }
@media (min-width: 900px) { .section__head--split { grid-template-columns: 1.3fr 1fr; } }
.section__intro { color: var(--muted); max-width: 30em; margin: 0; }

/* Skip link */
.skip { position: absolute; left: -999px; top: 8px; background: var(--navy); color: #fff; padding: 8px 12px; border-radius: 8px; z-index: 100; }
.skip:focus { left: 8px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  font-weight: 600; font-size: 0.95rem; line-height: 1;
  border: 1px solid transparent;
  transition: transform .35s var(--ease), background .25s, color .25s, border-color .25s, box-shadow .35s;
  white-space: nowrap;
}
.btn--sm { padding: 0.7rem 1.15rem; font-size: 0.88rem; }
.btn--primary { background: var(--navy); color: #fff; box-shadow: 0 10px 24px -14px rgba(0, 64, 96, .8); }
.btn--primary:hover { background: var(--coral); transform: translateY(-2px); box-shadow: 0 16px 30px -14px rgba(224, 80, 48, .7); }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--navy); transform: translateY(-2px); }
.btn:focus-visible { outline: 2px solid var(--coral); outline-offset: 3px; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--cream) 82%, transparent);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.header.is-scrolled { border-bottom-color: var(--line); }
.header__inner { display: flex; align-items: center; gap: 2rem; height: 76px; }
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand__mark { width: 36px; height: auto; }
.brand__word { width: 82px; height: auto; }
.brand__city { font-family: var(--font-display); font-style: italic; color: var(--coral); font-size: 1.05rem; margin-left: -2px; padding-top: 2px; }
.nav { display: none; margin-left: auto; gap: 2rem; }
.nav a { font-weight: 500; font-size: 0.95rem; color: var(--navy-deep); position: relative; padding: 6px 0; }
.nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--coral); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.nav a:hover::after, .nav a.is-active::after { transform: scaleX(1); }
.header__cta { display: none; }
.burger { margin-left: auto; width: 44px; height: 44px; border: 1px solid var(--line); background: transparent; border-radius: 50%; display: grid; place-items: center; gap: 5px; cursor: pointer; padding: 0; }
.burger span { display: block; width: 18px; height: 1.5px; background: var(--navy); transition: transform .3s var(--ease), opacity .2s; }
.burger[aria-expanded="true"] span:first-child { transform: translateY(3.25px) rotate(45deg); }
.burger[aria-expanded="true"] span:last-child { transform: translateY(-3.25px) rotate(-45deg); }
.mobile-nav { display: none; flex-direction: column; gap: 1rem; padding: 1rem var(--gutter) 1.5rem; border-top: 1px solid var(--line); }
.mobile-nav.is-open { display: flex; }
.mobile-nav a:not(.btn) { font-family: var(--font-display); font-size: 1.6rem; color: var(--navy-deep); }
.mobile-nav .btn { align-self: flex-start; margin-top: .5rem; }
@media (min-width: 900px) {
  .nav { display: flex; }
  .header__cta { display: inline-flex; }
  .burger, .mobile-nav { display: none !important; }
}

/* ---------- Hero ---------- */
.hero { padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(3rem, 7vw, 6rem); overflow: hidden; }
.hero__grid { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 960px) { .hero__grid { grid-template-columns: 1.05fr 1fr; gap: 4rem; } }
.hero__text h1 { margin-bottom: 1.4rem; max-width: 11em; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 2rem 0 2.5rem; }
.hero__facts { display: flex; flex-wrap: wrap; gap: 1.5rem 2.5rem; padding-top: 1.75rem; border-top: 1px solid var(--line); }
.hero__facts li { display: flex; flex-direction: column; }
.hero__facts strong { font-family: var(--font-display); font-weight: 400; font-size: 1.7rem; color: var(--navy-deep); line-height: 1.1; }
.hero__facts span { font-size: 0.85rem; color: var(--muted); }
.hero__media { margin: 0; position: relative; aspect-ratio: 4 / 3; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; isolation: isolate; }
.hero__slide { position: absolute; inset: 0; opacity: 0; transform: scale(1.04); transition: opacity 1.1s var(--ease), transform 6s linear; will-change: opacity, transform; }
.hero__slide.is-active { opacity: 1; transform: scale(1); z-index: 1; }
.hero__slide picture, .hero__slide img { width: 100%; height: 100%; object-fit: cover; }
.hero__media figcaption { z-index: 2; }
.hero__media figcaption span { display: inline-block; }
.hero__media figcaption span.is-switching { animation: captionSwap .6s var(--ease); }
@keyframes captionSwap { 0% { opacity: 0; transform: translateY(6px); } 100% { opacity: 1; transform: none; } }
.hero__dots { position: absolute; right: 18px; bottom: 22px; z-index: 2; display: flex; gap: 8px; }
.hero__dots button { width: 8px; height: 8px; padding: 0; border-radius: 50%; border: 0; background: rgba(255,255,255,.55); cursor: pointer; transition: width .35s var(--ease), background .3s; }
.hero__dots button[aria-selected="true"] { width: 24px; background: #fff; }
.hero__media figcaption {
  position: absolute; left: 18px; bottom: 18px;
  background: rgba(255,255,255,.85); backdrop-filter: blur(8px);
  padding: 8px 14px; border-radius: 999px;
  font-size: 0.82rem; font-weight: 600; color: var(--navy);
}
.hero__media::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, transparent 70%, rgba(11, 45, 64, .28));
}

/* ---------- Le lieu ---------- */
.lieu__grid { display: grid; gap: 3rem; align-items: start; }
@media (min-width: 960px) { .lieu__grid { grid-template-columns: 1fr 1.1fr; gap: 4.5rem; } }
.lieu__text > p { color: var(--muted); max-width: 34em; }
.values { display: grid; gap: 1.4rem; margin-top: 2.25rem; }
.values li { display: grid; grid-template-columns: 44px 1fr; gap: 1rem; align-items: start; }
.values__icon { width: 44px; height: 44px; border-radius: 50%; background: var(--white); border: 1px solid var(--line); display: grid; place-items: center; color: var(--coral); font-size: 1.2rem; }
.values strong { display: block; font-weight: 600; color: var(--navy-deep); margin-bottom: 2px; }
.values p { margin: 0; font-size: 0.95rem; color: var(--muted); }
.mosaic { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.mosaic__item { margin: 0; border-radius: var(--radius-sm); overflow: hidden; background: #eee; }
.mosaic__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.mosaic__item:hover img { transform: scale(1.04); }
.mosaic__item--tall { grid-row: span 2; }
.mosaic__item:not(.mosaic__item--tall) { aspect-ratio: 4 / 3; }

/* ---------- Espaces ---------- */
.spaces { display: grid; gap: 1.5rem; }
@media (min-width: 720px) { .spaces { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .spaces { grid-template-columns: repeat(3, 1fr); } }
.space {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.space:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.space__media { margin: 0; position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.space__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.space:hover .space__media img { transform: scale(1.05); }
.space__tag { position: absolute; top: 14px; left: 14px; background: rgba(255,255,255,.9); backdrop-filter: blur(6px); padding: 6px 12px; border-radius: 999px; font-size: 0.78rem; font-weight: 600; color: var(--navy); }
.space__body { padding: 1.5rem 1.5rem 1.6rem; display: flex; flex-direction: column; gap: .75rem; flex: 1; }
.space__body > p { color: var(--muted); font-size: 0.97rem; }
.space__for { font-size: 0.8rem !important; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--coral) !important; }
.space__list { display: grid; gap: 6px; font-size: 0.92rem; color: var(--ink); }
.space__list li { padding-left: 18px; position: relative; }
.space__list li::before { content: ""; position: absolute; left: 0; top: .65em; width: 7px; height: 7px; border-radius: 50%; background: var(--coral-soft); border: 1.5px solid var(--coral); }
.space__foot { margin-top: auto; padding-top: 1.1rem; border-top: 1px solid var(--line); display: flex; flex-direction: column; align-items: flex-start; gap: 1rem; }
.price { display: flex; flex-direction: column; line-height: 1.2; margin: 0; }
.price__label { font-size: 0.8rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--navy); margin-bottom: 4px; }
.price strong { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; font-family: var(--font-display); font-weight: 400; font-size: 2rem; color: var(--navy-deep); }
.price strong b { font-family: var(--font-body); font-weight: 700; font-size: 1.05rem; color: var(--coral); letter-spacing: .01em; }
.price__note { font-size: 0.78rem; color: var(--muted); margin-top: 4px; }

.callout {
  margin-top: 3rem; padding: clamp(1.5rem, 4vw, 2.5rem);
  background: var(--navy); color: #fff; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
  background-image: radial-gradient(60% 120% at 100% 0%, rgba(224, 80, 48, .35), transparent 60%);
}
.callout h3 { color: #fff; margin-bottom: .35rem; }
.callout p { margin: 0; color: rgba(255,255,255,.8); }
.callout .btn--primary { background: var(--coral); }
.callout .btn--primary:hover { background: #fff; color: var(--navy); }

/* ---------- Thérapeutes ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 2rem; }
.chip {
  padding: 8px 16px; border-radius: 999px; border: 1px solid var(--line);
  background: transparent; color: var(--navy-deep); font: inherit; font-size: 0.88rem; font-weight: 500; cursor: pointer;
  transition: background .25s, color .25s, border-color .25s;
}
.chip:hover { border-color: var(--navy); }
.chip.is-active { background: var(--navy); color: #fff; border-color: var(--navy); }
.therapists { display: grid; gap: 1.25rem; }
@media (min-width: 600px) { .therapists { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .therapists { grid-template-columns: repeat(3, 1fr); } }
.therapist {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.4rem; display: grid; grid-template-columns: 72px 1fr; gap: 1rem 1.1rem; align-items: start;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), opacity .4s;
}
.therapist:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.therapist.is-hidden { display: none; }
.therapist__photo { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; background: var(--coral-soft); }
.therapist__initials { width: 72px; height: 72px; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(135deg, var(--coral-soft), #FBE9E2); color: var(--coral); font-family: var(--font-display); font-size: 1.5rem; }
.therapist h3 { font-size: 1.2rem; margin-bottom: 2px; }
.therapist__spec { font-size: 0.8rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--coral); margin: 0 0 .5rem; }
.therapist__bio { font-size: 0.93rem; color: var(--muted); margin: 0 0 .9rem; }
.therapist__links { display: flex; flex-wrap: wrap; gap: 8px; }
.therapist__links a { font-size: 0.85rem; font-weight: 600; color: var(--navy); padding: 6px 12px; border: 1px solid var(--line); border-radius: 999px; transition: border-color .25s, background .25s, color .25s; }
.therapist__links a:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.therapist__body { grid-column: 2; }
.therapist--placeholder { border-style: dashed; background: transparent; }
.therapist--placeholder h3 { color: var(--muted); }
.therapists__empty { color: var(--muted); text-align: center; padding: 2rem 0; }

/* ---------- Avis ---------- */
.rating { display: flex; flex-direction: column; align-items: flex-start; gap: .4rem; }
.rating__score { display: flex; align-items: baseline; gap: 10px; }
.rating__score strong { font-family: var(--font-display); font-weight: 400; font-size: 2.6rem; color: var(--navy-deep); line-height: 1; }
.rating__stars { color: var(--coral); letter-spacing: .12em; font-size: 1.1rem; }
.rating p { margin: 0 0 .6rem; font-size: 0.9rem; color: var(--muted); }
@media (min-width: 900px) { .rating { align-items: flex-end; text-align: right; } }

.carousel { position: relative; }
.carousel__controls { display: flex; justify-content: flex-end; gap: 8px; margin-bottom: 1.25rem; }
.carousel__btn {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line); background: var(--white);
  color: var(--navy); font-size: 1.1rem; cursor: pointer; display: grid; place-items: center;
  transition: background .25s, color .25s, border-color .25s, opacity .25s;
}
.carousel__btn:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.carousel__btn:disabled { opacity: .35; cursor: default; }
.carousel__btn:disabled:hover { background: var(--white); color: var(--navy); border-color: var(--line); }
.carousel__track {
  display: flex; gap: 1.25rem;
  overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  padding: 4px var(--gutter) 1.5rem;
  scrollbar-width: none;
}
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__track:focus-visible { outline: 2px solid var(--coral); outline-offset: -2px; }
@media (min-width: 1260px) {
  .carousel__track { padding-left: calc((100vw - var(--container)) / 2); padding-right: calc((100vw - var(--container)) / 2); }
}
.review {
  flex: 0 0 min(360px, 82vw); scroll-snap-align: start;
  margin: 0; padding: 1.75rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  display: flex; flex-direction: column; gap: 1rem;
}
.review__stars { color: var(--coral); letter-spacing: .12em; font-size: .95rem; }
.review p { font-family: var(--font-display); font-size: 1.12rem; line-height: 1.45; color: var(--navy-deep); }
.review footer { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; font-weight: 600; color: var(--muted); margin-top: auto; }
.review__avatar { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(135deg, var(--coral-soft), #FBE9E2); color: var(--coral); font-family: var(--font-display); font-size: .95rem; font-weight: 400; }

/* ---------- Contact ---------- */
.contact { display: grid; gap: 2.5rem; align-items: stretch; }
@media (min-width: 960px) { .contact { grid-template-columns: 1fr 1.15fr; gap: 4rem; } }
.contact address { font-style: normal; margin: 1.5rem 0; color: var(--ink); }
.contact__list { display: grid; gap: .9rem; margin: 0 0 2rem; }
.contact__list div { display: grid; grid-template-columns: 110px 1fr; gap: 1rem; padding-bottom: .9rem; border-bottom: 1px solid var(--line); }
.contact__list dt { font-size: 0.8rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); padding-top: 3px; }
.contact__list dd { margin: 0; }
.contact__list a { color: var(--navy); font-weight: 600; }
.contact__list a:hover { color: var(--coral); }
.contact__actions { display: flex; flex-wrap: wrap; gap: 10px; }
.contact__map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); min-height: 380px; background: #e9eef0; }
.contact__map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; filter: saturate(.85); }

/* ---------- Footer ---------- */
.footer { background: var(--navy-deep); color: rgba(255,255,255,.75); padding: 3.5rem 0 1.5rem; }
.footer__inner { display: grid; gap: 2rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,.12); }
@media (min-width: 800px) { .footer__inner { grid-template-columns: 1.2fr 1fr 1fr; } }
.footer__brand img { width: 72px; filter: brightness(0) invert(1); opacity: .95; margin-bottom: 1rem; }
.footer__brand p { font-size: 0.92rem; margin: 0; }
.footer__nav { display: flex; flex-direction: column; gap: .6rem; }
.footer__nav a { color: #fff; font-weight: 500; opacity: .85; }
.footer__nav a:hover { opacity: 1; color: var(--coral); }
.footer__meta p { font-size: 0.92rem; margin: 0 0 .4rem; }
.footer__meta a { color: #fff; }
.footer__legal { padding-top: 1.5rem; font-size: 0.82rem; }
.footer__legal a { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .space, .therapist, .mosaic__item img, .space__media img, .hero__slide { transition: none; }
  .hero__slide { transform: none; }
}

/* ---------- Comment ça marche ---------- */
.how { display: grid; gap: 1.25rem; margin-top: 2.5rem; padding: 1.75rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
@media (min-width: 800px) { .how { grid-template-columns: repeat(3, 1fr); gap: 2rem; padding: 2rem 2.25rem; } }
.how li { display: grid; grid-template-columns: 40px 1fr; gap: .9rem; align-items: start; }
.how li > span { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: var(--coral-soft); color: var(--coral); font-family: var(--font-display); font-size: 1.1rem; }
.how strong { display: block; color: var(--navy-deep); margin-bottom: 2px; }
.how p { margin: 0; font-size: .93rem; color: var(--muted); }

/* ---------- Inclus ---------- */
.included { display: flex; flex-wrap: wrap; gap: 10px 14px; margin: -1rem 0 2rem; }
.included li { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px 8px 8px; border: 1px solid var(--line); border-radius: 999px; background: var(--white); font-size: .88rem; font-weight: 500; color: var(--navy-deep); }
.included li span { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; background: var(--coral-soft); color: var(--coral); font-size: .8rem; font-weight: 700; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; display: grid; gap: 10px; }
.faq__item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 0 1.4rem; }
.faq__item summary { cursor: pointer; list-style: none; padding: 1.1rem 2.2rem 1.1rem 0; font-weight: 600; color: var(--navy-deep); position: relative; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%); width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; color: var(--coral); font-weight: 400; transition: transform .3s var(--ease), background .25s; }
.faq__item[open] summary::after { content: "–"; background: var(--coral-soft); }
.faq__item p { padding: 0 0 1.2rem; margin: 0; color: var(--muted); font-size: .97rem; max-width: 60em; }

/* ---------- Thérapeutes : cartes cliquables, tags, fiche ---------- */
.therapist { padding: 0; display: block; }
.therapist__open { all: unset; box-sizing: border-box; display: grid; grid-template-columns: 72px 1fr; gap: 1rem 1.1rem; align-items: start; width: 100%; padding: 1.4rem; cursor: pointer; border-radius: var(--radius); }
.therapist__open:focus-visible { outline: 2px solid var(--coral); outline-offset: 2px; }
.therapist__body { grid-column: 2; min-width: 0; }
.therapist__bio { margin-bottom: .7rem; }
.tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tags li { font-size: .74rem; font-weight: 600; letter-spacing: .02em; padding: 4px 10px; border-radius: 999px; background: var(--cream-2); border: 1px solid var(--line); color: var(--navy); }
.tags--lg li { font-size: .82rem; padding: 6px 12px; background: var(--white); }
.therapist__more { display: inline-block; margin-top: .9rem; font-size: .85rem; font-weight: 600; color: var(--coral); }
.therapist__more span { display: inline-block; transition: transform .3s var(--ease); }
.therapist:hover .therapist__more span { transform: translateX(4px); }
.therapist__photo { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; }

.sheet { border: 0; padding: 0; margin: auto; width: min(680px, calc(100% - 32px)); max-height: min(88vh, 900px); background: var(--cream); color: var(--ink); border-radius: var(--radius); box-shadow: 0 40px 90px -30px rgba(11, 45, 64, .55); overflow: hidden; }
.sheet::backdrop { background: rgba(11, 45, 64, .45); backdrop-filter: blur(4px); }
.sheet[open] { animation: sheetIn .45s var(--ease); }
@keyframes sheetIn { from { opacity: 0; transform: translateY(16px) scale(.98); } to { opacity: 1; transform: none; } }
.sheet__close { position: absolute; top: 14px; right: 14px; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); background: var(--white); color: var(--navy); font-size: 1.4rem; line-height: 1; cursor: pointer; z-index: 2; }
.sheet__close:hover { background: var(--navy); color: #fff; }
.sheet__content { padding: clamp(1.5rem, 4vw, 2.5rem); overflow-y: auto; max-height: min(88vh, 900px); display: grid; gap: 1.25rem; }
.sheet__head { display: grid; grid-template-columns: 120px 1fr; gap: 1.25rem; align-items: center; padding-right: 2.5rem; }
.sheet__head .therapist__photo, .sheet__head .therapist__initials { width: 120px; height: 120px; font-size: 2.2rem; }
.sheet__head .eyebrow { margin-bottom: .4rem; }
.sheet__head h3 { font-size: 1.9rem; }
.sheet__days { margin: .4rem 0 0; font-size: .9rem; color: var(--muted); }
.sheet__text p { color: var(--ink); }
.sheet__publics { font-size: .93rem; color: var(--muted); }
.sheet__actions { display: flex; flex-wrap: wrap; gap: 10px; padding-top: 1rem; border-top: 1px solid var(--line); }
.sheet__pending { margin: 0; font-size: .9rem; color: var(--muted); }
.sheet__pending a { color: var(--navy); font-weight: 600; }
body.has-sheet { overflow: hidden; }
@media (max-width: 560px) { .sheet__head { grid-template-columns: 84px 1fr; } .sheet__head .therapist__photo, .sheet__head .therapist__initials { width: 84px; height: 84px; font-size: 1.6rem; } }
.sheet__content { overflow-x: hidden; }
.sheet__close:focus-visible { outline: 2px solid var(--coral); outline-offset: 2px; }

/* ---------- Fondateur ---------- */
.founder { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.founder__grid { display: grid; gap: 3rem; align-items: start; }
@media (min-width: 960px) { .founder__grid { grid-template-columns: 1.15fr .85fr; gap: 5rem; } }
.founder__text > p { color: var(--muted); max-width: 36em; }
.founder__text a:not(.btn) { color: var(--navy); font-weight: 600; text-decoration: underline; text-decoration-color: var(--coral-soft); text-underline-offset: 3px; }
.founder__text a:not(.btn):hover { text-decoration-color: var(--coral); }
.founder__quote { margin: 1.75rem 0; padding: 1.25rem 0 1.25rem 1.5rem; border-left: 2px solid var(--coral); }
.founder__quote p { font-family: var(--font-display); font-size: 1.35rem; line-height: 1.4; color: var(--navy-deep); margin: 0 0 .6rem; }
.founder__quote footer { font-size: .85rem; font-weight: 600; color: var(--muted); }
.founder__actions { display: flex; flex-wrap: wrap; gap: 10px; }
.founder__card { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.75rem; }
.founder__avatar { width: 84px; height: 84px; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(135deg, var(--coral-soft), #FBE9E2); color: var(--coral); font-family: var(--font-display); font-size: 1.8rem; margin-bottom: 1rem; }
.founder__avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.founder__name { font-family: var(--font-display); font-size: 1.5rem; color: var(--navy-deep); margin: 0; }
.founder__role { font-size: .85rem; color: var(--muted); margin: .2rem 0 1.5rem; }
.timeline { list-style: none; display: grid; gap: .9rem; position: relative; padding-left: 1.4rem; }
.timeline::before { content: ""; position: absolute; left: 4px; top: 8px; bottom: 8px; width: 1px; background: var(--line); }
.timeline li { position: relative; font-size: .9rem; color: var(--muted); }
.timeline li::before { content: ""; position: absolute; left: -1.4rem; top: 7px; width: 9px; height: 9px; border-radius: 50%; background: var(--white); border: 2px solid var(--coral); }
.timeline li span { display: block; font-weight: 600; color: var(--navy-deep); }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.25rem; }
.stats li { display: flex; flex-direction: column; gap: 2px; }
.stats strong { font-family: var(--font-display); font-weight: 400; font-size: 1.9rem; color: var(--navy-deep); line-height: 1.1; }
.stats sup { font-size: .5em; }
.stats span { font-size: .8rem; color: var(--muted); line-height: 1.3; }
@media (max-width: 480px) { .stats { grid-template-columns: 1fr; gap: .8rem; } .stats li { flex-direction: row; align-items: baseline; gap: 10px; } }
.founder__text h2 { margin-bottom: 1.4rem; }
.founder__avatar { width: 96px; height: 96px; box-shadow: 0 0 0 4px var(--white), 0 0 0 5px var(--line); overflow: hidden; }
.founder__avatar picture, .founder__avatar img { width: 100%; height: 100%; display: block; border-radius: 50%; object-fit: cover; }
.therapist--join { background: var(--navy); border-color: var(--navy); color: #fff; background-image: radial-gradient(70% 120% at 100% 0%, rgba(224,80,48,.35), transparent 60%); }
.therapist--join:hover { transform: none; box-shadow: none; }
.therapist__join { padding: 1.5rem; display: flex; flex-direction: column; gap: .6rem; height: 100%; }
.therapist__join .eyebrow { color: var(--coral-soft); margin-bottom: 0; }
.therapist__join h3 { color: #fff; font-size: 1.35rem; }
.therapist__join p:not(.eyebrow) { color: rgba(255,255,255,.8); font-size: .93rem; margin: 0 0 .5rem; }
.therapist__join .btn { align-self: flex-start; margin-top: auto; background: var(--coral); }
.therapist__join .btn:hover { background: #fff; color: var(--navy); }

/* ---------- Thérapeutes : carte avec image mise en avant ---------- */
.therapist__open { display: flex; flex-direction: column; gap: 0; padding: 0; }
.therapist__media { margin: 0; position: relative; aspect-ratio: 1 / 1; overflow: hidden; background: linear-gradient(135deg, var(--coral-soft), #FBE9E2); border-radius: var(--radius) var(--radius) 0 0; }
.therapist__media img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform 1.2s var(--ease); }
.therapist:hover .therapist__media img { transform: scale(1.04); }
.therapist__media .therapist__initials { width: 100%; height: 100%; border-radius: 0; font-size: 3.5rem; background: transparent; }
.therapist__days { position: absolute; left: 14px; bottom: 14px; background: rgba(255,255,255,.9); backdrop-filter: blur(6px); padding: 6px 12px; border-radius: 999px; font-size: .78rem; font-weight: 600; color: var(--navy); max-width: calc(100% - 28px); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.therapist__days:empty { display: none; }
.therapist__body { grid-column: auto; padding: 1.25rem 1.4rem 1.4rem; }
.therapist--join .therapist__join { padding: 1.5rem; }
@media (min-width: 600px) { .therapist__media { aspect-ratio: 5 / 4; } .therapist__media img { object-position: center top; } }
.therapist__media { background: #fff; }
.therapist__media img { object-fit: contain; object-position: center top; }
.therapist__media img { object-fit: cover; object-position: center top; }
.therapist__media--visuel { aspect-ratio: 5 / 4 !important; background: var(--cream); border-bottom: 1px solid var(--line); }
.therapist__media--visuel img { object-fit: cover; object-position: center; }
/* grille thérapeutes : 2 colonnes max pour garder les visuels lisibles */
@media (min-width: 960px) { .therapists { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; } }
.therapist__tel { margin: .8rem 0 0; font-weight: 700; color: var(--navy-deep); font-size: .95rem; }
.therapist__tel span { color: var(--coral); margin-right: 4px; }
.sheet__actions .btn--ghost[href^="tel:"] { font-size: 1rem; }

/* ---------- Page fiche thérapeute ---------- */
.fiche__grid { display: grid; gap: 2.5rem; align-items: start; }
@media (min-width: 900px) { .fiche__grid { grid-template-columns: .9fr 1.1fr; gap: 4rem; } }
.fiche__visuel { width: 100%; height: auto; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow); }
.fiche__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 1.25rem; }
.fiche__onae { margin-top: 1.25rem; font-size: .92rem; color: var(--muted); }
.fiche__main h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); margin-bottom: 1rem; }
.fiche__main .tags { margin-bottom: 1.75rem; }
.fiche__text p { font-size: 1.05rem; }
.fiche__back { margin-top: 2rem; }
.fiche__back a { color: var(--navy); font-weight: 600; }

/* ---------- Thérapeutes : cartes compactes (3 colonnes) ---------- */
@media (min-width: 960px) { .therapists { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; } }
.therapist__open { padding: 1.4rem; gap: .9rem; }
.therapist__top { display: flex; align-items: center; gap: 12px; }
.therapist__top .therapist__photo, .therapist__top .therapist__initials { width: 88px; height: 88px; flex: 0 0 88px; }
.therapist__top .therapist__photo { object-fit: cover; object-position: center top; background: #fff; border: 1px solid var(--line); }
.therapist__top .therapist__days { position: static; background: var(--cream-2); border: 1px solid var(--line); white-space: normal; font-size: .76rem; line-height: 1.25; }
.therapist__body { padding: 0; }
.therapist__body h3 { font-size: 1.25rem; }
.therapist__bio { font-size: .9rem; }
.therapist--join .therapist__join { padding: 1.5rem; }

/* ---------- Bandeau défilant ---------- */
.ticker { background: var(--white); border-top: 1px solid var(--line); padding: 2.25rem 0 2.5rem; overflow: hidden; }
.ticker__head { display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin-bottom: 1.25rem; }
.ticker__head .eyebrow { margin: 0; }
.ticker__head a { font-size: .9rem; font-weight: 600; color: var(--navy); }
.ticker__head a:hover { color: var(--coral); }
.ticker__viewport { 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__track { display: flex; width: max-content; animation: ticker var(--ticker-duration, 40s) linear infinite; }
.ticker__track:hover { animation-play-state: paused; }
.ticker__group { display: flex; gap: 14px; padding-right: 14px; }
.ticker__item { display: inline-flex; align-items: center; gap: 12px; padding: 10px 18px 10px 10px; border: 1px solid var(--line); border-radius: 999px; background: var(--cream); white-space: nowrap; transition: border-color .25s, transform .3s var(--ease); }
.ticker__item:hover { border-color: var(--coral); transform: translateY(-2px); }
.ticker__item img, .ticker__initials { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; object-position: center top; background: #fff; border: 1px solid var(--line); }
.ticker__initials { display: grid; place-items: center; background: linear-gradient(135deg, var(--coral-soft), #FBE9E2); color: var(--coral); font-family: var(--font-display); }
.ticker__text { display: flex; flex-direction: column; line-height: 1.2; }
.ticker__text strong { font-family: var(--font-display); font-weight: 400; font-size: 1.05rem; color: var(--navy-deep); }
.ticker__text span { font-size: .78rem; color: var(--coral); font-weight: 600; letter-spacing: .02em; text-transform: uppercase; }
@keyframes ticker { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker__track { animation: none; } .ticker__viewport { overflow-x: auto; } }
.ticker__item--join { background: var(--navy); border-color: var(--navy); }
.ticker__item--join .ticker__initials { background: var(--coral); color: #fff; font-family: var(--font-body); font-weight: 700; }
.ticker__item--join .ticker__text strong { color: #fff; }
.ticker__item--join .ticker__text span { color: var(--coral-soft); }

/* ---------- Footer : carrousel thérapeutes ---------- */
.spot { padding-bottom: 2.5rem; margin-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,.12); }
.spot__head { display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin-bottom: 1.25rem; }
.spot__head .eyebrow { margin: 0; color: var(--coral-soft); }
.spot__nav { display: flex; align-items: center; gap: 10px; }
.spot__btn { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.25); background: transparent; color: #fff; cursor: pointer; display: grid; place-items: center; transition: background .25s, border-color .25s; }
.spot__btn:hover { background: var(--coral); border-color: var(--coral); }
.spot__dots { display: flex; gap: 6px; }
.spot__dots button { width: 8px; height: 8px; padding: 0; border: 0; border-radius: 50%; background: rgba(255,255,255,.35); cursor: pointer; transition: width .3s var(--ease), background .3s; }
.spot__dots button[aria-selected="true"] { width: 22px; background: var(--coral); }
.spot__stage { position: relative; min-height: 190px; }
.spot__slide { position: absolute; inset: 0; display: grid; grid-template-columns: 120px 1fr; gap: 1.5rem; align-items: center; opacity: 0; transform: translateY(10px); transition: opacity .7s var(--ease), transform .7s var(--ease); pointer-events: none; }
.spot__slide.is-active { position: relative; opacity: 1; transform: none; pointer-events: auto; }
.spot__photo { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; object-position: center top; background: #fff; box-shadow: 0 0 0 4px rgba(255,255,255,.12); }
.spot__initials { display: grid; place-items: center; background: var(--coral); color: #fff; font-family: var(--font-display); font-size: 2.2rem; }
.spot__spec { margin: 0 0 .2rem; font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--coral-soft); }
.spot__body h3 { color: #fff; font-size: 1.7rem; margin-bottom: .3rem; }
.spot__meta { margin: 0 0 .7rem; color: rgba(255,255,255,.75); font-size: .93rem; }
.spot__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: .9rem; }
.spot__tags li { font-size: .74rem; font-weight: 600; padding: 4px 10px; border-radius: 999px; border: 1px solid rgba(255,255,255,.22); color: rgba(255,255,255,.9); }
.spot__actions { display: flex; flex-wrap: wrap; gap: 8px; }
.spot__actions .btn--primary { background: var(--coral); }
.spot__actions .btn--primary:hover { background: #fff; color: var(--navy); }
.spot__actions .btn--ghost { color: #fff; border-color: rgba(255,255,255,.3); }
.spot__actions .btn--ghost:hover { border-color: #fff; }
@media (max-width: 560px) { .spot__slide { grid-template-columns: 84px 1fr; gap: 1rem; } .spot__photo { width: 84px; height: 84px; } .spot__body h3 { font-size: 1.4rem; } }
@media (prefers-reduced-motion: reduce) { .spot__slide { transition: none; } }

/* ---------- Barre fixe en bas : carrousel thérapeutes ---------- */
.dock { position: fixed; left: 0; right: 0; bottom: 0; z-index: 40; background: var(--navy-deep); color: #fff; border-top: 1px solid rgba(255,255,255,.12); box-shadow: 0 -12px 30px -18px rgba(11,45,64,.6); transform: translateY(110%); transition: transform .6s var(--ease); padding-bottom: env(safe-area-inset-bottom); }
.dock.is-visible { transform: none; }
body.has-dock { padding-bottom: 72px; }
.dock__inner { display: flex; align-items: center; gap: 1rem; min-height: 68px; }
.dock__label { font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--coral-soft); white-space: nowrap; padding-right: 1rem; border-right: 1px solid rgba(255,255,255,.15); }
.dock__stage { position: relative; flex: 1; min-width: 0; height: 52px; }
.dock__slide { position: absolute; inset: 0; display: flex; align-items: center; gap: 12px; opacity: 0; transform: translateY(6px); transition: opacity .6s var(--ease), transform .6s var(--ease); pointer-events: none; color: #fff; min-width: 0; }
.dock__slide.is-active { opacity: 1; transform: none; pointer-events: auto; }
.dock__photo { width: 44px; height: 44px; flex: 0 0 44px; border-radius: 50%; object-fit: cover; object-position: center top; background: #fff; box-shadow: 0 0 0 2px rgba(255,255,255,.15); }
.dock__initials { display: grid; place-items: center; background: var(--coral); color: #fff; font-family: var(--font-display); font-size: 1.1rem; }
.dock__text { display: flex; flex-direction: column; line-height: 1.2; min-width: 0; }
.dock__text strong { font-family: var(--font-display); font-weight: 400; font-size: 1.1rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dock__text span { font-size: .78rem; color: rgba(255,255,255,.75); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dock__tel { font-size: .85rem; font-weight: 700; white-space: nowrap; padding: 6px 12px; border-radius: 999px; border: 1px solid rgba(255,255,255,.25); }
.dock__cta { font-size: .85rem; font-weight: 700; color: var(--coral-soft); white-space: nowrap; margin-left: auto; }
.dock__slide:hover .dock__cta { color: #fff; }
.dock__nav { display: flex; align-items: center; gap: 8px; }
.dock__btn, .dock__close { width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,.25); background: transparent; color: #fff; cursor: pointer; display: grid; place-items: center; font-size: 1rem; transition: background .25s, border-color .25s; }
.dock__btn:hover { background: var(--coral); border-color: var(--coral); }
.dock__close { margin-left: 6px; font-size: 1.3rem; line-height: 1; opacity: .7; }
.dock__close:hover { opacity: 1; background: rgba(255,255,255,.12); }
.dock__dots { display: flex; gap: 5px; }
.dock__dots button { width: 6px; height: 6px; padding: 0; border: 0; border-radius: 50%; background: rgba(255,255,255,.35); cursor: pointer; transition: width .3s var(--ease), background .3s; }
.dock__dots button[aria-selected="true"] { width: 18px; background: var(--coral); }
@media (max-width: 800px) {
  .dock__label, .dock__tel, .dock__dots { display: none; }
  .dock__inner { gap: .6rem; min-height: 60px; }
  .dock__stage { height: 46px; }
  .dock__cta { display: none; }
  body.has-dock { padding-bottom: 64px; }
}
@media (prefers-reduced-motion: reduce) { .dock, .dock__slide { transition: none; } }
.dock__logo { display: grid; place-items: center; background: var(--coral); }
.dock__logo img { width: 26px; height: auto; filter: brightness(0) invert(1); }

/* Barre du bas : plus généreuse en hauteur */
.dock__inner { min-height: 96px; gap: 1.25rem; }
.dock__stage { height: 72px; }
.dock__photo { width: 64px; height: 64px; flex: 0 0 64px; }
.dock__initials { font-size: 1.4rem; }
.dock__logo img { width: 34px; }
.dock__text strong { font-size: 1.3rem; }
.dock__text span { font-size: .86rem; }
.dock__tel { font-size: .92rem; padding: 8px 14px; }
.dock__cta { font-size: .9rem; }
.dock__label { font-size: .76rem; }
.dock__btn, .dock__close { width: 38px; height: 38px; }
body.has-dock { padding-bottom: 100px; }
@media (max-width: 800px) {
  .dock__inner { min-height: 80px; gap: .75rem; }
  .dock__stage { height: 60px; }
  .dock__photo { width: 54px; height: 54px; flex: 0 0 54px; }
  .dock__text strong { font-size: 1.1rem; }
  body.has-dock { padding-bottom: 84px; }
}

/* ---------- Mentions légales ---------- */
.legal__wrap { max-width: 780px; }
.legal h1 { font-size: clamp(2.2rem, 4.5vw, 3.2rem); margin-bottom: 1.25rem; }
.legal h2 { font-size: 1.4rem; margin: 2.5rem 0 .9rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.legal__intro { color: var(--muted); }
.legal p { color: var(--ink); }
.legal a:not(.btn) { color: var(--navy); font-weight: 600; text-decoration: underline; text-decoration-color: var(--coral-soft); text-underline-offset: 3px; }
.legal a:not(.btn):hover { text-decoration-color: var(--coral); }
.legal__list { display: grid; gap: .7rem; margin: 0; }
.legal__list div { display: grid; grid-template-columns: 220px 1fr; gap: 1rem; padding-bottom: .7rem; border-bottom: 1px solid var(--line); }
.legal__list dt { font-size: .82rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); padding-top: 2px; }
.legal__list dd { margin: 0; }
.legal__date { margin-top: 2.5rem; font-size: .88rem; color: var(--muted); }
@media (max-width: 600px) { .legal__list div { grid-template-columns: 1fr; gap: 2px; } }
