:root {
  --bg: oklch(96.5% 0.012 205);
  --surface: oklch(99% 0.006 92);
  --fg: oklch(22% 0.028 198);
  --muted: oklch(43% 0.024 198);
  --border: oklch(84.5% 0.018 198);
  --accent: oklch(56% 0.074 48);
  --sage: oklch(60% 0.052 176);
  --aqua: oklch(70% 0.045 205);
  --blush: oklch(92.5% 0.014 72);
  --clay: oklch(76% 0.036 58);
  --soft-blue: oklch(88% 0.032 205);
  --success: oklch(55% 0.09 145);
  --warn: oklch(68% 0.12 70);
  --danger: oklch(55% 0.11 28);
  --font-display: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  --font-body: "Avenir Next", "Futura", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, Menlo, monospace;
  --radius: 18px;
  --wrap: min(1180px, calc(100vw - 40px));
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; }

img, svg { max-width: 100%; display: block; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: color-mix(in oklch, var(--surface) 86%, transparent);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid color-mix(in oklch, var(--border) 80%, transparent);
}

.nav-wrap {
  width: var(--wrap);
  margin: 0 auto;
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  text-decoration: none;
  display: grid;
  gap: 6px;
  min-width: 190px;
  padding: 4px 0;
  justify-items: center;
  color: var(--fg);
}

.brand strong {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 39px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  font-weight: 590;
}

.brand span {
  display: grid;
  justify-items: center;
  gap: 4px;
  font-size: 10px;
  color: var(--fg);
  text-transform: uppercase;
}

.brand span em,
.brand span small {
  font-style: normal;
  line-height: 1;
  white-space: nowrap;
}

.brand span em {
  font-size: 11px;
  letter-spacing: 0.26em;
}

.brand span small {
  font-size: 9px;
  letter-spacing: 0.18em;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 1.2vw, 16px);
  font-size: 14px;
  letter-spacing: 0.02em;
}

.nav-links a {
  text-decoration: none;
  color: color-mix(in oklch, var(--fg) 82%, var(--muted));
  padding: 10px 4px;
  border-bottom: 1px solid transparent;
}

.nav-links a[aria-current="page"],
.nav-links a:hover {
  border-color: var(--accent);
  color: var(--fg);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  left: -18px;
  right: -18px;
  top: 100%;
  height: 12px;
}

.nav-dropdown > button {
  appearance: none;
  border: 0;
  border-bottom: 1px solid transparent;
  background: transparent;
  color: color-mix(in oklch, var(--fg) 82%, var(--muted));
  cursor: pointer;
  font: inherit;
  letter-spacing: inherit;
  padding: 10px 18px 10px 4px;
  position: relative;
}

.nav-dropdown > button::after {
  content: "";
  position: absolute;
  right: 3px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-65%) rotate(45deg);
}

.nav-dropdown:hover > button,
.nav-dropdown:focus-within > button,
.nav-dropdown.is-current > button {
  border-color: var(--accent);
  color: var(--fg);
}

.dropdown-menu {
  position: absolute;
  left: -14px;
  top: calc(100% + 6px);
  z-index: 40;
  min-width: 268px;
  display: grid;
  gap: 2px;
  padding: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-bottom: 0;
  color: var(--fg);
  font-size: 13px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background: color-mix(in oklch, var(--sage) 16%, var(--surface));
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-actions { display: flex; gap: 10px; align-items: center; }

.nav-actions-dropdown > button {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 30px 10px 16px;
  background: var(--surface);
  color: var(--fg);
}

.nav-actions-dropdown .dropdown-menu {
  left: auto;
  right: 0;
  min-width: 180px;
}

.menu-button {
  display: none;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--fg);
}

.button,
.text-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 560;
  letter-spacing: 0.02em;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.button {
  background: var(--accent);
  color: white;
  padding: 12px 20px;
  border: 1px solid var(--accent);
}

.text-button {
  color: var(--fg);
  padding: 11px 18px;
  border: 1px solid var(--border);
}

.button:hover,
.text-button:hover,
.card-link:hover {
  transform: translateY(-2px);
}

main { overflow: clip; }

.section,
.hero {
  width: var(--wrap);
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: center;
  padding: clamp(52px, 8vw, 92px) 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 590;
  letter-spacing: -0.02em;
  text-wrap: pretty;
}

h1 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(48px, 8vw, 84px);
  line-height: 1.02;
}

h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
}

h3 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
}

.lead {
  max-width: 58ch;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.portrait-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 24px;
  min-height: 520px;
  display: grid;
  align-content: space-between;
  position: relative;
  overflow: hidden;
}

.portrait-card::before {
  content: "";
  position: absolute;
  inset: 24px 24px auto auto;
  width: 128px;
  height: 128px;
  border: 2px solid color-mix(in oklch, var(--clay) 70%, transparent);
  border-radius: 50%;
}

.portrait-card.photo-card::before {
  display: none;
}

.line-art {
  width: 100%;
  min-height: 260px;
  display: grid;
  place-items: center;
  color: var(--accent);
}

.line-art svg {
  width: min(310px, 80%);
  stroke: currentColor;
  stroke-width: 1.7;
  fill: none;
}

.therapy-photo {
  width: 100%;
  min-height: 330px;
  border-radius: 20px;
  overflow: hidden;
  background: color-mix(in oklch, var(--soft-blue) 28%, var(--surface));
}

.therapy-photo img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  object-position: 50% 42%;
  transform: scale(1.08);
}

.note {
  border-top: 1px solid var(--border);
  padding-top: 22px;
}

.note p { margin: 0; color: var(--muted); }

.band {
  margin: 0;
  padding: clamp(64px, 8vw, 112px) 0;
  border-top: 1px solid color-mix(in oklch, var(--border) 75%, transparent);
}

.band.tint { background: color-mix(in oklch, var(--soft-blue) 32%, var(--bg)); }
.band.clay { background: color-mix(in oklch, var(--clay) 32%, var(--bg)); }

.section-header {
  width: var(--wrap);
  margin: 0 auto 34px;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.7fr);
  gap: 34px;
  align-items: end;
}

.section-header p {
  margin: 0;
  color: var(--muted);
  max-width: 58ch;
}

.grid {
  width: var(--wrap);
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.card,
.article-card,
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.card {
  padding: 24px;
  min-height: 270px;
  display: grid;
  align-content: space-between;
  gap: 24px;
}

.card p,
.article-card p {
  color: var(--muted);
  margin: 12px 0 0;
}

.card-link {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--fg);
  font-weight: 560;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.speciality {
  min-height: 420px;
  border: 0;
}

.speciality:nth-child(1) { background: var(--soft-blue); }
.speciality:nth-child(2) { background: color-mix(in oklch, var(--surface) 70%, var(--blush)); }
.speciality:nth-child(3) { background: color-mix(in oklch, var(--surface) 65%, var(--clay)); }
.speciality:nth-child(4) { background: color-mix(in oklch, var(--surface) 60%, var(--sage)); }

.icon-circle {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: color-mix(in oklch, var(--surface) 64%, transparent);
  border: 1px solid color-mix(in oklch, var(--fg) 14%, transparent);
  color: color-mix(in oklch, var(--sage) 70%, var(--fg));
}

.icon-circle svg {
  width: 48px;
  height: 48px;
  stroke: currentColor;
  stroke-width: 1.7;
  fill: none;
}

.split {
  width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
}

.panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: clamp(24px, 4vw, 44px);
}

.consultation-text-panel {
  display: grid;
  gap: 16px;
  align-self: start;
}

.consultation-text-panel p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.62;
}

.consultation-main-title {
  font-size: clamp(36px, 4.4vw, 66px);
  line-height: 1.02;
  letter-spacing: -0.025em;
}

.consultations-for-title {
  grid-template-columns: 1fr;
  margin-bottom: clamp(28px, 4vw, 48px);
}

.consultations-for-note {
  max-width: none;
  margin: clamp(34px, 4.6vw, 54px) 0 0;
  color: color-mix(in oklch, var(--fg) 66%, var(--muted));
  font-size: clamp(17px, 1.38vw, 21px);
  font-style: italic;
  line-height: 1.68;
}

.consultations-for-title .consultations-for-note {
  width: 100%;
  max-width: none;
}

.consultation-reason-card {
  align-content: start;
  gap: 22px;
}

.consultation-reason-card h3 {
  font-size: clamp(23px, 2vw, 34px);
}

.consultation-reason-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.consultation-reason-list li {
  position: relative;
  padding-left: 16px;
  color: var(--muted);
  font-size: clamp(13px, 1.05vw, 15px);
  line-height: 1.48;
}

.consultation-reason-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: color-mix(in oklch, var(--sage) 74%, var(--fg));
}

.consultation-tabs {
  width: var(--wrap);
  margin: 0 auto;
}

.consultation-tab-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: clamp(22px, 4vw, 38px);
}

.consultation-tab {
  min-height: 52px;
  border: 1px solid var(--border);
  border-radius: 0;
  background: color-mix(in oklch, var(--surface) 82%, var(--bg));
  color: var(--fg);
  cursor: pointer;
  font: inherit;
  font-size: clamp(12px, 1.05vw, 14px);
  font-weight: 560;
  letter-spacing: 0.06em;
  line-height: 1.25;
  padding: 12px 14px;
  text-transform: uppercase;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.consultation-tab:hover,
.consultation-tab:focus-visible {
  border-color: var(--fg);
}

.consultation-tab.is-active {
  background: var(--fg);
  border-color: var(--fg);
  color: var(--surface);
}

.consultation-tab-panel {
  border: 1px solid color-mix(in oklch, var(--border) 78%, transparent);
  background: color-mix(in oklch, var(--surface) 88%, var(--bg));
  padding: clamp(26px, 4vw, 46px);
}

.consultation-tab-panel h3 {
  margin-bottom: clamp(22px, 4vw, 34px);
  font-size: clamp(30px, 3vw, 48px);
}

.consultation-theme-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.consultation-theme {
  min-height: 190px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: clamp(20px, 2.4vw, 30px);
  border: 1px solid var(--border);
  background: var(--surface);
}

.consultation-theme h4 {
  margin: 0;
  color: var(--fg);
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 31px);
  font-weight: 590;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.consultation-theme p,
.consultation-theme li {
  margin: 0;
  color: var(--muted);
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.58;
}

.consultation-theme ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.consultation-theme li {
  position: relative;
  padding-left: 16px;
}

.consultation-theme li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: color-mix(in oklch, var(--sage) 74%, var(--fg));
}

.bilan-page .hero {
  align-items: center;
}

.bilan-hero-copy {
  display: grid;
  gap: 22px;
}

.bilan-hero-copy p:not(.eyebrow):not(.lead),
.bilan-split p,
.bilan-step p,
.bilan-tarif p,
.bilan-final-cta p {
  color: color-mix(in oklch, var(--fg) 72%, var(--muted));
  font-size: clamp(15px, 1.16vw, 18px);
  line-height: 1.72;
}

.bilan-hero-panel {
  display: grid;
  align-content: center;
  min-height: 360px;
  background: color-mix(in oklch, var(--surface) 88%, var(--soft-blue));
}

.bilan-card-kicker,
.bilan-step-meta {
  display: block;
  margin-bottom: 16px;
  color: color-mix(in oklch, var(--accent) 78%, var(--fg));
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.bilan-reperes-grid .card {
  min-height: 360px;
}

.bilan-reperes-grid h3 {
  margin-bottom: 16px;
  font-size: clamp(25px, 2.35vw, 36px);
  line-height: 1.02;
}

.bilan-card-subtitle {
  margin: 0 0 18px;
  color: color-mix(in oklch, var(--accent) 70%, var(--fg));
  font-family: var(--font-display);
  font-size: clamp(20px, 1.7vw, 25px);
  font-weight: 590;
  line-height: 1.08;
}

.bilan-card-list {
  display: grid;
  gap: 11px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.bilan-card-list li {
  position: relative;
  padding-left: 17px;
  color: color-mix(in oklch, var(--fg) 68%, var(--muted));
  font-size: clamp(14px, 1.05vw, 17px);
  line-height: 1.58;
}

.bilan-card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: color-mix(in oklch, var(--sage) 74%, var(--fg));
}

.bilan-split {
  width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.48fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
}

.bilan-list {
  margin-top: 24px;
  max-width: 760px;
}

.bilan-warning {
  position: sticky;
  top: 128px;
  border-color: color-mix(in oklch, var(--accent) 42%, var(--border));
  background: color-mix(in oklch, var(--blush) 54%, var(--surface));
}

.bilan-warning h3 {
  margin-bottom: 18px;
  font-size: clamp(24px, 2.4vw, 34px);
}

.bilan-domain-carousel {
  width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  align-items: stretch;
}

.bilan-domain-grid {
  border: 1px solid var(--border);
  background: var(--surface);
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.bilan-domain-grid::-webkit-scrollbar {
  display: none;
}

.bilan-domain-card {
  flex: 0 0 clamp(320px, 31vw, 430px);
  min-height: 310px;
  padding: clamp(22px, 2.8vw, 34px);
  border-right: 1px solid var(--border);
  display: grid;
  align-content: start;
  gap: 18px;
  scroll-snap-align: start;
}

.bilan-domain-illustration {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid color-mix(in oklch, var(--sage) 62%, var(--border));
  border-radius: 50%;
  color: color-mix(in oklch, var(--sage) 72%, var(--fg));
  background: color-mix(in oklch, var(--soft-blue) 22%, var(--surface));
}

.bilan-domain-illustration svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bilan-domain-card:last-child {
  border-right: 0;
}

.bilan-domain-card h3 {
  font-size: clamp(20px, 1.7vw, 28px);
  line-height: 1.08;
}

.bilan-domain-card p,
.bilan-domain-note {
  color: color-mix(in oklch, var(--fg) 68%, var(--muted));
  font-size: clamp(14px, 1.05vw, 17px);
  line-height: 1.66;
}

.bilan-domain-note {
  width: min(860px, calc(100vw - 56px));
  margin: 34px auto 0;
  font-style: italic;
}

.bilan-timeline {
  width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--border);
  background: var(--surface);
}

.bilan-step {
  min-height: 560px;
  padding: clamp(26px, 3.2vw, 44px);
  border-right: 1px solid var(--border);
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 28px;
}

.bilan-step:last-child {
  border-right: 0;
}

.bilan-step-number {
  color: color-mix(in oklch, var(--sage) 78%, var(--fg));
  font-family: var(--font-display);
  font-size: clamp(58px, 6vw, 86px);
  line-height: 0.9;
}

.bilan-step h3 {
  margin-bottom: 12px;
  font-size: clamp(22px, 1.9vw, 32px);
  line-height: 1.05;
  white-space: nowrap;
}

.bilan-step p + p {
  margin-top: 14px;
}

.bilan-step-meta {
  margin-bottom: 20px;
  color: var(--muted);
}

.bilan-tarif {
  width: var(--wrap);
  margin: clamp(28px, 4vw, 44px) auto 0;
  display: grid;
  grid-template-columns: minmax(0, 0.6fr) minmax(320px, 0.55fr) minmax(0, 0.8fr);
  gap: clamp(24px, 3.5vw, 48px);
  align-items: start;
  background: color-mix(in oklch, var(--soft-blue) 24%, var(--surface));
}

.bilan-price-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bilan-price-list li {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
}

.bilan-price-list strong {
  color: var(--fg);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.bilan-child-phrase {
  background: color-mix(in oklch, var(--surface) 80%, var(--clay));
}

.bilan-child-phrase .quote {
  font-size: clamp(30px, 3.8vw, 54px);
}

.bilan-cta-band {
  background: color-mix(in oklch, var(--fg) 92%, black);
}

.bilan-final-cta {
  width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 46px);
  align-items: start;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid color-mix(in oklch, white 20%, transparent);
  border-radius: var(--radius-panel);
  border-color: color-mix(in oklch, white 20%, transparent);
  background: color-mix(in oklch, var(--surface) 96%, var(--soft-blue));
}

.bilan-final-cta h2 {
  max-width: 980px;
  font-size: clamp(32px, 3.2vw, 48px);
  line-height: 1.06;
  letter-spacing: 0;
}

.bilan-final-copy {
  display: grid;
  gap: 22px;
  align-content: start;
  justify-items: center;
  text-align: center;
}

.bilan-final-copy p {
  max-width: 820px;
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.65;
}

.bilan-final-form {
  width: min(980px, 100%);
  justify-self: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-soft);
  background: var(--surface);
  padding: clamp(22px, 3vw, 34px);
}

.bilan-final-cta .button {
  width: 100%;
  min-width: 0;
  justify-content: center;
}

@media (max-width: 1180px) {
  .bilan-domain-card {
    flex-basis: clamp(300px, 46vw, 420px);
  }

  .bilan-timeline {
    grid-template-columns: 1fr;
  }

  .bilan-step {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .bilan-step:last-child {
    border-bottom: 0;
  }

  .bilan-tarif {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .bilan-split,
  .bilan-final-cta {
    grid-template-columns: 1fr;
  }

  .bilan-warning {
    position: static;
  }
}

@media (max-width: 640px) {
  .bilan-domain-carousel {
    grid-template-columns: 42px minmax(0, 1fr) 42px;
  }

  .bilan-domain-card,
  .bilan-domain-card:nth-child(2n),
  .bilan-domain-card:last-child {
    flex-basis: min(78vw, 340px);
    border-right: 1px solid var(--border);
  }

  .bilan-final-cta .button {
    width: 100%;
    min-width: 0;
  }
}

.list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.list li {
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 12px;
  color: var(--muted);
}

.list li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sage);
  margin-top: 10px;
}

.quote {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--fg);
}

.quote.bio-quote {
  max-width: 18ch;
  font-size: clamp(28px, 3.6vw, 48px);
}

.bio-page {
  background: var(--bg);
}

.bio-hero-banner {
  position: relative;
  min-height: clamp(300px, 32vw, 430px);
  overflow: hidden;
  background:
    linear-gradient(90deg, color-mix(in oklch, var(--fg) 34%, transparent), color-mix(in oklch, var(--sage) 18%, transparent)),
    url("assets/photo-oiseaux-visible-crop.png") center 44% / cover no-repeat;
}

.consultations-hero-banner {
  background:
    linear-gradient(color-mix(in oklch, var(--bg) 10%, transparent), color-mix(in oklch, var(--bg) 10%, transparent)),
    linear-gradient(90deg, color-mix(in oklch, var(--fg) 34%, transparent), color-mix(in oklch, var(--sage) 18%, transparent)),
    url("image-3.png") center 44% / cover no-repeat;
}

.bio-hero-banner::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: clamp(58px, 8vw, 112px);
  background: var(--bg);
  clip-path: polygon(0 42%, 22% 54%, 50% 70%, 77% 54%, 100% 44%, 100% 100%, 0 100%);
}

.bio-hero-shade {
  min-height: inherit;
  display: grid;
  place-items: center;
  padding: clamp(54px, 8vw, 96px) 20px clamp(92px, 12vw, 150px);
  background: color-mix(in oklch, var(--soft-blue) 20%, transparent);
}

.bio-hero-shade h1 {
  max-width: none;
  margin: 0;
  color: color-mix(in oklch, var(--surface) 92%, white);
  font-family: var(--font-body);
  font-size: clamp(44px, 6vw, 88px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-align: center;
  text-shadow: 0 14px 36px rgba(22, 34, 34, 0.18);
}

.consultations-hero-banner .bio-hero-shade h1 {
  font-size: clamp(35px, 5vw, 72px);
  transform: translateY(2em);
}

.bio-profile {
  width: min(1260px, calc(100vw - 40px));
  margin: 0 auto;
  padding: clamp(30px, 5vw, 70px) 0 clamp(70px, 9vw, 120px);
  display: grid;
  grid-template-columns: minmax(280px, 0.35fr) minmax(0, 1fr);
  gap: clamp(42px, 7vw, 104px);
  align-items: start;
}

.bio-portrait-frame {
  width: min(100%, 390px);
  min-height: clamp(500px, 48vw, 650px);
  justify-self: end;
  border: 3px double color-mix(in oklch, var(--sage) 72%, var(--fg));
  padding: 7px;
  background: color-mix(in oklch, var(--surface) 72%, var(--sage));
}

.bio-portrait-frame > div {
  height: 100%;
  min-height: inherit;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  background:
    linear-gradient(145deg, color-mix(in oklch, var(--surface) 86%, transparent), color-mix(in oklch, var(--soft-blue) 42%, var(--surface)));
  color: color-mix(in oklch, var(--fg) 72%, var(--muted));
  text-align: center;
}

.bio-portrait-frame span {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -0.02em;
}

.bio-portrait-frame small {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.bio-profile-copy {
  padding-top: clamp(18px, 4vw, 64px);
}

.bio-profile-copy h1 {
  max-width: none;
  color: color-mix(in oklch, var(--sage) 64%, var(--fg));
  font-size: clamp(36px, 4.4vw, 66px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  text-align: left;
}

.bio-rule {
  width: 150px;
  height: 1px;
  margin: clamp(28px, 4vw, 52px) auto clamp(26px, 4vw, 46px) 0;
  background: color-mix(in oklch, var(--fg) 60%, transparent);
}

.bio-intro {
  max-width: 62ch;
  margin: 0 auto 14px;
  font-size: clamp(14px, 1.25vw, 19px);
  line-height: 1.65;
  color: color-mix(in oklch, var(--fg) 82%, var(--muted));
}

.bio-reference-grid {
  margin-top: clamp(50px, 6vw, 76px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 3px dotted color-mix(in oklch, var(--sage) 48%, transparent);
  background: color-mix(in oklch, var(--surface) 42%, transparent);
}

.bio-dotted-card {
  min-height: 420px;
  padding: clamp(30px, 4vw, 56px);
  display: grid;
  align-content: start;
  gap: 18px;
  background: color-mix(in oklch, var(--surface) 78%, transparent);
}

.bio-dotted-card + .bio-dotted-card {
  border-left: 3px dotted color-mix(in oklch, var(--sage) 42%, transparent);
}

.bio-dotted-cta {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 28px clamp(24px, 4vw, 56px);
  border-top: 3px dotted color-mix(in oklch, var(--sage) 42%, transparent);
  background: color-mix(in oklch, var(--surface) 70%, var(--sage));
  text-align: center;
}

.bio-dotted-cta p {
  margin: 0;
  color: color-mix(in oklch, var(--fg) 78%, var(--muted));
  font-size: clamp(17px, 1.35vw, 22px);
  line-height: 1.45;
}

.bio-dotted-cta a {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 2px solid color-mix(in oklch, var(--clay) 36%, var(--surface));
  color: var(--fg);
  background: color-mix(in oklch, var(--surface) 76%, var(--bg));
  text-decoration: none;
  font-weight: 560;
  letter-spacing: 0.02em;
}

.bio-dotted-card h2,
.bio-path h2 {
  max-width: none;
  color: color-mix(in oklch, var(--sage) 68%, var(--fg));
  font-size: clamp(28px, 3.6vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.bio-dotted-card h2 {
  text-align: center;
  text-transform: uppercase;
  font-size: clamp(15px, 2.1vw, 25px);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.bio-dotted-card p {
  margin: 0;
  font-size: clamp(12px, 1.35vw, 17px);
  line-height: 1.75;
  color: color-mix(in oklch, var(--fg) 76%, var(--muted));
}

.bio-check-list {
  margin: 10px 0 0;
  padding-left: 22px;
  color: color-mix(in oklch, var(--fg) 78%, var(--muted));
  font-size: clamp(12px, 1.35vw, 17px);
  line-height: 1.7;
}

.bio-path-stack ul {
  margin: 10px 0 0;
  padding-left: 22px;
  color: color-mix(in oklch, var(--fg) 78%, var(--muted));
  font-size: clamp(13px, 1.35vw, 18px);
  line-height: 1.7;
}

.bio-check-list a {
  color: var(--fg);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.bio-check-list li + li,
.bio-path-stack li + li {
  margin-top: 9px;
}

.bio-path {
  width: min(100% - 48px, 1420px);
  margin: 0 auto clamp(70px, 8vw, 120px);
  padding: clamp(64px, 7vw, 104px) clamp(34px, 5vw, 86px);
  background: color-mix(in oklch, var(--sage) 22%, var(--surface));
}

.bio-path-icon {
  width: 96px;
  height: 78px;
  margin: 0 auto 16px;
  color: color-mix(in oklch, var(--sage) 48%, transparent);
}

.bio-path-icon svg {
  width: 100%;
  height: 100%;
}

.bio-path > .eyebrow,
.bio-path > h2 {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.bio-path > h2 {
  max-width: 18ch;
  font-size: clamp(19px, 2.1vw, 29px);
  margin-bottom: clamp(42px, 6vw, 76px);
}

.bio-path-stack {
  display: grid;
  gap: clamp(34px, 5vw, 64px);
}

.bio-path-stack section {
  width: 100%;
  max-width: none;
}

.bio-path-stack h3 {
  color: color-mix(in oklch, var(--sage) 68%, var(--fg));
  font-size: clamp(16px, 2.1vw, 26px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.bio-path-stack p {
  max-width: none;
  margin: 18px 0 0;
  color: color-mix(in oklch, var(--fg) 78%, var(--muted));
  font-size: clamp(13px, 1.35vw, 18px);
  line-height: 1.75;
}

.bio-path-stack strong {
  font-weight: 590;
  color: var(--fg);
}

.faq-list {
  width: var(--wrap);
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-item button {
  width: 100%;
  min-height: 60px;
  background: transparent;
  color: var(--fg);
  border: 0;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  font: inherit;
  font-weight: 560;
  cursor: pointer;
}

.faq-item button span:last-child {
  font-size: 24px;
  color: var(--muted);
}

.faq-answer {
  display: none;
  padding: 0 24px 22px;
  color: var(--muted);
  max-width: 76ch;
}

.faq-item.is-open .faq-answer { display: block; }

.faq-cover {
  background: color-mix(in oklch, var(--sage) 18%, var(--surface));
  border-bottom: 1px solid var(--border);
}

.faq-cover-art {
  min-height: clamp(170px, 24vw, 280px);
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  background:
    linear-gradient(90deg, color-mix(in oklch, var(--soft-blue) 38%, transparent), transparent 42%),
    color-mix(in oklch, var(--surface) 70%, var(--sage));
}

.faq-cover-art span {
  font-family: var(--font-display);
  font-size: clamp(110px, 18vw, 260px);
  line-height: 0.75;
  color: color-mix(in oklch, var(--accent) 40%, transparent);
  opacity: 0.38;
  transform: rotate(-8deg);
}

.faq-cover-art span:nth-child(2) {
  color: color-mix(in oklch, var(--sage) 62%, var(--fg));
  transform: rotate(10deg);
}

.faq-cover-art span:nth-child(3) {
  color: color-mix(in oklch, var(--clay) 72%, var(--accent));
  transform: rotate(-3deg);
}

.faq-cover-art span:nth-child(4) {
  color: color-mix(in oklch, var(--soft-blue) 90%, var(--fg));
  transform: rotate(7deg);
}

.faq-cover-art span:nth-child(5) {
  color: color-mix(in oklch, var(--accent) 46%, var(--sage));
  transform: rotate(-12deg);
}

.faq-intro {
  width: min(920px, calc(100vw - 40px));
  margin: 0 auto;
  padding: clamp(56px, 8vw, 108px) 0;
  text-align: center;
}

.faq-intro h1 {
  margin: 0 auto;
  max-width: 14ch;
}

.faq-intro p:last-child {
  margin: 26px auto 0;
  max-width: 74ch;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 21px);
}

.faq-tabs {
  width: var(--wrap);
  margin: 0 auto clamp(42px, 6vw, 76px);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.faq-tabs a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border: 1px solid var(--border);
  background: color-mix(in oklch, var(--surface) 82%, var(--sage));
  color: var(--fg);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.faq-section {
  width: var(--wrap);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 54px) 0;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 72px);
}

.faq-section-title {
  position: sticky;
  top: 150px;
  align-self: start;
}

.faq-section-title h3 {
  max-width: 8ch;
}

.faq-section .faq-list {
  width: auto;
}

.faq-rubrics .faq-item {
  background: color-mix(in oklch, var(--surface) 86%, var(--bg));
}

.faq-rubrics .faq-section:nth-of-type(3n + 1) .faq-item {
  background: color-mix(in oklch, var(--surface) 82%, var(--sage));
}

.faq-rubrics .faq-section:nth-of-type(3n + 2) .faq-item {
  background: color-mix(in oklch, var(--surface) 82%, var(--soft-blue));
}

.faq-rubrics .faq-section:nth-of-type(3n + 3) .faq-item {
  background: color-mix(in oklch, var(--surface) 84%, var(--clay));
}

.faq-question-panel {
  background: color-mix(in oklch, var(--sage) 26%, var(--surface));
  padding: clamp(72px, 10vw, 132px) 0;
}

.faq-question-inner {
  width: min(980px, calc(100vw - 40px));
  margin: 0 auto;
  display: grid;
  gap: clamp(28px, 5vw, 58px);
}

.faq-question-inner > div {
  text-align: center;
}

.faq-question-inner h2 {
  margin: 0 auto;
  max-width: 16ch;
}

.faq-question-inner p {
  margin: 24px auto 0;
  max-width: 70ch;
  color: var(--muted);
}

.faq-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 22px;
}

.faq-question-panel input,
.faq-question-panel textarea {
  border-radius: 0;
  background: var(--surface);
}

.faq-submit {
  width: min(520px, 100%);
  justify-self: center;
  background: transparent;
  color: var(--fg);
  border-color: var(--fg);
}

.article-card {
  padding: 22px;
  display: grid;
  gap: 16px;
}

.article-card time,
.tag {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 10px;
}

.filter-row {
  width: var(--wrap);
  margin: 0 auto 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-button {
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--fg);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  letter-spacing: 0.02em;
}

.filter-button.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

.contact-grid {
  width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: 24px;
}

form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--fg);
  font-weight: 560;
  letter-spacing: 0.02em;
}

input, select, textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: color-mix(in oklch, var(--surface) 80%, white);
  color: var(--fg);
  padding: 12px 14px;
  font: inherit;
}

textarea { min-height: 132px; resize: vertical; }

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.footer-detailed {
  border-top: 0;
  background: color-mix(in oklch, var(--blush) 58%, var(--surface));
  padding: clamp(58px, 7vw, 92px) 0 clamp(26px, 4vw, 42px);
  color: var(--fg);
}

.footer-columns {
  width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(38px, 7vw, 120px);
  text-align: center;
}

.footer-column {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 12px;
}

.footer-column h2 {
  margin: 0 0 clamp(22px, 3vw, 38px);
  font-family: var(--font-body);
  font-size: clamp(18px, 1.8vw, 27px);
  line-height: 1;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: color-mix(in oklch, var(--sage) 82%, var(--fg));
  font-weight: 510;
}

.footer-column nav {
  display: grid;
  gap: 8px;
}

.footer-column a,
.footer-column p {
  margin: 0;
  color: color-mix(in oklch, var(--fg) 78%, var(--muted));
  font-size: clamp(16px, 1.45vw, 21px);
  line-height: 1.45;
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--fg);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-contact {
  padding-top: 72px;
}

.footer-contact p:first-of-type {
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 30px);
  letter-spacing: -0.015em;
  color: var(--fg);
}

.footer-actions {
  width: var(--wrap);
  margin: clamp(56px, 8vw, 90px) auto clamp(48px, 7vw, 84px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2vw, 28px);
  color: color-mix(in oklch, var(--sage) 88%, var(--fg));
}

.footer-actions a {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: inherit;
  text-decoration: none;
}

.footer-actions svg {
  width: 31px;
  height: 31px;
}

.footer-actions a:hover {
  color: var(--accent);
}

.footer-legal {
  width: var(--wrap);
  margin: 0 auto;
  text-align: center;
  font-size: clamp(13px, 1.1vw, 17px);
  letter-spacing: 0.01em;
  color: color-mix(in oklch, var(--fg) 86%, var(--muted));
}

.footer-inner {
  width: var(--wrap);
  margin: 0 auto;
  padding: 34px 0;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
}

.screen-list {
  width: var(--wrap);
  margin: 34px auto 80px;
}

.screen-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 22px;
  text-decoration: none;
}

.screen-card + .screen-card { margin-top: 12px; }

@media (max-width: 980px) {
  .nav-wrap { grid-template-columns: 1fr auto; }
  .menu-button { display: grid; place-items: center; }
  .nav-actions .text-button { display: none; }
  .nav-actions .nav-actions-dropdown { display: none; }
  .nav-links {
    grid-column: 1 / -1;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0 0 18px;
  }
  .nav-links.is-open { display: flex; }
  .nav-dropdown > button {
    width: 100%;
    text-align: left;
  }
  .dropdown-menu {
    position: static;
    min-width: 0;
    padding: 0 0 8px 14px;
    border: 0;
    background: transparent;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
  .dropdown-menu a {
    padding: 8px 0;
  }
  .hero,
  .section-header,
  .split,
  .contact-grid { grid-template-columns: 1fr; }
  .portrait-card { min-height: 420px; }
  .consultation-tab-list {
    display: flex;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }
  .consultation-tab-list::-webkit-scrollbar {
    display: none;
  }
  .consultation-tab {
    flex: 0 0 min(76vw, 260px);
  }
  .consultation-theme-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid.four,
  .grid.three { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  :root { --wrap: min(100vw - 28px, 1180px); }
  .nav-wrap { min-height: 68px; }
  .brand strong { font-size: 22px; }
  .brand span { font-size: 10px; }
  .hero { min-height: auto; padding: 38px 0 58px; }
  h1 { font-size: clamp(42px, 16vw, 58px); max-width: 10ch; }
  .lead { font-size: 17px; }
  .grid.four,
  .grid.three,
  .grid.two { grid-template-columns: 1fr; }
  .consultation-theme-grid {
    grid-template-columns: 1fr;
  }
  .speciality { min-height: 330px; }
  .footer-inner { flex-direction: column; }
  .footer-columns {
    grid-template-columns: 1fr;
    gap: 46px;
  }
  .footer-detailed {
    padding-top: 52px;
  }
  .footer-column h2 {
    margin-bottom: 14px;
  }
  .screen-card { grid-template-columns: 1fr; }
}

/* Premium editorial direction */
:root {
  --bg: oklch(96.5% 0.012 205);
  --surface: oklch(99% 0.006 92);
  --fg: oklch(22% 0.028 198);
  --muted: oklch(43% 0.024 198);
  --border: oklch(84.5% 0.018 198);
  --accent: oklch(56% 0.074 48);
  --sage: oklch(60% 0.052 176);
  --aqua: oklch(70% 0.045 205);
  --clay: oklch(76% 0.036 58);
  --soft-blue: oklch(88% 0.032 205);
  --radius: 8px;
  --wrap: min(1240px, calc(100vw - 56px));
}

body {
  background:
    linear-gradient(90deg, transparent 0, transparent calc(50% - 1px), color-mix(in oklch, var(--border) 42%, transparent) calc(50% - 1px), color-mix(in oklch, var(--border) 42%, transparent) 50%, transparent 50%),
    var(--bg);
}

.site-header {
  background: color-mix(in oklch, var(--bg) 94%, transparent);
  border-bottom-color: color-mix(in oklch, var(--border) 66%, transparent);
}

.header-contact {
  width: var(--wrap);
  margin: 0 auto;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 3vw, 38px);
  color: color-mix(in oklch, var(--fg) 52%, var(--muted));
  font-size: clamp(14px, 1.6vw, 22px);
  letter-spacing: 0.02em;
}

.header-contact a {
  text-decoration: none;
}

.header-contact span,
.header-contact a[href^="tel"] {
  font-family: var(--font-body);
  font-size: clamp(13px, 1.15vw, 16px);
  font-weight: 510;
  font-variant-numeric: lining-nums tabular-nums;
  letter-spacing: 0.02em;
}

.header-contact a[href^="tel"] {
  color: color-mix(in oklch, var(--fg) 60%, var(--muted));
}

.doctolib-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  background: color-mix(in oklch, var(--accent) 78%, var(--fg));
  color: color-mix(in oklch, var(--surface) 92%, white);
  font-size: clamp(13px, 1.2vw, 16px);
  font-weight: 590;
  letter-spacing: 0.01em;
}

.nav-wrap { min-height: 72px; gap: 34px; }

.brand { min-width: 214px; justify-items: start; }

.brand strong {
  font-size: clamp(30px, 3vw, 44px);
  letter-spacing: -0.035em;
}

.brand span { justify-items: start; gap: 5px; }
.brand span em { letter-spacing: 0.32em; }
.brand span small { letter-spacing: 0.17em; color: var(--muted); }

.nav-links {
  justify-content: flex-end;
  gap: clamp(12px, 1.55vw, 24px);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: none;
}

.nav-links a[aria-current="page"],
.nav-links a:hover {
  border-color: var(--fg);
}

.button,
.text-button,
.filter-button {
  border-radius: 0;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.09em;
}

.button {
  background: var(--fg);
  border-color: var(--fg);
}

.text-button {
  background: transparent;
}

.hero {
  min-height: calc(100vh - 92px);
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.72fr);
  gap: clamp(56px, 8vw, 124px);
  padding: clamp(72px, 9vw, 132px) 0;
}

#consultations-pourquoi {
  grid-template-columns: minmax(240px, 0.58fr) minmax(580px, 1.24fr);
  gap: clamp(28px, 4vw, 58px);
}

@media (max-width: 980px) {
  #consultations-pourquoi {
    grid-template-columns: 1fr;
  }
}

.home-classic {
  min-height: auto;
  grid-template-columns: minmax(0, 0.86fr) minmax(330px, 0.64fr);
  padding: clamp(62px, 8vw, 104px) 0 clamp(46px, 7vw, 86px);
}

.home-classic h1 {
  max-width: 13ch;
  font-size: clamp(48px, 6.4vw, 86px);
  line-height: 0.98;
}

.home-classic .lead {
  max-width: 58ch;
}

.home-photo-main {
  padding: 0 0 clamp(72px, 8vw, 118px);
}

.home-bird-hero {
  width: 100%;
  min-height: max(560px, calc(100svh - 118px));
  margin: 0 0 clamp(54px, 7vw, 92px);
  position: relative;
  overflow: hidden;
  border: 0;
  border-bottom: 1px solid color-mix(in oklch, var(--border) 72%, transparent);
  background: color-mix(in oklch, var(--soft-blue) 54%, var(--surface));
  isolation: isolate;
}

.home-bird-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255, 250, 244, 0.04), rgba(255, 250, 244, 0.16)),
    linear-gradient(90deg, rgba(22, 26, 24, 0.38), rgba(22, 26, 24, 0.12) 42%, rgba(22, 26, 24, 0.02) 72%);
  pointer-events: none;
}

.home-bird-hero img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: 50% 34%;
  filter: saturate(0.98) contrast(0.98) brightness(1.03);
  transform: scale(1.01);
  animation: hero-photo-drift 18s ease-in-out infinite alternate;
}

.home-hero-copy {
  position: absolute;
  z-index: 3;
  bottom: clamp(22px, 4vw, 54px);
  left: clamp(18px, 4vw, 72px);
  width: min(980px, calc(100vw - 36px));
  color: color-mix(in oklch, var(--surface) 92%, white);
  text-shadow: 0 2px 18px rgba(16, 19, 18, 0.38);
}

.home-hero-copy h1 {
  max-width: none;
  margin: 0 0 clamp(18px, 3vw, 32px);
  font-family: var(--font-display);
  font-size: clamp(64px, 10.5vw, 142px);
  font-weight: 590;
  line-height: 0.78;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.home-hero-copy p {
  margin: 0;
  color: color-mix(in oklch, var(--surface) 90%, white);
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 58px);
  font-weight: 540;
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.home-hero-copy p span,
.home-hero-copy p strong {
  display: block;
}

.home-hero-copy p span {
  margin-bottom: 4px;
}

.home-hero-copy p strong {
  font-weight: 540;
  white-space: nowrap;
}

.home-reference-sequence {
  width: min(1280px, calc(100vw - 48px));
  margin: 0 auto;
  display: grid;
  gap: clamp(28px, 5vw, 64px);
}

.home-reference-card {
  display: grid;
  gap: 18px;
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: clamp(28px, 5vw, 54px);
}

.home-reference-card img {
  width: 100%;
  height: auto;
  border: 1px solid color-mix(in oklch, var(--border) 74%, transparent);
  background: var(--surface);
  object-fit: contain;
}

.home-reference-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.36fr) minmax(0, 1fr) auto;
  gap: clamp(18px, 4vw, 46px);
  align-items: baseline;
}

.home-reference-copy h1,
.home-reference-copy h2 {
  max-width: 16ch;
  font-size: clamp(32px, 4.5vw, 62px);
}

.home-reference-copy span,
.home-reference-copy a,
.home-about-text span,
.home-faq-block span {
  justify-self: end;
  color: var(--fg);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  text-decoration: none;
}

.home-services-block {
  gap: clamp(24px, 4vw, 42px);
}

.home-consultation-heading {
  display: grid;
  justify-items: center;
  gap: clamp(22px, 4vw, 40px);
  padding: clamp(18px, 3vw, 32px) 0 clamp(8px, 2vw, 18px);
  text-align: center;
}

.home-consultation-heading h2 {
  max-width: none;
  margin: 0;
  color: color-mix(in oklch, var(--fg) 76%, var(--muted));
  font-family: var(--font-body);
  font-size: clamp(32px, 4.4vw, 68px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.home-consultation-heading > span {
  width: min(420px, 38vw);
  height: 9px;
  background: var(--sage);
}

.home-appointment-block {
  display: grid;
  justify-items: center;
  gap: clamp(14px, 2.2vw, 22px);
  margin: clamp(18px, 3vw, 28px) 0 clamp(4px, 2vw, 16px);
  padding: clamp(38px, 5.4vw, 62px) clamp(22px, 5vw, 72px);
  background: color-mix(in oklch, var(--soft-blue) 72%, var(--surface));
  text-align: center;
}

.home-appointment-block h2 {
  max-width: none;
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(34px, 4.2vw, 58px);
  font-weight: 590;
  line-height: 1;
  letter-spacing: -0.02em;
}

.home-appointment-block p {
  max-width: 64ch;
  margin: 0;
  color: color-mix(in oklch, var(--fg) 82%, var(--muted));
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.62;
}

.home-appointment-block a {
  min-width: 190px;
  padding: 14px 24px;
  color: var(--surface);
  background: color-mix(in oklch, var(--fg) 46%, var(--aqua));
  border: 1px solid color-mix(in oklch, var(--surface) 78%, transparent);
  text-decoration: none;
  font-weight: 550;
  letter-spacing: 0.02em;
}

.home-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.home-service-grid a {
  min-height: 430px;
  display: grid;
  align-content: space-between;
  padding: clamp(22px, 3vw, 38px);
  color: white;
  text-decoration: none;
}

.home-service-grid a:nth-child(1) {
  background: color-mix(in oklch, var(--accent) 76%, var(--clay));
}

.home-service-grid a:nth-child(2) {
  background: color-mix(in oklch, var(--sage) 74%, var(--aqua));
}

.home-service-grid a:nth-child(3) {
  background: color-mix(in oklch, var(--aqua) 62%, var(--sage));
}

.home-service-grid h2 {
  font-size: clamp(30px, 3.2vw, 52px);
  max-width: 9ch;
}

.home-service-grid p {
  margin: 30px 0 0;
  color: color-mix(in oklch, white 84%, transparent);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.55;
}

.home-service-grid span {
  width: max-content;
  color: white;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
}

.home-about-block {
  grid-template-columns: minmax(0, 0.98fr) minmax(260px, 0.46fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: stretch;
  background: color-mix(in oklch, var(--surface) 84%, var(--bg));
  padding: clamp(28px, 5vw, 64px);
}

.home-about-text {
  display: grid;
  gap: 17px;
}

.home-about-text .quote-mark {
  margin: 0;
  color: color-mix(in oklch, var(--accent) 72%, var(--clay));
  font-family: var(--font-display);
  font-size: clamp(86px, 12vw, 160px);
  line-height: 0.55;
}

.home-about-text p:not(.eyebrow):not(.quote-mark) {
  margin: 0;
  max-width: 72ch;
  color: var(--muted);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.72;
}

.home-signoff {
  color: var(--fg) !important;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 34px) !important;
  line-height: 1.18 !important;
}

.home-about-link,
.home-faq-block span {
  justify-self: start;
  color: var(--fg);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  text-decoration: none;
}

.home-about-image,
.home-portrait-slot {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  isolation: isolate;
}

.home-about-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.03);
  transform: scale(1.01);
}

.home-portrait-slot {
  min-height: 520px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(180deg, color-mix(in oklch, var(--clay) 28%, var(--surface)), color-mix(in oklch, var(--soft-blue) 36%, var(--surface)));
}

.home-portrait-slot div {
  width: min(72%, 260px);
  aspect-ratio: 3 / 4;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  border: 1px dashed color-mix(in oklch, var(--fg) 34%, transparent);
  color: color-mix(in oklch, var(--fg) 66%, var(--muted));
  text-align: center;
}

.home-portrait-slot span {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1;
}

.home-portrait-slot small {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.paper-bird {
  position: absolute;
  z-index: 2;
  width: clamp(18px, 3.2vw, 34px);
  aspect-ratio: 1.45 / 1;
  opacity: 0.9;
  transform-origin: center;
  filter: drop-shadow(0 4px 8px rgba(20, 28, 30, 0.18));
  pointer-events: none;
}

.paper-bird::before,
.paper-bird::after {
  content: "";
  position: absolute;
  inset: 0;
  background: color-mix(in oklch, var(--surface) 92%, var(--soft-blue));
  border: 1px solid color-mix(in oklch, var(--fg) 28%, transparent);
}

.paper-bird::before {
  clip-path: polygon(0 52%, 52% 4%, 100% 52%, 51% 38%);
}

.paper-bird::after {
  clip-path: polygon(0 54%, 51% 40%, 100% 54%, 52% 96%);
  background: color-mix(in oklch, var(--surface) 78%, var(--soft-blue));
  opacity: 0.78;
}

.bird-1 {
  top: 13%;
  left: 12%;
  animation: paper-flight-a 8.8s ease-in-out infinite;
}

.bird-2 {
  top: 17%;
  left: 38%;
  width: clamp(14px, 2.5vw, 26px);
  animation: paper-flight-b 10.5s ease-in-out infinite;
  animation-delay: -2.6s;
}

.bird-3 {
  top: 24%;
  left: 23%;
  width: clamp(20px, 3.8vw, 42px);
  animation: paper-flight-c 11.8s ease-in-out infinite;
  animation-delay: -4.2s;
}

.bird-4 {
  top: 10%;
  left: 66%;
  width: clamp(12px, 2.1vw, 24px);
  animation: paper-flight-b 9.4s ease-in-out infinite reverse;
  animation-delay: -1.4s;
  opacity: 0.76;
}

.bird-5 {
  top: 22%;
  left: 77%;
  width: clamp(10px, 1.9vw, 22px);
  animation: paper-flight-a 12.6s ease-in-out infinite;
  animation-delay: -6.1s;
  opacity: 0.68;
}

.bird-6 {
  top: 8%;
  left: 48%;
  width: clamp(12px, 2.2vw, 25px);
  animation: paper-flight-c 13.4s ease-in-out infinite reverse;
  animation-delay: -5.4s;
  opacity: 0.72;
}

.bird-7 {
  top: 31%;
  left: 9%;
  width: clamp(13px, 2.5vw, 28px);
  animation: paper-flight-d 9.8s ease-in-out infinite;
  animation-delay: -3.1s;
  opacity: 0.78;
}

.bird-8 {
  top: 18%;
  left: 54%;
  width: clamp(16px, 3vw, 34px);
  animation: paper-flight-e 10.8s ease-in-out infinite;
  animation-delay: -7.2s;
}

.bird-9 {
  top: 34%;
  left: 61%;
  width: clamp(12px, 2.4vw, 27px);
  animation: paper-flight-d 12.2s ease-in-out infinite reverse;
  animation-delay: -1.8s;
  opacity: 0.7;
}

.bird-10 {
  top: 12%;
  left: 84%;
  width: clamp(10px, 2vw, 22px);
  animation: paper-flight-e 14s ease-in-out infinite;
  animation-delay: -4.7s;
  opacity: 0.66;
}

.bird-11 {
  top: 27%;
  left: 88%;
  width: clamp(14px, 2.6vw, 30px);
  animation: paper-flight-a 11.4s ease-in-out infinite reverse;
  animation-delay: -8.3s;
  opacity: 0.74;
}

.bird-12 {
  top: 6%;
  left: 31%;
  width: clamp(10px, 2vw, 22px);
  animation: paper-flight-d 15s ease-in-out infinite;
  animation-delay: -6.4s;
  opacity: 0.62;
}

@keyframes hero-photo-drift {
  0% { transform: scale(1.01) translate3d(-0.4%, 0, 0); }
  45% { transform: scale(1.055) translate3d(1.1%, -0.8%, 0); }
  100% { transform: scale(1.035) translate3d(-0.2%, 0.8%, 0); }
}

@keyframes paper-flight-a {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-8deg) scale(1); }
  28% { transform: translate3d(28px, -34px, 0) rotate(10deg) scale(1.08); }
  62% { transform: translate3d(52px, -14px, 0) rotate(-5deg) scale(0.96); }
}

@keyframes paper-flight-b {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(12deg) scale(0.96); }
  34% { transform: translate3d(-34px, -28px, 0) rotate(-11deg) scale(1.06); }
  70% { transform: translate3d(18px, -48px, 0) rotate(7deg) scale(1); }
}

@keyframes paper-flight-c {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-2deg) scale(1.02); }
  36% { transform: translate3d(36px, -52px, 0) rotate(14deg) scale(1.08); }
  72% { transform: translate3d(68px, -22px, 0) rotate(-8deg) scale(0.96); }
}

@keyframes paper-flight-d {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-14deg) scale(0.96); }
  30% { transform: translate3d(42px, -46px, 0) rotate(12deg) scale(1.08); }
  68% { transform: translate3d(84px, -72px, 0) rotate(-3deg) scale(1); }
}

@keyframes paper-flight-e {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(7deg) scale(1); }
  38% { transform: translate3d(-48px, -36px, 0) rotate(-13deg) scale(1.08); }
  74% { transform: translate3d(-16px, -78px, 0) rotate(9deg) scale(0.94); }
}

@media (prefers-reduced-motion: reduce) {
  .home-bird-hero img,
  .paper-bird {
    animation: none;
  }
}

.home-approaches-block {
  gap: clamp(24px, 4vw, 42px);
}

.home-approaches-block .home-reference-copy {
  grid-template-columns: max-content minmax(0, 1fr) auto;
}

.home-approaches-block .home-reference-copy h2 {
  max-width: none;
  white-space: nowrap;
}

.approach-panel-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.approach-panel-grid a {
  min-height: 460px;
  display: grid;
  align-content: end;
  gap: 16px;
  padding: clamp(24px, 3.5vw, 44px);
  color: white;
  text-decoration: none;
  background:
    linear-gradient(180deg, transparent 0%, color-mix(in oklch, var(--fg) 72%, transparent) 100%),
    color-mix(in oklch, var(--clay) 70%, var(--surface));
}

.approach-panel-grid a:nth-child(2) {
  background:
    linear-gradient(180deg, transparent 0%, color-mix(in oklch, var(--fg) 72%, transparent) 100%),
    color-mix(in oklch, var(--soft-blue) 78%, var(--surface));
}

.approach-panel-grid a:nth-child(3) {
  background:
    linear-gradient(180deg, transparent 0%, color-mix(in oklch, var(--fg) 72%, transparent) 100%),
    color-mix(in oklch, var(--accent) 34%, var(--surface));
}

.approach-panel-grid a:nth-child(4) {
  background:
    linear-gradient(180deg, transparent 0%, color-mix(in oklch, var(--fg) 72%, transparent) 100%),
    color-mix(in oklch, var(--sage) 64%, var(--surface));
}

.approach-panel-grid h3 {
  max-width: 13ch;
}

.approach-panel-grid p {
  margin: 0;
  color: color-mix(in oklch, white 84%, transparent);
  font-size: clamp(16px, 1.4vw, 20px);
}

.home-faq-block {
  width: min(940px, 100%);
  min-height: auto;
  justify-self: center;
  place-items: center;
  text-align: center;
  background: color-mix(in oklch, var(--sage) 44%, var(--soft-blue));
  padding: clamp(28px, 5vw, 56px);
}

.home-faq-block > div {
  display: grid;
  justify-items: center;
  gap: 16px;
}

.home-faq-block h2 {
  max-width: 18ch;
  font-size: clamp(30px, 4vw, 52px);
}

.home-faq-block p:not(.eyebrow) {
  max-width: 58ch;
  margin: 0;
  color: color-mix(in oklch, var(--fg) 72%, var(--muted));
}

.eyebrow {
  color: var(--muted);
  letter-spacing: 0.14em;
  margin-bottom: 22px;
}

h1 {
  max-width: 12ch;
  font-size: clamp(58px, 8vw, 118px);
  line-height: 0.9;
  letter-spacing: -0.035em;
}

h2 {
  font-size: clamp(42px, 5vw, 76px);
  line-height: 0.96;
  letter-spacing: -0.03em;
}

h3 {
  font-size: clamp(25px, 2.6vw, 42px);
  letter-spacing: -0.025em;
}

.lead {
  max-width: 46ch;
  font-size: clamp(18px, 1.55vw, 24px);
  color: color-mix(in oklch, var(--fg) 70%, var(--muted));
}

.portrait-card,
.panel,
.card,
.article-card,
.faq-item {
  border-radius: var(--radius);
  box-shadow: none;
}

.portrait-card {
  padding: 18px;
  border-color: color-mix(in oklch, var(--border) 70%, transparent);
  background: color-mix(in oklch, var(--surface) 72%, transparent);
}

.therapy-photo {
  border-radius: 4px;
  min-height: 420px;
}

.therapy-photo img {
  min-height: 420px;
  object-position: 50% 48%;
  filter: saturate(0.78) contrast(1.03);
}

.note {
  border-top-color: color-mix(in oklch, var(--border) 90%, transparent);
}

.band {
  padding: clamp(84px, 10vw, 150px) 0;
}

.band.tint,
.band.clay {
  background: color-mix(in oklch, var(--surface) 72%, var(--bg));
}

.section-header {
  margin-bottom: clamp(42px, 6vw, 76px);
}

.card {
  min-height: 300px;
  border-color: color-mix(in oklch, var(--border) 78%, transparent);
  background: color-mix(in oklch, var(--surface) 86%, var(--bg));
  padding: clamp(24px, 3vw, 42px);
}

.speciality {
  min-height: 430px;
  background: var(--surface) !important;
  border: 1px solid var(--border);
}

.icon-circle { display: none; }

.card-link {
  color: var(--fg);
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.1em;
}

.quote {
  font-size: clamp(38px, 5vw, 74px);
  max-width: 11ch;
  color: var(--fg);
}

.screen-list {
  margin-top: 0;
  margin-bottom: 120px;
}

.screen-card {
  border-width: 0 0 1px;
  border-radius: 0;
  background: transparent;
}

.screen-card h3 {
  font-size: clamp(30px, 4vw, 54px);
}

.editorial-kicker {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  font-size: 12px;
}

.editorial-rule {
  width: var(--wrap);
  height: 1px;
  margin: 0 auto;
  background: var(--border);
}

.magazine-lede {
  width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 0.55fr);
  gap: clamp(38px, 7vw, 96px);
  align-items: start;
}

.magazine-lede p {
  margin: 0;
  max-width: 68ch;
  color: var(--muted);
  font-size: clamp(18px, 1.5vw, 22px);
}

.article-feature {
  width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.72fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: stretch;
}

.article-feature .therapy-photo {
  min-height: 560px;
}

.article-feature .therapy-photo img {
  min-height: 560px;
}

.feature-copy {
  display: grid;
  align-content: center;
  gap: 24px;
}

.feature-copy blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 62px);
  line-height: 1;
  letter-spacing: -0.03em;
}

.article-card {
  min-height: 410px;
  border-radius: 0;
  padding: 0 0 28px;
  background: transparent;
  border-width: 0 0 1px;
}

.article-card time {
  margin-top: 22px;
}

.article-card h3 {
  max-width: 12ch;
}

.article-card p {
  max-width: 52ch;
}

.article-card::before {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(135deg, color-mix(in oklch, var(--soft-blue) 55%, var(--surface)), color-mix(in oklch, var(--clay) 34%, var(--surface)));
  border: 1px solid var(--border);
}

.article-card[data-article-category="ado"]::before {
  background: color-mix(in oklch, var(--soft-blue) 68%, var(--surface));
}

.article-card[data-article-category="parents"]::before {
  background: color-mix(in oklch, var(--sage) 22%, var(--surface));
}

.article-card[data-article-category="perinatalite"]::before {
  background: color-mix(in oklch, var(--clay) 32%, var(--surface));
}

.tag {
  border-radius: 0;
  background: transparent;
}

.resource-carousel {
  width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  align-items: stretch;
  gap: 0;
}

.resource-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.resource-strip::-webkit-scrollbar {
  display: none;
}

.resource-strip > * {
  flex: 0 0 clamp(260px, 31vw, 390px);
  padding: clamp(20px, 3vw, 34px);
  border-left: 1px solid var(--border);
  scroll-snap-align: start;
}

.resource-strip > :first-child { border-left: 0; }

.resource-strip p { margin: 0; color: var(--muted); }

.carousel-button {
  min-width: 48px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--fg);
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}

.carousel-button:hover {
  background: var(--fg);
  color: var(--surface);
}

.specialites-carousel {
  width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  align-items: stretch;
}

.specialites-hero {
  grid-template-columns: minmax(0, 1.34fr) minmax(320px, 0.66fr);
}

.specialites-hero h1 {
  max-width: 21ch;
  font-size: clamp(40px, 4.5vw, 66px);
  line-height: 0.94;
  text-wrap: balance;
}

.specialites-hero > div > p:not(.eyebrow):not(.lead) {
  margin-top: 18px;
  max-width: 62ch;
  color: var(--muted);
  font-size: clamp(17px, 1.28vw, 20px);
  line-height: 1.72;
}

.specialites-hero-card {
  align-self: center;
  justify-self: end;
  max-width: 520px;
}

.specialites-hero-card .quote {
  max-width: 13ch;
  font-size: clamp(34px, 3.7vw, 56px);
  line-height: 1.05;
}

.specialites-hero-card p:not(.quote) {
  font-size: clamp(14px, 1.02vw, 17px);
  line-height: 1.62;
}

.specialites-section-title {
  align-items: end;
}

.specialites-section-title h2,
.specialites-choice h2 {
  max-width: 20ch;
  font-size: clamp(38px, 4.35vw, 62px);
  line-height: 0.96;
  text-wrap: balance;
}

.specialites-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.specialites-track::-webkit-scrollbar {
  display: none;
}

.specialites-card {
  flex: 0 0 min(84vw, 740px);
  min-height: 680px;
  border: 0;
  border-right: 1px solid var(--border);
  scroll-snap-align: start;
  align-content: start;
  gap: 16px;
}

.specialites-card:first-child {
  border-left: 1px solid var(--border);
}

.specialites-card h3 {
  max-width: 27ch;
  font-size: clamp(27px, 2.2vw, 36px);
  line-height: 1.04;
  text-wrap: balance;
}

.approach-kicker {
  margin: 0;
  color: color-mix(in oklch, var(--sage) 78%, var(--fg));
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.specialites-card p {
  font-size: clamp(15px, 1.08vw, 17px);
  line-height: 1.62;
}

.specialites-hero h1 span,
.specialites-section-title h2 span,
.specialites-choice h2 span,
.specialites-card h3 span {
  display: block;
}

.specialites-card .approach-kicker {
  margin: 0;
  color: color-mix(in oklch, var(--sage) 78%, var(--fg));
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.approach-accordion {
  display: grid;
  gap: 8px;
  margin-top: 4px;
}

.approach-accordion details {
  border-top: 1px solid var(--border);
  padding-top: 10px;
}

.approach-accordion summary {
  cursor: pointer;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.25;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.approach-accordion details p {
  margin-top: 10px;
  color: var(--muted);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.58;
}

.specialites-choice .panel p + p {
  margin-top: 16px;
}

.approach-accordion ul {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.approach-accordion li {
  margin: 6px 0;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.52;
}

.mutuelle-note {
  position: relative;
  max-width: min(900px, 100%);
  margin: 18px auto 0;
  padding-top: 20px;
  border-top: 0;
  color: color-mix(in oklch, var(--fg) 72%, var(--muted));
  font-size: clamp(14px, 1.05vw, 16px);
  font-style: italic;
  line-height: 1.42;
  text-align: center;
  white-space: normal;
}

.mutuelle-note::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 72px;
  height: 1px;
  background: var(--border);
  transform: translateX(-50%);
}

.faq-question-panel .faq-submit {
  background: transparent;
  color: var(--fg);
  border-color: var(--fg);
}

.faq-question-panel .faq-submit:hover {
  background: var(--fg);
  color: var(--surface);
}

@media (max-width: 980px) {
  .hero,
  .magazine-lede,
  .article-feature,
  .bio-profile { grid-template-columns: 1fr; }
  .bio-profile {
    padding-top: 42px;
  }
  .bio-portrait-frame {
    width: min(520px, 100%);
    min-height: 560px;
    margin: 0 auto;
  }
  .bio-profile-copy h1,
  .bio-profile-copy .eyebrow {
    text-align: center;
  }
  .bio-reference-grid {
    grid-template-columns: 1fr;
  }
  .bio-dotted-card + .bio-dotted-card {
    border-left: 0;
    border-top: 3px dotted color-mix(in oklch, var(--sage) 42%, transparent);
  }
  .bio-dotted-cta {
    flex-direction: column;
    align-items: stretch;
  }
  .bio-dotted-cta a {
    width: min(280px, 100%);
    margin: 0 auto;
  }
  .bio-path {
    width: min(100% - 32px, 1500px);
  }
  .home-classic { grid-template-columns: 1fr; }
  .header-contact {
    min-height: auto;
    padding: 12px 0 0;
    justify-content: flex-start;
    flex-wrap: wrap;
    font-size: 13px;
  }
  .doctolib-link {
    width: 100%;
  }
  .resource-carousel {
    grid-template-columns: 42px minmax(0, 1fr) 42px;
  }
  .resource-strip > * {
    flex-basis: min(78vw, 360px);
  }
  .faq-section {
    grid-template-columns: 1fr;
  }
  .faq-section-title {
    position: static;
  }
  .faq-section-title h3 {
    max-width: none;
  }
  .home-reference-copy {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .home-bird-hero {
    width: 100%;
    min-height: max(520px, calc(100svh - 132px));
    margin-bottom: 46px;
  }
  .home-bird-hero img {
    object-position: 52% 30%;
  }
  .home-hero-copy {
    bottom: clamp(24px, 5vw, 46px);
    left: clamp(18px, 4vw, 42px);
    width: min(860px, calc(100vw - 36px));
  }
  .home-hero-copy h1 {
    font-size: clamp(58px, 11vw, 112px);
  }
  .home-hero-copy p {
    font-size: clamp(28px, 5vw, 46px);
  }
  .home-consultation-heading h2 {
    max-width: 18ch;
    white-space: normal;
    text-wrap: balance;
  }
  .home-consultation-heading > span {
    width: min(340px, 52vw);
    height: 8px;
  }
  .home-appointment-block {
    padding: 48px 24px;
  }
  .home-reference-copy span,
  .home-reference-copy a {
    justify-self: start;
  }
  .home-service-grid,
  .approach-panel-grid,
  .home-about-block {
    grid-template-columns: 1fr;
  }
  .home-portrait-slot {
    min-height: 420px;
  }
  .home-service-grid a,
  .approach-panel-grid a {
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  :root { --wrap: min(100vw - 30px, 1240px); }
  .brand { min-width: 0; }
  .brand strong { font-size: 28px; }
  .brand span small { font-size: 8px; letter-spacing: 0.11em; }
  h1 { max-width: 11ch; }
  .bio-profile {
    width: min(100vw - 30px, 1240px);
    gap: 28px;
    padding-bottom: 54px;
  }
  .bio-portrait-frame {
    min-height: 420px;
  }
  .bio-profile-copy h1 {
    max-width: none;
    font-size: clamp(36px, 12vw, 58px);
  }
  .bio-rule {
    margin: 24px auto;
    width: 110px;
  }
  .bio-intro {
    font-size: 14px;
    line-height: 1.65;
  }
  .bio-reference-grid {
    margin-top: 36px;
  }
  .bio-dotted-card {
    min-height: auto;
    padding: 28px 22px;
  }
  .bio-dotted-card h2,
  .bio-path h2,
  .bio-path-stack h3 {
    font-size: clamp(25px, 8vw, 38px);
  }
  .bio-dotted-card h2 {
    font-size: clamp(13px, 5.6vw, 23px);
    white-space: nowrap;
  }
  .bio-path h2,
  .bio-path-stack h3 {
    font-size: clamp(14px, 5.6vw, 24px);
  }
  .bio-path > h2 {
    font-size: clamp(17px, 5.6vw, 27px);
  }
  .bio-dotted-card p,
  .bio-check-list {
    font-size: 11px;
    line-height: 1.65;
  }
  .bio-path-stack p,
  .bio-path-stack ul {
    font-size: 12px;
    line-height: 1.65;
  }
  .bio-path {
    width: min(100% - 24px, 1500px);
    padding: 44px 22px;
    margin-bottom: 54px;
  }
  .bio-path > h2 {
    max-width: 12ch;
    margin-bottom: 34px;
  }
  .home-bird-hero {
    width: 100%;
    min-height: max(430px, calc(100svh - 150px));
  }
  .home-bird-hero img {
    object-position: 62% 28%;
  }
  .home-bird-hero::after {
    background:
      linear-gradient(180deg, rgba(255, 250, 244, 0.08), rgba(255, 250, 244, 0.18)),
      linear-gradient(90deg, rgba(22, 26, 24, 0.42), rgba(22, 26, 24, 0.14) 62%, rgba(22, 26, 24, 0.02));
  }
  .home-hero-copy {
    bottom: 18px;
    left: 14px;
    width: calc(100vw - 28px);
  }
  .home-hero-copy h1 {
    font-size: clamp(48px, 15vw, 78px);
    letter-spacing: -0.03em;
    margin-bottom: 16px;
  }
  .home-hero-copy p {
    font-size: clamp(20px, 6.2vw, 28px);
    max-width: none;
  }
  .paper-bird {
    width: clamp(14px, 6vw, 28px);
  }
  .home-consultation-heading {
    gap: 18px;
    padding-top: 8px;
  }
  .home-consultation-heading h2 {
    max-width: 15ch;
    font-size: clamp(28px, 9vw, 42px);
  }
  .home-consultation-heading > span {
    width: 180px;
    height: 7px;
  }
  .home-appointment-block {
    gap: 18px;
    padding: 42px 18px;
  }
  .home-appointment-block h2 {
    font-size: clamp(36px, 11vw, 52px);
  }
  .home-appointment-block p {
    font-size: 17px;
    line-height: 1.62;
  }
  .home-appointment-block a {
    width: 100%;
    max-width: 260px;
  }
  .home-about-block {
    padding: 24px;
  }
  .home-about-text p:not(.eyebrow):not(.quote-mark) {
    font-size: 16px;
    line-height: 1.68;
  }
  .home-portrait-slot {
    min-height: 340px;
  }
  .home-classic h1,
  .faq-intro h1 {
    max-width: 12ch;
  }
  .faq-field-grid {
    grid-template-columns: 1fr;
  }
  .therapy-photo,
  .therapy-photo img { min-height: 320px; }
}

/* Page Consultations — accompagnement en pratique */
.practice-layout {
  width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 0.4fr) minmax(0, 1.6fr);
  gap: clamp(34px, 4.6vw, 70px);
  align-items: stretch;
}

.practice-heading {
  position: sticky;
  top: 138px;
  align-self: stretch;
  display: grid;
  place-content: center;
  padding-top: 0;
}

.practice-heading h2 {
  max-width: 100%;
  display: grid;
  gap: 4px;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 0.96;
  letter-spacing: 0;
  white-space: normal;
}

.practice-heading h2 span {
  display: block;
  white-space: nowrap;
}

.practice-panel {
  display: grid;
  gap: clamp(28px, 4vw, 48px);
  padding: clamp(34px, 5vw, 60px);
}

.practice-lead,
.practice-step p {
  color: color-mix(in oklch, var(--fg) 68%, var(--muted));
  font-size: clamp(16px, 1.18vw, 20px);
  line-height: 1.72;
}

.practice-steps {
  display: grid;
  gap: 30px;
}

.practice-step {
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.practice-step h3 {
  margin-bottom: 14px;
  font-size: clamp(25px, 2.2vw, 36px);
  line-height: 1.05;
}

.practice-step p + p {
  margin-top: 14px;
}

@media (max-width: 1180px) {
  .practice-layout {
    grid-template-columns: 1fr;
  }

  .practice-heading {
    position: static;
    padding-top: 0;
  }

  .practice-heading h2 {
    white-space: normal;
  }
}

/* Page Bilan WISC-V — final cascade guards */
.bilan-page h1 {
  max-width: 14ch;
  letter-spacing: 0;
}

.bilan-page .bilan-hero h1 {
  max-width: 16ch;
  font-size: clamp(38px, 4.2vw, 62px);
  line-height: 1;
}

.bilan-page .bilan-hero-panel .quote {
  font-size: clamp(34px, 3vw, 42px);
  line-height: 1.04;
}

.bilan-page [data-od-id="wisc-motifs"] .bilan-split h2,
.bilan-page [data-od-id="wisc-domaines"] .section-header h2 {
  font-size: clamp(38px, 4vw, 60px);
  line-height: 1;
  letter-spacing: 0;
}

.wisc-domains-title h2 span {
  display: block;
}

.bilan-page h2,
.bilan-page h3 {
  letter-spacing: 0;
}

.bilan-page .lead {
  max-width: 58ch;
}

.bilan-page .bilan-reperes-grid h3 {
  margin-bottom: 16px;
  font-size: clamp(25px, 2.35vw, 36px);
  line-height: 1.02;
}

.bilan-page .bilan-card-subtitle {
  margin: 0 0 18px;
  color: color-mix(in oklch, var(--accent) 70%, var(--fg));
  font-family: var(--font-display);
  font-size: clamp(20px, 1.7vw, 25px);
  font-weight: 590;
  line-height: 1.08;
}

.bilan-page .bilan-card-list li {
  color: color-mix(in oklch, var(--fg) 68%, var(--muted));
  font-size: clamp(14px, 1.05vw, 17px);
  line-height: 1.58;
}

.bilan-page .bilan-hero-panel {
  background: color-mix(in oklch, var(--surface) 88%, var(--soft-blue));
}

.bilan-page .bilan-warning {
  background: color-mix(in oklch, var(--blush) 54%, var(--surface));
}

.bilan-page .bilan-child-phrase {
  background: color-mix(in oklch, var(--surface) 80%, var(--clay));
}

.bilan-page [data-od-id="wisc-preparation"] .bilan-split {
  grid-template-columns: minmax(0, 0.76fr) minmax(440px, 0.76fr);
  align-items: stretch;
}

.bilan-page .bilan-child-phrase .quote {
  font-family: var(--font-display);
  width: 100%;
  max-width: none;
  font-size: clamp(20px, 1.85vw, 30px);
  line-height: 1.36;
  letter-spacing: 0;
}

.bilan-page .bilan-child-phrase {
  min-height: 100%;
  display: grid;
  align-content: center;
  gap: clamp(26px, 4vw, 42px);
  padding: clamp(42px, 6vw, 70px);
}

@media (max-width: 980px) {
.bilan-page [data-od-id="wisc-preparation"] .bilan-split {
    grid-template-columns: 1fr;
  }
}

/* Consultations — section accompagnement recomposée */
.practice-redesign {
  width: var(--wrap);
  margin: 0 auto;
  display: grid;
  gap: clamp(28px, 4vw, 52px);
}

.practice-intro {
  max-width: 820px;
}

.practice-intro h2 {
  margin: 8px 0 18px;
  max-width: 18ch;
  font-size: clamp(34px, 4.1vw, 58px);
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.practice-intro p:not(.eyebrow) {
  max-width: 65ch;
  color: color-mix(in oklch, var(--fg) 72%, var(--muted));
  font-size: clamp(16px, 1.18vw, 19px);
  line-height: 1.7;
}

.practice-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.practice-flow-card {
  min-height: 330px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--border);
  background: var(--surface);
}

.practice-flow-number {
  width: fit-content;
  color: color-mix(in oklch, var(--accent) 62%, var(--muted));
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
}

.practice-flow-card h3,
.practice-tools-copy h3 {
  max-width: 18ch;
  color: var(--fg);
  font-size: clamp(27px, 2.4vw, 39px);
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}

.practice-flow-card p,
.practice-tools-copy p:not(.eyebrow):not(.practice-highlight) {
  max-width: 58ch;
  color: color-mix(in oklch, var(--fg) 70%, var(--muted));
  font-size: clamp(15px, 1.08vw, 18px);
  line-height: 1.7;
}

.practice-flow-card p + p,
.practice-tools-copy p + p {
  margin-top: 2px;
}

.practice-tools-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(330px, 1.05fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
  padding: clamp(28px, 4.8vw, 58px);
  border: 1px solid color-mix(in oklch, var(--sage) 40%, var(--border));
  background: color-mix(in oklch, var(--soft-blue) 26%, var(--surface));
}

.mediation-frame {
  width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(34px, 5.2vw, 76px);
  align-items: center;
  padding: clamp(44px, 6.4vw, 78px) clamp(34px, 5vw, 72px);
  border: 1px solid color-mix(in oklch, var(--sage) 48%, var(--border));
  background: color-mix(in oklch, var(--surface) 78%, var(--sage));
}

.mediation-frame .practice-tools-copy h3 {
  max-width: 12ch;
  margin-bottom: 24px;
  font-size: clamp(40px, 4.8vw, 68px);
  line-height: 0.96;
}

.mediation-frame .practice-tools-copy p:not(.eyebrow):not(.practice-highlight) {
  max-width: 54ch;
  font-size: clamp(17px, 1.2vw, 20px);
  line-height: 1.78;
}

.mediation-frame .practice-tools-copy p + p {
  margin-top: 24px;
}

.mediation-frame .practice-highlight {
  max-width: 560px;
  margin-top: 30px;
  padding: 22px 28px;
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 1.08;
}

.mediation-frame .practice-tool-grid {
  gap: 16px;
}

.mediation-frame .practice-tool {
  min-height: 150px;
  background: color-mix(in oklch, var(--surface) 90%, var(--bg));
}

.mediation-frame .practice-tool span {
  width: 58px;
  height: 58px;
  font-size: 32px;
  color: color-mix(in oklch, var(--accent) 64%, var(--fg));
  border-color: color-mix(in oklch, var(--sage) 48%, var(--border));
}

.mediation-frame .practice-tool strong {
  font-size: clamp(15px, 1.12vw, 18px);
}

.practice-highlight {
  margin-top: 18px;
  padding: 16px 18px;
  border-left: 2px solid color-mix(in oklch, var(--accent) 72%, var(--clay));
  background: color-mix(in oklch, var(--surface) 78%, var(--clay));
  color: var(--fg);
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.12;
}

.practice-tool-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.practice-tool {
  min-height: 132px;
  display: grid;
  place-items: center;
  gap: 10px;
  padding: 18px 12px;
  border: 1px solid color-mix(in oklch, var(--sage) 34%, var(--border));
  background: color-mix(in oklch, var(--surface) 84%, var(--bg));
  text-align: center;
}

.practice-tool span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid color-mix(in oklch, var(--accent) 28%, var(--border));
  border-radius: 50%;
  color: color-mix(in oklch, var(--accent) 78%, var(--fg));
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
}

.practice-tool strong {
  color: var(--fg);
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.2;
  font-weight: 560;
}

/* Mes approches — lisibilité du carrousel et titres homogènes */
.specialites-track {
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--border);
}

.specialites-card {
  flex: 0 0 min(100%, 760px);
  border: 1px solid var(--border);
  min-height: 700px;
}

.specialites-card:first-child {
  border-left: 1px solid var(--border);
}

.specialites-card h3 {
  min-height: 76px;
  max-width: 23ch;
  font-size: clamp(26px, 2.05vw, 34px);
}

.specialites-hero h1,
.specialites-section-title h2,
.specialites-choice h2 {
  font-size: clamp(38px, 4vw, 58px);
  line-height: 0.98;
}

.specialites-complementary .panel {
  max-width: 760px;
}

.specialites-complementary h2 {
  max-width: 14ch;
  font-size: clamp(36px, 3.8vw, 54px);
}

/* Ajustements finaux — accueil, approches et médiations */
.specialites-hero {
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.9fr);
}

.specialites-hero h1,
.specialites-section-title h2,
.specialites-choice h2 {
  font-size: clamp(34px, 3.4vw, 50px);
  line-height: 1;
}

.specialites-hero-card {
  width: min(100%, 680px);
  max-width: none;
  min-height: clamp(420px, 58vw, 620px);
  justify-self: center;
  display: grid;
  align-content: center;
}

.specialites-hero-card .quote {
  max-width: 14ch;
  font-size: clamp(32px, 3.3vw, 50px);
}

.home-approaches-block {
  padding: clamp(42px, 6vw, 76px) clamp(24px, 4vw, 42px);
  border: 1px solid var(--border);
  background: color-mix(in oklch, var(--surface) 82%, var(--soft-blue));
}

.home-approaches-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.58fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
}

.home-approaches-heading h2 {
  max-width: 19ch;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1;
}

.home-approaches-heading > p {
  margin: 0;
  max-width: 48ch;
  color: color-mix(in oklch, var(--fg) 72%, var(--muted));
  font-size: clamp(16px, 1.12vw, 18px);
  line-height: 1.65;
}

.home-approaches-block .approach-panel-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-approach-card {
  min-height: 320px;
  max-height: 380px;
  display: grid;
  align-content: start;
  gap: 13px;
  padding: clamp(24px, 3vw, 34px);
  color: var(--fg);
  border: 1px solid color-mix(in oklch, var(--border) 88%, transparent);
}

.home-approach-tcc {
  background: color-mix(in oklch, var(--soft-blue) 54%, var(--surface));
}

.home-approach-schema {
  background: color-mix(in oklch, var(--blush) 72%, var(--surface));
}

.home-approach-liicv {
  background: color-mix(in oklch, var(--sage) 30%, var(--surface));
}

.home-approach-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid color-mix(in oklch, var(--sage) 42%, var(--border));
  border-radius: 50%;
  color: color-mix(in oklch, var(--accent) 68%, var(--fg));
}

.home-approach-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-approach-card h3 {
  max-width: 17ch;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.06;
}

.home-approach-card p:not(.approach-kicker) {
  margin: 0;
  color: color-mix(in oklch, var(--fg) 74%, var(--muted));
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.55;
}

.home-approaches-cta {
  justify-self: center;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid var(--fg);
  color: var(--fg);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-approaches-cta:hover {
  background: var(--fg);
  color: var(--surface);
}

.mediation-frame {
  grid-template-columns: minmax(0, 1.12fr) minmax(330px, 0.88fr);
  border-color: var(--border);
  background: color-mix(in oklch, var(--surface) 88%, var(--soft-blue));
}

.mediation-frame .practice-tool-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-self: stretch;
}

.mediation-frame .practice-tool {
  min-height: 128px;
  border-color: var(--border);
}

.mediation-frame .practice-tools-copy p:not(.eyebrow):not(.practice-highlight) {
  max-width: 62ch;
}

.approach-process-list {
  display: grid;
  gap: 16px;
}

.approach-process-step {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  column-gap: 18px;
  row-gap: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.approach-process-step span {
  grid-row: span 2;
  color: color-mix(in oklch, var(--accent) 70%, var(--muted));
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
}

.approach-process-step h3,
.approach-example h3 {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.2;
  letter-spacing: 0;
}

.approach-process-step p,
.approach-example p {
  margin: 0;
  color: color-mix(in oklch, var(--fg) 72%, var(--muted));
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.62;
}

.approach-example {
  margin-top: 22px;
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid color-mix(in oklch, var(--border) 82%, transparent);
  background: color-mix(in oklch, var(--surface) 78%, var(--blush));
}

.approach-closing {
  margin-top: 22px;
  color: var(--fg);
  font-family: var(--font-display);
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.12;
}

/* Ajustements ciblés après retour visuel */
.practice-intro {
  max-width: none;
}

.practice-intro p:not(.eyebrow) {
  max-width: min(100%, 1180px);
}

.practice-flow-card[data-od-id="step-followup"] h3 {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(25px, 2.2vw, 36px);
}

.mediation-heading {
  grid-column: 1 / -1;
}

.mediation-heading h3 {
  max-width: none;
  margin: 0;
  font-size: clamp(38px, 4.2vw, 60px);
  line-height: 0.98;
}

.mediation-frame .practice-highlight {
  grid-column: 1 / -1;
  justify-self: center;
  max-width: 100%;
  white-space: nowrap;
  text-align: center;
  font-size: clamp(24px, 2.4vw, 38px);
}

.practice-tool span svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bilan-page .bilan-hero h1 {
  max-width: 22ch;
  font-size: clamp(34px, 3.6vw, 54px);
  line-height: 1.02;
}

.bilan-page [data-od-id="wisc-motifs"] .bilan-split h2,
.bilan-page [data-od-id="wisc-domaines"] .section-header h2,
.bilan-page [data-od-id="wisc-deroulement"] .section-header h2,
.bilan-page [data-od-id="wisc-preparation"] .bilan-split h2 {
  font-size: clamp(32px, 3.2vw, 46px);
  line-height: 1.03;
}

.bilan-page [data-od-id="wisc-deroulement"] .section-header h2 {
  max-width: none;
  white-space: nowrap;
}

.bilan-page [data-od-id="wisc-preparation"] .bilan-split h2 {
  max-width: 17ch;
  text-wrap: balance;
}

.specialites-hero-card .quote {
  max-width: 18ch;
  font-size: clamp(28px, 2.8vw, 42px);
  text-wrap: balance;
}

.home-approaches-heading {
  grid-template-columns: minmax(0, 1fr) auto;
}

.home-approaches-heading > div {
  display: grid;
  gap: 8px;
}

.home-approaches-heading > div > p:not(.eyebrow) {
  margin: 0;
  max-width: 38ch;
  color: color-mix(in oklch, var(--fg) 72%, var(--muted));
  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 1.45;
}

.home-approaches-heading > a {
  justify-self: end;
  color: var(--fg);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.home-approach-tcc {
  background: color-mix(in oklch, var(--clay) 36%, var(--surface));
}

.home-approach-schema {
  background: color-mix(in oklch, var(--sage) 34%, var(--surface));
}

.home-approach-liicv {
  background: color-mix(in oklch, var(--aqua) 38%, var(--surface));
}

.home-approach-card h3 {
  max-width: none;
  min-height: 54px;
  font-size: clamp(19px, 1.55vw, 24px);
}

.approach-complementary-layout {
  width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  gap: clamp(26px, 4vw, 58px);
  align-items: start;
}

.approach-complementary-heading h2 {
  max-width: 15ch;
  font-size: clamp(34px, 3.8vw, 54px);
  line-height: 1;
}

.approach-complementary-layout .approach-example {
  margin: 0;
}

.approach-complementary-layout .approach-process-list {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.approach-complementary-layout .approach-process-step {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  min-height: 250px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--border);
  background: var(--surface);
}

.approach-complementary-layout .approach-process-step span {
  grid-row: auto;
}

.approach-complementary-layout .approach-closing {
  grid-column: 1 / -1;
  justify-self: center;
  margin-top: 18px;
  text-align: center;
  white-space: nowrap;
  font-size: clamp(22px, 2vw, 32px);
}

/* Footer — typographie plus discrète sur toutes les pages */
.footer-detailed {
  padding: clamp(46px, 6vw, 76px) 0 clamp(22px, 3vw, 34px);
}

.footer-column h2 {
  margin-bottom: clamp(16px, 2.2vw, 28px);
  font-size: clamp(14px, 1.25vw, 19px);
}

.footer-column a,
.footer-column p {
  font-size: clamp(13px, 1.05vw, 16px);
  line-height: 1.42;
}

.footer-contact p:first-of-type {
  font-size: clamp(18px, 1.55vw, 23px);
}

.footer-actions {
  margin: clamp(42px, 6vw, 68px) auto clamp(34px, 5vw, 58px);
}

.footer-actions a,
.footer-actions svg {
  width: 26px;
  height: 26px;
}

.footer-legal {
  font-size: clamp(11px, 0.95vw, 14px);
}

@media (max-width: 980px) {
  .nav-dropdown::after {
    display: none;
  }

  .specialites-hero,
  .home-approaches-heading,
  .home-approaches-block .approach-panel-grid,
  .approach-complementary-layout,
  .approach-complementary-layout .approach-process-list {
    grid-template-columns: 1fr;
  }

  .home-approaches-heading > a {
    justify-self: start;
  }

  .specialites-hero-card {
    min-height: 0;
  }

  .approach-complementary-layout .approach-process-step {
    min-height: 0;
  }

  .practice-card-grid,
  .practice-tools-panel,
  .mediation-frame {
    grid-template-columns: 1fr;
  }

  .practice-flow-card {
    min-height: 0;
  }

  .practice-tool-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .specialites-card {
    flex-basis: min(88vw, 700px);
  }
}

@media (max-width: 640px) {
  .home-approaches-block {
    padding: 24px;
  }

  .home-approach-card {
    min-height: 0;
    max-height: none;
  }

  .practice-tool-grid {
    grid-template-columns: 1fr;
  }

  .practice-tools-panel,
  .mediation-frame,
  .practice-flow-card {
    padding: 24px;
  }

  .practice-flow-card[data-od-id="step-followup"] h3,
  .mediation-frame .practice-highlight,
  .bilan-page [data-od-id="wisc-deroulement"] .section-header h2,
  .approach-complementary-layout .approach-closing {
    white-space: normal;
  }

  .specialites-track {
    padding: 12px;
    gap: 12px;
  }
}

/* Derniers ajustements demandes */
.nav-links {
  font-size: 14.5px;
}

.consultation-tab {
  font-size: clamp(13px, 1.08vw, 15px);
}

.mediation-frame {
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  column-gap: clamp(28px, 5vw, 64px);
}

.mediation-frame .practice-highlight {
  display: inline-flex;
  justify-content: center;
  text-align: center;
  max-width: 100%;
  justify-self: center;
}

.home-appointment-block {
  gap: clamp(12px, 1.8vw, 18px);
  padding: clamp(32px, 4.6vw, 52px) clamp(26px, 5vw, 78px);
}

.home-appointment-block h2 {
  font-size: clamp(27px, 3.2vw, 44px);
  line-height: 1.04;
}

.home-appointment-block p {
  max-width: 88ch;
  font-size: clamp(14px, 1.05vw, 16.5px);
  line-height: 1.5;
  text-align: center;
}

.home-appointment-block a {
  padding: 12px 22px;
  min-width: 178px;
  font-size: 12px;
}

.home-approaches-heading > div > p:not(.eyebrow) {
  max-width: none;
  white-space: nowrap;
}

.home-approach-tcc {
  background: color-mix(in oklch, var(--clay) 54%, var(--surface));
}

.home-approach-schema {
  background: color-mix(in oklch, var(--sage) 48%, var(--surface));
}

.home-approach-liicv {
  background: color-mix(in oklch, var(--aqua) 52%, var(--surface));
}

.home-approach-card h3 {
  min-height: 0;
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.18;
}

.home-faq-block h2 {
  max-width: 25ch;
  font-size: clamp(27px, 3.35vw, 44px);
  line-height: 1.02;
}

.home-faq-block p:not(.eyebrow) {
  text-align: center;
}

.home-faq-block span {
  justify-self: center;
}

.bio-intro {
  max-width: 76ch;
}

@media (max-width: 980px) {
  .home-approaches-heading > div > p:not(.eyebrow),
  .mediation-frame .practice-highlight {
    white-space: normal;
  }
}

/* Retouches finales de proportion */
.mediation-heading h3 {
  font-size: clamp(30px, 3.3vw, 46px);
  line-height: 1.02;
}

.mediation-frame .practice-highlight {
  padding: 14px 22px;
  font-size: clamp(17px, 1.55vw, 24px);
  line-height: 1.12;
}

.bilan-page .bilan-hero {
  width: min(1180px, calc(100vw - 112px));
  grid-template-columns: minmax(0, 1.32fr) minmax(280px, 0.58fr);
  gap: clamp(28px, 4vw, 58px);
}

.bilan-page .bilan-hero h1 {
  max-width: 31ch;
  font-size: clamp(29px, 2.55vw, 39px);
  line-height: 1.04;
}

.bilan-page .bilan-hero-panel .quote {
  font-size: clamp(22px, 1.8vw, 28px);
  line-height: 1.08;
}

.bilan-page .bilan-hero-panel .quote span {
  display: block;
  white-space: nowrap;
}

.bilan-page [data-od-id="wisc-motifs"] .bilan-split h2 {
  max-width: 32ch;
  font-size: clamp(28px, 2.75vw, 38px);
  line-height: 1.02;
}

.bilan-page [data-od-id="wisc-domaines"] .section-header h2,
.bilan-page [data-od-id="wisc-deroulement"] .section-header h2,
.bilan-page [data-od-id="wisc-preparation"] .bilan-split h2 {
  font-size: clamp(29px, 2.85vw, 40px);
}

.bilan-tarif {
  grid-template-columns: minmax(240px, 0.52fr) minmax(340px, 0.58fr) minmax(380px, 0.82fr);
}

.bilan-tarif > p:not(.mutuelle-note) {
  max-width: 58ch;
  justify-self: center;
  align-self: center;
  text-align: center;
  font-size: clamp(14px, 1.04vw, 17px);
  line-height: 1.58;
}

.mutuelle-note {
  grid-column: 1 / -1;
  width: 100%;
  max-width: none;
  text-align: center;
  white-space: nowrap;
}

.bilan-final-cta h2 {
  font-size: clamp(26px, 2.55vw, 38px);
}

.bilan-final-copy p {
  max-width: 760px;
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.55;
}

@media (max-width: 980px) {
  .bilan-page .bilan-hero {
    width: var(--wrap);
  }

  .bilan-tarif {
    grid-template-columns: 1fr;
  }

  .mutuelle-note {
    white-space: normal;
  }
}

/* Mes approches — corrections ciblees */
.specialites-section-title > p {
  justify-self: center;
  max-width: 62ch;
  text-align: center;
}

.approach-complementary-heading h2 {
  max-width: none;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.02;
}

.approach-complementary-heading h2 span {
  display: block;
  white-space: nowrap;
}

.approach-complementary-layout .approach-closing {
  grid-column: 1 / -1;
  width: fit-content;
  max-width: 100%;
  justify-self: center;
  margin: clamp(30px, 4vw, 48px) auto 0;
  padding: 12px 20px 14px;
  border-top: 1px solid color-mix(in oklch, var(--accent) 42%, var(--border));
  border-bottom: 1px solid color-mix(in oklch, var(--accent) 42%, var(--border));
  background: color-mix(in oklch, var(--surface) 84%, var(--clay));
  font-size: clamp(18px, 1.55vw, 23px);
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .approach-complementary-heading h2 span {
    white-space: normal;
  }
}

/* Retouches rapides — consultations, bilan, accueil */
.consultations-for-title h2 {
  margin-bottom: clamp(18px, 2.4vw, 30px);
}

.consultations-for-note {
  margin-top: 0;
}

.practice-intro h2 {
  max-width: none;
  white-space: nowrap;
}

.bilan-page [data-od-id="wisc-motifs"] .bilan-split h2 {
  max-width: 31ch;
}

.bilan-domain-note {
  text-align: center;
}

.home-approach-card .approach-kicker {
  color: color-mix(in oklch, var(--fg) 78%, var(--accent));
  font-weight: 800;
}

@media (max-width: 640px) {
  .practice-intro h2 {
    white-space: normal;
  }
}

/* Accueil — ajustements textes et cartes consultation */
.home-hero-copy h1 {
  font-size: clamp(54px, 8vw, 108px);
  line-height: 0.84;
}

.home-hero-copy p {
  font-size: clamp(24px, 3.1vw, 42px);
  line-height: 1.05;
}

.home-consultation-heading h2 {
  font-size: clamp(25px, 3.2vw, 48px);
}

.home-service-grid a {
  min-height: 440px;
  align-content: start;
  gap: clamp(14px, 1.8vw, 22px);
}

.home-service-grid h2 {
  max-width: none;
  margin: 0;
  font-size: clamp(28px, 2.8vw, 43px);
  line-height: 1;
}

.home-service-grid h3 {
  margin: 0;
  max-width: 20ch;
  color: color-mix(in oklch, white 94%, var(--surface));
  font-family: var(--font-body);
  font-size: clamp(17px, 1.25vw, 21px);
  font-weight: 560;
  line-height: 1.3;
  letter-spacing: 0;
}

.home-service-grid p {
  margin: 0;
  max-width: 38ch;
  font-size: clamp(14px, 1vw, 17px);
  line-height: 1.52;
}

.home-service-grid span {
  margin-top: auto;
  align-self: end;
}

.home-signoff {
  width: auto !important;
  max-width: 22ch;
  font-size: clamp(18px, 1.85vw, 27px) !important;
  line-height: 1.15 !important;
}

@media (max-width: 760px) {
  .home-service-grid {
    grid-template-columns: 1fr;
  }

  .home-service-grid a,
  .home-service-grid article {
    min-height: 0;
  }
}

/* Bilan et accueil — derniers ajustements */
.bilan-page .bilan-hero {
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.82fr);
  gap: clamp(36px, 5vw, 74px);
}

.bilan-hero-copy {
  max-width: 760px;
}

.bilan-page .bilan-hero h1 {
  max-width: 22ch;
}

.bilan-page .bilan-hero-copy p:not(.eyebrow) {
  max-width: 64ch;
}

.bilan-page .bilan-hero-panel {
  width: min(100%, 540px);
  justify-self: end;
  padding: clamp(34px, 4.4vw, 58px);
}

.home-service-grid article {
  min-height: 440px;
  display: grid;
  align-content: start;
  gap: clamp(14px, 1.8vw, 22px);
  padding: clamp(22px, 3vw, 38px);
  color: white;
}

.home-service-grid article:nth-child(1) {
  background: color-mix(in oklch, var(--accent) 76%, var(--clay));
}

.home-service-grid article:nth-child(2) {
  background: color-mix(in oklch, var(--sage) 74%, var(--aqua));
}

.home-service-grid article:nth-child(3) {
  background: color-mix(in oklch, var(--aqua) 62%, var(--sage));
}

.home-service-grid article h2,
.home-service-grid article h3,
.home-service-grid article p {
  color: inherit;
}

.home-services-cta {
  justify-self: center;
  width: max-content;
  margin-top: clamp(8px, 2vw, 18px);
  color: var(--fg);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.home-approach-card .approach-kicker {
  color: color-mix(in oklch, white 96%, var(--surface));
  font-family: var(--font-mono);
  font-weight: 800;
}

@media (max-width: 980px) {
  .bilan-page .bilan-hero {
    grid-template-columns: 1fr;
  }

  .bilan-page .bilan-hero-panel {
    justify-self: stretch;
    width: 100%;
  }
}

/* Bilan — héros aligné sur la présentation de Mes approches */
.bilan-page .bilan-hero {
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.9fr);
  gap: clamp(42px, 6vw, 86px);
  align-items: center;
  min-height: clamp(620px, 72vh, 790px);
}

.bilan-page .bilan-hero-copy {
  max-width: 760px;
}

.bilan-page .bilan-hero h1 {
  max-width: 18ch;
  font-size: clamp(34px, 3.4vw, 50px);
  line-height: 1;
}

.bilan-page .bilan-hero-copy .lead {
  max-width: 56ch;
}

.bilan-page .bilan-hero-copy p:not(.eyebrow):not(.lead) {
  max-width: 62ch;
}

.bilan-page .bilan-hero-panel {
  width: min(100%, 680px);
  max-width: none;
  min-height: clamp(420px, 58vw, 620px);
  justify-self: center;
  display: grid;
  align-content: center;
  padding: clamp(44px, 6vw, 72px);
}

.bilan-page .bilan-hero-panel .quote {
  max-width: 14ch;
  font-size: clamp(32px, 3.3vw, 50px);
  line-height: 1.05;
}

.bilan-page .bilan-hero-panel p:not(.quote) {
  max-width: 34ch;
  font-size: clamp(16px, 1.1vw, 18px);
}

@media (max-width: 980px) {
  .bilan-page .bilan-hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .bilan-page .bilan-hero h1 {
    max-width: 22ch;
  }

  .bilan-page .bilan-hero-panel {
    justify-self: stretch;
    width: 100%;
    min-height: 0;
  }
}

/* Consultations — titres de sections légèrement réduits */
.consultations-for-title h2,
.practice-intro h2 {
  font-size: clamp(29px, 3.1vw, 46px);
}

/* Héros Consultations et FAQ — retouches de gabarit */
.consultations-hero-banner {
  min-height: clamp(220px, 24vw, 330px);
}

.consultations-hero-banner .bio-hero-shade {
  padding: clamp(42px, 6vw, 72px) 20px clamp(68px, 9vw, 104px);
}

.consultations-hero-banner .bio-hero-shade h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 70px);
  font-weight: 500;
  text-transform: none;
}

.faq-cover {
  grid-template-columns: 1fr;
  min-height: auto;
  padding-top: clamp(76px, 10vw, 132px);
  padding-bottom: clamp(64px, 8vw, 112px);
}

.faq-intro {
  max-width: min(860px, calc(100vw - 40px));
  margin: 0 auto;
  text-align: center;
}

.faq-intro h1 {
  font-size: clamp(72px, 10vw, 132px);
  line-height: 0.9;
}

.faq-subtitle {
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: clamp(30px, 3.7vw, 54px);
  line-height: 1.05;
  color: var(--fg);
}

.faq-intro .faq-subtitle + p {
  max-width: 68ch;
  margin: clamp(18px, 2.4vw, 30px) auto 0;
}

/* FAQ — hero plus compact */
.faq-cover {
  padding-top: clamp(46px, 6vw, 84px);
  padding-bottom: clamp(42px, 5.5vw, 78px);
}

.faq-intro h1 {
  font-size: clamp(54px, 7vw, 92px);
}

.faq-subtitle {
  font-size: clamp(24px, 2.8vw, 38px);
}

.faq-intro .faq-subtitle + p {
  max-width: 62ch;
  margin-top: clamp(14px, 1.8vw, 22px);
}

/* Dernières retouches ciblées */
.faq-cover {
  padding-top: clamp(30px, 4vw, 56px);
  padding-bottom: clamp(30px, 4vw, 54px);
}

.faq-intro h1 {
  font-size: clamp(44px, 5.4vw, 72px);
}

.faq-subtitle {
  font-size: clamp(21px, 2.3vw, 32px);
}

.practice-band {
  background: var(--bg);
}

.bilan-page .bilan-hero-panel .quote {
  font-size: clamp(27px, 2.6vw, 40px);
}

/* FAQ — réduction supplémentaire d'environ un quart */
.faq-cover {
  padding-top: clamp(22px, 3vw, 42px);
  padding-bottom: clamp(22px, 3vw, 40px);
}

.faq-intro h1 {
  font-size: clamp(33px, 4.1vw, 54px);
}

.faq-subtitle {
  font-size: clamp(16px, 1.75vw, 24px);
}

.faq-intro .faq-subtitle + p {
  margin-top: clamp(10px, 1.3vw, 16px);
}

/* FAQ — réduction supplémentaire d'environ un quart */
.faq-cover {
  padding-top: clamp(10px, 1.45vw, 20px);
  padding-bottom: clamp(10px, 1.45vw, 20px);
}

.faq-intro {
  padding: clamp(36px, 5.1vw, 69px) 0;
}

.faq-intro h1 {
  font-size: clamp(31px, 3.9vw, 51px);
}

.faq-subtitle {
  font-size: clamp(14px, 1.35vw, 18px);
}

.faq-intro .faq-subtitle + p {
  margin-top: clamp(8px, 1vw, 12px);
}

/* Blog — structure éditoriale et cartes cliquables */
.blog-hero {
  width: var(--wrap);
  margin: 0 auto;
  padding-top: clamp(44px, 5.5vw, 76px);
  padding-bottom: clamp(28px, 4vw, 52px);
  background: var(--bg);
}

.blog-hero h1 {
  max-width: 14ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 0.98;
  color: var(--fg);
}

.blog-subtitle {
  max-width: 100%;
  margin-top: clamp(8px, 1vw, 14px);
  font-family: var(--font-display);
  font-size: clamp(23px, 2.85vw, 40px);
  line-height: 1.08;
  color: var(--fg);
}

.blog-hero > p:not(.eyebrow):not(.blog-subtitle) {
  display: none;
  max-width: 58ch;
  margin-top: clamp(18px, 2.5vw, 32px);
  color: var(--muted);
  font-size: clamp(17px, 1.35vw, 22px);
  line-height: 1.62;
}

.blog-feature-band {
  padding-top: clamp(34px, 5vw, 70px);
}

.article-feature .article-read-link {
  display: inline-flex;
  width: max-content;
  margin-top: 8px;
}

.blog-article-grid {
  align-items: stretch;
}

.blog-article-grid .article-card {
  padding: 0;
  overflow: hidden;
}

.blog-article-grid .article-card::before {
  display: none;
}

.article-card-link {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto auto auto 1fr auto auto;
  gap: 16px;
  padding: clamp(18px, 2.2vw, 28px);
  color: inherit;
  text-decoration: none;
}

.article-card-link::before {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--border);
  background:
    linear-gradient(135deg, color-mix(in oklch, var(--soft-blue) 55%, var(--surface)), color-mix(in oklch, var(--clay) 34%, var(--surface)));
}

.article-card[data-article-category="ado"] .article-card-link::before {
  background: color-mix(in oklch, var(--soft-blue) 68%, var(--surface));
}

.article-card[data-article-category="parents"] .article-card-link::before {
  background: color-mix(in oklch, var(--sage) 22%, var(--surface));
}

.article-card[data-article-category="perinatalite"] .article-card-link::before {
  background: color-mix(in oklch, var(--clay) 32%, var(--surface));
}

.article-card-link:hover h3,
.article-card-link:focus-visible h3 {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.14em;
}

.article-cover {
  min-height: 138px;
  display: grid;
  align-content: space-between;
  padding: 18px;
  border: 1px solid color-mix(in oklch, var(--border) 70%, transparent);
  background:
    linear-gradient(135deg, color-mix(in oklch, var(--soft-blue) 74%, var(--surface)), color-mix(in oklch, var(--surface) 82%, var(--sage)));
}

.article-cover span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.article-cover strong {
  max-width: 9ch;
  font-family: var(--font-display);
  font-size: clamp(32px, 3vw, 44px);
  font-weight: 500;
  line-height: 0.95;
  color: var(--fg);
}

.article-card[data-article-category="ado"] .article-cover {
  background:
    linear-gradient(135deg, color-mix(in oklch, var(--sage) 48%, var(--surface)), color-mix(in oklch, var(--aqua) 34%, var(--surface)));
}

.article-card[data-article-category="parents"] .article-cover {
  background:
    linear-gradient(135deg, color-mix(in oklch, var(--clay) 58%, var(--surface)), color-mix(in oklch, var(--blush) 70%, var(--surface)));
}

.article-card[data-article-category="perinatalite"] .article-cover {
  background:
    linear-gradient(135deg, color-mix(in oklch, var(--blush) 74%, var(--surface)), color-mix(in oklch, var(--soft-blue) 46%, var(--surface)));
}

.blog-article-grid .article-card time {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.article-read-link {
  align-self: end;
  color: var(--fg);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-card-link .tag-row {
  align-self: end;
}

.faq-rubrics,
.bilan-page [data-od-id="wisc-domaines"] {
  background: var(--bg);
}

/* Informations pratiques — page compacte et fonctionnelle */
.practical-page {
  background: var(--bg);
}

.practical-hero {
  width: var(--wrap);
  min-height: clamp(420px, 38vw, 520px);
  margin: 0 auto;
  padding: clamp(58px, 7vw, 86px) 0 clamp(34px, 5vw, 58px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
  background: var(--bg);
}

.practical-hero-copy h1,
.practical-section-heading h2,
.cabinet-info h2 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--fg);
  letter-spacing: 0;
}

.practical-hero-copy h1 {
  max-width: 13ch;
  font-size: clamp(44px, 6vw, 78px);
  line-height: 0.95;
}

.practical-hero-copy p:not(.eyebrow) {
  max-width: 46ch;
  margin-top: 18px;
  color: var(--muted);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.58;
}

.quick-nav {
  border-top: 1px solid var(--border);
}

.quick-nav a {
  display: grid;
  grid-template-columns: 46px 1fr;
  column-gap: 18px;
  row-gap: 4px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  color: var(--fg);
  text-decoration: none;
}

.quick-nav span {
  grid-row: 1 / span 2;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.12em;
}

.quick-nav strong {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quick-nav small {
  color: var(--muted);
  font-size: 15px;
}

.practical-section {
  width: var(--wrap);
  margin: 0 auto;
  padding: clamp(58px, 8vw, 104px) 0;
  border-top: 1px solid var(--border);
}

.cabinet-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
}

.cabinet-photos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.cabinet-photos figure {
  min-height: clamp(180px, 20vw, 260px);
  margin: 0;
  padding: 22px;
  display: grid;
  align-content: space-between;
  border: 1px solid var(--border);
  background:
    linear-gradient(135deg, color-mix(in oklch, var(--surface) 82%, var(--soft-blue)), color-mix(in oklch, var(--surface) 78%, var(--sage)));
}

.cabinet-photos figure:nth-child(2) {
  background:
    linear-gradient(135deg, color-mix(in oklch, var(--surface) 82%, var(--clay)), color-mix(in oklch, var(--surface) 82%, var(--soft-blue)));
}

.cabinet-photos span,
.cabinet-photos figcaption {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cabinet-info h2,
.practical-section-heading h2 {
  max-width: 16ch;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
}

.cabinet-info > p:not(.eyebrow),
.practical-section-heading p:not(.eyebrow) {
  max-width: 58ch;
  margin-top: 18px;
  color: var(--muted);
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.62;
}

.practical-lines {
  margin: clamp(24px, 3vw, 36px) 0 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--border);
}

.practical-lines div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.practical-lines dt {
  color: var(--fg);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.practical-lines dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.text-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--fg);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.tariffs-section,
.contact-section {
  display: grid;
  gap: clamp(24px, 4vw, 42px);
}

.tariff-card-grid {
  display: grid;
  gap: 14px;
}

.tariff-card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 160px 170px;
  gap: 18px;
  align-items: center;
  padding: clamp(18px, 2.2vw, 28px);
  border: 1px solid var(--border);
  background: var(--surface);
}

.tariff-card h3 {
  margin: 0;
  max-width: 22ch;
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
  line-height: 1;
}

.tariff-card p,
.tariff-card strong {
  margin: 0;
  color: var(--fg);
}

.tariff-card p {
  color: var(--muted);
}

.tariff-card strong {
  justify-self: end;
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 560;
}

.tariff-details {
  display: grid;
  grid-template-columns: 0.7fr 1.4fr 1.1fr;
  border: 1px solid var(--border);
  background: color-mix(in oklch, var(--surface) 80%, var(--soft-blue));
}

.tariff-details article {
  padding: clamp(18px, 2.4vw, 28px);
  border-left: 1px solid var(--border);
}

.tariff-details article:first-child {
  border-left: 0;
}

.tariff-details h3,
.contact-reassurance h3 {
  margin: 0 0 10px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tariff-details p,
.contact-reassurance p,
.privacy-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.contact-section {
  grid-template-columns: minmax(0, 2fr) minmax(300px, 1fr);
  align-items: start;
}

.contact-form-panel {
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid var(--border);
  background: var(--surface);
}

.contact-form-panel form {
  margin-top: 28px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 16px;
  row-gap: 14px;
}

.contact-form-panel label:has(textarea),
.contact-form-panel .button,
.contact-form-panel .form-note,
.contact-form-panel .privacy-note {
  grid-column: 1 / -1;
}

.contact-form-panel .button {
  justify-self: start;
  text-transform: none;
}

.privacy-note {
  font-size: 13px;
}

.privacy-note a {
  color: var(--fg);
}

.contact-reassurance {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--border);
  background: color-mix(in oklch, var(--surface) 78%, var(--sage));
}

.contact-reassurance p + p {
  margin-top: 10px;
}

.contact-reassurance div {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  display: grid;
  gap: 8px;
}

.contact-reassurance span {
  color: var(--muted);
}

.contact-reassurance a {
  color: var(--fg);
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  text-decoration: none;
}

.practical-final-band {
  width: var(--wrap);
  margin: 0 auto clamp(66px, 8vw, 112px);
  padding: clamp(20px, 3vw, 30px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--border);
  background: color-mix(in oklch, var(--surface) 74%, var(--blush));
}

.practical-final-band p {
  margin: 0;
  color: var(--fg);
  font-family: var(--font-display);
  font-size: clamp(27px, 3vw, 42px);
  line-height: 1;
}

.practical-final-band div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.practical-final-band a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid var(--border);
  color: var(--fg);
  background: var(--surface);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Retouches demandées — cartes accueil, cabinet, tarifs, contact */
.home-services-block {
  row-gap: clamp(16px, 2.2vw, 28px);
}

.home-consultation-heading {
  margin-bottom: clamp(4px, 1vw, 12px);
}

.home-consultation-heading > span {
  width: min(38%, 260px);
}

.home-service-grid article {
  min-height: 360px;
  align-content: start;
  grid-template-rows: auto auto auto 1fr auto;
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.home-card-keywords {
  align-self: end;
  margin-top: 0 !important;
  font-family: var(--font-mono);
  font-size: 11px !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-service-grid article > a {
  min-height: 0;
  margin-top: 2px;
  align-self: end;
  color: inherit;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.home-service-grid article:hover > a,
.home-service-grid article:focus-within > a {
  border-bottom-color: currentColor;
}

.home-services-cta {
  display: none;
}

.cabinet-photos {
  grid-template-columns: 1fr;
}

.cabinet-photos figure:nth-child(3) {
  background:
    linear-gradient(135deg, color-mix(in oklch, var(--surface) 84%, var(--sage)), color-mix(in oklch, var(--surface) 84%, var(--blush)));
}

.map-preview {
  min-height: 220px;
  margin-top: 24px;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  background:
    linear-gradient(90deg, color-mix(in oklch, var(--border) 45%, transparent) 1px, transparent 1px),
    linear-gradient(0deg, color-mix(in oklch, var(--border) 45%, transparent) 1px, transparent 1px),
    color-mix(in oklch, var(--surface) 74%, var(--soft-blue));
  background-size: 64px 64px;
}

.map-preview::before,
.map-preview::after {
  content: "";
  position: absolute;
  background: color-mix(in oklch, var(--sage) 30%, transparent);
}

.map-preview::before {
  width: 120%;
  height: 34px;
  transform: rotate(-12deg);
}

.map-preview::after {
  width: 34px;
  height: 120%;
  transform: rotate(18deg);
}

.map-pin {
  width: 22px;
  height: 22px;
  z-index: 1;
  border-radius: 50% 50% 50% 0;
  background: var(--accent);
  transform: rotate(-45deg);
}

.map-pin::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: var(--surface);
}

.map-preview p {
  z-index: 1;
  margin: 12px 0 0;
  padding: 8px 10px;
  background: color-mix(in oklch, var(--surface) 86%, transparent);
  color: var(--fg);
  text-align: center;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tariffs-section .practical-section-heading h2 {
  max-width: none;
}

.tariff-card ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
  color: var(--muted);
  list-style: none;
  line-height: 1.42;
}

.contact-section {
  display: block;
}

.contact-card-large {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: clamp(26px, 4vw, 48px);
  border: 1px solid var(--border);
  background: var(--surface);
}

.contact-card-large > h2 {
  margin: 0 0 clamp(22px, 3vw, 34px);
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 560;
  line-height: 0.98;
  letter-spacing: 0;
}

.contact-top-panels {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
  gap: 16px;
  margin-bottom: clamp(24px, 3vw, 36px);
}

.contact-top-panels article,
.urgent-note {
  padding: clamp(18px, 2.4vw, 28px);
  border: 1px solid var(--border);
  background: color-mix(in oklch, var(--surface) 82%, var(--bg));
}

.contact-phone-panel {
  background: color-mix(in oklch, var(--surface) 74%, var(--sage)) !important;
}

.contact-top-panels h3,
.urgent-note h3 {
  margin: 0 0 12px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-top-panels p,
.urgent-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.contact-phone-panel a {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--fg);
  font-family: var(--font-display);
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1;
  text-decoration: none;
}

.contact-card-large form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-card-large .request-field,
.contact-card-large label:has(textarea),
.contact-card-large .button,
.contact-card-large .form-note,
.contact-card-large .privacy-note {
  grid-column: 1 / -1;
}

.urgent-note {
  margin-top: 20px;
  background: color-mix(in oklch, var(--surface) 78%, var(--blush));
}

.tariff-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tariff-card {
  min-height: 260px;
  grid-template-columns: 1fr;
  align-content: start;
}

.tariff-card strong {
  justify-self: start;
}

.contact-card-large {
  width: min(980px, 100%);
  padding: clamp(22px, 3vw, 36px);
}

.contact-card-large form {
  margin-top: 4px;
  gap: 12px;
}

.contact-card-large label {
  font-size: 15px;
}

.contact-card-large input,
.contact-card-large select {
  min-height: 42px;
  padding: 10px 12px;
}

.contact-card-large textarea {
  min-height: 108px;
  padding: 10px 12px;
}

.contact-request-panel ul {
  margin: 10px 0 16px;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.58;
}

.contact-request-panel li + li {
  margin-top: 4px;
}

.contact-phone-panel a {
  font-size: clamp(16px, 1.7vw, 24px);
}

.urgent-note {
  display: grid;
  min-height: 74px;
  place-items: center;
  text-align: center;
}

.urgent-note p {
  max-width: 76ch;
  color: var(--fg);
}

.bilan-cta-band {
  background: var(--bg);
}

.bilan-final-cta {
  width: min(1180px, calc(100vw - 112px));
  padding: clamp(24px, 4vw, 44px);
  border-color: var(--border);
  background: var(--surface);
}

.bilan-final-form {
  width: min(720px, 100%);
  padding: clamp(18px, 2.2vw, 26px);
}

.bilan-final-form input,
.bilan-final-form select,
.bilan-final-form textarea {
  min-height: 42px;
  padding: 10px 12px;
}

.bilan-final-form textarea {
  min-height: 112px;
}

.home-service-grid h3 {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(15px, 1.1vw, 18px);
}

.home-card-keywords {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, max-content);
  justify-content: center;
  justify-items: center;
  gap: 8px 9px;
}

.home-card-keywords span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid color-mix(in oklch, white 52%, transparent);
  background: color-mix(in oklch, white 10%, transparent);
  color: inherit;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.home-card-keywords span:last-child {
  grid-column: 1 / -1;
}

.urgent-note p {
  white-space: nowrap;
}

.urgent-note .urgent-numbers {
  margin-top: 5px;
  color: var(--fg);
  font-size: 1.1em;
  font-weight: 560;
  letter-spacing: 0.08em;
  text-align: center;
}

.practical-final-band p {
  font-size: clamp(18px, 1.8vw, 27px);
  white-space: nowrap;
}

.home-service-grid {
  max-width: min(1130px, 100%);
  margin-inline: auto;
  grid-template-columns: repeat(3, minmax(280px, 350px));
  justify-content: center;
}

.contact-card-large > h2 {
  font-size: clamp(34px, 4vw, 54px);
}

.practical-final-band {
  width: min(980px, calc(100vw - 56px));
}

.home-services-block {
  border-bottom: 0;
}

.home-service-grid article > a {
  justify-self: center;
  text-align: center;
  white-space: nowrap;
}

.specialites-section-title h2 {
  font-size: clamp(52px, 6.2vw, 92px);
  line-height: 0.92;
}

.specialites-card .approach-kicker {
  font-size: clamp(15px, 1.2vw, 18px);
  letter-spacing: 0.1em;
}

.tariff-details {
  margin-top: clamp(24px, 3.6vw, 44px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 0;
  background: transparent;
}

.tariff-details article {
  padding: 0 clamp(20px, 3vw, 42px);
  border-left: 1px solid var(--border);
  background: transparent;
}

.tariff-details article:first-child {
  border-left: 0;
}

.tariff-details h3 {
  margin-bottom: 12px;
  color: var(--fg);
}

.tariff-details p {
  max-width: 42ch;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.55;
}

.tariff-details p + p {
  margin-top: 12px;
}

.card,
.panel,
.article-card,
.faq-item,
.tariff-card,
.bilan-domain-card,
.practice-card,
.practice-flow-card,
.approach-panel,
.home-approach-card,
.consultation-theme,
.home-service-grid article,
.article-feature,
.quick-nav a,
a.home-reference-card,
.practical-final-band a {
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.card:hover,
.panel:hover,
.article-card:hover,
.faq-item:hover,
.tariff-card:hover,
.bilan-domain-card:hover,
.practice-card:hover,
.practice-flow-card:hover,
.approach-panel:hover,
.home-approach-card:hover,
.consultation-theme:hover,
.home-service-grid article:hover,
.article-feature:hover,
.quick-nav a:hover,
a.home-reference-card:hover,
.practical-final-band a:hover {
  transform: translateY(-2px);
}

.card:focus-within,
.panel:focus-within,
.article-card:focus-within,
.faq-item:focus-within,
.tariff-card:focus-within,
.bilan-domain-card:focus-within,
.practice-card:focus-within,
.practice-flow-card:focus-within,
.approach-panel:focus-within,
.home-approach-card:focus-within,
.consultation-theme:focus-within,
.home-service-grid article:focus-within,
.article-feature:focus-within,
.quick-nav a:focus-visible,
a.home-reference-card:focus-visible,
.practical-final-band a:focus-visible {
  transform: translateY(-2px);
}

.card:hover a,
.panel:hover a,
.article-card:hover a,
.faq-item:hover a,
.tariff-card:hover a,
.bilan-domain-card:hover a,
.practice-card:hover a,
.practice-flow-card:hover a,
.approach-panel:hover a,
.home-approach-card:hover a,
.consultation-theme:hover a,
.home-service-grid article:hover a,
.article-feature:hover a,
a.home-reference-card:hover,
.quick-nav a:hover,
.practical-final-band a:hover,
main a:hover {
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

@media (max-width: 760px) {
  .practical-hero,
  .cabinet-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .practical-hero {
    min-height: auto;
    padding-top: clamp(40px, 10vw, 62px);
    padding-bottom: clamp(30px, 8vw, 46px);
  }

  .practical-hero-copy h1 {
    max-width: none;
    font-size: clamp(40px, 13vw, 56px);
  }

  .quick-nav a {
    grid-template-columns: 38px 1fr;
    padding: 15px 0;
  }

  .practical-section {
    padding: clamp(42px, 12vw, 68px) 0;
  }

  .cabinet-photos {
    grid-template-columns: 1fr;
  }

  .cabinet-photos figure {
    min-height: 160px;
    padding: 16px;
  }

  .cabinet-info h2,
  .practical-section-heading h2 {
    max-width: none;
    font-size: clamp(31px, 10vw, 44px);
  }

  .practical-lines div,
  .tariff-card,
  .tariff-details {
    grid-template-columns: 1fr;
  }

  .tariff-card-grid {
    grid-template-columns: 1fr;
  }

  .tariff-card strong {
    justify-self: start;
  }

  .tariff-details article,
  .tariff-details article:first-child {
    border-left: 0;
    border-top: 1px solid var(--border);
  }

  .tariff-details article:first-child {
    border-top: 0;
  }

  .contact-form-panel form {
    grid-template-columns: 1fr;
  }

  .home-service-grid article {
    min-height: 320px;
  }

  .contact-card-large {
    padding: clamp(20px, 6vw, 30px);
  }

  .contact-top-panels,
  .contact-card-large form {
    grid-template-columns: 1fr;
  }

  .contact-card-large > h2 {
    font-size: clamp(30px, 9vw, 42px);
  }

  .map-preview {
    min-height: 180px;
  }

  .home-service-grid h3,
  .urgent-note p,
  .practical-final-band p {
    white-space: normal;
  }

  .home-service-grid {
    max-width: 100%;
    grid-template-columns: 1fr;
  }

  .practical-final-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .blog-hero h1 {
    max-width: none;
  }
}

/* Harmonisation finale — gabarit typographique de la page Bilan */
.specialites-hero h1,
.consultation-main-title,
.bio-profile-copy h1,
.blog-hero h1,
.faq-cover h1,
.practical-hero h1,
.bio-hero-shade h1 {
  font-size: clamp(34px, 3.4vw, 50px);
  line-height: 1;
}

.section-header h2,
.specialites-section-title h2,
.specialites-choice h2,
.bio-path > h2,
.cabinet-info h2,
.practical-section-heading h2,
.contact-card-large > h2,
.home-consultation-heading h2,
.home-appointment-block h2,
.home-about-text h2,
.home-approaches-heading h2,
.home-faq-block h2,
.faq-question-panel h2 {
  font-size: clamp(29px, 2.85vw, 40px);
  line-height: 1.02;
}

.specialites-section-title h2 {
  max-width: 16ch;
}

/* Blog — introduction éditoriale compacte */
.blog-hero {
  width: var(--wrap);
  margin: 0 auto;
  padding: clamp(54px, 7vw, 92px) 0 clamp(34px, 4.6vw, 58px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: end;
  border-bottom: 1px solid var(--border);
}

.blog-hero-main {
  display: grid;
  gap: clamp(14px, 2vw, 22px);
}

.blog-hero h1 {
  max-width: 24ch;
}

.blog-subtitle {
  max-width: 58ch;
  margin: 0;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: clamp(16px, 1.22vw, 19px);
  line-height: 1.62;
}

.blog-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-hero-tags span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 7px 10px;
  border: 1px solid var(--border);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-hero-feature {
  min-height: 260px;
  display: grid;
  align-content: space-between;
  gap: 16px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--border);
  background: color-mix(in oklch, var(--surface) 76%, var(--soft-blue));
  color: inherit;
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.blog-hero-feature span,
.blog-hero-feature em {
  font-family: var(--font-mono);
  font-size: 11px;
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.blog-hero-feature strong {
  font-family: var(--font-display);
  font-size: clamp(25px, 2.2vw, 36px);
  font-weight: 560;
  line-height: 1.02;
}

.blog-hero-feature small {
  color: var(--muted);
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.55;
}

.blog-hero-feature:hover,
.blog-hero-feature:focus-visible {
  transform: translateY(-2px);
}

.blog-hero-feature:hover em,
.blog-hero-feature:focus-visible em {
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

@media (max-width: 860px) {
  .blog-hero {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .blog-hero-feature {
    min-height: 0;
  }
}

/* Blog — hiérarchie clarifiée et textes plus lisibles */
.blog-hero {
  grid-template-columns: 1fr;
  max-width: var(--wrap);
  padding: clamp(46px, 6vw, 76px) 0 clamp(30px, 4vw, 48px);
  align-items: start;
}

.blog-hero h1 {
  max-width: none;
  font-size: clamp(46px, 5.2vw, 72px);
  line-height: 0.95;
}

.blog-subtitle {
  max-width: 38ch;
  color: var(--fg);
  font-family: var(--font-display);
  font-size: clamp(27px, 3.1vw, 42px);
  line-height: 1.06;
}

.blog-intro,
.blog-feature-heading > p,
.feature-copy p,
.blog-article-grid .article-card p,
.resource-strip article p {
  font-size: clamp(17px, 1.28vw, 20px);
  line-height: 1.65;
}

.blog-intro {
  max-width: 58ch;
  margin: 0;
  color: var(--muted);
}

.blog-feature-heading {
  margin-bottom: clamp(24px, 3vw, 38px);
}

.feature-copy .lead {
  font-size: clamp(18px, 1.42vw, 22px);
  line-height: 1.62;
}

.article-card-link {
  gap: 18px;
}

.blog-article-grid .article-card h3 {
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.12;
}

/* Qui suis-je — citation sous la photo */
.bio-portrait-column {
  width: min(100%, 390px);
  justify-self: end;
  display: grid;
  gap: 18px;
}

.bio-portrait-column .bio-portrait-frame {
  width: 100%;
  justify-self: stretch;
}

.bio-portrait-quote {
  margin: 0;
  padding: 18px 4px 0;
  border-top: 1px solid color-mix(in oklch, var(--sage) 58%, transparent);
  color: color-mix(in oklch, var(--fg) 86%, var(--sage));
  text-align: center;
}

.bio-portrait-quote p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 27px);
  font-style: italic;
  line-height: 1.18;
}

.bio-portrait-quote cite {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11px;
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Blog — corps de texte +20% */
.blog-intro,
.blog-feature-heading > p,
.feature-copy p,
.blog-article-grid .article-card p,
.resource-strip article p {
  font-size: clamp(20px, 1.55vw, 24px);
  line-height: 1.62;
}

.feature-copy .lead {
  font-size: clamp(22px, 1.7vw, 26px);
  line-height: 1.58;
}

@media (max-width: 760px) {
  .bio-portrait-column {
    justify-self: center;
  }
}

/* Ajustements lisibilité — demande du 26 juillet */
.bio-profile {
  align-items: stretch;
}

.bio-portrait-column {
  grid-template-rows: auto minmax(120px, 1fr);
  align-self: stretch;
}

.bio-portrait-quote {
  align-self: center;
  padding: 0 4px;
  border-top: 0;
}

.home-service-grid article > p:not(.home-card-keywords),
.home-appointment-block p,
.home-about-text p,
.home-approach-card > p:not(.approach-kicker),
.home-faq-block p,
.consultation-text-panel p,
.consultations-for-note,
.consultation-theme li,
.practice-intro p,
.practice-flow-card p,
.practice-tools-copy p,
.practice-highlight,
.bilan-hero-copy p:not(.eyebrow),
.bilan-hero-panel p:not(.quote),
.bilan-split p,
.bilan-list li,
.bilan-warning p,
.wisc-domains-title > p,
.bilan-domain-card p,
.bilan-domain-note,
.bilan-step p,
.bilan-price-list li,
.bilan-tarif p,
.bilan-final-copy p,
.specialites-hero p:not(.eyebrow),
.specialites-hero-card p:not(.quote),
.specialites-section-title > p,
.specialites-card > p,
.approach-accordion p,
.approach-accordion li,
.approach-example p,
.approach-process-step p,
.faq-intro > p:not(.eyebrow):not(.faq-subtitle),
.faq-rubrics .section-header > p,
.faq-answer,
.faq-question-inner p,
.practical-hero-copy p:not(.eyebrow),
.cabinet-info p,
.practical-lines dd,
.tariff-details p,
.contact-request-panel p,
.contact-request-panel li,
.contact-phone-panel p {
  font-size: clamp(19px, 1.38vw, 22px);
  line-height: 1.68;
}

.quick-nav strong {
  font-size: clamp(15px, 1.05vw, 17px);
}

.quick-nav small {
  font-size: clamp(14px, 0.98vw, 16px);
  line-height: 1.35;
}

.specialites-section-title h2 {
  font-size: clamp(32px, 3.15vw, 44px);
  line-height: 1.04;
}

.specialites-section-title h2 span {
  display: block;
}

/* Finitions typographiques — hiérarchie et tailles intermédiaires */
.home-consultation-heading h2,
.home-appointment-block h2,
.home-about-text h2,
.home-approaches-heading h2,
.home-faq-block h2,
.consultation-main-title,
.practice-intro h2,
.mediation-heading h3,
.bilan-page h2,
.specialites-hero h1,
.specialites-section-title h2,
.approach-complementary-heading h2,
.faq-rubrics h2,
.faq-question-panel h2,
.practical-section-heading h2,
.cabinet-info h2,
.contact-card-large h2 {
  font-size: clamp(34px, 3.35vw, 48px);
  line-height: 1.04;
}

.home-service-grid article h3,
.home-approach-card h3,
.consultation-theme h4,
.practice-flow-card h3,
.bilan-domain-card h3,
.bilan-step h3,
.tariff-card h3,
.specialites-card h3,
.approach-process-step h3,
.faq-section-title h3,
.tariff-details h3,
.contact-request-panel h3,
.contact-phone-panel h3 {
  font-size: clamp(24px, 2.1vw, 31px);
  line-height: 1.12;
}

.bilan-page .bilan-hero-copy p:not(.eyebrow),
.bilan-page .bilan-hero-panel p:not(.quote) {
  font-size: clamp(22px, 1.65vw, 27px);
  line-height: 1.66;
}

.bilan-tarif > p:not(.mutuelle-note) {
  font-size: clamp(21px, 1.55vw, 25px);
  line-height: 1.66;
}

.bilan-step p {
  font-size: clamp(18px, 1.22vw, 20.5px);
  line-height: 1.62;
}

.tariff-details p,
.contact-request-panel p,
.contact-request-panel li,
.contact-phone-panel p {
  font-size: clamp(18px, 1.18vw, 20px);
  line-height: 1.58;
}

.approach-accordion p,
.approach-accordion li {
  font-size: clamp(20px, 1.42vw, 24px);
  line-height: 1.66;
}

.approach-example p {
  font-size: clamp(18px, 1.18vw, 20.5px);
  line-height: 1.62;
  font-style: italic;
}

.specialites-hero-card .quote {
  display: block;
  margin: 0 0 18px;
  color: var(--fg);
  font-family: var(--font-display);
  font-size: clamp(31px, 2.8vw, 43px);
  font-style: normal;
  font-weight: 500;
  line-height: 1.02;
}

.specialites-section-title {
  grid-template-columns: minmax(0, 0.7fr) minmax(280px, 0.3fr);
}

.specialites-section-title h2 {
  max-width: 26ch;
  font-size: clamp(35px, 3.35vw, 48px);
}

.specialites-section-title h2 span {
  white-space: nowrap;
}

@media (max-width: 760px) {
  .specialites-section-title h2 span {
    white-space: normal;
  }
}

.faq-intro {
  max-width: min(100%, 1040px);
}

.faq-intro .faq-subtitle + p {
  max-width: 74ch;
  font-size: clamp(21px, 1.48vw, 25px);
  line-height: 1.55;
}

/* Boutons — CTA plus lisible et retrait homogène */
.doctolib-link {
  min-height: 51px;
  padding: 0 28px;
  font-size: clamp(15px, 1.38vw, 18.5px);
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, text-decoration-color 0.18s ease;
}

.button,
.text-button,
.filter-button,
.carousel-button,
.menu-button,
.doctolib-link,
.nav-dropdown > button,
.home-service-grid article a,
.home-appointment-block a,
.home-about-link,
.home-approaches-heading a,
.home-faq-block span,
.practical-final-band a,
.quick-nav a,
.contact-phone-panel a {
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, text-decoration-color 0.18s ease;
}

.button:hover,
.button:focus-visible,
.text-button:hover,
.text-button:focus-visible,
.filter-button:hover,
.filter-button:focus-visible,
.carousel-button:hover,
.carousel-button:focus-visible,
.menu-button:hover,
.menu-button:focus-visible,
.doctolib-link:hover,
.doctolib-link:focus-visible,
.nav-dropdown > button:hover,
.nav-dropdown > button:focus-visible,
.home-service-grid article a:hover,
.home-service-grid article a:focus-visible,
.home-appointment-block a:hover,
.home-appointment-block a:focus-visible,
.home-about-link:hover,
.home-about-link:focus-visible,
.home-approaches-heading a:hover,
.home-approaches-heading a:focus-visible,
.home-faq-block:hover span,
.home-faq-block:focus-visible span,
.practical-final-band a:hover,
.practical-final-band a:focus-visible,
.quick-nav a:hover,
.quick-nav a:focus-visible,
.contact-phone-panel a:hover,
.contact-phone-panel a:focus-visible {
  transform: translateY(-2px);
}

.doctolib-link:hover,
.doctolib-link:focus-visible,
.home-service-grid article a:hover,
.home-service-grid article a:focus-visible,
.home-appointment-block a:hover,
.home-appointment-block a:focus-visible,
.home-about-link:hover,
.home-about-link:focus-visible,
.home-approaches-heading a:hover,
.home-approaches-heading a:focus-visible,
.practical-final-band a:hover,
.practical-final-band a:focus-visible,
.quick-nav a:hover,
.quick-nav a:focus-visible,
.contact-phone-panel a:hover,
.contact-phone-panel a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

/* Corrections fines après captures — retrouver une hiérarchie stable */
.home-service-grid article h2 {
  font-size: clamp(43px, 4.3vw, 62px);
  line-height: 0.95;
}

.home-service-grid article h3 {
  max-width: 100%;
  font-size: clamp(26px, 2.15vw, 32px);
  line-height: 1.08;
  text-wrap: balance;
}

.home-service-grid article > p:not(.home-card-keywords) {
  font-size: clamp(18px, 1.22vw, 20px);
  line-height: 1.56;
}

.home-card-keywords span {
  font-size: clamp(13px, 0.95vw, 15px);
}

.home-service-grid article > a {
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: clamp(12px, 0.9vw, 14px);
}

.home-service-grid article:hover > a,
.home-service-grid article:focus-within > a {
  transform: translateX(-50%) translateY(-2px);
}

.home-approach-card h3 {
  font-size: clamp(29px, 2.35vw, 36px);
  line-height: 1.08;
  margin-bottom: 12px;
}

.home-approach-card > p:not(.approach-kicker) {
  font-size: clamp(17px, 1.16vw, 20px);
  line-height: 1.6;
}

.consultations-for-title h2 {
  font-size: clamp(37px, 3.6vw, 52px);
}

.consultations-for-note {
  font-size: clamp(17px, 1.12vw, 19.5px);
  line-height: 1.56;
}

.consultation-theme li {
  font-size: clamp(18px, 1.26vw, 21px);
  line-height: 1.58;
}

.practice-tools-copy p {
  font-size: clamp(19.5px, 1.41vw, 22.5px);
  line-height: 1.66;
}

.practice-flow-card p {
  font-size: clamp(17.2px, 1.16vw, 19.5px);
  line-height: 1.58;
}

.bilan-page .bilan-hero-copy p:not(.eyebrow),
.bilan-page .bilan-hero-panel p:not(.quote) {
  font-size: clamp(20.8px, 1.55vw, 25.6px);
  line-height: 1.62;
}

.bilan-tarif > p:not(.mutuelle-note) {
  font-size: clamp(20px, 1.45vw, 23.8px);
  line-height: 1.62;
}

.bilan-domain-card h3 {
  font-size: clamp(23px, 2.04vw, 30px);
  line-height: 1.12;
}

.bilan-domain-card p,
.bilan-domain-note {
  font-size: clamp(18.4px, 1.34vw, 21.3px);
  line-height: 1.62;
}

.mutuelle-note {
  font-size: clamp(13.6px, 1vw, 15.5px);
}

.specialites-hero-card p:not(.quote) {
  font-size: clamp(18.4px, 1.28vw, 21.3px);
  line-height: 1.62;
}

.specialites-card h3 {
  font-size: clamp(28px, 2.25vw, 36px);
  line-height: 1.08;
}

.specialites-card > p {
  font-size: clamp(18px, 1.22vw, 20.5px);
  line-height: 1.6;
}

.approach-accordion p {
  font-size: clamp(19.5px, 1.35vw, 22.5px);
  line-height: 1.62;
}

.approach-accordion li {
  font-size: clamp(19.5px, 1.35vw, 22.5px);
  line-height: 1.62;
}

.approach-accordion summary {
  font-size: clamp(13px, 0.92vw, 15px);
  line-height: 1.25;
}

.approach-process-step h3 {
  font-size: clamp(23px, 1.98vw, 30px);
}

.approach-process-step p {
  font-size: clamp(18.4px, 1.28vw, 21.3px);
  line-height: 1.6;
}

/* FAQ + Informations pratiques — ajustements fins */
.faq-question-inner > div > h2 span {
  display: block;
}

.tariff-card {
  grid-template-columns: minmax(0, 1.25fr) minmax(120px, 0.42fr) minmax(145px, 0.45fr);
  align-items: center;
}

.tariff-card p {
  justify-self: center;
  text-align: center;
}

.tariff-card strong {
  min-width: 0;
  justify-self: end;
  text-align: right;
  font-size: clamp(21.5px, 2.25vw, 32.5px);
  line-height: 1.05;
}

.tariff-card ul {
  justify-self: center;
}

.tariff-card li {
  font-size: clamp(15px, 1.02vw, 17px);
}

.tariff-details h3,
.contact-request-panel h3,
.contact-phone-panel h3 {
  font-size: clamp(21.5px, 1.9vw, 28px);
  line-height: 1.08;
}

.tariff-details p,
.contact-request-panel p,
.contact-request-panel li,
.contact-phone-panel p {
  font-size: clamp(16.2px, 1.06vw, 18px);
  line-height: 1.54;
}

.contact-phone-panel a {
  font-size: clamp(26px, 2.45vw, 38px);
}

/* Reset typographique ciblé — retour à une base plus stable */
.home-service-grid article {
  min-height: 360px;
  padding: clamp(34px, 3.8vw, 54px) clamp(32px, 3.6vw, 50px);
  overflow: hidden;
}

.home-service-grid article h2 {
  font-size: clamp(40px, 4vw, 58px);
  line-height: 0.96;
}

.home-service-grid article h3 {
  max-width: 13ch;
  font-size: clamp(24px, 2vw, 30px);
  line-height: 1.08;
}

.home-service-grid article > p:not(.home-card-keywords) {
  max-width: 30ch;
  font-size: clamp(16px, 1.08vw, 18px);
  line-height: 1.55;
}

.home-card-keywords {
  margin-top: auto;
}

.home-card-keywords span {
  font-size: clamp(12px, 0.86vw, 14px);
}

.home-service-grid article > a {
  left: 50%;
  right: auto;
  bottom: clamp(24px, 2.8vw, 40px);
  width: max-content;
  max-width: calc(100% - 44px);
  transform: translateX(-50%);
  white-space: nowrap;
  text-align: center;
}

.home-service-grid article:hover > a,
.home-service-grid article:focus-within > a {
  transform: translateX(-50%) translateY(-2px);
}

.home-approaches-block .approach-panel-grid {
  gap: clamp(22px, 2.6vw, 34px);
}

.home-approach-card {
  min-height: clamp(420px, 34vw, 520px);
  padding: clamp(42px, 4.2vw, 64px);
  align-content: start;
}

.home-approach-card h3 {
  max-width: 16ch;
  margin: 18px 0 16px;
  font-size: clamp(28px, 2.25vw, 35px);
  line-height: 1.08;
}

.home-approach-card > p:not(.approach-kicker) {
  max-width: 34ch;
  font-size: clamp(16px, 1.08vw, 18.5px);
  line-height: 1.58;
}

.practice-intro p {
  font-size: clamp(18.4px, 1.28vw, 21px);
  line-height: 1.62;
}

.bilan-page .bilan-hero-copy p:not(.eyebrow):not(.lead),
.bilan-page .bilan-hero-panel p:not(.quote) {
  font-size: clamp(19.8px, 1.48vw, 24.3px);
  line-height: 1.62;
}

.bilan-step-meta {
  font-size: clamp(12.6px, 0.88vw, 14.5px);
}

.bilan-tarif > p:not(.mutuelle-note) {
  max-width: 64ch;
  font-size: clamp(19px, 1.38vw, 22.6px);
  line-height: 1.58;
}

.specialites-section-title {
  grid-template-columns: minmax(0, 0.68fr) minmax(360px, 0.32fr);
}

.specialites-section-title > p {
  max-width: 62ch;
  font-size: clamp(17.5px, 1.16vw, 20.2px);
  line-height: 1.58;
}

.approach-process-step p {
  font-size: clamp(17.8px, 1.22vw, 20.6px);
  line-height: 1.58;
}

/* Ajustements ciblés blog, tarifs et navigation rapide */
.blog-feature-heading {
  grid-template-columns: 1fr;
}

.blog-feature-heading h2 {
  max-width: 100%;
}

main > section.band.tint > .section-header h2,
.blog-article-grid + .section-header,
[data-od-id="resources"] .section-header h2 {
  font-size: clamp(35.4px, 3.48vw, 49.9px);
}

main > section.band.tint > .section-header p,
.blog-article-grid + .section-header p,
[data-od-id="resources"] .section-header p,
.resource-strip article p {
  font-size: clamp(18.2px, 1.25vw, 21px);
  line-height: 1.6;
}

.feature-copy .editorial-kicker {
  font-size: clamp(11.4px, 0.86vw, 13.3px);
}

.feature-copy h2 {
  font-size: clamp(30px, 2.75vw, 41px);
}

.feature-copy .lead,
.feature-copy blockquote {
  font-size: clamp(19px, 1.38vw, 22.8px);
  line-height: 1.56;
}

.quick-nav span {
  font-size: clamp(16px, 1.18vw, 18px);
}

.quick-nav strong {
  font-size: clamp(16.5px, 1.2vw, 19px);
}

.quick-nav small {
  font-size: clamp(15.2px, 1.08vw, 17.4px);
}

.tariff-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.tariff-card {
  min-height: clamp(250px, 24vw, 320px);
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto 1fr auto;
  align-items: start;
  gap: 14px;
  padding: clamp(24px, 2.8vw, 36px);
}

.tariff-card h3 {
  max-width: 11ch;
  font-size: clamp(30px, 2.7vw, 40px);
  line-height: 1.02;
}

.tariff-card p {
  justify-self: start;
  text-align: left;
  font-size: clamp(17px, 1.16vw, 20px);
}

.tariff-card ul {
  justify-self: start;
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.tariff-card li {
  font-size: clamp(15.5px, 1.05vw, 18px);
  line-height: 1.45;
}

.tariff-card strong {
  align-self: end;
  justify-self: start;
  text-align: left;
  font-size: clamp(22px, 2.1vw, 31px);
  line-height: 1.05;
}

.contact-phone-panel h3 {
  font-size: clamp(20.4px, 1.8vw, 26.6px);
}

.contact-phone-panel a {
  font-size: clamp(24.7px, 2.33vw, 36.1px);
}

/* Réglages fins accueil, approches et blog */
.home-service-grid article h2 {
  font-size: clamp(38px, 3.8vw, 55px);
}

.home-service-grid article h3 {
  max-width: none;
  font-size: clamp(20px, 1.55vw, 25px);
  line-height: 1.08;
  white-space: nowrap;
}

.home-service-grid article > a {
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  font-size: clamp(12.4px, 0.93vw, 14.4px);
  text-align: center;
}

.home-service-grid article:hover > a,
.home-service-grid article:focus-within > a {
  transform: translateX(-50%) translateY(-2px);
}

.home-approaches-heading {
  align-items: end;
}

.home-approach-card {
  min-height: clamp(500px, 38vw, 620px);
  padding: clamp(52px, 5vw, 76px);
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  gap: 16px;
}

.home-approach-card h3 {
  max-width: 17ch;
  margin: 10px 0 0;
  font-size: clamp(28px, 2.18vw, 34px);
  line-height: 1.08;
}

.home-approach-card > p:not(.approach-kicker) {
  align-self: start;
  max-width: 35ch;
  font-size: clamp(16px, 1.06vw, 18px);
  line-height: 1.58;
}

.practice-intro p:not(.eyebrow) {
  font-size: clamp(18px, 1.24vw, 20.6px);
  font-style: italic;
  line-height: 1.62;
}

.specialites-hero .lead {
  font-size: clamp(17.6px, 1.2vw, 20px);
  font-style: italic;
  line-height: 1.6;
}

.specialites-hero .lead + p {
  font-size: clamp(18.7px, 1.31vw, 21.4px);
  line-height: 1.62;
}

.blog-subtitle {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(21px, 2.35vw, 34px);
}

/* Ajustements finaux blog, FAQ et tarifs */
[data-od-id="resources"] .section-header {
  grid-template-columns: 1fr;
}

[data-od-id="resources"] .section-header h2 {
  max-width: none;
  white-space: nowrap;
}

.faq-cover {
  min-height: 18.1vh;
  padding-block: clamp(40px, 4.5vw, 62px);
}

.faq-intro {
  max-width: min(100%, 1240px);
  padding: clamp(19px, 2.7vw, 37px) 0;
}

.faq-cover h1 {
  font-size: clamp(26px, 2.6vw, 38px);
}

.faq-intro .faq-subtitle + p {
  max-width: 132ch;
  font-size: clamp(18px, 1.25vw, 22px);
  line-height: 1.5;
}

.faq-question-inner > div > h2 {
  max-width: 15ch;
  text-wrap: balance;
}

.faq-question-inner > div > h2 span {
  display: block;
  white-space: nowrap;
}

.tariff-card h3 span {
  display: block;
}

@media (max-width: 720px) {
  [data-od-id="resources"] .section-header h2,
  .faq-question-inner > div > h2 span {
    white-space: normal;
  }
}

@media (max-width: 900px) {
  .home-service-grid article h3,
  .blog-subtitle {
    white-space: normal;
  }
}

/* Réduction ciblée informations pratiques */
.tariff-details h3 {
  font-size: clamp(18.5px, 1.64vw, 24.2px);
  line-height: 1.08;
  white-space: nowrap;
}

.contact-phone-panel h3 {
  font-size: clamp(19px, 1.6vw, 24px);
  line-height: 1.12;
}

.contact-phone-panel a {
  font-size: clamp(22px, 2.1vw, 32px);
}

/* Titres d'approches longs — deux lignes maximum hors mobile */
.home-approach-card h3.approach-title-compact {
  max-width: 30ch;
  font-size: clamp(26.9px, 2.09vw, 32.6px);
  line-height: 1.08;
  text-wrap: balance;
}

.specialites-card h3.approach-title-compact {
  max-width: 31ch;
  font-size: clamp(26.9px, 2.16vw, 34.6px);
  line-height: 1.08;
  text-wrap: balance;
}

.specialites-card h3.approach-title-compact span {
  display: block;
}

@media (max-width: 720px) {
  .home-approach-card h3.approach-title-compact,
  .specialites-card h3.approach-title-compact {
    max-width: none;
  }
}

/* FAQ — texte introductif des rubriques légèrement réduit */
.faq-rubrics .section-header > p {
  font-size: clamp(17.7px, 1.23vw, 20.4px);
  line-height: 1.58;
}

/* Accueil — respiration entre le titre et le texte des approches */
.home-approach-tcc h3 + p,
.home-approach-schema h3 + p {
  margin-top: 1em;
}

/* Accueil — recomposition visuelle des cartes de consultation */
.home-service-grid article {
  min-height: clamp(470px, 43vw, 600px);
  padding: clamp(36px, 3.8vw, 58px) clamp(34px, 3.6vw, 56px);
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  align-items: start;
  gap: clamp(16px, 1.55vw, 24px);
  overflow: hidden;
}

.home-service-grid article h2 {
  font-size: clamp(40px, 3.9vw, 57px);
  line-height: 0.95;
}

.home-service-grid article h3 {
  max-width: 29ch;
  font-size: clamp(21px, 1.66vw, 26.6px);
  line-height: 1.14;
  display: -webkit-box;
  overflow: hidden;
  white-space: normal;
  text-wrap: balance;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.home-service-grid article > p:not(.home-card-keywords) {
  max-width: 29ch;
  font-size: clamp(16px, 1.05vw, 18px);
  line-height: 1.58;
}

.home-card-keywords {
  align-self: end;
  margin-top: clamp(6px, 1vw, 14px);
}

.home-service-grid article > a {
  position: static;
  left: auto;
  right: auto;
  bottom: auto;
  width: max-content;
  max-width: 100%;
  justify-self: center;
  align-self: end;
  margin-top: clamp(18px, 2.2vw, 32px);
  transform: none;
  white-space: nowrap;
  text-align: center;
  font-size: clamp(12px, 0.9vw, 14px);
  line-height: 1.2;
}

.home-service-grid article:hover > a,
.home-service-grid article:focus-within > a {
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .home-service-grid article {
    min-height: auto;
  }

  .home-service-grid article h3 {
    max-width: none;
  }

  .home-service-grid article > a {
    white-space: normal;
  }
}

/* Accueil — cartes Mes approches sans chevauchement titre/texte */
.home-approach-card {
  min-height: clamp(520px, 40vw, 650px);
  padding: clamp(44px, 4.2vw, 66px);
  display: grid;
  grid-template-rows: auto auto auto auto;
  align-content: start;
  row-gap: clamp(13px, 1.3vw, 20px);
}

.home-approach-card h3.approach-title-compact {
  max-width: 17ch;
  margin: 0;
  font-size: clamp(23px, 1.72vw, 29px);
  line-height: 1.16;
  text-wrap: balance;
}

.home-approach-card > p:not(.approach-kicker) {
  align-self: start;
  max-width: 31ch;
  margin: clamp(18px, 1.8vw, 28px) 0 0;
  font-size: clamp(15px, 0.98vw, 17px);
  line-height: 1.58;
}

.home-approach-tcc h3 + p,
.home-approach-schema h3 + p {
  margin-top: clamp(22px, 2vw, 32px);
}

@media (max-width: 900px) {
  .home-approach-card {
    min-height: auto;
  }

  .home-approach-card h3.approach-title-compact,
  .home-approach-card > p:not(.approach-kicker) {
    max-width: none;
  }
}

/* Accueil — appel rendez-vous simplifié et agrandi */
.home-appointment-block {
  gap: clamp(16px, 2vw, 24px);
}

.home-appointment-block p {
  font-size: clamp(21.8px, 1.59vw, 25.3px);
  line-height: 1.62;
}

.home-appointment-block a {
  min-width: 226px;
  padding: 15.5px 27.5px;
  font-size: 15.2px;
}

/* FAQ — largeur identique des questions ouvertes et fermées */
.faq-rubrics .faq-list,
.faq-rubrics .faq-item,
.faq-rubrics .faq-item button,
.faq-rubrics .faq-answer {
  width: 100%;
  max-width: none;
}

.faq-rubrics .faq-answer {
  box-sizing: border-box;
}

/* Consultations — citation des médiations */
.mediation-frame blockquote.practice-highlight {
  display: block;
  width: min(860px, 100%);
  justify-self: center;
  padding: clamp(24px, 4vw, 44px) clamp(18px, 4vw, 52px);
  background: color-mix(in oklch, var(--surface) 86%, var(--blush));
  border: 1px solid color-mix(in oklch, var(--border) 78%, var(--surface));
  border-left: 0;
  white-space: normal;
  text-align: center;
}

.mediation-frame .practice-highlight p {
  margin: 0;
  color: var(--fg);
  font-family: var(--font-display);
  font-size: clamp(17px, 2vw, 28px) !important;
  font-style: italic;
  font-weight: 400;
  line-height: 1.22;
  text-wrap: balance;
}

.mediation-frame .practice-highlight cite {
  display: block;
  margin-top: clamp(18px, 2.2vw, 28px);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: clamp(13px, 1vw, 16px);
  font-style: normal;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
}

.mediation-frame .practice-highlight cite::before {
  content: "– ";
}

/* Tarifs — référence visuelle capture 2 + titres détails réellement réduits */
.tariffs-section .tariff-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 24px);
}

.tariffs-section .tariff-card {
  min-height: clamp(232px, 21vw, 292px);
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: minmax(72px, auto) minmax(42px, auto) 1fr minmax(36px, auto);
  align-items: start;
  gap: clamp(10px, 1.3vw, 18px);
  padding: clamp(22px, 2.4vw, 34px);
  border: 1px solid color-mix(in oklch, var(--border) 78%, var(--aqua));
  border-radius: 0;
  background: var(--surface);
  box-shadow: none;
}

.tariffs-section .tariff-card h3 {
  max-width: none;
  margin: 0;
  color: var(--fg);
  font-family: var(--font-display);
  font-size: clamp(27px, 2.1vw, 38px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  text-wrap: pretty;
}

.tariffs-section .tariff-card h3 span {
  display: block;
  white-space: normal;
  text-wrap: balance;
}

.tariffs-section .tariff-card p,
.tariffs-section .tariff-card li {
  color: var(--muted);
  font-size: clamp(15.5px, 1vw, 18px);
  line-height: 1.45;
}

.tariffs-section .tariff-card ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.tariffs-section .tariff-card strong {
  align-self: end;
  justify-self: start;
  color: var(--fg);
  font-size: clamp(27px, 2.05vw, 35px);
  font-weight: 650;
  line-height: 1;
  white-space: nowrap;
}

.tariffs-section .tariff-card:nth-child(3) ul {
  align-self: start;
}

.tariffs-section .tariff-card:nth-child(3) li {
  font-size: clamp(12.5px, 0.82vw, 14.5px);
  line-height: 1.42;
  white-space: nowrap;
}

.tariffs-section .tariff-details h3 {
  font-family: var(--font-mono);
  font-size: clamp(13px, 0.95vw, 16px) !important;
  font-weight: 650;
  line-height: 1.15;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.contact-request-panel h3,
.contact-phone-panel h3 {
  font-size: clamp(13px, 1vw, 16px);
  line-height: 1.08;
  letter-spacing: 0.11em;
}

.contact-phone-panel a {
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.05;
}

.home-faq-block .eyebrow {
  font-size: clamp(13.5px, 1.1vw, 17px);
  letter-spacing: 0.18em;
}

.faq-contact-link {
  justify-self: center;
  width: fit-content;
  min-width: 220px;
  background: color-mix(in oklch, var(--accent) 78%, var(--clay));
  border-color: color-mix(in oklch, var(--accent) 72%, var(--clay));
  color: var(--surface);
  text-align: center;
}

.faq-contact-link:hover,
.faq-contact-link:focus-visible {
  background: color-mix(in oklch, var(--accent) 88%, var(--fg));
  border-color: color-mix(in oklch, var(--accent) 88%, var(--fg));
  color: var(--surface);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

@media (max-width: 900px) {
  .tariffs-section .tariff-card-grid {
    grid-template-columns: 1fr;
  }
}

/* Bilan — paragraphe délai sur 3 lignes maximum */
.bilan-page .bilan-tarif > p:not(.mutuelle-note) {
  width: min(100%, 84ch);
  max-width: 84ch;
  margin-inline: auto;
  font-size: clamp(14.5px, 1vw, 16.5px) !important;
  line-height: 1.45;
  text-align: center;
}

/* Bilan — tarifs sans coupure et note mutuelle sans trait */
.bilan-page .bilan-price-list li {
  gap: 14px;
}

.bilan-page .bilan-price-list li span {
  white-space: nowrap;
}

.bilan-page .mutuelle-note {
  padding-top: 0;
}

.bilan-page .mutuelle-note::before {
  display: none;
  content: none;
}
