/* COULEURS : modifiez les variables ci-dessous pour adapter toute la palette. */
:root {
  --ink: #263936;
  --muted: #5d6e6a;
  --sage: #3f6f67;
  --sage-dark: #315c55;
  --sage-pale: #e8f0ed;
  --sand: #f4efe6;
  --cream: #fbfaf6;
  --white: #fff;
  --line: #d9e1dd;
  --radius: 18px;
  --shadow: 0 16px 45px rgba(38, 57, 54, .08);
  --container: 1160px;
  --section-space-large: clamp(5rem, 8vw, 8rem);
  --section-space-medium: clamp(3.5rem, 6vw, 6rem);
  --section-space-small: clamp(1.25rem, 2.5vw, 2.5rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body { margin: 0; color: var(--ink); background: var(--cream); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 17px; line-height: 1.7; }
p, li, dd, address { -webkit-hyphens: none; hyphens: none; word-break: normal; }
img, svg, iframe { max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 100; padding: 10px 16px; background: var(--ink); color: white; border-radius: 8px; }
.skip-link:focus { top: 12px; }
:focus-visible { outline: 3px solid #bf784d; outline-offset: 4px; }

.site-header { position: sticky; top: 0; z-index: 50; min-height: 78px; background: rgba(251, 250, 246, .94); border-bottom: 1px solid rgba(217, 225, 221, .8); backdrop-filter: blur(12px); }
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; line-height: 1.2; flex: 0 0 auto; }
.brand strong, .brand small { display: block; }
.brand strong { font-family: Georgia, serif; font-size: 17px; font-weight: 500; }
.brand small { margin-top: 4px; color: var(--muted); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.brand-logo { width: 48px; height: 58px; display: block; object-fit: contain; }
.main-nav { display: flex; align-items: center; gap: clamp(12px, 1.6vw, 25px); }
.main-nav a { color: #3c504c; text-decoration: none; font-size: 13px; font-weight: 600; white-space: nowrap; }
.main-nav a:hover { color: var(--sage); }
.main-nav .nav-appointment { min-height: 40px; display: inline-flex; align-items: center; padding: 7px 15px; color: white; background: var(--sage); border-radius: 999px; }
.main-nav .nav-appointment:hover { color: white; background: var(--sage-dark); }
.menu-button { display: none; width: 48px; height: 48px; padding: 12px; border: 0; background: transparent; border-radius: 8px; }
.menu-button > span:not(.sr-only) { display: block; width: 24px; height: 2px; margin: 5px 0; background: var(--ink); transition: .2s; }

.hero { display: grid; align-items: center; padding: var(--section-space-medium) 0 calc(var(--section-space-medium) / 2); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 8vw; }
.eyebrow { margin: 0 0 14px; color: var(--sage); font-size: 12px; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; }
h1, h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-weight: 400; letter-spacing: -.035em; line-height: 1.06; }
h1 { font-size: clamp(44px, 5.5vw, 70px); }
h2 { font-size: clamp(38px, 5vw, 62px); }
h3 { font-family: Georgia, "Times New Roman", serif; font-weight: 400; line-height: 1.25; }
.profession { margin: 12px 0 28px; color: var(--sage); font-size: clamp(23px, 2.5vw, 32px); font-weight: 500; }
abbr { text-decoration: none; }
.hero-text { max-width: 610px; margin: 0 0 34px; color: var(--muted); font-size: clamp(18px, 2vw, 22px); line-height: 1.65; }
.hero-appointment { max-width: 650px; display: flex; align-items: center; justify-content: space-between; gap: 24px; margin: 0 0 18px; padding: 20px 22px; background: var(--sage-pale); border: 1px solid #cfdfda; border-radius: var(--radius); }
.hero-appointment div, .hero-appointment span { display: block; }
.hero-appointment strong { font-size: 17px; }
.hero-appointment span { margin-top: 2px; color: var(--muted); font-size: 14px; line-height: 1.45; }
.hero-appointment .button { flex: 0 0 auto; }
.button-row, .contact-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; }
.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; padding: 12px 22px; border: 1px solid var(--sage); border-radius: 999px; font-size: 14px; font-weight: 700; text-decoration: none; transition: transform .2s, background .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--sage); }
.button-primary:hover { background: var(--sage-dark); }
.button-secondary { color: var(--sage-dark); background: transparent; }
.button-secondary:hover { background: var(--sage-pale); }
.hero-visual { position: relative; width: min(100%, 420px); aspect-ratio: 1; display: grid; place-items: center; justify-self: end; }
.hero-visual svg { position: relative; z-index: 2; width: 92%; filter: drop-shadow(0 28px 30px rgba(49, 92, 85, .12)); }
.hero-visual svg path:first-child { fill: #d9e6e1; }
.hero-visual svg .line { fill: none; stroke: var(--sage); stroke-width: 2; stroke-linecap: round; }
.hero-visual p { position: absolute; right: 2%; bottom: 12%; z-index: 3; margin: 0; color: var(--sage-dark); font-family: Georgia, serif; font-size: 17px; letter-spacing: .06em; }
.shape { position: absolute; border-radius: 50%; }
.shape-one { width: 74%; height: 74%; background: var(--sand); top: 2%; right: -9%; }
.shape-two { width: 26%; height: 26%; background: #b9d2ca; left: 3%; bottom: 10%; opacity: .75; }
.shape-three { width: 9%; height: 9%; border: 2px solid #c28a63; top: 15%; left: 17%; }

.section { padding-block: calc(var(--section-space-medium) / 2); }
.section-tinted { background: var(--sand); }
.section-number { margin: 0 0 20px; color: #99aaa5; font-size: 13px; letter-spacing: .15em; }
.psychomotricity-panel { max-width: 1040px; text-align: center; }
.psychomotricity-heading { min-width: 0; max-width: 100%; }
#psy-title { max-width: 100%; margin-bottom: 32px; font-size: clamp(2.7rem, 4vw, 3.7rem); line-height: 1; }
.lead-copy { min-width: 0; max-width: 900px; margin-inline: auto; text-align: justify; hyphens: none; }
.lead-copy p { max-width: 900px; margin-right: auto; margin-bottom: 0; margin-left: auto; }
.lead-copy p:first-child { margin-top: 0; color: var(--ink); font-size: clamp(1.25rem, 1.6vw, 1.55rem); line-height: 1.55; }
.lead-copy p:not(:first-child) { color: var(--muted); font-size: clamp(1.05rem, 1.15vw, 1.22rem); line-height: 1.65; }
.lead-copy p:nth-child(2) { margin-top: 38px; }
.lead-copy p:nth-child(3) { margin-top: 22px; }
.section-heading { display: grid; grid-template-columns: .45fr 1fr; align-items: end; gap: 30px; margin-bottom: var(--section-space-small); }
.section-heading h2 { margin-bottom: 16px; }
.section-heading p:last-child { max-width: 640px; margin-bottom: 0; color: var(--muted); }
#pour-qui .section-heading { display: block; max-width: 900px; }
#pour-qui .section-heading p:last-child { max-width: 900px; }
#informations .section-heading { display: block; max-width: 900px; margin-right: auto; margin-left: auto; }
#informations .section-heading p:last-child { max-width: 900px; }
.audience-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.audience-card { padding: 32px; background: rgba(255,255,255,.74); border: 1px solid rgba(255,255,255,.8); border-radius: var(--radius); }
.age-icon { display: none; }
.audience-card h3 { margin: 0 0 12px; font-size: 28px; }
.audience-card p { color: var(--muted); }
.audience-card ul { margin: 20px 0 0; padding: 20px 0 0; color: var(--muted); border-top: 1px solid var(--line); list-style: none; }
.audience-card li { position: relative; padding: 7px 0 7px 20px; line-height: 1.5; }
.audience-card li::before { content: ""; position: absolute; left: 0; top: 17px; width: 6px; height: 6px; background: var(--sage); border-radius: 50%; }
.care-path { margin-bottom: var(--section-space-medium); }
.care-path > .eyebrow { text-align: center; }
.care-path ol { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 28px 0 0; padding: 0; list-style: none; }
.care-path ol::before { content: ""; position: absolute; top: 29px; left: 16.5%; right: 16.5%; height: 2px; background: var(--line); }
.care-path li { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; text-align: center; }
.care-path li > span { width: 58px; height: 58px; display: grid; place-items: center; color: white; background: var(--sage); border: 7px solid var(--cream); border-radius: 50%; font-family: Georgia, serif; font-size: 18px; box-shadow: 0 0 0 1px var(--line); }
.care-path li > div { width: 100%; min-height: 130px; margin-top: 18px; padding: 22px; background: white; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.care-path strong, .care-path small { display: block; }
.care-path strong { font-family: Georgia, serif; font-size: 21px; font-weight: 400; }
.care-path small { margin-top: 8px; color: var(--muted); font-size: 14px; line-height: 1.5; }
.process-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 10vw; }
.sticky-title { align-self: start; position: sticky; top: 125px; }
.sticky-title > p:last-child { max-width: 500px; color: var(--muted); }
.preliminary-appointment { margin-bottom: var(--section-space-medium); padding: clamp(28px, 5vw, 52px); background: var(--sage-pale); border-left: 5px solid var(--sage); border-radius: 0 var(--radius) var(--radius) 0; }
.preliminary-appointment .eyebrow { margin-bottom: 8px; }
.preliminary-appointment h2 { max-width: 720px; margin-bottom: 24px; font-size: clamp(32px, 4.5vw, 50px); }
.preliminary-appointment p { max-width: 850px; margin: 10px 0 0; color: var(--muted); }
.preliminary-appointment strong { color: var(--ink); }
.timeline-intro { margin: 0 0 24px; font-weight: 700; }
.timeline { margin: 0; padding: 0; list-style: none; }
.timeline li { display: grid; grid-template-columns: 18px 1fr; gap: 18px; padding: 0 0 38px; position: relative; }
.timeline li:not(:last-child)::before { content: ""; position: absolute; left: 7px; top: 22px; bottom: 4px; width: 1px; background: var(--line); }
.timeline li > span { width: 16px; height: 16px; margin-top: 9px; display: block; background: var(--sage); border: 4px solid var(--sage-pale); border-radius: 50%; }
.timeline h3 { margin: 4px 0 8px; font-size: 18px; }
.timeline p { margin: 0; color: var(--muted); }
.section-sage { color: white; background: var(--sage-dark); }
.follow-up { display: grid; grid-template-columns: 1fr 1fr; gap: 10vw; }
.section-sage .light { color: #c2d7d1; }
.follow-up > div:last-child { color: #e3ece9; font-size: 19px; }
.follow-up > div:last-child p:first-child { margin-top: 6px; }
.notice { max-width: 900px; display: flex; align-items: center; gap: 18px; margin: 0 auto 36px; padding: 20px 24px; background: var(--sage-pale); border-radius: 12px; }
.notice > span { flex: 0 0 auto; width: 34px; height: 34px; display: grid; place-items: center; color: white; background: var(--sage); border-radius: 50%; font-family: Georgia, serif; }
.notice p { margin: 0; }
.notice strong { display: block; }
.practical-grid { max-width: 900px; display: grid; grid-template-columns: 1fr 1fr; margin: 0 auto; border-top: 1px solid var(--line); }
.practical-grid div { padding: 24px 12px 24px 0; border-bottom: 1px solid var(--line); }
.practical-grid .wide { grid-column: 1 / -1; }
.practical-grid dt { font-size: 14px; font-weight: 750; }
.practical-grid dd { margin: 4px 0 0; color: var(--muted); }
.contact-section { background: #eef3f0; }
.contact-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 9vw; align-items: center; }
.contact-copy > p:nth-of-type(3) { max-width: 520px; color: var(--muted); }
address { display: flex; flex-direction: column; align-items: flex-start; gap: 5px; margin: 30px 0; font-style: normal; }
address strong { font-family: Georgia, serif; font-size: 24px; font-weight: 400; }
address span:nth-of-type(2) { margin: 13px 0; }
address span:nth-of-type(3) { max-width: 480px; margin: 0 0 13px; color: var(--muted); }
address span:nth-of-type(3) strong { font-family: inherit; font-size: inherit; font-weight: 700; }
address a { color: var(--sage-dark); font-weight: 650; text-underline-offset: 4px; }
.text-link { margin-left: 8px; color: var(--sage-dark); font-size: 14px; font-weight: 700; text-underline-offset: 5px; }
.map-link-panel { min-height: 420px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 40px; text-align: center; background: #dfe9e5; border: 8px solid rgba(255,255,255,.7); border-radius: 30px; box-shadow: var(--shadow); }
.map-pin { width: 56px; height: 56px; display: grid; place-items: center; background: var(--sage); border-radius: 50% 50% 50% 8px; transform: rotate(-45deg); }
.map-pin span { width: 19px; height: 19px; background: white; border-radius: 50%; }
.map-link-panel p { margin: 24px 0 18px; }
.map-link-panel small { max-width: 360px; margin-top: 14px; color: var(--muted); }
.map-panel { min-height: 420px; overflow: hidden; border: 8px solid rgba(255,255,255,.7); border-radius: 30px; box-shadow: var(--shadow); }
.map-panel iframe { display: block; width: 100%; height: 100%; min-height: 420px; border: 0; }
.site-footer { padding: 28px 0; color: #d6e3df; background: #233d38; font-size: 13px; }
.site-footer .container { display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.site-footer p { margin: 0; }
.site-footer nav { display: flex; align-items: center; flex-wrap: wrap; justify-content: center; gap: 8px; }
.site-footer a { text-underline-offset: 4px; }

.legal-header { padding: 18px 0; background: var(--cream); border-bottom: 1px solid var(--line); }
.legal-header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.legal-header .brand-logo { width: 42px; height: 51px; }
.back-link { color: var(--sage-dark); font-size: 14px; font-weight: 700; text-underline-offset: 4px; }
.legal-main { padding-block: var(--section-space-medium); }
.legal-content { width: min(calc(100% - 40px), 900px); margin-inline: auto; }
.legal-content > .eyebrow { margin-bottom: 12px; }
.legal-content h1 { margin-bottom: 48px; font-size: clamp(2.7rem, 6vw, 4.8rem); }
.legal-content h2 { margin: 48px 0 18px; font-size: clamp(1.7rem, 3vw, 2.3rem); letter-spacing: -.02em; }
.legal-content h3 { margin: 28px 0 10px; font-size: 1.25rem; }
.legal-content p, .legal-content li { color: var(--muted); }
.legal-content a { color: var(--sage-dark); text-underline-offset: 4px; }
.legal-content address { margin: 0; }
.legal-content ul { padding-left: 22px; }
.legal-note { margin-top: 36px; padding: 20px 24px; background: var(--sage-pale); border-radius: 12px; }

@media (max-width: 980px) {
  .menu-button { display: block; cursor: pointer; }
  .main-nav { position: fixed; inset: 78px 0 auto; max-height: calc(100vh - 78px); display: none; align-items: stretch; padding: 10px 20px 24px; overflow-y: auto; background: var(--cream); border-bottom: 1px solid var(--line); box-shadow: 0 18px 25px rgba(38,57,54,.08); }
  .main-nav { max-height: calc(100dvh - 78px); }
  .main-nav.is-open { display: flex; flex-direction: column; }
  .main-nav a { min-height: 48px; display: flex; align-items: center; border-bottom: 1px solid var(--line); font-size: 15px; }
  .main-nav .nav-appointment { justify-content: center; margin-top: 10px; border-bottom: 0; }
  .menu-button[aria-expanded="true"] > span:nth-child(2) { transform: translateY(7px) rotate(45deg); }
  .menu-button[aria-expanded="true"] > span:nth-child(3) { opacity: 0; }
  .menu-button[aria-expanded="true"] > span:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }
  .hero-grid { gap: 4vw; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .container { width: min(calc(100% - 32px), var(--container)); }
  .hero-grid, .process-grid, .follow-up, .contact-grid { grid-template-columns: 1fr; }
  .hero-visual { width: min(100%, 430px); margin: 15px auto 0; }
  .section-heading { grid-template-columns: 1fr; gap: 0; }
  .audience-grid { grid-template-columns: 1fr; }
  .care-path ol { grid-template-columns: 1fr; gap: 0; }
  .care-path ol::before { top: 29px; bottom: 29px; left: 29px; right: auto; width: 2px; height: auto; }
  .care-path li { min-height: 120px; flex-direction: row; align-items: flex-start; gap: 18px; text-align: left; }
  .care-path li > span { flex: 0 0 auto; }
  .care-path li > div { width: auto; min-width: 0; min-height: auto; flex: 1; margin: 0 0 22px; }
  .sticky-title { position: static; }
  .timeline { margin-top: 30px; }
  .practical-grid, .notice { margin-left: 0; }
  .contact-grid { gap: 55px; }
  .map-link-panel { min-height: 360px; }
  .map-panel, .map-panel iframe { min-height: 360px; }
}

@media (max-width: 480px) {
  html { scroll-padding-top: 72px; }
  .site-header, .nav-wrap { min-height: 70px; }
  .nav-wrap { gap: 8px; }
  .brand { min-width: 0; gap: 8px; }
  .brand > span { min-width: 0; }
  .brand strong { font-size: 14px; }
  .brand small { font-size: 8px; letter-spacing: .045em; }
  .brand-logo { width: 34px; height: 43px; flex: 0 0 auto; }
  .menu-button { width: 44px; height: 44px; flex: 0 0 44px; }
  .main-nav { top: 70px; max-height: calc(100dvh - 70px); }
  h1 { font-size: 40px; }
  h2 { font-size: 35px; }
  .profession { font-size: 21px; line-height: 1.35; }
  #psy-title { margin-bottom: 24px; font-size: clamp(2.35rem, 10vw, 3rem); line-height: 1; }
  .lead-copy p:first-child { font-size: 1.25rem; line-height: 1.55; }
  .lead-copy p:not(:first-child) { font-size: 1.05rem; line-height: 1.65; }
  .lead-copy p:nth-child(2) { margin-top: 40px; }
  .lead-copy p:nth-child(3) { margin-top: 26px; }
  .hero-text { font-size: 17px; line-height: 1.55; }
  .hero-appointment { padding: 18px; }
  .button { width: 100%; min-height: 48px; padding-inline: 16px; text-align: center; line-height: 1.35; }
  .button-row .button { width: 100%; }
  .hero-appointment { align-items: stretch; flex-direction: column; gap: 14px; }
  .hero-visual p { font-size: 14px; }
  .audience-card { padding: 26px; }
  .care-path li { gap: 12px; }
  .care-path li > span { width: 50px; height: 50px; border-width: 6px; }
  .care-path ol::before { top: 25px; bottom: 25px; left: 25px; }
  .care-path li > div { padding: 18px; }
  .preliminary-appointment { padding: 23px 20px; }
  .practical-grid { grid-template-columns: 1fr; }
  .practical-grid .wide { grid-column: auto; }
  .practical-grid div { padding-right: 0; }
  .practical-grid dd, address, .site-footer { overflow-wrap: anywhere; }
  .contact-actions .button { width: 100%; }
  .text-link { margin: 10px auto 0; }
  .map-link-panel { min-height: 320px; padding: 28px 20px; }
  .map-panel, .map-panel iframe { min-height: 320px; }
  .site-footer .container { flex-direction: column; align-items: flex-start; }
  .site-footer nav { justify-content: flex-start; }
  .legal-header .container { align-items: flex-start; flex-direction: column; }
  .legal-content { width: min(calc(100% - 32px), 900px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
