/* ==========================================================================
   Apaisance — accueil
   Palette relevée au pixel sur le site d'origine :
   violet #7A1780, orange #E08E13, sable issu de la photo de jardin zen.
   Registre : éditorial clinique. Filets fins plutôt qu'ombres,
   angles quasi droits, asymétrie, aucune animation d'apparition.
   ========================================================================== */

:root {
  /* Surfaces — teintes échantillonnées dans la photo de jardin zen du cabinet
     (plus clair #FAF1E8, moyenne #DAD0C5). La chaleur vient donc de l'image
     de la cliente, elle n'est pas un beige de convenance. */
  --paper:    #FDFAF6;
  --paper-2:  #F6EFE6;
  --paper-3:  #EFE5D8;

  /* Encre chaude plutôt que noir neutre : 14.8:1 sur le fond, mais plus douce à l'œil */
  --ink:      #2B2420;
  --ink-2:    #6A5F56;   /* 6.0:1 */
  --rule:     #E7DECF;
  --rule-2:   #D6C9B4;

  /* Marque */
  --purple:      #7A1780;   /* 9.4:1 sur blanc */
  --purple-dark: #5E1163;
  --orange:      #E08E13;   /* aplats et filets uniquement */
  --orange-text: #9A5F09;   /* 5.2:1 sur blanc, conforme AA */

  /* Typographie */
  --display: "Spectral", Georgia, "Times New Roman", serif;
  --sans:    "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Échelle : rapport minimum de 1.25 entre deux niveaux */
  --t-micro: 0.8125rem;
  --t-small: 0.9375rem;
  --t-body:  1.0625rem;
  --t-lead:  1.3125rem;
  --t-h3:    1.5rem;
  --t-h2:    clamp(1.75rem, 3vw, 2.375rem);
  --t-h1:    clamp(2.125rem, 4.6vw, 3.25rem);

  --shell: 1180px;
  --gut: 24px;
  --r: 10px;      /* arrondi doux, sous le seuil de 12-16px où tout devient pâteux */
  --r-sm: 8px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--t-body);
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 400;
  /* interlignage plus ample et aucun resserrement : les titres respirent */
  line-height: 1.24;
  margin: 0;
  text-wrap: balance;
  letter-spacing: 0;
}
h1 { font-size: var(--t-h1); font-weight: 300; }
h2 { font-size: var(--t-h2); }
h3 { font-size: var(--t-h3); }

p { margin: 0 0 1.05em; max-width: 68ch; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

.shell {
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 var(--gut);
}

.skip-link {
  position: absolute;
  left: -9999px;
  background: var(--purple);
  color: #fff;
  padding: 12px 18px;
  z-index: 100;
}
.skip-link:focus { left: 16px; top: 16px; }

:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 3px;
}

/* ---------- Boutons : aplats francs, pas de halo coloré ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: var(--t-small);
  font-weight: 600;
  line-height: 1;
  padding: 15px 26px;
  border-radius: var(--r);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}
.btn-solid { background: var(--purple); color: #fff; }
.btn-solid:hover { background: var(--purple-dark); }
.btn-line { border-color: var(--rule-2); color: var(--ink); }
.btn-line:hover { border-color: var(--ink); }

/* ---------- Lien fléché ---------- */
.arrow-link {
  display: inline-block;
  margin-top: 22px;
  font-size: var(--t-small);
  font-weight: 600;
  color: var(--purple);
  border-bottom: 1px solid var(--rule-2);
  padding-bottom: 3px;
  transition: border-color .15s ease;
}
.arrow-link::after { content: " \2192"; }
.arrow-link:hover { border-bottom-color: var(--purple); }

/* ==========================================================================
   Bandeau de tête
   ========================================================================== */
.masthead {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}
.masthead-row {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 84px;
}
.brand { flex: none; }
.brand img { width: auto; height: 60px; }

.nav {
  display: flex;
  gap: 26px;
  margin-left: auto;
}
.nav a {
  font-size: var(--t-small);
  color: var(--ink-2);
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
.nav a:hover { color: var(--ink); border-bottom-color: var(--orange); }

.masthead-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: none;
}
.tel-link {
  font-size: var(--t-small);
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}
.tel-link:hover { color: var(--purple); }

.burger {
  display: none;
  width: 40px; height: 40px;
  padding: 0;
  background: none;
  border: 1px solid var(--rule-2);
  border-radius: var(--r);
  cursor: pointer;
  position: relative;
}
.burger span {
  position: absolute;
  left: 11px; right: 11px;
  height: 1.5px;
  background: var(--ink);
  transition: transform .2s ease, opacity .2s ease;
}
.burger span:nth-child(1) { top: 15px; }
.burger span:nth-child(2) { top: 22px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

/* ==========================================================================
   Hero — split asymétrique, photo à fond perdu à droite
   ========================================================================== */
.hero { display: grid; }

.hero-copy {
  padding: clamp(48px, 7vw, 92px) var(--gut) clamp(44px, 6vw, 80px);
}
.hero-copy h1 { max-width: 15ch; }
.hero .lead {
  font-family: var(--display);
  font-size: var(--t-lead);
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 46ch;
  margin-top: 24px;
}

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

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0 44px;
  margin: 46px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--rule);
}
.hero-facts dt {
  font-size: var(--t-micro);
  color: var(--ink-2);
}
.hero-facts dd {
  margin: 2px 0 0;
  font-family: var(--display);
  font-size: 1.0625rem;
  color: var(--ink);
}

.hero-figure { margin: 0; background: var(--paper-2); position: relative; }
.hero-figure img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  object-position: 50% 45%;
}
/* La photo se fond dans la page au lieu de s'arrêter sur une arête franche */
.hero-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, var(--paper) 0%, transparent 22%);
}

@media (min-width: 940px) {
  .hero {
    grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
    align-items: stretch;
  }
  .hero-copy {
    padding-left: max(var(--gut), calc((100vw - var(--shell)) / 2 + var(--gut)));
    padding-right: clamp(32px, 4vw, 64px);
    align-self: center;
  }
  .hero-figure img { min-height: 620px; }
  .hero-figure::after {
    background: linear-gradient(90deg, var(--paper) 0%, rgba(253,250,246,0) 16%);
  }
}

@media (max-width: 939px) {
  .hero-figure img { aspect-ratio: 16 / 10; height: auto; }
}

/* ==========================================================================
   Sections
   ========================================================================== */
.section { padding: clamp(68px, 9vw, 124px) 0; }
.band-soft { background: var(--paper-2); }

.section-head { max-width: 62ch; }
.section-head h2 { margin-bottom: 18px; }
.section-intro { font-size: var(--t-lead); line-height: 1.5; color: var(--ink-2); }

/* ---------- Deux publics : colonnes séparées par un filet ---------- */
.split {
  display: grid;
  gap: clamp(34px, 5vw, 64px);
  margin-top: clamp(40px, 5vw, 64px);
}
@media (min-width: 820px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split-col + .split-col {
    padding-left: clamp(34px, 5vw, 64px);
    border-left: 1px solid var(--rule);
  }
}
.split-col h3 { margin-bottom: 14px; }
.split-col p { font-size: var(--t-body); color: var(--ink-2); }
.note {
  font-size: var(--t-small);
  border-top: 1px solid var(--rule);
  padding-top: 14px;
  margin-top: 18px;
}
.note strong { color: var(--orange-text); font-weight: 600; }

.topic-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 24px;
}
.topic-list li {
  font-size: var(--t-small);
  color: var(--ink);
  padding: 8px 0;
  border-top: 1px solid var(--rule);
}

/* ---------- Blocs prestations : plaque image + liste ---------- */
.offer {
  display: grid;
  gap: clamp(32px, 5vw, 72px);
}
.offer-plate { margin: 0; }
.offer-plate img {
  width: 100%;
  max-width: 320px;
  /* height:auto est indispensable : les attributs width/height du HTML
     sont des indications de présentation qui fixeraient sinon la hauteur
     et neutraliseraient aspect-ratio. */
  height: auto;
  aspect-ratio: 8 / 9;
  object-fit: cover;
  object-position: 50% 30%;
  background: var(--paper-3);
  border-radius: var(--r);
}
@media (min-width: 880px) {
  .offer { grid-template-columns: 320px minmax(0, 1fr); align-items: start; }
  .offer-flip { grid-template-columns: minmax(0, 1fr) 320px; }
  .offer-flip .offer-plate { order: 2; }
}

.offer-tag {
  font-size: var(--t-small);
  color: var(--orange-text);
  margin-bottom: 10px;
}
.offer-body h2 { margin-bottom: 16px; }
.offer-body > p { color: var(--ink-2); }

.offer-list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 0 44px;
}
@media (min-width: 700px) {
  .offer-list { grid-template-columns: 1fr 1fr; }
}
.offer-list li {
  border-top: 1px solid var(--rule);
  padding: 18px 0;
}
.offer-list span {
  display: block;
  font-size: var(--t-body);
  font-weight: 600;
}
.offer-list small {
  display: block;
  font-size: var(--t-small);
  line-height: 1.5;
  color: var(--ink-2);
  margin-top: 3px;
}

/* ---------- Portrait ---------- */
.portrait { display: grid; gap: clamp(34px, 5vw, 72px); }
.portrait-figure { margin: 0; }
.portrait-figure img {
  width: 100%;
  max-width: 420px;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 22%;
  background: var(--paper-3);
  /* Arche : reprend la courbe ouverte du logo. Proportionnelle, donc
     identique à toutes les largeurs. */
  border-radius: 50% 50% var(--r) var(--r) / 34% 34% var(--r) var(--r);
}
@media (min-width: 880px) {
  .portrait { grid-template-columns: 420px minmax(0, 1fr); align-items: start; }
}
.portrait-body h2 { margin-bottom: 4px; }
.role {
  font-size: var(--t-small);
  color: var(--orange-text);
  margin-bottom: 22px;
}
.portrait-body p { color: var(--ink-2); }

.portrait-body blockquote {
  margin: 26px 0;
  padding-left: 22px;
  border-left: 2px solid var(--purple);
  font-family: var(--display);
  font-size: var(--t-lead);
  line-height: 1.45;
  color: var(--ink);
  max-width: 52ch;
}

.member-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 0 32px;
}
@media (min-width: 620px) {
  .member-list { grid-template-columns: 1fr 1fr; }
}
.member-list li {
  font-size: var(--t-small);
  color: var(--ink-2);
  padding: 9px 0 9px 18px;
  border-top: 1px solid var(--rule);
  position: relative;
}
.member-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 18px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

/* ==========================================================================
   Valeurs — un seul bandeau violet, trois colonnes filetées
   Blanc sur #7A1780 : contraste 9.4:1
   ========================================================================== */
.values {
  position: relative;
  isolation: isolate;
  background-color: var(--purple);
  color: #fff;
  padding: clamp(64px, 8vw, 104px) 0;
  overflow: hidden;
}
/* Le sable ratissé revient ici en texture très basse (8 %), pour adoucir
   l'aplat sans toucher aux contrastes : blanc 6.3:1, titres 5.2:1. */
.values::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url("https://static.wixstatic.com/media/6d4b71_b3c0093d2e93417ebfedece5938c42da~mv2.jpg/v1/fill/w_1600,h_700,al_c,q_80,enc_auto/texture.jpg");
  background-size: cover;
  background-position: center;
  opacity: .08;
}
.values-grid { display: grid; gap: 36px; }
@media (min-width: 860px) {
  .values-grid { grid-template-columns: repeat(3, 1fr); gap: 0; }
  .values-grid > div { padding: 0 36px; border-left: 1px solid rgba(255,255,255,.26); }
  .values-grid > div:first-child { padding-left: 0; border-left: 0; }
  .values-grid > div:last-child { padding-right: 0; }
}
.values h2 {
  font-family: var(--sans);
  font-size: var(--t-small);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #F7E7C6;
  margin-bottom: 16px;
}
.values p {
  font-family: var(--display);
  font-size: 1.1875rem;
  line-height: 1.5;
  color: #fff;
  max-width: none;
}

/* ==========================================================================
   Cabinet / contact
   ========================================================================== */
.contact { display: grid; gap: clamp(34px, 5vw, 64px); }
@media (min-width: 900px) {
  /* stretch, pas start : le plan remplit la hauteur de la colonne de texte
     au lieu de laisser un vide en bas de ligne */
  .contact { grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); align-items: stretch; }
  .contact-map { height: 100%; }
}
.contact-body h2 { margin-bottom: 16px; }
.contact-body > p { color: var(--ink-2); }

.contact-details { margin: 30px 0; padding: 0; display: grid; gap: 0; }
.contact-details > div {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--rule);
}
.contact-details dt { font-size: var(--t-small); color: var(--ink-2); }
.contact-details dd { margin: 0; font-size: var(--t-small); }
.contact-details a { border-bottom: 1px solid var(--rule-2); }
.contact-details a:hover { color: var(--purple); border-bottom-color: var(--purple); }

.fineprint {
  font-size: var(--t-micro);
  color: var(--ink-2);
  margin-top: 22px;
  max-width: 52ch;
}

.contact-map {
  border: 1px solid var(--rule);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--paper-2);
}
.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

/* ==========================================================================
   Références — liste statique, aucune animation
   ========================================================================== */
.refs {
  border-top: 1px solid var(--rule);
  padding: clamp(44px, 6vw, 68px) 0;
}
.refs h2 {
  font-family: var(--sans);
  font-size: var(--t-small);
  font-weight: 600;
  color: var(--ink-2);
  margin-bottom: 26px;
}
.ref-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0 32px;
}
.ref-list li {
  font-family: var(--display);
  font-size: 1.0625rem;
  color: var(--ink);
  padding: 11px 0;
  border-top: 1px solid var(--rule);
}

/* ==========================================================================
   Pied de page — clair, pour que le logo (traits sombres) reste lisible
   ========================================================================== */
.footer {
  background: var(--paper-3);
  border-top: 1px solid var(--rule-2);
  padding: clamp(48px, 6vw, 72px) 0 0;
}
.footer-grid {
  display: grid;
  gap: 34px;
  padding-bottom: 44px;
}
@media (min-width: 780px) {
  .footer-grid { grid-template-columns: 1.6fr 1fr 1.3fr 1fr; }
}
.footer-brand img { width: auto; height: 76px; margin-bottom: 14px; }
.footer-brand p { font-size: var(--t-small); color: var(--ink-2); max-width: 34ch; }
.footer h3 {
  font-family: var(--sans);
  font-size: var(--t-micro);
  font-weight: 600;
  color: var(--ink-2);
  margin-bottom: 10px;
}
.footer p { font-size: var(--t-small); }
.footer a:hover { color: var(--purple); }

.footer-base {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding-top: 20px;
  padding-bottom: 26px;
  border-top: 1px solid var(--rule-2);
  font-size: var(--t-micro);
  color: var(--ink-2);
}

/* ==========================================================================
   Navigation mobile
   ========================================================================== */
@media (max-width: 1040px) {
  .nav {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--rule);
    padding: 4px var(--gut) 16px;
    margin-left: 0;
    display: none;
  }
  .nav.open { display: flex; }
  .nav a { padding: 13px 0; border-bottom: 1px solid var(--rule); }
  .nav a:last-child { border-bottom: 0; }
  .masthead-row { justify-content: space-between; }
  .masthead-actions { margin-left: auto; }
  .burger { display: block; }
}
@media (max-width: 720px) {
  .masthead-actions .btn { display: none; }
  .brand img { height: 52px; }
  .contact-details > div { grid-template-columns: 1fr; gap: 2px; }
  .topic-list { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: .01ms !important; }
}
