:root {
  color-scheme: only light;
  --ink: #17232a;
  --muted: #64737b;
  --line: #d8e1e5;
  --paper: #fbfbf8;
  --soft: #eef4f6;
  --sage: #5e8391;
  --sage-dark: #285466;
  --clay: #b98268;
  --blue: #3f7185;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(29, 55, 66, 0.14);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

:root[data-theme="light"] {
  color-scheme: only light;
  --ink: #17232a;
  --muted: #64737b;
  --line: #d8e1e5;
  --paper: #fbfbf8;
  --soft: #eef4f6;
  --sage: #5e8391;
  --sage-dark: #285466;
  --clay: #b98268;
  --blue: #3f7185;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  color-scheme: only light;
  forced-color-adjust: none;
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  forced-color-adjust: none;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

button,
input,
textarea,
select {
  color-scheme: only light;
  forced-color-adjust: none;
}

a {
  color: inherit;
}

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

[id] {
  scroll-margin-top: 92px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(251, 251, 248, 0.92);
  border-bottom: 1px solid rgba(217, 224, 220, 0.82);
  backdrop-filter: blur(16px);
  animation: headerDrop 620ms var(--ease) both;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.2;
}

.brand small {
  color: var(--muted);
  font-size: 0.82rem;
}

.site-nav {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: clamp(12px, 1.55vw, 22px);
  color: var(--muted);
  font-size: 0.92rem;
}

.site-nav a {
  position: relative;
  text-decoration: none;
  transition: color 180ms ease;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--sage-dark);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms var(--ease);
}

.site-nav a:hover {
  color: var(--sage-dark);
}

.site-nav a:not(.nav-cta):hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.site-nav a.is-active {
  color: var(--sage-dark);
}

.nav-cta {
  position: relative;
  padding: 10px 16px;
  color: var(--white) !important;
  background: var(--sage-dark);
  border-radius: 0 12px 0 12px;
  font-weight: 700;
  transition: background 180ms ease, transform 180ms var(--ease), box-shadow 180ms ease;
}

.nav-cta:hover {
  background: var(--ink);
  box-shadow: 0 10px 24px rgba(29, 55, 66, 0.18);
  transform: translateY(-1px);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  display: grid;
  gap: clamp(18px, 3vw, 30px);
  min-height: auto;
  padding: clamp(30px, 4vw, 54px) clamp(18px, 5vw, 76px) clamp(28px, 4vw, 46px);
  overflow: hidden;
}

.hero-content {
  max-width: 980px;
  animation: heroTextIn 760ms 120ms var(--ease) both;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--sage-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(2.25rem, 4.4vw, 4.1rem);
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: normal;
}

h1 span {
  display: block;
}

.hero-title-main {
  white-space: nowrap;
}

.hero-intro {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.14rem);
  line-height: 1.65;
}

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

.hero-actions-mobile {
  display: none;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 0 14px 0 14px;
  font-weight: 750;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 200ms ease, transform 200ms var(--ease);
}

.button:hover {
  box-shadow: 0 14px 28px rgba(29, 55, 66, 0.16);
  transform: translateY(-2px);
}

.button:active,
.nav-cta:active,
.contact-sticky:active {
  transform: translateY(0);
}

.button.primary {
  color: var(--white);
  background: var(--sage-dark);
}

.button.secondary {
  color: var(--sage-dark);
  background: var(--soft);
  border: 1px solid var(--line);
}

.button.secondary:hover {
  background: var(--white);
  border-color: rgba(40, 84, 102, 0.34);
}

#psychotraumatologie .button.secondary,
#parcours .button.secondary,
#reservation .button.primary,
#reservation .button.ghost,
.contact-message-actions .button.ghost {
  color: var(--sage-dark);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 28px rgba(23, 35, 42, 0.16);
}

#psychotraumatologie .button.secondary:hover,
#parcours .button.secondary:hover,
#reservation .button.primary:hover,
#reservation .button.ghost:hover,
.contact-message-actions .button.ghost:hover {
  color: var(--ink);
  background: var(--soft);
  border-color: var(--white);
}

.button.compact {
  min-height: 44px;
  padding: 11px 16px;
  font-size: 0.95rem;
}

.hero-visual {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 360px) minmax(250px, 320px);
  gap: clamp(16px, 2.2vw, 28px);
  align-items: center;
  justify-content: center;
  min-height: clamp(300px, 32vw, 430px);
  max-width: 980px;
  padding: clamp(22px, 3vw, 40px);
  overflow: hidden;
  border-radius: 8px;
  background:
    radial-gradient(circle at 78% 22%, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(140deg, rgba(40, 84, 102, 0.48), transparent 42%),
    linear-gradient(165deg, #d9e6ea 0%, #9fb9c4 34%, #4f8296 68%, #203f4d 100%);
  box-shadow: var(--shadow);
  isolation: isolate;
  animation: heroVisualIn 820ms 40ms var(--ease) both;
}

.cabinet-sign {
  position: relative;
  z-index: 2;
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  min-width: 0;
  padding: 22px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(29, 55, 66, 0.12);
  animation: floatSoft 5.8s ease-in-out infinite;
}

.cabinet-sign p,
.cabinet-sign strong,
.cabinet-sign span {
  display: block;
}

.cabinet-sign p {
  margin: 0 0 8px;
  color: var(--sage-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cabinet-sign strong {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.1;
}

.cabinet-sign span {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.45;
}

.portrait-frame {
  position: relative;
  z-index: 4;
  display: grid;
  place-items: center;
  width: clamp(250px, 24vw, 360px);
  height: clamp(250px, 24vw, 360px);
  grid-column: 1;
  grid-row: 1 / 3;
  justify-self: center;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(238, 243, 239, 0.68)),
    var(--soft);
  border: 8px solid rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  box-shadow: 0 20px 50px rgba(29, 55, 66, 0.18);
  overflow: hidden;
  animation: portraitIn 760ms 220ms var(--ease) both;
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 999px;
}

.calm-panel {
  position: relative;
  z-index: 1;
  grid-column: 2;
  grid-row: 2;
  width: 100%;
  min-width: 0;
  padding: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(29, 55, 66, 0.13);
  animation: floatSoft 6.4s 380ms ease-in-out infinite;
}

.calm-panel p {
  display: grid;
  gap: 3px;
  margin: 0;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.calm-panel p:last-child {
  border-bottom: 0;
}

.calm-panel span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.calm-panel strong {
  color: var(--sage-dark);
  font-size: clamp(0.95rem, 1.15vw, 1.08rem);
  line-height: 1.25;
}

.section {
  padding: clamp(24px, 3.4vw, 42px) clamp(18px, 5vw, 64px);
}

#accompagnements,
#trauma,
#psychotraumatologie,
#parcours,
#reservation {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 38%),
    var(--sage-dark);
}

#tcc,
#approche,
#questions,
#modalites,
#infos,
.cabinet-photo-section {
  background: var(--paper);
}

.intro,
.credentials,
.axis-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 6vw, 86px);
}

.faq {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
}

.infos {
  display: block;
}

.infos .section-heading,
.booking-section .section-heading,
.modalites-section .section-heading {
  margin-bottom: 28px;
}

.booking-section {
  padding-block: clamp(24px, 3.2vw, 40px);
}

.booking-section .cabinet-context-section {
  margin-bottom: 28px;
}

.booking-section .section-heading {
  margin-bottom: 18px;
}

.cabinet-photo-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 494px) minmax(0, 1fr);
  gap: clamp(22px, 3vw, 40px);
  align-items: center;
  justify-content: center;
  text-align: center;
}

.cabinet-photo-copy {
  display: grid;
  justify-items: center;
  justify-self: end;
  max-width: 360px;
}

.cabinet-photo-copy h2 {
  max-width: 340px;
}

.cabinet-context-section {
  display: grid;
  justify-items: center;
  gap: 16px;
  text-align: center;
  padding: clamp(18px, 3vw, 28px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.cabinet-context-copy {
  display: grid;
  justify-items: center;
  gap: 6px;
  max-width: 560px;
}

.cabinet-context-copy h2,
.cabinet-context-copy .section-kicker {
  margin-inline: auto;
}

.cabinet-photo {
  position: relative;
  justify-self: center;
  width: 100%;
  min-height: clamp(182px, 20.8vw, 286px);
  margin: 0;
  overflow: hidden;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 0 14px 0 14px;
  box-shadow: 0 18px 45px rgba(29, 55, 66, 0.1);
}

.cabinet-photo img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
}

.cabinet-logo-panel {
  display: grid;
  place-items: center;
  justify-self: center;
  width: min(220px, 100%);
  aspect-ratio: 1;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0 14px 0 14px;
  box-shadow: 0 18px 45px rgba(29, 55, 66, 0.08);
}

.cabinet-logo-panel img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.appointment-layout {
  display: grid;
  gap: clamp(18px, 2.4vw, 28px);
}

.infos-content {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1.18fr);
  gap: 18px;
  align-items: stretch;
}

.section-heading {
  max-width: 560px;
}

.section-kicker {
  max-width: 700px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.6;
}

#accompagnements .eyebrow,
#trauma .eyebrow,
#psychotraumatologie .eyebrow,
#parcours .eyebrow,
#reservation .eyebrow {
  color: rgba(255, 255, 255, 0.76);
}

#accompagnements .section-kicker,
#psychotraumatologie .section-kicker,
#parcours .section-kicker,
#reservation .section-kicker {
  color: rgba(255, 255, 255, 0.82);
}

.faq-heading .section-kicker,
.cabinet-photo-copy .section-kicker {
  margin-inline: auto;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 3.6vw, 3.55rem);
  line-height: 1.06;
  letter-spacing: 0;
}

#modalites-title,
#reservation-title {
  white-space: nowrap;
}

.intro-text {
  display: grid;
  gap: 18px;
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
}

.intro-text p {
  margin: 0;
}

.intro-text .button {
  justify-self: start;
}

.axis-content {
  display: grid;
  gap: 22px;
  max-width: 820px;
}

.axis-content > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.trauma-axis .axis-content > p {
  color: rgba(255, 255, 255, 0.84);
}

.axis-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.axis-preview {
  align-items: start;
  gap: 14px;
  padding-block: clamp(30px, 4vw, 52px);
}

.axis-preview .axis-content {
  gap: 18px;
  text-align: center;
}

.axis-preview .axis-content > p {
  max-width: 720px;
  margin-inline: auto;
}

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

.compact-points .axis-point {
  padding: 18px;
}

.compact-points .axis-point h3 {
  margin-bottom: 6px;
}

.axis-more {
  justify-self: start;
}

.tcc-axis.axis-preview .section-heading,
.trauma-axis.axis-preview .section-heading,
.approach-axis.axis-preview .section-heading,
.parcours-axis.axis-preview .section-heading {
  display: grid;
  justify-items: center;
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.tcc-axis.axis-preview .section-kicker,
.trauma-axis.axis-preview .section-kicker,
.approach-axis.axis-preview .section-kicker,
.parcours-axis.axis-preview .section-kicker {
  margin-inline: auto;
  text-align: center;
}

.tcc-axis.axis-preview,
.trauma-axis.axis-preview,
.approach-axis.axis-preview,
.parcours-axis.axis-preview {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
}

.tcc-axis.axis-preview h2,
.trauma-axis.axis-preview h2,
.approach-axis.axis-preview h2,
.parcours-axis.axis-preview h2 {
  font-size: clamp(2rem, 3.6vw, 3.55rem);
  line-height: 1.06;
}

.tcc-axis.axis-preview .axis-content,
.trauma-axis.axis-preview .axis-content,
.approach-axis.axis-preview .axis-content,
.parcours-axis.axis-preview .axis-content {
  max-width: 900px;
  justify-items: center;
  justify-self: center;
  width: 100%;
}

.tcc-axis.axis-preview .axis-more,
.trauma-axis.axis-preview .axis-more,
.approach-axis.axis-preview .axis-more,
.parcours-axis.axis-preview .axis-more {
  justify-self: center;
}

.axis-point {
  padding: 22px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: border-color 180ms ease, box-shadow 220ms ease, transform 220ms var(--ease);
}

.axis-point h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.3;
}

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

.credential-panel {
  display: grid;
  gap: 18px;
  max-width: 760px;
  padding: clamp(24px, 4vw, 34px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.credential-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.credential-panel .credential-lead {
  color: var(--ink);
  font-size: 1.18rem;
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 820px;
}

.faq-heading {
  display: grid;
  justify-items: center;
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
}

.faq-page-link {
  justify-self: center;
  margin-top: 22px;
}

#modalites .terms-block {
  border-color: var(--line);
}

.faq-item {
  padding: 22px 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq-item summary {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary > span:first-child {
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.3;
}

.faq-toggle {
  flex: 0 0 auto;
  min-width: 126px;
  padding: 8px 11px;
  color: var(--sage-dark);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 7px;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
}

.faq-toggle::before {
  content: "Lire la réponse";
}

.faq-item[open] .faq-toggle::before {
  content: "Refermer";
}

.faq-answer {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.faq-item h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
  line-height: 1.3;
}

.faq-item p,
.faq-item ul {
  margin: 0;
  color: var(--muted);
}

.faq-item ul {
  display: grid;
  gap: 6px;
  padding-left: 1.15rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.card {
  min-height: 0;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: border-color 180ms ease, box-shadow 220ms ease, transform 220ms var(--ease);
}

.card:hover,
.axis-point:hover,
.faq-item:hover,
.info-block:hover,
.terms-block:hover,
.credential-panel:hover {
  border-color: rgba(40, 84, 102, 0.28);
  box-shadow: 0 16px 34px rgba(29, 55, 66, 0.1);
  transform: translateY(-3px);
}

.card h3,
.info-block h3 {
  margin: 0 0 14px;
  font-size: 1.2rem;
  line-height: 1.25;
}

.card p,
.info-block p {
  margin: 0;
  color: var(--muted);
}

.card-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--sage-dark);
  font-weight: 700;
  text-decoration: none;
}

.card-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.card-toggle {
  display: none;
}

.terms-content {
  display: grid;
  gap: 12px;
}

#accompagnements .card h3,
#questions .faq-item h3 {
  color: var(--ink);
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

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

.info-block {
  min-height: 178px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: border-color 180ms ease, box-shadow 220ms ease, transform 220ms var(--ease);
}

.booking-block,
.map-block {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(29, 55, 66, 0.08);
}

.booking-block {
  position: relative;
  border-color: rgba(216, 225, 229, 0.72);
  box-shadow: 0 12px 30px rgba(29, 55, 66, 0.08);
}

.contact-request {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: start;
  margin-bottom: clamp(18px, 3vw, 28px);
  padding: clamp(18px, 3vw, 28px);
  background: var(--white);
  border: 1px solid rgba(216, 225, 229, 0.76);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(29, 55, 66, 0.07);
}

@media (min-width: 960px) {
  .appointment-layout {
    grid-template-columns: minmax(320px, 0.82fr) minmax(500px, 1.18fr);
    align-items: stretch;
  }

  .appointment-layout .contact-request,
  .appointment-layout .booking-block {
    height: 100%;
  }

  .appointment-layout .contact-request {
    grid-template-columns: 1fr;
    margin-bottom: 0;
  }

  .appointment-layout .contact-message-form {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .appointment-layout .contact-message-form label:last-of-type {
    flex: 1;
  }

  .appointment-layout .contact-message-form textarea {
    height: 100%;
  }
}

.contact-request-copy {
  display: grid;
  gap: 8px;
}

.contact-request-copy h3,
.booking-intro h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  letter-spacing: 0;
}

.contact-request-copy p,
.booking-intro p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.contact-message-form {
  display: grid;
  gap: 10px;
}

.contact-message-form label {
  display: grid;
  gap: 5px;
}

.contact-message-form span {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-message-form small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
}

.contact-message-form input,
.contact-message-form textarea {
  width: 100%;
  color: var(--ink);
  font: inherit;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: 0;
  transition: border-color 180ms ease, box-shadow 200ms ease, background 180ms ease;
}

.contact-message-form input {
  min-height: 42px;
  padding: 8px 12px;
}

.contact-message-form textarea {
  min-height: 116px;
  padding: 10px 12px;
  resize: vertical;
}

.contact-message-form input:focus,
.contact-message-form textarea:focus {
  background: var(--white);
  border-color: var(--sage);
  box-shadow: 0 0 0 4px rgba(94, 131, 145, 0.16);
}

.contact-message-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.contact-message-actions .button.ghost {
  color: var(--sage-dark);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 24px rgba(29, 55, 66, 0.16);
}

.contact-message-actions .button.ghost:hover {
  color: var(--ink);
  background: var(--soft);
  border-color: var(--white);
}

.appointment-actions {
  grid-column: 1 / -1;
  justify-content: center;
  margin-top: 0;
  padding: 2px 0 0;
}

.booking-intro {
  padding: clamp(18px, 2.4vw, 24px) clamp(18px, 3vw, 28px);
  border-bottom: 1px solid var(--line);
}

.booking-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: stretch;
  background: var(--white);
}

.map-block iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.booking-calendar,
.booking-submit {
  padding: clamp(16px, 2.4vw, 22px);
}

.booking-calendar {
  order: 2;
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  justify-items: center;
  gap: 10px;
  padding: clamp(18px, 3vw, 28px);
  background: linear-gradient(145deg, rgba(238, 244, 246, 0.86), rgba(255, 255, 255, 0.96));
  border-left: 0;
}

.booking-submit {
  order: 3;
  grid-column: 1 / -1;
  border-top: 1px solid var(--line);
}

.booking-status {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.booking-status[hidden] {
  display: none;
}

.booking-status[data-state="error"] {
  color: #9b493d;
}

.booking-calendar-label {
  width: 100%;
  max-width: 540px;
  margin-inline: auto;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
}

.availability-calendar {
  width: 100%;
  max-width: 540px;
  margin-inline: auto;
  padding: 10px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(216, 225, 229, 0.9);
  border-radius: 8px;
}

.availability-calendar__header {
  display: grid;
  align-items: center;
  grid-template-columns: 36px 1fr 36px;
  gap: 8px;
  margin-bottom: 10px;
}

.availability-calendar__month {
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 800;
  text-align: center;
  text-transform: capitalize;
}

.availability-calendar__nav {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--sage-dark);
  font: inherit;
  font-size: 1.32rem;
  font-weight: 800;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms var(--ease);
}

.availability-calendar__nav:hover:not(:disabled) {
  background: var(--soft);
  border-color: var(--sage);
  transform: translateY(-1px);
}

.availability-calendar__nav:disabled {
  opacity: 0.36;
  cursor: not-allowed;
}

.availability-calendar__weekdays,
.availability-calendar__days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 5px;
}

.availability-calendar__weekdays {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.availability-calendar__day {
  aspect-ratio: 1;
  width: 100%;
  color: var(--muted);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 800;
  background: rgba(251, 251, 248, 0.72);
  border: 1px solid rgba(216, 225, 229, 0.72);
  border-radius: 8px;
  cursor: not-allowed;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 200ms ease, transform 180ms var(--ease);
}

.availability-calendar__day.has-slots {
  color: var(--sage-dark);
  background: var(--white);
  border-color: rgba(94, 131, 145, 0.36);
  cursor: pointer;
}

.availability-calendar__day.has-slots:hover,
.availability-calendar__day.is-selected {
  color: var(--white);
  background: var(--sage-dark);
  border-color: var(--sage-dark);
  box-shadow: 0 10px 22px rgba(29, 55, 66, 0.12);
  transform: translateY(-2px);
}

.availability-calendar__day.is-outside {
  opacity: 0.28;
}

.booking-time-picker {
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
  padding: 10px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(216, 225, 229, 0.8);
  border-radius: 8px;
}

.booking-time-label {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

.availability-time-options {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
}

.availability-time-options button {
  min-height: 34px;
  color: var(--sage-dark);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms var(--ease), box-shadow 200ms ease;
}

.availability-time-options button:hover:not(:disabled),
.availability-time-options button.is-active {
  color: var(--white);
  background: var(--sage-dark);
  border-color: var(--sage-dark);
  box-shadow: 0 10px 22px rgba(29, 55, 66, 0.12);
  transform: translateY(-2px);
}

.availability-time-options button:disabled {
  color: rgba(100, 115, 123, 0.46);
  background: rgba(238, 244, 246, 0.48);
  border-color: rgba(216, 225, 229, 0.58);
  opacity: 0.76;
  cursor: not-allowed;
}

@media (min-width: 901px) {
  .hero {
    grid-template-columns: minmax(0, 1.14fr) minmax(340px, 0.86fr);
    align-items: center;
    width: min(100%, 1780px);
    margin-inline: auto;
  }

  .hero-content {
    grid-column: 2;
    grid-row: 1;
    max-width: 620px;
    justify-self: start;
  }

  .hero-content h1 {
    max-width: 620px;
    font-size: clamp(2.35rem, 3.7vw, 4.1rem);
  }

  .hero-title-main {
    white-space: normal;
  }

  .hero-visual {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    max-width: none;
  }

  .booking-calendar {
    align-content: stretch;
    grid-template-rows: minmax(0, 1fr) auto;
  }

  .availability-calendar {
    display: grid;
    grid-template-rows: auto auto minmax(0, 1fr);
    align-self: stretch;
  }

  .availability-calendar__days {
    height: 100%;
  }

  .availability-calendar__day {
    min-height: 34px;
    aspect-ratio: auto;
  }
}

.booking-selection {
  margin: 0;
  padding: 10px 12px;
  color: var(--sage-dark);
  background: rgba(238, 244, 246, 0.8);
  border: 1px solid rgba(216, 225, 229, 0.82);
  border-radius: 8px;
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.button.ghost {
  color: var(--sage-dark);
  background: var(--white);
  border-color: var(--line);
  box-shadow: none;
}

.map-block {
  min-height: 374px;
}

.map-block iframe {
  min-height: 374px;
}

.terms-block {
  padding: 24px;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  transition: border-color 180ms ease, box-shadow 220ms ease, transform 220ms var(--ease);
}

.terms-block h3 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 1.2rem;
  line-height: 1.25;
}

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

.terms-block strong {
  color: var(--ink);
}

.terms-block p + p {
  margin-top: 10px;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--sage-dark);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  transition: color 180ms ease, transform 180ms var(--ease);
}

.text-link:hover {
  color: var(--ink);
  transform: translateX(3px);
}

.appointment-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
  margin-top: 18px;
}

.appointment-actions .text-link {
  margin-top: 0;
}

.google-reviews {
  background: var(--paper);
}

.google-reviews-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(18px, 4vw, 42px);
  align-items: center;
  max-width: 980px;
  margin-inline: auto;
  padding: clamp(22px, 4vw, 34px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(238, 244, 246, 0.72)),
    var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(29, 55, 66, 0.08);
}

.google-reviews-badge {
  display: grid;
  justify-items: center;
  gap: 9px;
  min-width: 98px;
}

.google-mark {
  width: 54px;
  height: 54px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(29, 55, 66, 0.08);
  object-fit: contain;
}

.google-stars {
  color: #fbbc04;
  font-size: 1.16rem;
  line-height: 1;
  white-space: nowrap;
}

.google-reviews-copy {
  display: grid;
  gap: 8px;
}

.google-reviews-copy .eyebrow,
.google-reviews-copy h2,
.google-reviews-copy p {
  margin: 0;
}

.google-reviews-copy h2 {
  max-width: 720px;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.12;
}

.google-reviews-copy p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
}

.google-reviews-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.google-reviews .button.primary {
  color: var(--white);
  background: var(--sage-dark);
  border: 1px solid var(--sage-dark);
}

.google-reviews .button.secondary {
  color: var(--sage-dark);
  background: var(--white);
  border-color: var(--line);
}

.site-footer {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 24px clamp(18px, 5vw, 76px);
  color: var(--muted);
  text-align: center;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

.footer-copy {
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer a {
  color: var(--sage-dark);
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
}

.legal-page {
  padding: clamp(28px, 4vw, 46px) clamp(18px, 5vw, 64px);
  background: var(--paper);
}

.legal-heading {
  max-width: 860px;
  margin-bottom: clamp(28px, 5vw, 46px);
}

.legal-heading h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.legal-heading p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
}

.legal-content {
  display: grid;
  gap: 18px;
  max-width: 920px;
}

.legal-content section {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.legal-content h2 {
  margin: 0 0 14px;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}

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

.legal-content p + p {
  margin-top: 8px;
}

.legal-content a {
  color: var(--sage-dark);
  font-weight: 800;
}

.detail-nav {
  justify-content: flex-end;
}

.detail-hero {
  display: grid;
  justify-items: center;
  padding: clamp(40px, 5.5vw, 64px) clamp(18px, 5vw, 64px);
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 36%),
    linear-gradient(145deg, rgba(40, 84, 102, 0.9), rgba(23, 35, 42, 0.96));
}

.detail-hero.tcc-detail {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 36%),
    linear-gradient(145deg, rgba(63, 113, 133, 0.96), rgba(40, 84, 102, 0.98));
}

.detail-hero.approach-detail {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 36%),
    linear-gradient(145deg, rgba(63, 113, 133, 0.96), rgba(29, 55, 66, 0.98));
}

.detail-hero.parcours-detail {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), transparent 36%),
    linear-gradient(145deg, rgba(71, 96, 108, 0.96), rgba(29, 55, 66, 0.98));
}

.detail-hero.infos-detail {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), transparent 36%),
    linear-gradient(145deg, rgba(40, 84, 102, 0.96), rgba(29, 55, 66, 0.98));
}

.detail-hero.trauma-detail {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 36%),
    linear-gradient(145deg, rgba(40, 84, 102, 0.98), rgba(30, 42, 48, 0.98));
}

.detail-hero h1 {
  max-width: 940px;
  font-size: clamp(2.2rem, 5.4vw, 4.75rem);
}

.detail-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.12rem;
}

.detail-hero .text-link {
  color: rgba(255, 255, 255, 0.88);
}

.detail-hero .button.secondary,
.detail-hero .button.primary {
  background: var(--white);
  color: var(--sage-dark);
}

.detail-section {
  padding: clamp(24px, 3.4vw, 42px) clamp(18px, 5vw, 64px);
}

.detail-photo-section {
  display: grid;
  justify-items: center;
  padding-block: clamp(24px, 4vw, 44px);
  background: var(--paper);
}

.detail-photo {
  width: min(520px, 100%);
  aspect-ratio: 1;
  margin: 0;
  overflow: hidden;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 0 14px 0 14px;
  box-shadow: 0 18px 45px rgba(29, 55, 66, 0.11);
}

.detail-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.detail-photo-wide {
  width: min(760px, 100%);
  aspect-ratio: 1.35;
}

.detail-photo-compact {
  width: min(532px, 100%);
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1120px;
}

.detail-flow {
  display: grid;
  gap: 18px;
  max-width: 980px;
  margin-inline: auto;
}

.faq-page-list {
  display: grid;
  gap: 18px;
  max-width: 980px;
  margin-inline: auto;
}

.detail-block {
  padding: clamp(22px, 3vw, 30px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(29, 55, 66, 0.07);
}

.detail-block h2 {
  margin: 0 0 12px;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
}

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

.detail-block p + p,
.detail-block p + .detail-list,
.detail-list + p,
.tcc-chain + p {
  margin-top: 14px;
}

.detail-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
}

.detail-list.two-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 28px;
}

.tcc-chain {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
}

.tcc-chain span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  color: var(--sage-dark);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

.tcc-chain span:not(:last-child)::after {
  margin-left: 10px;
  color: var(--clay);
  content: "→";
}

.contact-sticky {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 20;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 196px;
  padding: 13px 16px;
  color: var(--white);
  background: var(--sage-dark);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0 14px 0 14px;
  box-shadow: 0 18px 42px rgba(29, 55, 66, 0.24);
  text-decoration: none;
  animation: stickyIn 760ms 900ms var(--ease) both, stickyPulse 3.8s 2.2s ease-in-out infinite;
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms var(--ease);
}

.contact-sticky:hover {
  background: var(--ink);
  box-shadow: 0 20px 48px rgba(29, 55, 66, 0.3);
  transform: translateY(-2px);
}

.contact-sticky-label {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
}

.contact-sticky-phone {
  margin-top: 4px;
  font-size: 1.02rem;
  font-weight: 850;
  line-height: 1.2;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 680ms var(--ease), transform 680ms var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

.is-scrolling-up .reveal {
  transform: translateY(-20px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-scale {
  opacity: 0;
  transform: translateY(16px) scale(0.98);
  transition: opacity 620ms var(--ease), transform 620ms var(--ease), border-color 180ms ease, box-shadow 220ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.is-scrolling-up .reveal-scale {
  transform: translateY(-16px) scale(0.98);
}

.reveal-scale.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.reveal-scale.is-visible:hover {
  transform: translateY(-3px) scale(1);
}

.credential-panel.reveal.is-visible:hover {
  transform: translateY(-3px);
}

@keyframes headerDrop {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroTextIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroVisualIn {
  from {
    opacity: 0;
    transform: translateX(-22px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes portraitIn {
  from {
    opacity: 0;
    transform: scale(0.88);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes floatSoft {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes stickyIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes stickyPulse {
  0%,
  100% {
    box-shadow: 0 18px 42px rgba(29, 55, 66, 0.24);
  }
  50% {
    box-shadow: 0 18px 42px rgba(29, 55, 66, 0.24), 0 0 0 8px rgba(40, 84, 102, 0.12);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .reveal,
  .reveal-scale {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1180px) {
  h1 {
    font-size: clamp(2.15rem, 4.2vw, 3.7rem);
  }

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

  .booking-calendar {
    grid-template-columns: 1fr;
  }

  .booking-time-picker {
    margin-top: 10px;
  }

}

@media (max-width: 900px) {
  .reveal,
  .reveal-scale {
    opacity: 1;
    transform: none;
    transition-delay: 0ms;
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .detail-nav {
    position: static;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
    width: auto;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .detail-nav a {
    padding: 8px 10px;
  }

  .site-nav a {
    padding: 12px;
  }

  .nav-cta {
    margin-top: 6px;
    text-align: center;
  }

  .hero,
  .intro,
  .infos,
  .credentials,
  .faq,
  .axis-section,
  .cabinet-photo-section,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .detail-list.two-columns {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    width: 100%;
    max-width: 100vw;
    padding-top: clamp(28px, 6vw, 46px);
    overflow-x: clip;
  }

  .hero-content {
    width: 100%;
    min-width: 0;
    max-width: 680px;
    justify-self: center;
  }

  .hero-title-main {
    white-space: normal;
  }

  .hero-visual {
    order: 2;
    min-width: 0;
    max-width: 680px;
    width: 100%;
    justify-self: center;
  }

  .hero-actions-desktop {
    display: none;
  }

  .hero-actions-mobile {
    display: flex;
    grid-column: 1 / -1;
    margin-top: 0;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .infos-content {
    grid-template-columns: 1fr;
  }

  .terms-grid {
    grid-template-columns: 1fr;
  }

  .card,
  .info-block,
  .booking-block,
  .map-block,
  .cabinet-photo,
  .terms-block {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  :root {
    color-scheme: only light;
  }

  html {
    background-color: #fbfbf8 !important;
    color: #17232a !important;
    color-scheme: only light;
    forced-color-adjust: none;
    scroll-padding-top: 82px;
  }

  body {
    background-color: #fbfbf8 !important;
    color: #17232a !important;
    color-scheme: only light;
    forced-color-adjust: none;
  }

  .site-header {
    background-color: rgba(251, 251, 248, 0.96) !important;
    border-bottom-color: rgba(217, 224, 220, 0.82) !important;
  }

  .brand strong,
  .hero h1,
  .cabinet-sign strong {
    color: #17232a !important;
  }

  #reservation .contact-request h3,
  #reservation .booking-block h3 {
    color: #17232a !important;
  }

  .brand small,
  .cabinet-sign span,
  .card p,
  .info-block p,
  .terms-block p {
    color: #64737b !important;
  }

  .menu-button {
    background-color: transparent !important;
    border-color: #d8e1e5 !important;
  }

  .menu-button span {
    background-color: #17232a !important;
  }

  .site-nav {
    background-color: #ffffff !important;
    border-color: #d8e1e5 !important;
  }

  .site-nav a:not(.nav-cta) {
    color: #64737b !important;
  }

  .nav-cta,
  .button.primary,
  .contact-sticky {
    color: #ffffff !important;
    background-color: #285466 !important;
    border-color: #285466 !important;
  }

  .button.secondary,
  .button.ghost {
    color: #285466 !important;
    background-color: #eef4f6 !important;
    border-color: #d8e1e5 !important;
  }

  #psychotraumatologie .button.secondary,
  #parcours .button.secondary,
  #reservation .button.primary,
  #reservation .button.ghost,
  .contact-message-actions .button.ghost {
    color: #285466 !important;
    background-color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.82) !important;
  }

  [id] {
    scroll-margin-top: 82px;
  }

  .site-header {
    min-height: 68px;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
  }

  .site-nav {
    top: 68px;
  }

  .brand {
    gap: 10px;
    min-width: 0;
  }

  .brand strong {
    font-size: 0.94rem;
  }

  .brand small {
    font-size: 0.78rem;
  }

  h1 {
    font-size: clamp(1.45rem, 6.2vw, 1.72rem);
    line-height: 1.08;
    text-wrap: balance;
    overflow-wrap: anywhere;
  }

  .hero-content {
    text-align: center;
  }

  .hero-title-main {
    white-space: normal;
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: clamp(1.72rem, 9vw, 2.25rem);
  }

  #modalites-title,
  #reservation-title {
    white-space: normal;
  }

  .hero-text,
  .intro-text {
    font-size: 1rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .appointment-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .appointment-actions .text-link {
    justify-content: center;
  }

  .nav-cta::after,
  .button::after,
  .contact-sticky::after {
    right: -7px;
    width: 8px;
    height: 14px;
  }

  .section {
    padding-block: 24px;
  }

  #accompagnements,
  #trauma,
  #psychotraumatologie,
  #parcours,
  #reservation {
    color: #ffffff !important;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 38%),
      #285466 !important;
  }

  #accompagnements .eyebrow,
  #trauma .eyebrow,
  #psychotraumatologie .eyebrow,
  #parcours .eyebrow,
  #reservation .eyebrow {
    color: rgba(255, 255, 255, 0.76) !important;
  }

  #accompagnements .section-kicker,
  #psychotraumatologie .section-kicker,
  #parcours .section-kicker,
  #reservation .section-kicker {
    color: rgba(255, 255, 255, 0.82) !important;
  }

  .hero,
  #tcc,
  #approche,
  #questions,
  #modalites,
  #infos,
  .cabinet-photo-section,
  .detail-section,
  .detail-photo-section,
  .legal-page {
    background-color: #fbfbf8 !important;
    color: #17232a !important;
  }

  .cabinet-sign,
  .calm-panel,
  .card,
  .info-block,
  .terms-block,
  .faq-item,
  .contact-request,
  .booking-block,
  .map-block,
  .detail-block,
  .legal-content section {
    background-color: #ffffff !important;
    border-color: #d8e1e5 !important;
    color: #17232a !important;
  }

  .portrait-frame {
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(238, 243, 239, 0.68)),
      #eef4f6 !important;
    border-color: rgba(255, 255, 255, 0.86) !important;
  }

  .calm-panel span,
  .cabinet-sign p {
    color: #285466 !important;
  }

  .cabinet-photo-section {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .cabinet-context-section {
    justify-items: center;
    gap: 18px;
  }

  .cabinet-photo-copy {
    justify-self: center;
    text-align: center;
  }

  .cabinet-photo {
    justify-self: center;
    width: min(100%, 420px);
    min-height: 140px;
  }

  .cabinet-logo-panel {
    justify-self: center;
    width: 180px;
    padding: 14px;
  }

  .hero-visual {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    justify-items: center;
    max-width: 100%;
    min-height: 0;
    padding: 18px;
  }

  .cabinet-sign,
  .calm-panel,
  .calm-panel p {
    min-width: 0;
  }

  .cabinet-sign {
    position: relative;
    z-index: 2;
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    max-width: 100%;
    padding: 18px;
  }

  .cabinet-sign strong,
  .cabinet-sign span {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .portrait-frame {
    position: relative;
    width: clamp(252px, 64.8vw, 342px);
    height: clamp(252px, 64.8vw, 342px);
    grid-column: 1;
    grid-row: 1;
    justify-self: center;
  }

  .calm-panel {
    position: relative;
    grid-column: 1;
    grid-row: 3;
    width: 100%;
    max-width: 100%;
    padding: 16px;
  }

  .calm-panel p,
  .calm-panel strong {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .axis-points {
    grid-template-columns: 1fr;
  }

  .compact-points {
    grid-template-columns: 1fr;
  }

  .card,
  .info-block,
  .terms-block {
    padding: 20px;
  }

  #accompagnements.has-card-toggles .card {
    display: grid;
    gap: 6px;
    padding: 12px 14px;
  }

  #accompagnements.has-card-toggles .card h3 {
    margin: 0;
    font-size: 1rem;
    line-height: 1.22;
  }

  #accompagnements.has-card-toggles .card:not(.is-expanded) p {
    display: none;
  }

  #accompagnements.has-card-toggles .card-toggle {
    display: inline-flex;
    justify-self: start;
    padding: 0;
    color: rgba(40, 84, 102, 0.9);
    font: inherit;
    font-size: 0.88rem;
    font-weight: 500;
    background: transparent;
    border: 0;
    cursor: pointer;
  }

  #accompagnements.has-card-toggles .card-toggle:hover {
    color: var(--sage-dark);
  }

  #modalites.has-terms-toggles .terms-block {
    display: grid;
    gap: 8px;
    padding: 16px 18px;
  }

  #modalites.has-terms-toggles .terms-block h3 {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.25;
  }

  #modalites.has-terms-toggles .terms-block:not(.is-expanded) .terms-content {
    display: none;
  }

  #modalites.has-terms-toggles .card-toggle {
    display: inline-flex;
    justify-self: start;
    padding: 0;
    color: rgba(40, 84, 102, 0.9);
    font: inherit;
    font-size: 0.88rem;
    font-weight: 500;
    background: transparent;
    border: 0;
    cursor: pointer;
  }

  #modalites.has-terms-toggles .card-toggle:hover {
    color: var(--sage-dark);
  }

  .faq-item {
    padding: 18px;
  }

  .faq-item summary {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .faq-toggle {
    width: 100%;
  }

  .booking-panel {
    grid-template-columns: 1fr;
  }

  .contact-request {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .contact-message-actions {
    flex-direction: column;
  }

  .contact-message-actions .button {
    justify-content: center;
    width: 100%;
  }

  .google-reviews-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 20px;
  }

  .google-reviews-badge {
    justify-items: start;
    min-width: 0;
  }

  .google-reviews-actions {
    flex-direction: column;
    justify-content: stretch;
  }

  .google-reviews-actions .button {
    width: 100%;
  }

  .booking-calendar {
    order: 2;
    grid-template-columns: 1fr;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .booking-submit {
    order: 3;
  }

  .availability-calendar {
    padding: 14px;
  }

  .availability-calendar__weekdays,
  .availability-calendar__days {
    gap: 5px;
  }

  .availability-calendar__day {
    border-radius: 7px;
    font-size: 0.88rem;
  }

  .availability-time-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-actions {
    flex-direction: column;
  }

  .booking-actions .button {
    justify-content: center;
    width: 100%;
  }

  .map-block,
  .map-block iframe {
    min-height: 300px;
  }

  .site-footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 104px;
  }

  .site-footer p {
    max-width: 28rem;
  }

  .footer-links {
    width: 100%;
    justify-content: center;
  }

  .contact-sticky {
    right: 14px;
    bottom: 14px;
    left: 14px;
    align-items: center;
    min-width: 0;
    text-align: center;
  }

  .contact-sticky + * {
    margin-bottom: 0;
  }

  .detail-nav {
    display: none;
  }

  .detail-hero {
    padding-top: 32px;
  }

  .detail-hero h1 {
    font-size: clamp(2rem, 9vw, 2.55rem);
  }
}

@media (max-width: 390px) {
  .site-header {
    padding-inline: 12px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
    font-size: 0.86rem;
  }

  .hero {
    padding-inline: 14px;
  }

  .portrait-frame {
    width: 168px;
    height: 168px;
  }
}
