/* =================================================================
   Kiné'sens — styles.css  (source de vérité du design)
   1. Tokens · 2. Reset · 3. Layout · 4. Header/Nav · 5. Boutons
   6. Sections · 7. Footer · 8. Utilitaires
   ================================================================= */

/* ---- 0. Polices ---- */
@font-face {
  font-family: "Chennai";
  src: url("../fonts/Chennai-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ---- 1. Tokens ---- */
:root {
  --accent: #2095ad;        /* principal — couleur de marque dominante */
  --accent-2: #7abbce;      /* principal 2 — teal clair */
  --soft: #bddde9;          /* secondaire — bleu très clair (fonds) */
  --coral: #d04f5b;         /* accent — corail (décoratif) */
  --coral-ink: #c0394a;     /* corail accessible — texte/CTA (AA 4.5:1 sur blanc) */
  --accent-ink: #147284;    /* teal accessible — texte/liens (AA 4.5:1 sur blanc) */
  --ink: #272727;
  --text-muted: #5F5F5F;
  --bg: #ffffff;
  --surface: #ffffff;
  --line: rgba(39, 39, 39, 0.12);

  --font-base: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Chennai", "Plus Jakarta Sans", sans-serif;

  --grad-ocean: linear-gradient(135deg, #15707f, #0c4f5a);
  --sh-sm: 0 2px 8px rgba(16, 32, 46, 0.08);
  --sh-md: 0 10px 30px rgba(16, 32, 46, 0.12);
  --sh-lg: 0 24px 60px rgba(16, 32, 46, 0.18);
  --r-sm: 8px;  --r-md: 14px;  --r-lg: 22px;  --r-xl: 32px;  --r-pill: 999px;

  --container: 1140px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---- 2. Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-base);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
picture { display: contents; }          /* rend le wrapper <picture> transparent au layout */
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
h1, h2, h3 { line-height: 1.15; margin: 0 0 0.5em; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
p { margin: 0 0 1rem; }

/* ---- 3. Layout ---- */
.container { width: min(100% - 2.4rem, var(--container)); margin-inline: auto; }
.container--narrow { max-width: 760px; }
.section { padding: clamp(3rem, 7vw, 6rem) 0; }
.lead { font-size: 1.15rem; color: var(--text-muted); }

/* ---- 4. Header / Nav ---- */
/* Transparent (confondu avec le fond) en haut de page ; opaque + flou au scroll (classe .is-scrolled ajoutée par main.js) */
.site-header { position: sticky; top: 0; z-index: 50; background: transparent; border-bottom: 1px solid transparent; transition: background 0.3s, border-color 0.3s, box-shadow 0.3s; }
.site-header.is-scrolled { background: rgba(255,255,255,0.9); backdrop-filter: blur(10px); border-bottom-color: var(--line); box-shadow: var(--sh-sm); }
.site-header:has(.nav.is-open) { background: rgba(255,255,255,0.95); border-bottom-color: var(--line); }   /* menu mobile ouvert → fond plein */
.site-header__inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 1.5rem; padding: 0.7rem 0; width: min(100% - 2.4rem, var(--container)); margin-inline: auto; }
.brand { justify-self: start; }
.brand__logo { height: 48px; width: auto; }
.nav { display: flex; gap: 1.4rem; justify-self: center; }
.nav__link { font-weight: 500; color: var(--text-muted); transition: color 0.2s; }
.nav__link:hover, .nav__link[aria-current="page"] { color: var(--accent-ink); }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 0.8rem; }
.header-cta { padding: 0.6rem 1.2rem; }
.nav-toggle { display: none; width: 42px; height: 42px; border-radius: var(--r-sm); position: relative; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 9px; right: 9px; height: 2px; background: var(--ink); transition: 0.3s; }
.nav-toggle span { top: 20px; } .nav-toggle span::before { top: -6px; } .nav-toggle span::after { top: 6px; }

@media (max-width: 860px) {
  .nav { position: fixed; inset: 60px 0 auto 0; flex-direction: column; background: #fff; padding: 1.2rem 1.5rem; border-bottom: 1px solid var(--line); transform: translateY(-120%); transition: transform 0.3s var(--ease-out); }
  .nav.is-open { transform: translateY(0); }
  .nav-toggle { display: block; }
}
@media (max-width: 560px) { .header-cta { padding: 0.5rem 0.9rem; font-size: 0.92rem; } }

/* ---- 5. Boutons ---- */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.8rem 1.5rem; border-radius: var(--r-pill); font-weight: 600; transition: transform 0.2s, box-shadow 0.2s; }
.btn svg { width: 1.1em; height: 1.1em; }
.btn--primary { background: var(--coral-ink); color: #fff; box-shadow: var(--sh-sm); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: var(--sh-md); }
.btn--ghost { border: 1.5px solid var(--accent-ink); color: var(--accent-ink); }
.btn--lg { padding: 1rem 1.8rem; font-size: 1.05rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.8rem; }

/* ---- 6. Sections ---- */
.section--deep { background: var(--grad-ocean); color: #fff; }
.section--deep .lead { color: rgba(255,255,255,0.85); }

/* ---- 7. Footer ---- */
.site-footer { background: var(--accent); color: #fff; padding: 3rem 0 1.5rem; text-shadow: 0 1px 2px rgba(0,0,0,0.22); }
.site-footer a { color: #fff; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 0.5rem 1.3rem; justify-content: space-between; align-items: center; border-top: 1px solid rgba(255,255,255,0.28); margin-top: 2.2rem; padding-top: 1.3rem; font-size: 0.85rem; font-weight: 500; letter-spacing: 0.01em; }
.footer-bottom > p { margin: 0; }

/* ---- 8. Utilitaires ---- */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
[data-reveal].is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
@media (scripting: none) {            /* sans JavaScript : tout reste visible */
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}
.text-center { text-align: center; }
.muted { color: var(--text-muted); }
.section--soft { background: color-mix(in srgb, var(--soft) 30%, #fff); }
.section--cream { background: #f2f9fb; }
/* Section « inclinée » : fond coloré aux bords haut/bas en biais (casse la verticalité) ; même teinte que --section--soft */
.section--angled {
  --slant: 3.5vw;
  position: relative;
  background: color-mix(in srgb, var(--soft) 30%, #fff);
  clip-path: polygon(0 var(--slant), 100% 0, 100% calc(100% - var(--slant)), 0 100%);
}
.section--angled--reverse { clip-path: polygon(0 0, 100% var(--slant), 100% 100%, 0 calc(100% - var(--slant))); }

/* ---- 9. Titres de section ---- */
.section-head { max-width: 720px; margin: 0 auto clamp(2rem, 4vw, 3rem); text-align: center; }
.section-head--left { text-align: left; margin-inline: 0; }
.eyebrow { display: inline-block; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.85rem; color: var(--coral-ink); margin-bottom: 0.6rem; }
.section-head h2 { margin: 0 0 0.6rem; }

/* ---- 10. Hero ---- */
.hero { padding: clamp(2.5rem, 6vw, 5rem) 0; }
.hero__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
.hero__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--r-xl); box-shadow: var(--sh-lg); }
.hero h1 { margin-bottom: 0.8rem; }
@media (max-width: 860px) { .hero__grid { grid-template-columns: 1fr; } }

/* ---- 11. Badges (icônes rondes) ---- */
.icon-badge { flex: 0 0 auto; width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; background: color-mix(in srgb, var(--accent) 12%, #fff); color: var(--accent); }
.icon-badge svg { width: 24px; height: 24px; }
.icon-badge--blue { background: color-mix(in srgb, var(--accent) 12%, #fff); color: var(--accent); }

/* ---- 12. Bloc image + texte (Bienvenue) ---- */
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
.info-grid__media img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; border-radius: var(--r-lg); box-shadow: var(--sh-md); }
@media (max-width: 860px) { .info-grid { grid-template-columns: 1fr; } }

/* ---- 12b. Bandeau infos pratiques (sous le hero, à même le fond) ---- */
.section--tight { padding-block: clamp(1.6rem, 3.5vw, 2.6rem); }
.info-band { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.6rem, 5vw, 3.5rem); align-items: start; }
.info-band__head { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1rem; }
.info-band__label { font-weight: 700; color: var(--ink); font-size: 1.15rem; }
.info-band__addr { margin: 0 0 1rem; color: var(--text-muted); }
.info-band__addr a { color: var(--accent-ink); text-decoration: underline; }
/* Horaires : liste jour → heures */
.hours { margin: 0; max-width: 340px; }
.hours__row { display: flex; justify-content: space-between; gap: 1.2rem; padding: 0.5rem 0; border-bottom: 1px solid var(--line); }
.hours__row:last-child { border-bottom: 0; }
.hours dt { color: var(--ink); }
.hours dd { margin: 0; color: var(--text-muted); font-weight: 600; }
.hours__row--off dd { color: var(--coral-ink); }
.hours__cta { margin-top: 1.2rem; }
/* Carte Google Maps embarquée */
.map-embed { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--sh-sm); aspect-ratio: 16 / 10; }
.map-embed iframe { display: block; width: 100%; height: 100%; border: 0; }
@media (max-width: 760px) { .info-band { grid-template-columns: 1fr; gap: 1.8rem; } }

/* ---- 13. Cartes services / contenu ---- */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.3rem; }

/* Cartes services « media » horizontales (image à gauche, texte à droite) en 2×2 */
.service-cards { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.1rem, 2.5vw, 1.6rem); }
.service-card { display: grid; grid-template-columns: 38% 1fr; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; background: var(--surface); box-shadow: var(--sh-sm); transition: transform 0.2s var(--ease-out), box-shadow 0.2s; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.service-card__media { min-height: 100%; }
.service-card__media img { width: 100%; height: 100%; min-height: 170px; object-fit: cover; }
.service-card__body { padding: 1.25rem 1.4rem; }
.service-card__body h3 { font-size: 1.1rem; margin: 0 0 0.4rem; }
.service-card__body p { color: var(--text-muted); margin: 0; font-size: 0.94rem; }
@media (max-width: 980px) { .service-cards { grid-template-columns: 1fr; } }
@media (max-width: 460px) { .service-card { grid-template-columns: 1fr; } .service-card__media img { aspect-ratio: 16 / 9; min-height: 0; } }
.card { padding: 1.6rem; border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--surface); box-shadow: var(--sh-sm); transition: transform 0.2s var(--ease-out), box-shadow 0.2s; }
.card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.card__icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: var(--r-md); background: color-mix(in srgb, var(--accent) 12%, #fff); color: var(--accent); margin-bottom: 1rem; }
.card__icon svg { width: 28px; height: 28px; }
.card h3 { font-size: 1.2rem; margin: 0 0 0.4rem; }
.card p { color: var(--text-muted); margin: 0; font-size: 0.97rem; }

/* ---- 14. Galerie (équipements) ---- */
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 1.2rem; }
.gallery__item { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); background: var(--surface); box-shadow: var(--sh-sm); }
.gallery__item img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.gallery__cap { padding: 0.85rem 1rem; font-weight: 600; text-align: center; font-size: 0.98rem; }

/* ---- 14b. Onglets (démarches) + illustrations ---- */
.tabs__list { display: flex; flex-wrap: wrap; gap: 0.4rem; border-bottom: 2px solid var(--line); margin-bottom: clamp(1.6rem, 4vw, 2.6rem); }
.tabs__tab { padding: 0.7rem 1.15rem; font-weight: 600; color: var(--text-muted); border-radius: var(--r-sm) var(--r-sm) 0 0; border-bottom: 3px solid transparent; margin-bottom: -2px; transition: color 0.2s, border-color 0.2s, background 0.2s; }
.tabs__tab:hover { color: var(--accent-ink); background: color-mix(in srgb, var(--soft) 30%, #fff); }
.tabs__tab[aria-selected="true"] { color: var(--accent-ink); border-bottom-color: var(--coral-ink); }
.tabs__panel { animation: tab-in 0.35s var(--ease-out); }
.tabs__panel[hidden] { display: none; }
@keyframes tab-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.demarche { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
.demarche h2 { margin: 0 0 0.8rem; }
.demarche ul { margin: 0 0 1rem; padding-left: 1.2rem; }
.demarche li { margin: 0.25rem 0; }
.demarche li::marker { color: var(--coral-ink); }
.demarche__svg { width: 100%; height: auto; max-width: 400px; margin-inline: auto; display: block; }
@media (max-width: 760px) { .demarche { grid-template-columns: 1fr; } .demarche__illu { order: -1; } }
@media (prefers-reduced-motion: reduce) { .tabs__panel { animation: none; } }
@media (scripting: none) { .tabs__list { display: none; } .tabs__panel[hidden] { display: block; } .tabs__panel + .tabs__panel { margin-top: 2.5rem; } }

/* ---- 15. CTA ---- */
.cta-band { text-align: center; }
.cta-band .btn-row { justify-content: center; }

/* Carte CTA « pill » de fin de page (sur fond clair) */
.cta-pill { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.4rem 2.5rem; background: var(--grad-ocean); color: #fff; border-radius: var(--r-xl); padding: clamp(2rem, 5vw, 3rem) clamp(2rem, 5vw, 3.5rem); box-shadow: var(--sh-lg); }
.cta-pill__text { flex: 1 1 340px; }
.cta-pill h2 { color: #fff; margin: 0 0 0.4rem; }
.cta-pill .lead { color: rgba(255, 255, 255, 0.85); margin: 0; }
.cta-pill .btn-row { flex: 0 0 auto; }
/* Bouton secondaire sur le dégradé foncé : fond blanc plein (plus lisible que le contour) */
.cta-pill .btn--ghost { background: #fff; color: var(--accent-ink); border-color: #fff; }
@media (max-width: 600px) { .cta-pill { justify-content: center; text-align: center; } .cta-pill .btn-row { width: 100%; justify-content: center; } }

/* Variante pill avec formulaire (Nous rejoindre) */
.cta-pill--form { align-items: stretch; }
.cta-pill--form .cta-pill__text { flex: 1 1 320px; }
.cta-pill--form .cta-pill__text a { color: #fff; text-decoration: underline; }
.join-form { flex: 1 1 380px; display: grid; gap: 0.85rem; align-content: start; }
.join-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
.field { display: grid; gap: 0.3rem; }
.field label { font-weight: 600; font-size: 0.9rem; color: #fff; }
.field input, .field select, .field textarea { font: inherit; width: 100%; padding: 0.7rem 0.85rem; border-radius: var(--r-sm); border: 1px solid rgba(255,255,255,0.35); background: rgba(255,255,255,0.96); color: var(--ink); }
.field textarea { resize: vertical; }
.join-form .btn { justify-self: start; margin-top: 0.2rem; }
.join-form__status { margin: 0.1rem 0 0; padding: 0.6rem 0.85rem; border-radius: var(--r-sm); font-weight: 600; font-size: 0.95rem; }
.join-form__status.is-ok { background: #fff; color: var(--accent-ink); }
.join-form__status.is-error { background: #fff; color: var(--coral-ink); }
@media (max-width: 600px) { .cta-pill--form { text-align: left; } .join-form .btn { justify-self: stretch; justify-content: center; } }
@media (max-width: 420px) { .join-form__row { grid-template-columns: 1fr; } }

/* ---- 16. Pied de page (modernisé) ---- */
.site-footer { background: var(--accent); padding: clamp(2.6rem, 5vw, 3.6rem) 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1.2fr 1.4fr; gap: clamp(1.8rem, 3.5vw, 3rem); }
.footer-brand { font-family: var(--font-display); font-size: 1.95rem; line-height: 1.1; color: #fff; margin: 0 0 0.7rem; }
.footer-col--brand .btn { margin-top: 0.6rem; }
.footer-col p { color: #fff; font-size: 1.02rem; font-weight: 500; line-height: 1.6; }
.footer-col h3 { color: #fff; font-size: 1.18rem; font-weight: 700; letter-spacing: 0.01em; margin: 0 0 1rem; padding-bottom: 0.55rem; }
.footer-col h3::after { content: ""; display: block; width: 34px; height: 2px; margin-top: 0.55rem; background: rgba(255,255,255,0.55); border-radius: 2px; }
.footer-menu, .footer-contact { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.7rem; }
.footer-menu a { font-size: 1.02rem; font-weight: 500; }
.footer-contact li { display: flex; gap: 0.7rem; align-items: center; color: #fff; font-size: 1.02rem; font-weight: 500; }
.footer-contact svg { width: 36px; height: 36px; flex: 0 0 auto; padding: 8px; background: rgba(255,255,255,0.16); border-radius: 50%; color: #fff; }
.footer-map { border-radius: var(--r-md); overflow: hidden; border: 1px solid rgba(255,255,255,0.15); box-shadow: var(--sh-md); aspect-ratio: 4 / 3; }
.footer-map iframe { display: block; width: 100%; height: 100%; border: 0; }
/* Liens légaux + cookies, regroupés en bas du footer (petits, non soulignés) */
.footer-legal { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; align-items: center; gap: 0.45rem; font-size: inherit; }
.footer-legal li { display: inline-flex; align-items: center; white-space: nowrap; }
.footer-legal li:not(:first-child)::before { content: "·"; margin-right: 0.45rem; opacity: 0.55; }
.footer-bottom .footer-legal a { text-decoration: none; }
.footer-bottom .footer-legal a:hover, .footer-bottom .footer-legal a:focus-visible { text-decoration: underline; }
@media (max-width: 980px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; gap: 1.6rem; } }

/* ---- 17. Article / contenu long ---- */
.prose { max-width: 760px; margin-inline: auto; }
.prose h2 { margin-top: 2.2rem; }
.prose h3 { margin-top: 1.6rem; }
.prose ul, .prose ol { padding-left: 1.3rem; margin: 0 0 1rem; }
.prose li { margin-bottom: 0.4rem; }
.breadcrumb { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1.2rem; }
.breadcrumb a { text-decoration: underline; }
.breadcrumb a:hover { color: var(--accent-ink); }
.breadcrumb span { margin: 0 0.4rem; opacity: 0.5; }

/* ---- 18. Hero plein cadre (image de fond) ---- */
.hero--cover { position: relative; color: #fff; display: grid; place-items: center; text-align: center; min-height: clamp(440px, 72vh, 660px); padding: clamp(3rem, 8vw, 6rem) 0; background-size: cover; background-position: center; }
.hero--cover::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,42,49,0.5), rgba(10,42,49,0.7)); }
.hero--cover .container { position: relative; z-index: 1; max-width: 820px; }
.hero--cover h1 { color: #fff; }
.hero--cover .lead { color: rgba(255,255,255,0.92); }

/* ---- 19. Carte image (services) ---- */
.img-card { border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; background: var(--surface); box-shadow: var(--sh-sm); transition: transform 0.2s var(--ease-out), box-shadow 0.2s; }
.img-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.img-card__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.img-card__body { padding: 1.3rem 1.4rem; }
.img-card__body h3 { font-size: 1.15rem; margin: 0 0 0.4rem; }
.img-card__body p { color: var(--text-muted); margin: 0; font-size: 0.96rem; }
.img-card--link { display: block; color: inherit; }
.img-card--link .img-card__body h3 { color: var(--accent-ink); }

/* ---- 20. Équipe ---- */
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
.team-card { border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; background: var(--surface); box-shadow: var(--sh-sm); }
.team-card__media img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.team-card__body { padding: 1.2rem 1.4rem; }
.team-card__name { font-size: 1.2rem; margin: 0 0 0.2rem; }
.team-card__role { display: inline-block; color: var(--accent-ink); font-weight: 600; font-size: 0.9rem; margin-bottom: 0.7rem; }
.team-detail { margin: 0.9rem 0 0; }
.team-card__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 0.2rem 1.4rem; }
.team-card__cols .team-detail { margin-top: 0.9rem; }
@media (max-width: 520px) { .team-card__cols { grid-template-columns: 1fr; } }
.team-detail h4 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--coral-ink); margin: 0 0 0.35rem; }
.team-detail p { margin: 0; font-size: 0.96rem; }
.team-list { margin: 0; padding-left: 1.2rem; font-size: 0.96rem; }
.team-list li { margin: 0.15rem 0; }
.team-list li::marker { color: var(--coral-ink); }
@media (max-width: 640px) { .team-grid { grid-template-columns: 1fr; } }
.team-hours { list-style: none; margin: 0; padding: 0; font-size: 0.95rem; }
.team-hours li { display: flex; justify-content: space-between; gap: 1rem; padding: 0.2rem 0; border-bottom: 1px dashed var(--line); }
.team-hours li:last-child { border-bottom: 0; }
.team-hours li > span:last-child { text-align: right; }
/* Pastilles lieu de soin (cabinet / domicile) */
.tag { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.02em; padding: 0.08em 0.55em; border-radius: var(--r-pill); vertical-align: middle; white-space: nowrap; }
.tag--cabinet { background: color-mix(in srgb, var(--accent) 16%, #fff); color: var(--accent-ink); }
.tag--domicile { background: color-mix(in srgb, var(--coral) 16%, #fff); color: var(--coral-ink); }

/* ---- 21. Bannière de page ---- */
.banner-img { width: 100%; max-height: 440px; object-fit: cover; border-radius: var(--r-lg); box-shadow: var(--sh-md); }

/* ---- 22. Accordéon FAQ ---- */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: 0.8rem; }
.faq details { border: 1px solid var(--line); border-radius: var(--r-md); background: var(--surface); box-shadow: var(--sh-sm); }
.faq summary { cursor: pointer; padding: 1rem 1.3rem; font-weight: 600; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; line-height: 1; color: var(--coral); transition: transform 0.2s var(--ease-out); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > p { margin: 0; padding: 0 1.3rem 1.1rem; color: var(--text-muted); }

/* ---- 23. Étapes / démarches ---- */
.steps { display: grid; gap: 1.2rem; max-width: 880px; margin-inline: auto; }
.step { border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--surface); box-shadow: var(--sh-sm); padding: 1.5rem 1.7rem; }
.step h3 { margin: 0 0 0.6rem; font-size: 1.2rem; color: var(--accent-ink); }
.step ul { margin: 0.4rem 0 0; padding-left: 1.2rem; }
.step li { margin-bottom: 0.35rem; }
.doc-link { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 0.9rem; font-weight: 600; color: var(--accent-ink); text-decoration: underline; }
.doc-link svg { width: 18px; height: 18px; }
.doc-link:hover { text-decoration: underline; }

/* ---- 24. Blog / articles ---- */
.post-meta { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.post-meta time { font-weight: 600; color: var(--coral-ink); }
.note-box { background: color-mix(in srgb, var(--soft) 45%, #fff); border-left: 4px solid var(--coral); padding: 1rem 1.2rem; border-radius: var(--r-sm); margin: 1.4rem 0; }
.note-box p { margin: 0; }

/* ---- 25. Bannière cookies (RGPD) ---- */
.cookie-banner { position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 200; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--sh-lg); animation: cookie-in 0.4s var(--ease-out); }
@keyframes cookie-in { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
.cookie-banner__inner { display: flex; flex-wrap: wrap; align-items: center; gap: 0.9rem 1.5rem; padding: 1rem 1.3rem; width: min(100% - 0.6rem, var(--container)); margin-inline: auto; }
.cookie-banner__text { margin: 0; font-size: 0.92rem; color: var(--text-muted); flex: 1 1 320px; }
.cookie-banner__text a { color: var(--accent); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 0.6rem; flex: 0 0 auto; }
.cookie-banner .btn { padding: 0.6rem 1.3rem; }
.cookie-manage { cursor: pointer; }
.cookie-manage:hover { color: #fff; }
@media (max-width: 560px) { .cookie-banner__actions { width: 100%; } .cookie-banner__actions .btn { flex: 1; justify-content: center; } }

/* ---- 26. Accessibilité ---- */
/* Lien d'évitement (skip link) */
.skip-link { position: absolute; left: 0; top: -100px; z-index: 300; background: var(--coral-ink); color: #fff; font-weight: 700; padding: 0.7rem 1.2rem; border-radius: 0 0 var(--r-sm) 0; transition: top 0.2s; }
.skip-link:focus { top: 0; }

/* Focus clavier visible partout */
:focus-visible { outline: 3px solid #11333b; outline-offset: 2px; border-radius: 4px; }
.section--deep :focus-visible, .cta-pill :focus-visible, .site-footer :focus-visible, .cookie-banner :focus-visible { outline-color: #ffffff; }

/* Liens en ligne (contenu) soulignés — repérables sans la couleur seule */
.prose a { color: var(--accent-ink); text-decoration: underline; }
.prose a:hover { text-decoration-thickness: 2px; }
.footer-bottom a { text-decoration: underline; }

/* Cibles tactiles confortables (seniors / mobile) */
.nav__link { padding: 0.35rem 0; }
.footer-menu a { display: inline-block; padding: 0.2rem 0; }
.team-detail h4 { font-size: 0.8rem; }

/* Hero : grande carte arrondie, fond bleu principal, légères marges sur les bords */
.hero--solid {
  background: var(--accent);
  color: #fff;
  text-align: center;
  display: grid;
  place-items: center;
  margin: clamp(0.8rem, 2.2vw, 1.6rem);
  padding: clamp(3rem, 8vw, 6rem) clamp(1.5rem, 4vw, 3rem);
  min-height: clamp(340px, 52vh, 500px);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-md);
}
.hero--solid .container { max-width: 820px; }
.hero--solid h1 { color: #fff; }                                  /* grand texte → AA 3:1 sur bleu */
.hero--solid .lead { color: #fff; font-weight: 700; font-size: 1.2rem; }   /* gras + ≥18.66px = grand texte → AA 3:1 */
/* Bouton secondaire : la bordure teal serait invisible sur le bleu → variante blanche pleine (texte teal accessible) */
.hero--solid .btn--ghost { background: #fff; color: var(--accent-ink); border-color: #fff; }

/* Key points : pastilles « glass » sur le bleu (verre légèrement assombri → texte blanc AA ≈ 5.4:1) */
.hero-points { list-style: none; margin: 2rem 0 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 0.7rem; }
.hero-point { display: inline-flex; align-items: center; gap: 0.6rem; padding: 0.5rem 1.15rem 0.5rem 0.5rem; background: rgba(0, 0, 0, 0.22); border: 1px solid rgba(255, 255, 255, 0.28); border-radius: var(--r-pill); font-weight: 600; color: #fff; }
.hero-point__icon { flex: 0 0 auto; width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: rgba(255, 255, 255, 0.16); color: #fff; }
.hero-point__icon svg { width: 20px; height: 20px; }
