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

  :root {
    --sage: #8a9e8c;
    --sage-deep: #667b69;
    --sage-light: #d6e4d7;
    --sage-pale: #f0f5f0;
    --terre: #b5896e;
    --terre-light: #e8d5c8;
    --bleu: #7d93a3;
    --bleu-light: #d7e0e6;
    --creme: #faf7f2;
    --dark: #2c2c2a;
    --mid: #5c5c58;
    --light-text: #7b7b75;
    --sage-text: #667467;
    --terre-text: #906d57;
    --bleu-text: #667885;
    --address-text: #71716b;
    --white: #ffffff;

    --text-body: 1rem;
    --text-small: .92rem;
    --text-label: .75rem;
    --text-h3: 1.35rem;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Jost', sans-serif;
    background: var(--creme);
    color: var(--dark);
    font-weight: 300;
    font-size: var(--text-body);
    line-height: 1.75;
    overflow-x: hidden;
  }
  p { line-height: 1.8; }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 1.2rem 3rem;
    display: flex; justify-content: space-between; align-items: center;
    background: rgba(250,247,242,0.92);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(138,158,140,0.2);
  }
  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem; font-weight: 400; letter-spacing: 0.08em;
    color: var(--dark);
  }
  .nav-links { display: flex; gap: 1.6rem; list-style: none; }
  .nav-links a {
    font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--mid); text-decoration: none; transition: color 0.3s;
  }
  .nav-links a:hover { color: var(--sage); }

  /* Burger, hidden on desktop */
  .nav-burger {
    display: none; flex-direction: column; justify-content: center; gap: 5px;
    width: 28px; height: 22px; background: none; border: none; cursor: pointer;
    padding: 0; z-index: 110;
  }
  .nav-burger span {
    display: block; width: 100%; height: 2px; background: var(--dark);
    transition: transform 0.3s, opacity 0.3s;
  }
  .nav-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-burger.is-open span:nth-child(2) { opacity: 0; }
  .nav-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    background: var(--creme);
    display: grid; grid-template-columns: 1fr 1fr; align-items: center;
    padding: 8rem 5rem 5rem;
    position: relative; overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute; top: 0; right: 0;
    width: 55%; height: 100%;
    background: var(--sage-pale);
    clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 0;
  }
  .hero-text { position: relative; z-index: 1; }
  h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.9rem, 4.5vw, 4rem);
    font-weight: 300; line-height: 1.14;
    color: var(--dark); margin-bottom: 1.5rem;
  }
  h1 em, h2 em { font-style: italic; color: var(--terre); }
  .hero-desc {
    font-size: 1.05rem; color: var(--mid);
    max-width: 440px; margin-bottom: 1.5rem; line-height: 1.8;
  }
  .hero-question {
    max-width: 470px;
    margin: -0.45rem 0 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(138,158,140,0.42);
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.25rem, 1.8vw, 1.5rem);
    font-style: italic;
    line-height: 1.5;
    color: var(--dark);
  }
  .btn-primary {
    display: inline-block;
    padding: 0.9rem 2.4rem;
    background: var(--sage-deep);
    color: white; text-decoration: none;
    font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase;
    transition: background 0.3s, transform 0.2s;
    border-radius: 2px;
  }
  .btn-primary:hover { background: #596d5c; transform: translateY(-1px); }

  /* Photo dans le hero */
  .hero-visual {
    position: relative; z-index: 1;
    display: flex; justify-content: center; align-items: center;
    padding: 2rem;
  }
  .hero-photo-wrap { position: relative; width: min(360px, 78%); margin: 0 auto; }
  .hero-photo-wrap::before {
    content: ''; position: absolute; bottom: -16px; right: -16px;
    width: 100%; height: 100%; border: 2px solid var(--sage-light); z-index: 0;
  }
  .hero-photo {
    width: 100%; aspect-ratio: 3/4;
    object-fit: cover; object-position: center top;
    display: block; position: relative; z-index: 1;
  }

  /* ── SECTION BASE ── */
  section { padding: 6rem 5rem; }
  .section-label {
    font-size: var(--text-label); letter-spacing: 0.22em; text-transform: uppercase;
    font-weight: 400; line-height: 1.4;
    color: var(--sage-text); margin-bottom: 0.8rem;
  }
  h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.05rem, 3vw, 2.8rem);
    font-weight: 300; line-height: 1.22;
    color: var(--dark); margin-bottom: 1.5rem;
  }

  /* ── ACCOMPAGNEMENTS ── */
  .accompagnements { background: var(--creme); }
  .accompagnements h2 { text-align: center; }
  .accompagnements .section-label { text-align: center; display: block; }
  .accompagnements-intro {
    max-width: 640px; margin: 1.2rem auto 0; text-align: center;
    color: var(--mid); line-height: 1.75;
  }
  .cards-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem; margin-top: 3.5rem;
  }
  .card {
    display: block;
    background: var(--white);
    padding: 2.5rem 2rem;
    box-shadow: none;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative; overflow: hidden;
    text-decoration: none; color: inherit;
  }
  .card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px; background: var(--sage-light);
    transition: background 0.3s;
  }
  .card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.06); }
  .card:hover::before { background: var(--sage); }
  .card-icon {
    width: 52px; height: 52px; border-radius: 50%;
    background: var(--sage-pale);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.5rem; font-size: 1.4rem;
  }
  .card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: var(--text-h3); font-weight: 400;
    color: var(--dark); margin-bottom: 0.8rem;
  }
  .card p { font-size: var(--text-small); color: var(--mid); line-height: 1.75; }
  .card-tag {
    display: inline-block; margin-top: 1.2rem;
    font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--terre); padding: 0.25rem 0;
    border-bottom: 1px solid var(--terre-light);
  }
  .card-arrow {
    display: flex; align-items: center; justify-content: center;
    width: 34px; height: 34px; border-radius: 50%;
    margin-top: 1.4rem;
    background: var(--sage-pale); color: var(--sage-deep);
    font-size: 0.95rem;
    transition: background 0.3s, color 0.3s, transform 0.3s;
  }
  .card:hover .card-arrow {
    background: var(--sage-deep); color: var(--white);
    transform: translateX(3px);
  }

  /* ── APPROCHE (réponse) ── */
  .approche {
    background: var(--white);
    display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
  }
  .approche-text p { color: var(--mid); margin-bottom: 1rem; }
  .methode-pills { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-top: 1.5rem; }
  .pill {
    padding: 0.45rem 1.2rem;
    border: 1px solid var(--sage);
    color: var(--sage);
    font-size: 0.8rem; letter-spacing: 0.08em;
    border-radius: 50px;
  }
  .approche-side { display: flex; flex-direction: column; gap: 2rem; }
  .approche-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.3rem, 2vw, 1.65rem);
    font-style: italic; line-height: 1.6;
    color: var(--dark);
    padding: 2.5rem;
    border-left: 3px solid var(--sage);
    background: var(--sage-pale);
    position: relative;
  }
  .approche-quote::before {
    content: '\201C';
    font-size: 5rem; line-height: 0;
    color: var(--sage-light);
    position: absolute; top: 2.5rem; left: 1.5rem;
    font-style: normal;
  }
  .approche-quote blockquote {
    position: relative; z-index: 1;
    padding-left: 1.5rem; margin: 0 0 1.2rem 0; font: inherit;
  }
  .approche-quote cite {
    display: block; position: relative; z-index: 1;
    padding-left: 1.5rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--light-text); font-style: normal;
  }

  /* ── FORMATION & EXPÉRIENCE ── */
  .formation { background: var(--creme); padding: 6rem 5rem; }
  .formation-inner { max-width: 1000px; margin: 0 auto; }
  .formation-head { text-align: center; margin-bottom: 2rem; }
  .formation-head .section-label { display: block; }
  .formation-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
  .formation-col {
    background: var(--sage-pale);
    padding: 2.5rem;
    border-top: 3px solid var(--sage);
    box-shadow: none;
  }
  .formation-col h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: var(--text-h3); font-weight: 400;
    color: var(--dark); margin-bottom: 1.5rem;
  }
  .formation-col ul { list-style: none; }
  .formation-col li {
    position: relative;
    padding: 0.9rem 0 0.9rem 1.6rem;
    border-bottom: 1px solid rgba(138,158,140,0.25);
    color: var(--mid); font-size: var(--text-small); line-height: 1.6;
  }
  .formation-col li:last-child { border-bottom: none; }
  .formation-col li::before {
    content: '';
    position: absolute; left: 0; top: 1.35rem;
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--terre);
  }
  .formation-col li strong { color: var(--dark); font-weight: 500; }

  /* ── QUI JE SUIS / PARCOURS ── */
  .parcours { background: var(--creme); padding: 6rem 5rem; }
  .parcours-layout { grid-template-columns: 1fr; max-width: 850px; margin: 0 auto; }
  .parcours-inner { max-width: 850px; }
  .parcours h2 { margin-bottom: 2.5rem; }
  .parcours-prose { margin-bottom: 2rem; }
  .parcours-prose p { color: var(--mid); margin-bottom: 1rem; line-height: 1.82; }
  .parcours-prose h3 {
    font-family: 'Cormorant Garamond', serif; font-size: 1.55rem; font-weight: 400;
    margin: 1.7rem 0 0.7rem; color: var(--dark);
  }

  /* ── VALEURS (même sauge pâle que le reste du site) ── */
  .valeurs {
    background: var(--sage-pale);
    display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: center;
  }
  .valeurs-list { list-style: none; }
  .valeurs-list li {
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(138,158,140,0.25);
    display: flex; gap: 1.2rem; align-items: flex-start;
    color: var(--mid); font-size: 0.96rem; line-height: 1.7;
  }
  .valeurs-list li:last-child { border-bottom: none; }
  .valeur-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem; color: var(--sage-deep);
    min-width: 2rem; margin-top: 0.1rem;
  }
  .valeur-content strong {
    display: block; color: var(--dark);
    font-weight: 500; margin-bottom: 0.2rem; font-size: 1rem;
  }

  /* ── INFOS PRATIQUES (fond crème, comme le reste du site) ── */
  .infos-pratiques { background: var(--creme); padding: 6rem 5rem; }
  .infos-head { max-width: 760px; margin: 0 auto 3rem; text-align: center; }
  .infos-head .section-label { color: var(--terre); }
  .infos-intro { color: var(--mid); line-height: 1.8; }
  .infos-grid {
    max-width: 1180px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem;
  }
  .info-card { background: var(--white); padding: 2rem; min-height: 220px; box-shadow: none; }
  .info-icon {
    width: 52px; height: 52px; border-radius: 50%;
    background: var(--terre-light);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.35rem; margin-bottom: 1.2rem;
  }
  .info-card h3 {
    font-family: 'Cormorant Garamond', serif; font-size: var(--text-h3); font-weight: 400;
    margin-bottom: 0.65rem; color: var(--dark);
  }
  .info-card p { color: var(--mid); font-size: var(--text-small); line-height: 1.75; }

  /* ── SUPERVISION ── */
  .supervision {
    background: var(--sage-pale);
    padding: 5rem 7%;
    text-align: center;
  }
  .supervision-inner { max-width: 700px; margin: 0 auto; }
  .supervision .section-label { justify-content: center; }
  .supervision h2 { margin: 0.6rem 0 1.4rem; }
  .supervision p.supervision-text { color: var(--mid); margin-bottom: 1.1rem; text-align: left; }
  @media (max-width: 900px) {
    .supervision { padding: 3.5rem 1.5rem; }
  }

  /* ── CONTACT ── */
  .contact { background: var(--sage-pale); text-align: center; }
  .contact h2 { margin-bottom: 0.8rem; }
  .contact p { color: var(--mid); max-width: 500px; margin: 0 auto 2.5rem; }
  .contact-actions { display: flex; gap: 1rem; justify-content: center; align-items: center; }
  .btn-outline {
    display: inline-block;
    padding: 0.9rem 2.4rem;
    border: 1px solid var(--sage);
    color: var(--sage); text-decoration: none;
    font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase;
    transition: all 0.3s; border-radius: 2px;
  }
  .btn-outline:hover { background: var(--sage); color: white; }

  /* ── FOOTER (seul aplat sombre du site) ── */
  footer {
    background: var(--dark); color: rgba(255,255,255,0.55);
    text-align: center; padding: 2.5rem 2rem;
    font-size: 0.8rem; letter-spacing: 0.06em;
  }
  .footer-btn {
    display: inline-block;
    margin-top: 1.4rem;
    padding: 0.7rem 1.9rem;
    border: 1px solid rgba(255,255,255,0.35);
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-family: 'Jost', sans-serif;
    font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase;
    border-radius: 2px;
    transition: background 0.3s, border-color 0.3s;
  }
  .footer-btn:hover {
    background: var(--sage-deep);
    border-color: var(--sage-deep);
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .hero-text > * { animation: fadeUp 0.8s ease both; }
  .hero-text > *:nth-child(1) { animation-delay: 0.1s; }
  .hero-text > *:nth-child(2) { animation-delay: 0.25s; }
  .hero-text > *:nth-child(3) { animation-delay: 0.4s; }
  .hero-text > *:nth-child(4) { animation-delay: 0.55s; }
  .hero-visual { animation: fadeUp 1s ease 0.3s both; }

  /* ── MOBILE (consolidé, un seul point d'entrée max-width:900px) ── */
  /* ── LAPTOP ÉTROIT (901px-1300px) : évite que le menu déborde ── */
  @media (min-width: 901px) and (max-width: 1300px) {
    nav { padding: 1rem 1.75rem; }
    .nav-logo { font-size: 1.02rem; max-width: 210px; line-height: 1.2; }
    .nav-links { gap: 0.75rem; }
    .nav-links a { font-size: 0.65rem; letter-spacing: 0.04em; }
  }

  @media (max-width: 900px) {
    body { font-size: 0.98rem; }
    h1 { font-size: clamp(2.5rem, 10vw, 3.2rem); }
    h2 { font-size: clamp(1.9rem, 8vw, 2.45rem); }

    nav { padding: 1rem 1.5rem; }
    .nav-burger { display: flex; }
    .nav-links {
      position: fixed; top: 64px; left: 0; right: 0;
      flex-direction: column; gap: 0;
      background: var(--creme);
      border-bottom: 1px solid rgba(138,158,140,0.2);
      max-height: 0; overflow: hidden; opacity: 0;
      transition: max-height 0.35s ease, opacity 0.25s ease;
    }
    .nav-links.is-open { max-height: 560px; opacity: 1; }
    .nav-links li { width: 100%; }
    .nav-links a {
      display: block; padding: 1rem 1.5rem;
      border-bottom: 1px solid rgba(138,158,140,0.12);
      font-size: 0.85rem;
    }

    .hero { grid-template-columns: 1fr; padding: 7rem 2rem 5rem; }
    .hero::before { display: none; }
    .hero-visual { display: block; margin-top: 2.5rem; }
    .hero-photo-wrap { width: min(300px, 82vw); }
    .hero-question { margin-bottom: 1.8rem; }

    section { padding: 4rem 2rem; }
    .approche, .valeurs { grid-template-columns: 1fr; gap: 2.5rem; }
    .formation { padding: 4rem 2rem; }
    .formation-grid { grid-template-columns: 1fr; gap: 2rem; }
    .parcours { padding: 4rem 2rem; }
    .parcours-layout { grid-template-columns: 1fr; gap: 2.5rem; }
    .cards-grid { grid-template-columns: 1fr; }
    .infos-pratiques { padding: 4rem 2rem; }
    .infos-grid { grid-template-columns: 1fr; }
    .contact-actions { flex-direction: column; }
  }

/* V11 : optimisation mobile uniquement */
.mobile-action-bar { display: none; }

@media (max-width: 900px) {
  html { scroll-padding-top: 72px; }

  .contact { padding-bottom: 6.8rem; }

  .mobile-action-bar {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 120;
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: .65rem;
    padding: .65rem .8rem calc(.65rem + env(safe-area-inset-bottom));
    background: rgba(250,247,242,.97);
    border-top: 1px solid rgba(138,158,140,.28);
    box-shadow: 0 -8px 28px rgba(44,44,42,.07);
    transform: translateY(110%);
    opacity: 0;
    pointer-events: none;
    transition: transform .28s ease, opacity .22s ease;
  }
  .mobile-action-bar.is-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .mobile-action-link {
    min-height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .72rem .75rem;
    border-radius: 2px;
    text-decoration: none;
    font-size: .74rem;
    line-height: 1.1;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-weight: 400;
  }
  .mobile-action-secondary {
    border: 1px solid var(--sage);
    color: var(--sage-deep);
    background: var(--white);
  }
  .mobile-action-primary {
    background: var(--sage-deep);
    color: var(--white);
  }

  body { padding-bottom: calc(62px + env(safe-area-inset-bottom)); }
}

/* ─────────────────────────────────────────────────────────────
   V12 : CORRECTIF SAFARI / iPHONE
   ───────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  nav {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 2147483000 !important;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    padding-top: max(.75rem, env(safe-area-inset-top));
    height: calc(64px + env(safe-area-inset-top));
  }

  .nav-links {
    top: calc(64px + env(safe-area-inset-top)) !important;
  }

  .hero {
    padding-top: calc(6.7rem + env(safe-area-inset-top)) !important;
  }

  .mobile-action-bar {
    display: grid !important;
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    z-index: 2147483001 !important;
    -webkit-transform: translate3d(0, 110%, 0);
    transform: translate3d(0, 110%, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform, opacity;
  }

  .mobile-action-bar.is-visible {
    -webkit-transform: translate3d(0, 0, 0) !important;
    transform: translate3d(0, 0, 0) !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  body {
    padding-top: 0;
    padding-bottom: calc(66px + env(safe-area-inset-bottom)) !important;
  }
}

  /* ── TRAUMA ── */
  .trauma {
    background: var(--white);
    display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
  }
  .trauma-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.3rem, 2vw, 1.65rem);
    font-style: italic; line-height: 1.6;
    color: var(--dark);
    padding: 2.5rem;
    border-left: 3px solid var(--terre);
    background: #fdf6f1;
    position: relative;
  }
  .trauma-quote::before {
    content: '\201C';
    font-size: 5rem; line-height: 0;
    color: var(--terre-light);
    position: absolute; top: 2.5rem; left: 1.5rem;
    font-style: normal;
  }
  .trauma-quote p { position: relative; z-index: 1; padding-left: 1.5rem; }
  .trauma-text p { color: var(--mid); margin-bottom: 1rem; }
  .trauma-pills { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-top: 1.5rem; }
  .pill-terre {
    padding: 0.45rem 1.2rem;
    border: 1px solid var(--terre);
    color: var(--terre-text);
    font-size: 0.8rem; letter-spacing: 0.08em;
    border-radius: 50px;
  }

  /* ── LES LIENS DU COUPLE ── */
  .couple {
    background: var(--white);
    display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
  }
  .couple-text p { color: var(--mid); margin-bottom: 1rem; }
  .couple-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.3rem, 2vw, 1.65rem);
    font-style: italic; line-height: 1.6;
    color: var(--dark);
    padding: 2.5rem;
    border-left: 3px solid var(--sage);
    background: var(--creme);
    position: relative;
  }
  .couple-quote::before {
    content: '\201C';
    font-size: 5rem; line-height: 0;
    color: var(--sage-light);
    position: absolute; top: 2.5rem; left: 1.5rem;
    font-style: normal;
  }
  .couple-quote p { position: relative; z-index: 1; padding-left: 1.5rem; }
  .couple-pills { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-top: 1.5rem; }
  .pill-sage {
    padding: 0.45rem 1.2rem;
    border: 1px solid var(--sage);
    color: var(--sage-deep);
    font-size: 0.8rem; letter-spacing: 0.08em;
    border-radius: 50px;
  }

  /* ── TDAH, TSA, TROUBLES DYS ── */
  .neuro {
    background: var(--white);
    display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
  }
  .neuro-text p { color: var(--mid); margin-bottom: 1rem; }
  .neuro-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.3rem, 2vw, 1.65rem);
    font-style: italic; line-height: 1.6;
    color: var(--dark);
    padding: 2.5rem;
    border-left: 3px solid var(--bleu);
    background: var(--creme);
    position: relative;
  }
  .neuro-quote::before {
    content: '\201C';
    font-size: 5rem; line-height: 0;
    color: var(--bleu-light);
    position: absolute; top: 2.5rem; left: 1.5rem;
    font-style: normal;
  }
  .neuro-quote p { position: relative; z-index: 1; padding-left: 1.5rem; }
  .neuro-pills { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-top: 1.5rem; }
  .pill-bleu {
    padding: 0.45rem 1.2rem;
    border: 1px solid var(--bleu);
    color: var(--bleu-text);
    font-size: 0.8rem; letter-spacing: 0.08em;
    border-radius: 50px;
  }

  /* ── PAGE "EN SAVOIR PLUS" ── */
  .page-intro {
    background: var(--creme);
    padding: 9rem 7% 5rem;
    text-align: center;
  }
  .page-intro .section-label { display: block; }
  .page-intro h1 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    color: var(--dark);
    margin: 0.6rem 0 1.2rem;
  }
  .page-intro p {
    max-width: 620px; margin: 0 auto;
    color: var(--mid); font-size: 1.05rem; line-height: 1.8;
  }
  .back-link {
    display: inline-block; margin-top: 2rem;
    font-family: 'Jost', sans-serif; font-size: 0.85rem;
    color: var(--sage-deep); text-decoration: none; font-weight: 500;
  }
  .back-link:hover { text-decoration: underline; }
  .closing-cta {
    background: var(--white);
    padding: 6rem 7%;
    text-align: center;
  }
  .closing-cta p.section-label { display: block; }
  .closing-cta h2 { margin: 0.6rem 0 1.5rem; }
  .closing-cta p.closing-text {
    max-width: 560px; margin: 0 auto 2rem; color: var(--mid);
    font-size: 1rem; line-height: 1.8;
  }

  /* ── ACCOMPAGNEMENT INDIVIDUEL ── */
  .individuel {
    background: var(--white);
    display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
  }
  .individuel-text p { color: var(--mid); margin-bottom: 1rem; }
  .individuel-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.3rem, 2vw, 1.65rem);
    font-style: italic; line-height: 1.6;
    color: var(--dark);
    padding: 2.5rem;
    border-left: 3px solid var(--mid);
    background: var(--creme);
    position: relative;
  }
  .individuel-quote::before {
    content: '\201C';
    font-size: 5rem; line-height: 0;
    color: var(--light-text);
    position: absolute; top: 2.5rem; left: 1.5rem;
    font-style: normal;
  }
  .individuel-quote p { position: relative; z-index: 1; padding-left: 1.5rem; }
  .individuel-pills { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-top: 1.5rem; }
  .pill-neutral {
    padding: 0.45rem 1.2rem;
    border: 1px solid var(--light-text);
    color: var(--mid);
    font-size: 0.8rem; letter-spacing: 0.08em;
    border-radius: 50px;
  }


  /* ── ACCESSIBILITÉ : FOCUS CLAVIER ── */
  a:focus-visible, button:focus-visible {
    outline: 2px solid var(--sage-deep);
    outline-offset: 3px;
  }

  /* ── CONTACT : classes remplaçant les styles inline ── */
  .contact-note {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic; font-size: 1.15rem;
    color: var(--dark); max-width: 480px;
    margin: -1rem auto 2.5rem; line-height: 1.8;
  }
  .contact-address {
    font-size: 0.88rem; color: var(--address-text);
    margin-top: -1.5rem;
  }

  /* ── CORRECTIF MOBILE : sections 2 colonnes de la page "en savoir plus" ──
     (.trauma, .couple, .neuro, .individuel sont définies plus haut hors media
     query ; ce bloc doit rester après elles dans le fichier pour l'emporter
     dans la cascade à spécificité égale, sinon débordement horizontal sur mobile) */
  @media (max-width: 900px) {
    .trauma, .couple, .neuro, .individuel {
      grid-template-columns: 1fr; gap: 2.5rem;
    }
  }
