/* =========================================================
   Senselia — Cabinet de psychologie
   Direction "Aquarelle" — douce, sensible, subtile
   ========================================================= */

/* --- Design tokens ------------------------------------------------ */
:root {
  /* Papier & encre — univers Folon / couverture du livre */
  --paper:      #fdf3f2;   /* crème rosé délicate */
  --paper-2:    #fbe3ea;   /* voile rose très pâle */
  --ink:        #3d2838;   /* prune profond — texte */
  --ink-soft:   #6d5761;   /* texte secondaire */
  --ink-faint:  #a0888f;

  /* Fuchsia · or rosé · rose (plumes de la cover) */
  --sage:       #e59ac0;   /* rose clair — lavis */
  --sage-deep:  #7a2f5a;   /* fuchsia profond — titres */
  --blush:      #d99a54;   /* or rosé — chiffres, accents */
  --mist:       #f0c0d5;   /* rose pâle des ailes */
  --lilac:      #e6b8d3;   /* rose délicat */
  --sand:       #f0d5a0;   /* doré doux */

  /* Fonctionnel */
  --accent:     #c94a8a;   /* fuchsia — liens, eyebrows, icônes */
  --accent-deep:#a83a72;
  --gold:       #cf9a52;   /* or rosé — filets, détails */
  --glow:       #eaa863;   /* or rosé — accent très ponctuel */
  --line:       #f0e2e6;   /* filet */
  --white:      #ffffff;

  /* Typographie */
  --font-title: "Cormorant Garamond", "Cormorant", Georgia, "Times New Roman", serif;
  --font-body:  "Nunito Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Formes & rythme */
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-soft: 0 18px 40px -24px rgba(74, 68, 62, 0.35);
  --maxw: 1140px;
}

/* --- Reset léger -------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
  background-attachment: fixed;
  line-height: 1.75;
  font-size: 1.0625rem;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* Grain de papier subtil, appliqué à toute la page */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.035;
  mix-blend-mode: multiply;
}
body > * { position: relative; z-index: 2; }

img { max-width: 100%; display: block; height: auto; }
a { color: var(--accent-deep); text-underline-offset: 3px; text-decoration-thickness: 1px; }

h1, h2, h3, h4 {
  font-family: var(--font-title);
  color: var(--sage-deep);
  line-height: 1.12;
  font-weight: 500;
  letter-spacing: 0.2px;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); font-weight: 400; letter-spacing: -0.5px; }
h2 { font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 400; }
h3 { font-size: clamp(1.35rem, 2.6vw, 1.6rem); }
p  { margin: 0 0 1.15em; }

/* --- Utilitaires -------------------------------------------------- */
.container { width: min(100% - 2.5rem, var(--maxw)); margin-inline: auto; }
.section   { padding: clamp(1.5rem, 3.2vw, 2.6rem) 0; }
.section--tint { background: var(--paper-2); }
.eyebrow {
  text-transform: uppercase; letter-spacing: 0.28em;
  font-size: 0.72rem; font-weight: 700; color: var(--accent);
  margin: 0 0 1.1rem;
}
.lead { font-size: 1.22rem; line-height: 1.7; color: var(--ink-soft); max-width: 58ch; font-weight: 300; }
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.hair { border: 0; border-top: 1px solid var(--line); margin: 0; }

/* --- Lavis d'aquarelle (blobs diffus) ---------------------------- */
.wash { position: relative; overflow: hidden; isolation: isolate; }
.wash__layer { position: absolute; inset: -20% -10%; z-index: 0; pointer-events: none; }
.blob {
  position: absolute; border-radius: 50%;
  filter: blur(70px); opacity: 0.55; mix-blend-mode: multiply;
}
.wash > .container, .wash > * { position: relative; z-index: 1; }

/* --- Boutons feutrés --------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-body); font-weight: 600; font-size: 0.98rem;
  letter-spacing: 0.02em;
  padding: .9rem 1.7rem; border-radius: 999px;
  border: 1px solid transparent; cursor: pointer; text-decoration: none;
  transition: transform .2s ease, background .25s ease, box-shadow .25s ease, color .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: #c94a8a;
  color: #fff;
  box-shadow: 0 10px 24px -12px rgba(168, 58, 114, .5);
}
.btn--primary:hover {
  background: #b23f7b;
  box-shadow: 0 14px 28px -12px rgba(168, 58, 114, .58);
}
.btn--soft { background: rgba(142,168,150,.14); color: var(--accent-deep); border-color: rgba(111,143,129,.28); }
.btn--soft:hover { background: rgba(142,168,150,.24); }
.btn--text {
  background: none; padding: .9rem .2rem; color: var(--accent-deep);
  border-radius: 0; border-bottom: 1px solid transparent;
}
.btn--text:hover { border-bottom-color: var(--accent); transform: none; }
.btn--whatsapp { background: #25d366; color: #fff; box-shadow: var(--shadow-soft); }
.btn--whatsapp:hover { background: #1eb257; }
.btn--whatsapp svg { width: 20px; height: 20px; fill: currentColor; }

/* --- Liste de missions (icône + texte) --------------------------- */
.svc-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.6rem 2.6rem; }
.svc { display: flex; gap: 1rem; align-items: flex-start; }
.svc .ic { flex: none; width: 42px; height: 42px; color: var(--accent); }
.svc .ic svg { width: 100%; height: 100%; }
.svc h3 { font-size: 1.1rem; margin: .15rem 0 .25rem; }
.svc p { margin: 0; color: var(--ink-soft); font-weight: 300; font-size: .92rem; line-height: 1.55; }

/* --- Bloc coordonnées -------------------------------------------- */
.contact-line { display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem 1.6rem; margin: 1.2rem 0 0; color: var(--ink-soft); font-weight: 300; }
.contact-line a { color: var(--sage-deep); text-decoration: none; font-weight: 400; }
.contact-line a:hover { color: var(--accent-deep); }
.btn .arw { transition: transform .25s ease; }
.btn:hover .arw { transform: translateX(3px); }

/* --- En-tête / navigation ---------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(250, 246, 240, 0.82);
  backdrop-filter: saturate(130%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 0; }
.brand { display: flex; align-items: center; gap: .7rem; }
.brand__logo { flex: none; display: inline-flex; text-decoration: none; }
.brand__mark { width: 44px; height: auto; flex: none; display: block; }
.brand__photo-link { flex: none; display: inline-flex; }
.brand__photo { width: 46px; height: 46px; border-radius: 9px; object-fit: cover; object-position: center 25%; flex: none; filter: grayscale(1) contrast(1.04); box-shadow: 0 2px 8px -3px rgba(30,42,68,.45); transition: filter .2s, transform .2s; }
.brand__photo-link:hover .brand__photo { filter: grayscale(0) contrast(1.04); transform: translateY(-1px); }

/* À propos — moins de vide */
body[data-page="a-propos"] .page-hero { padding-top: 1rem; padding-bottom: .3rem; }
body[data-page="a-propos"] .section { padding-top: 1rem; padding-bottom: 1.6rem; }

/* Livre — polices plus compactes (titres moins imposants) */
body[data-page="auteur"] h2 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); }
body[data-page="auteur"] .page-hero .lead { font-size: 1.02rem; }
body[data-page="auteur"] p:not(.eyebrow):not(.breadcrumb) { font-size: .98rem; }
body[data-page="auteur"] .quote-block { font-size: 1.1rem; }
body[data-page="auteur"] .book-meta dd { font-size: .95rem; }
.brand__col { display: flex; flex-direction: column; gap: 3px; }
.brand__name { font-family: var(--font-title); font-size: 1.5rem; font-weight: 500; line-height: 1; color: var(--sage-deep); text-decoration: none; }
.brand__roles { display: flex; flex-wrap: wrap; align-items: center; gap: .42rem; }
.brand__roles a {
  font-family: var(--font-body); font-size: .58rem; letter-spacing: .15em;
  text-transform: uppercase; font-weight: 700; color: var(--ink-faint); text-decoration: none; transition: color .2s;
}
.brand__roles a:hover { color: var(--accent-deep); }
.brand__roles a:not(:last-child)::after { content: "·"; margin-left: .42rem; color: var(--line); }
.brand__tag { display: block; font-family: var(--font-title); font-size: .95rem; font-weight: 500; letter-spacing: 0; color: var(--ink-soft); line-height: 1.25; max-width: 22rem; }
.nav__links { display: flex; align-items: center; gap: .1rem; list-style: none; margin: 0; padding: 0; flex-wrap: nowrap; }
.nav__links a {
  text-decoration: none; color: var(--ink); font-weight: 600; font-size: .92rem; white-space: nowrap;
  padding: .5rem .66rem; border-radius: 999px; transition: color .2s, background .2s;
}
.nav__links a:hover { color: var(--sage-deep); }
.nav__links a.is-active { color: var(--accent-deep); }
.nav__cta { margin-left: .5rem; }
.nav__cta .btn--primary, .nav__links .nav__cta a { color: #fff; }
.nav__toggle { display: none; background: none; border: 0; cursor: pointer; padding: .5rem; }
.nav__toggle span { display: block; width: 24px; height: 1.5px; background: var(--sage-deep); margin: 6px 0; transition: .25s; }

/* --- Hero --------------------------------------------------------- */
.hero__grid {
  display: grid; grid-template-columns: 1.05fr .95fr; align-items: center;
  gap: clamp(1.4rem, 3.5vw, 3rem); padding: 0;
}
.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.4rem; margin-top: 2rem; }
.hero__art { position: relative; aspect-ratio: 5/6; }
.hero__art svg { width: 100%; height: 100%; display: block; }
.hero__quote {
  position: absolute; left: 8%; right: 8%; bottom: 7%;
  font-family: var(--font-title); font-style: italic; font-size: 1.25rem;
  color: var(--ink); text-align: center; line-height: 1.4;
}

/* --- Grilles & cartes douces ------------------------------------- */
.grid { display: grid; gap: 2rem; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.soft-card { text-align: left; }
.soft-card .ic {
  width: 46px; height: 46px; margin-bottom: 1.1rem; color: var(--accent);
}
.soft-card .ic svg { width: 100%; height: 100%; }
.soft-card h3 { margin-bottom: .3em; color: var(--sage-deep); }
.soft-card p { color: var(--ink-soft); margin: 0; font-weight: 300; }

/* Cartes "thèmes" — encadré très léger */
.tag-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.3rem 1.4rem;
  box-shadow: 0 10px 30px -26px rgba(74,68,62,.5);
}
.tag-card h3 { font-size: 1.3rem; margin-bottom: .15em; }
.tag-card p { margin: 0; color: var(--ink-soft); font-size: .96rem; font-weight: 300; }
.tag-ic { display: block; width: 30px; height: 30px; color: var(--accent); margin-bottom: .55rem; }
.tag-ic svg { width: 100%; height: 100%; }

/* --- Checklist délicate ------------------------------------------ */
.checklist { list-style: none; margin: 1.5rem 0 0; padding: 0; display: grid; gap: 1rem; }
.checklist li { display: flex; gap: .9rem; align-items: flex-start; color: var(--ink-soft); font-weight: 300; }
.checklist li svg { flex: none; width: 22px; height: 22px; margin-top: .28rem; color: var(--accent); }

/* --- Étapes numérotées ------------------------------------------- */
.steps { counter-reset: step; }
.step__num {
  font-family: var(--font-title); font-size: 2.6rem; color: var(--blush);
  line-height: 1; margin-bottom: .5rem; font-weight: 500;
}

/* --- Bandeau invitation ------------------------------------------ */
.invite { position: relative; text-align: center; padding: clamp(1.5rem, 3.5vw, 2.6rem) 0; overflow: hidden; }
.invite h2 { color: var(--sage-deep); }
.invite p { color: var(--ink-soft); max-width: 52ch; margin-inline: auto; font-weight: 300; font-size: 1.15rem; }
.invite .hero__actions { justify-content: center; }

/* --- Tarifs (page prestations) ----------------------------------- */
.price-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.price-row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  padding: 1.2rem .3rem; border-bottom: 1px solid var(--line);
}
.price-row h3 { margin: 0; font-size: 1.35rem; }
.price-row .price { font-family: var(--font-title); font-size: 1.5rem; color: var(--accent-deep); white-space: nowrap; }
.price-row small { display: block; color: var(--ink-soft); font-size: .92rem; font-weight: 300; font-family: var(--font-body); }

/* --- Formulaire --------------------------------------------------- */
.form { display: grid; gap: 1.3rem; }
.form__row { display: grid; gap: 1.3rem; grid-template-columns: 1fr 1fr; }
.field { display: grid; gap: .45rem; }
.field label { font-weight: 600; font-size: .9rem; color: var(--sage-deep); }
.field input, .field textarea, .field select {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: .85rem 1.05rem; border: 1px solid var(--line); border-radius: 12px;
  background: var(--white); transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(142,168,150,.22);
}
.field textarea { min-height: 150px; resize: vertical; }
.form__consent { display: flex; gap: .6rem; align-items: flex-start; font-size: .88rem; color: var(--ink-soft); font-weight: 300; }
.form__consent input { margin-top: .3rem; }

/* --- Infos pratiques --------------------------------------------- */
.info-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.5rem; }
.info-list li { display: flex; gap: 1rem; align-items: flex-start; }
.info-list .info-icon { flex: none; width: 40px; height: 40px; color: var(--accent); }
.info-list strong { display: block; color: var(--sage-deep); font-family: var(--font-title); font-size: 1.15rem; font-weight: 600; }
.info-list span { color: var(--ink-soft); font-weight: 300; }
.map-embed { border: 0; width: 100%; height: 100%; min-height: 360px; border-radius: var(--radius-lg); filter: saturate(.85) contrast(.95); }

/* --- Page hero (pages internes) ---------------------------------- */
.page-hero { padding: clamp(1.2rem, 2.5vw, 2rem) 0 clamp(.6rem, 1.5vw, 1.1rem); }
/* les heros 2 colonnes ne doivent pas cumuler le padding de .hero__grid par-dessus celui de .page-hero */
.page-hero .hero__grid { padding-top: 0; padding-bottom: 0; }
.page-hero .lead { margin-top: .5rem; }
.breadcrumb { font-size: .8rem; letter-spacing: .04em; color: var(--ink-faint); margin-bottom: 1rem; }
.breadcrumb a { color: var(--ink-faint); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent-deep); }

/* --- Pied de page ------------------------------------------------- */
.site-footer { background: var(--paper-2); border-top: 1px solid var(--line); padding: 4rem 0 2rem; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1.2fr; gap: 2.5rem; }
.footer__brand { display: inline-flex; align-items: center; gap: .6rem; margin-bottom: .9rem; color: var(--sage-deep); text-decoration: none; }
.footer__brand span { font-family: var(--font-title); font-size: 1.45rem; font-weight: 500; }
.site-footer p { color: var(--ink-soft); font-weight: 300; max-width: 34ch; }
.site-footer h4 { font-family: var(--font-body); color: var(--sage-deep); font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 1rem; }
.footer__links { list-style: none; margin: 0; padding: 0; display: grid; gap: .65rem; }
.footer__links a, .site-footer address a { color: var(--ink-soft); text-decoration: none; font-style: normal; font-weight: 300; }
.footer__links a:hover, .site-footer address a:hover { color: var(--accent-deep); }
.site-footer address { font-style: normal; color: var(--ink-soft); font-weight: 300; line-height: 1.9; }
.footer__bottom { border-top: 1px solid var(--line); margin-top: 3rem; padding-top: 1.5rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: .82rem; color: var(--ink-faint); }
.footer__bottom a { color: var(--ink-faint); text-decoration: none; }
.footer__bottom a:hover { color: var(--accent-deep); }

/* Newsletter + réseaux (pied de page) */
.footer__news { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem 2.5rem; }
.footer__news-txt h4 { font-family: var(--font-title); font-size: 1.35rem; color: var(--sage-deep); margin: 0 0 .2rem; text-transform: none; letter-spacing: 0; }
.footer__news-txt p { margin: 0; max-width: 44ch; color: var(--ink-soft); font-weight: 300; }
.footer__news-form { display: flex; gap: .55rem; flex: 1 1 300px; max-width: 440px; }
.footer__news-form .hp { position: absolute; left: -9999px; }
.footer__news-form input[type="email"] { flex: 1; min-width: 0; font-family: var(--font-body); font-size: 1rem; color: var(--ink); padding: .75rem 1.1rem; border: 1px solid var(--line); border-radius: 999px; background: var(--white); }
.footer__news-form input[type="email"]:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(201, 74, 138, .18); }
.footer__news-form button { flex: none; }
.footer__social { display: inline-flex; align-items: center; gap: .45rem; margin-top: .9rem; color: var(--ink-soft); text-decoration: none; font-weight: 600; font-size: .9rem; }
.footer__social svg { width: 20px; height: 20px; }
.footer__social:hover { color: var(--accent-deep); }
@media (max-width: 720px) { .footer__news-form { flex-basis: 100%; max-width: none; } }

/* --- Portrait (page À propos) ------------------------------------ */
.portrait { position: relative; width: min(360px, 82%); margin-inline: auto; }
.portrait img {
  width: 100%; border-radius: var(--radius-lg); display: block;
  box-shadow: var(--shadow-soft); position: relative; z-index: 1;
}
.portrait::before {
  content: ""; position: absolute; inset: -14px -14px 18px 14px; z-index: 0;
  border: 1.5px solid var(--gold); border-radius: var(--radius-lg); opacity: .6;
}
.portrait__caption { text-align: center; margin-top: 1.1rem; color: var(--ink-soft); font-weight: 300; font-size: .95rem; }
.portrait__caption strong { display: block; font-family: var(--font-title); font-size: 1.25rem; color: var(--sage-deep); font-weight: 600; }

/* --- Puces (blessures d'âme, thèmes) ----------------------------- */
.chips { display: flex; flex-wrap: wrap; gap: .55rem; margin: 1.2rem 0 0; padding: 0; list-style: none; }
.chips li {
  font-size: .92rem; color: var(--sage-deep);
  background: rgba(142,201,216,.16); border: 1px solid rgba(63,116,189,.2);
  padding: .4rem .9rem; border-radius: 999px;
}

/* --- Présentation du livre (page Auteur) ------------------------- */
.book { perspective: 1800px; display: flex; justify-content: center; padding: 1rem 0; }
.book-cover {
  position: relative; width: min(288px, 82%);
  border-radius: 3px 7px 7px 3px;
  box-shadow: -22px 26px 55px -20px rgba(24, 44, 92, .5);
  transform: rotateY(-16deg) rotateX(3deg); transform-style: preserve-3d;
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.book:hover .book-cover { transform: rotateY(-6deg) rotateX(1deg); }
.book-cover img { display: block; width: 100%; border-radius: 3px 7px 7px 3px; }
.book-cover::after {
  content: ""; position: absolute; inset: 0; width: 26px; left: 0;
  background: linear-gradient(90deg, rgba(20,36,74,.32), rgba(20,36,74,.04) 60%, transparent);
  border-radius: 3px 0 0 3px; pointer-events: none;
}
.book-cover::before {
  content: ""; position: absolute; top: 2.5%; bottom: 2.5%; right: -7px; width: 7px;
  background: repeating-linear-gradient(90deg, #efe9dc, #efe9dc 1px, #d9d2c2 2px, #efe9dc 3px);
  border-radius: 0 2px 2px 0; transform: translateZ(-1px);
}
.book-meta { display: grid; grid-template-columns: auto 1fr; gap: .5rem 1.4rem; margin: 1.6rem 0 0; }
.book-meta dt { font-family: var(--font-body); font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); font-weight: 700; align-self: center; }
.book-meta dd { margin: 0; color: var(--ink); font-weight: 400; }
.quote-block {
  font-family: var(--font-title); font-style: italic; font-size: 1.5rem; line-height: 1.5;
  color: var(--sage-deep); border-left: 2px solid var(--gold); padding-left: 1.4rem; margin: 0;
}

/* --- Apparition douce -------------------------------------------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s ease, transform .8s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* --- Responsive --------------------------------------------------- */
@media (max-width: 1100px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__art { max-width: 380px; margin-inline: auto; order: -1; }
  .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .form__row { grid-template-columns: 1fr; }
  .nav__toggle { display: block; }
  .brand__roles { display: none; }
  .brand__name { font-size: 1.35rem; }
  .nav__links {
    position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch;
    gap: .1rem; background: var(--paper); border-bottom: 1px solid var(--line);
    padding: .8rem 1.25rem 1.3rem; box-shadow: var(--shadow-soft); display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a { padding: .8rem 1rem; }
  .nav__cta { margin: .5rem 0 0; }
  .nav__cta a { justify-content: center; }
}

/* --- FAQ (accordéon accessible, sans JS) ------------------------- */
.faq { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none; position: relative;
  padding: 1.15rem 2.2rem 1.15rem 0;
  font-family: var(--font-title); font-size: 1.3rem; font-weight: 500; color: var(--sage-deep);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: .2rem; top: 50%; transform: translateY(-50%);
  font-family: var(--font-body); font-size: 1.5rem; font-weight: 400; color: var(--accent);
}
.faq[open] summary::after { content: "–"; }
.faq summary:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
.faq p { color: var(--ink-soft); font-weight: 300; margin: 0 0 1.3rem; max-width: 62ch; }

/* --- Carte d'accès (OpenStreetMap, sans cookies) ----------------- */
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-soft); }
.map-wrap iframe { display: block; width: 100%; height: 100%; min-height: 340px; border: 0; filter: saturate(.9) contrast(.98); }
.map-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1rem; }

/* Pictos agrandis (+25%) sur la page Organisations de santé */
body[data-page="organisations-de-sante"] .soft-card .ic { width: 58px; height: 58px; }

/* À propos — photo montagne, léger effet aquarelle (bords fondus discrets + grain léger) */
body[data-page="a-propos"] .apropos-montagne { position: relative; isolation: isolate; margin: 2.2rem 0 0; }
body[data-page="a-propos"] .apropos-montagne img {
  width: 100%; height: auto; display: block; border-radius: 8px;
  filter: saturate(1.55) contrast(1.07) brightness(1.03) blur(.5px);
  -webkit-mask-image: radial-gradient(128% 122% at 50% 44%, #000 54%, transparent 93%);
          mask-image: radial-gradient(128% 122% at 50% 44%, #000 54%, transparent 93%);
}
body[data-page="a-propos"] .apropos-montagne::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .3; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  -webkit-mask-image: radial-gradient(125% 120% at 50% 45%, #000 72%, transparent 96%);
          mask-image: radial-gradient(125% 120% at 50% 45%, #000 72%, transparent 96%);
}

/* Page rendez-vous — resserrée pour que le CTA soit visible d'emblée */
body[data-page="prendre-rendez-vous"] .page-hero { padding-top: 1.4rem; padding-bottom: .2rem; }
body[data-page="prendre-rendez-vous"] .page-hero h1 { margin-bottom: .2em; }
body[data-page="prendre-rendez-vous"] .page-hero .lead { font-size: 1.08rem; margin-top: .3rem; }
body[data-page="prendre-rendez-vous"] .section { padding-top: 1.1rem; }

/* Supervision — fond plus soutenu (lavande rosée) */
body[data-page="supervision"] { --paper: #f4ecf4; --paper-2: #e4d2ec; }

/* Organisations de santé — bleu soutenu, en résonance avec la photo */
body[data-page="organisations-de-sante"] { --paper: #e8f1f8; --paper-2: #bfd6ee; }

/* Effet aquarelle renforcé sur la photo Organisations (bords fondus + grain) */
body[data-page="organisations-de-sante"] .page-hero figure { position: relative; isolation: isolate; }
body[data-page="organisations-de-sante"] .page-hero img {
  border-radius: 6px !important; box-shadow: none !important; filter: saturate(1.14) contrast(.97);
  -webkit-mask-image: radial-gradient(130% 115% at 50% 42%, #000 62%, transparent 93%);
          mask-image: radial-gradient(130% 115% at 50% 42%, #000 62%, transparent 93%);
}
body[data-page="organisations-de-sante"] .page-hero figure::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 2; opacity: .12; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  -webkit-mask-image: radial-gradient(130% 115% at 50% 42%, #000 62%, transparent 93%);
          mask-image: radial-gradient(130% 115% at 50% 42%, #000 62%, transparent 93%);
}

/* Portrait du hero d'accueil — traitement duotone cobalt/or pour l'harmonie */
.hero-portrait { position: relative; width: 100%; max-width: 72px; margin-inline: auto; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); isolation: isolate; }
.hero-portrait img { display: block; width: 100%; height: auto; filter: grayscale(1) contrast(1.05); }
body[data-page="accueil"] .hero__art { aspect-ratio: auto; }

/* Pages pro compactes — contenu (hors pied de page) sur un écran Full HD */
body[data-page="supervision"] .page-hero,
body[data-page="organisations-de-sante"] .page-hero { padding-top: .6rem; padding-bottom: 0; }
body[data-page="supervision"] .page-hero h1,
body[data-page="organisations-de-sante"] .page-hero h1 { font-size: clamp(1.55rem, 2.7vw, 2.05rem); margin-bottom: .2em; }
body[data-page="supervision"] .page-hero .lead,
body[data-page="organisations-de-sante"] .page-hero .lead { font-size: .92rem; margin-top: .15rem; margin-bottom: 0; }
body[data-page="supervision"] .soft-card .ic,
body[data-page="organisations-de-sante"] .soft-card .ic { margin-bottom: .35rem; }
body[data-page="supervision"] .soft-card p,
body[data-page="organisations-de-sante"] .soft-card p { line-height: 1.45; }
body[data-page="supervision"] .section,
body[data-page="organisations-de-sante"] .section { padding-top: 0; padding-bottom: .35rem; }
body[data-page="supervision"] .invite,
body[data-page="organisations-de-sante"] .invite { padding-top: .8rem; padding-bottom: .8rem; }
body[data-page="supervision"] .page-hero,
body[data-page="organisations-de-sante"] .page-hero { padding-top: .4rem; }
body[data-page="supervision"] .section .lead,
body[data-page="organisations-de-sante"] .section .lead { font-size: 1.08rem; }
body[data-page="supervision"] .section .container[style*="margin-top"],
body[data-page="organisations-de-sante"] .section .container[style*="margin-top"] { margin-top: 1.2rem !important; }
body[data-page="supervision"] .grid,
body[data-page="organisations-de-sante"] .grid { gap: .8rem; margin-top: .3rem !important; }
body[data-page="supervision"] .soft-card p,
body[data-page="organisations-de-sante"] .soft-card p { font-size: .95rem; }
body[data-page="supervision"] .soft-card .ic,
body[data-page="organisations-de-sante"] .soft-card .ic { margin-bottom: .5rem; }
body[data-page="supervision"] .invite,
body[data-page="organisations-de-sante"] .invite { padding-top: 1.4rem; padding-bottom: 1.4rem; }
body[data-page="supervision"] .invite h2,
body[data-page="organisations-de-sante"] .invite h2 { margin-bottom: .3em; }
.hero-portrait::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(155deg, #22406f 0%, #4f7fbf 50%, #d9b866 100%);
  mix-blend-mode: color; opacity: .95;
}
