/* ============================================================
   Myriam Blanc — Réflexologue, Magnétisme & ondes bien-être
   Feuille de style principale
   ============================================================ */

/* ---------- 1. Jetons de design ---------- */
:root {
  /* Fonds — ivoire, jamais de blanc pur */
  --ivoire:        #FAF6EF;
  --ivoire-warm:   #F4EDE2;
  --ivoire-deep:   #EFE6D8;

  /* Vert sauge — élément secondaire */
  --sauge:         #A9B79E;
  --sauge-soft:    #C7D1BF;
  --sauge-deep:    #7E9071;

  /* Vert olive — titres & boutons */
  --olive:         #5E6B44;
  --olive-deep:    #4A5536;
  --olive-light:   #7C8A5E;

  /* Brun taupe — texte, jamais de noir pur */
  --taupe:         #564C42;
  --taupe-soft:    #66594E;
  --taupe-faint:   #756959;

  /* Rose poudré — finitions, filets, accents */
  --rose:          #E3C7BE;
  --rose-soft:     #F1E1DA;
  --rose-deep:     #C9A398;

  /* Typographie */
  --serif: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  --sans:  "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;

  /* Rythme */
  --shell:   1180px;
  --radius:  2rem;
  --radius-in: calc(2rem - 0.45rem);

  /* Courbes de mouvement */
  --ease:      cubic-bezier(0.32, 0.72, 0, 1);
  --ease-soft: cubic-bezier(0.22, 0.61, 0.36, 1);

  /* Ombres diffuses et chaudes, jamais noires */
  --lift:   0 2px 6px rgba(86, 76, 66, .04), 0 18px 40px -22px rgba(86, 76, 66, .22);
  --lift-2: 0 3px 10px rgba(86, 76, 66, .05), 0 34px 70px -32px rgba(86, 76, 66, .30);
}

/* ---------- 2. Réinitialisation ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--ivoire);
  color: var(--taupe);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.75;
  font-weight: 350;
  letter-spacing: .002em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

figure, dl, dd, blockquote { margin: 0; }
img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--olive);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.015em;
  margin: 0;
}

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

::selection { background: var(--rose); color: var(--olive-deep); }

/* ---------- 3. Grain papier (couche fixe, non interactive) ---------- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- 4. Utilitaires de mise en page ---------- */
.shell {
  width: min(var(--shell), 100% - 3rem);
  margin-inline: auto;
}

.section { padding: clamp(6rem, 12vw, 10.5rem) 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .4rem 1rem .45rem;
  border-radius: 999px;
  background: var(--rose-soft);
  border: 1px solid rgba(201, 163, 152, .4);
  color: var(--olive-deep);
  font-size: .625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .22em;
  line-height: 1;
}
.eyebrow::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--rose-deep);
}

.lede {
  font-size: 1.1875rem;
  line-height: 1.78;
  color: var(--taupe-soft);
  max-width: 54ch;
}

.title-xl { font-size: clamp(2.9rem, 7.2vw, 5.1rem); }
.title-lg { font-size: clamp(2.35rem, 5.2vw, 3.75rem); }
.title-md { font-size: clamp(1.55rem, 2.6vw, 2rem); }

.accent  { font-style: italic; color: var(--sauge-deep); }

/* Filet décoratif rose poudré */
.rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0 auto;
  max-width: 260px;
  color: var(--rose-deep);
}
.rule::before, .rule::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rose), transparent);
}
.rule svg { width: 20px; height: 20px; opacity: .85; }

/* ---------- 5. Boutons ---------- */
.btn {
  --btn-bg: var(--olive);
  --btn-fg: var(--ivoire);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  padding: .6rem .6rem .6rem 1.6rem;
  border: 0;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .02em;
  cursor: pointer;
  box-shadow: var(--lift);
  transition: transform .55s var(--ease), box-shadow .55s var(--ease), background-color .55s var(--ease);
}
.btn:hover  { background: var(--olive-deep); box-shadow: var(--lift-2); }
.btn:active { transform: scale(.978); }
.btn:focus-visible { outline: 2px solid var(--rose-deep); outline-offset: 3px; }

/* Icône imbriquée dans son propre disque */
.btn i {
  display: grid;
  place-items: center;
  width: 2.1rem; height: 2.1rem;
  border-radius: 50%;
  background: rgba(250, 246, 239, .16);
  transition: transform .55s var(--ease), background-color .55s var(--ease);
}
.btn i svg { width: 15px; height: 15px; }
.btn:hover i {
  background: rgba(250, 246, 239, .26);
  transform: translate(3px, -2px) scale(1.06);
}

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--olive-deep);
  box-shadow: none;
  border: 1px solid rgba(169, 183, 158, .55);
  padding: .6rem 1.6rem;
}
.btn--ghost:hover { background: rgba(169, 183, 158, .16); box-shadow: none; }

.btn--light {
  --btn-bg: var(--ivoire);
  --btn-fg: var(--olive-deep);
}
.btn--light:hover { background: #fff9f1; }
.btn--light i { background: rgba(94, 107, 68, .1); }
.btn--light:hover i { background: rgba(94, 107, 68, .16); }

/* ---------- 6. Navigation flottante ---------- */
.nav-wrap {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 30;
  display: flex;
  justify-content: center;
  padding: 1.35rem 1rem;
  pointer-events: none;
}

.nav {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2.1rem);
  padding: .5rem .55rem .5rem .75rem;
  border-radius: 999px;
  background: rgba(250, 246, 239, .72);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  border: 1px solid rgba(227, 199, 190, .45);
  box-shadow: 0 1px 2px rgba(86, 76, 66, .03), 0 22px 44px -30px rgba(86, 76, 66, .35);
  transition: box-shadow .6s var(--ease), background-color .6s var(--ease);
}
.nav.is-stuck {
  background: rgba(250, 246, 239, .88);
  box-shadow: 0 1px 2px rgba(86, 76, 66, .04), 0 26px 54px -28px rgba(86, 76, 66, .42);
}

.nav-brand { display: flex; align-items: center; gap: .7rem; }
.nav-brand img {
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: cover;
  transform: scale(1.06);
}
.nav-brand span {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--olive);
  white-space: nowrap;
  letter-spacing: .01em;
}

.nav-links { display: flex; align-items: center; gap: clamp(.9rem, 1.9vw, 1.7rem); }
.nav-links a {
  position: relative;
  font-size: .8125rem;
  font-weight: 500;
  color: var(--taupe-soft);
  white-space: nowrap;
  transition: color .45s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -5px;
  height: 1px;
  background: var(--rose-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
}
.nav-links a:hover { color: var(--olive); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav .btn { padding: .5rem .5rem .5rem 1.15rem; font-size: .8125rem; }
.nav .btn i { width: 1.8rem; height: 1.8rem; }

/* Bouton hamburger — morphe en croix */
.burger {
  display: none;
  width: 2.6rem; height: 2.6rem;
  border: 0;
  border-radius: 50%;
  background: rgba(169, 183, 158, .18);
  position: relative;
  cursor: pointer;
}
.burger span {
  position: absolute;
  left: 50%; top: 50%;
  width: 17px; height: 1.5px;
  margin-left: -8.5px;
  border-radius: 2px;
  background: var(--olive);
  transition: transform .6s var(--ease), opacity .35s var(--ease);
}
.burger span:nth-child(1) { transform: translateY(-5px); }
.burger span:nth-child(2) { transform: translateY(0); }
.burger span:nth-child(3) { transform: translateY(5px); }
body.menu-open .burger span:nth-child(1) { transform: translateY(0) rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; transform: scaleX(.3); }
body.menu-open .burger span:nth-child(3) { transform: translateY(0) rotate(-45deg); }

/* Voile plein écran du menu mobile */
.menu {
  position: fixed;
  inset: 0;
  z-index: 25;
  display: grid;
  place-items: center;
  background: rgba(250, 246, 239, .93);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .6s var(--ease), visibility .6s var(--ease);
}
body.menu-open .menu { opacity: 1; visibility: visible; }

.menu ul { list-style: none; margin: 0; padding: 0; text-align: center; }
.menu li { overflow: hidden; }
.menu li + li { margin-top: .6rem; }
.menu li a {
  display: block;
  padding: .35rem 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 8vw, 2.9rem);
  color: var(--olive);
  transform: translateY(110%);
  opacity: 0;
  transition: transform .8s var(--ease), opacity .8s var(--ease);
}
body.menu-open .menu li a { transform: translateY(0); opacity: 1; }
body.menu-open .menu li:nth-child(1) a { transition-delay: .08s; }
body.menu-open .menu li:nth-child(2) a { transition-delay: .14s; }
body.menu-open .menu li:nth-child(3) a { transition-delay: .20s; }
body.menu-open .menu li:nth-child(4) a { transition-delay: .26s; }
body.menu-open .menu li:nth-child(5) a { transition-delay: .32s; }
.menu .menu-foot {
  margin-top: 2.6rem;
  opacity: 0;
  transform: translateY(24px);
  transition: transform .8s var(--ease) .4s, opacity .8s var(--ease) .4s;
}
body.menu-open .menu .menu-foot { opacity: 1; transform: translateY(0); }

/* ---------- 7. Coquille à double liseré ---------- */
.bezel {
  padding: .45rem;
  border-radius: var(--radius);
  background: rgba(227, 199, 190, .2);
  border: 1px solid rgba(227, 199, 190, .5);
  box-shadow: var(--lift);
}
.bezel > * {
  border-radius: var(--radius-in);
  overflow: hidden;
}
.bezel--sage {
  background: rgba(169, 183, 158, .18);
  border-color: rgba(169, 183, 158, .42);
}

/* ---------- 8. Hero ---------- */
.hero {
  position: relative;
  padding: clamp(9rem, 17vw, 12.5rem) 0 clamp(4rem, 7vw, 6rem);
  overflow: hidden;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.hero::before {
  width: 46vw; height: 46vw;
  top: -16vw; right: -12vw;
  background: radial-gradient(circle, rgba(227, 199, 190, .55), transparent 68%);
}
.hero::after {
  width: 38vw; height: 38vw;
  bottom: -14vw; left: -12vw;
  background: radial-gradient(circle, rgba(169, 183, 158, .42), transparent 68%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.02fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}

.hero h1 { margin: 1.6rem 0 1.5rem; }
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 2.3rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem 2.4rem;
  margin-top: 3rem;
  padding-top: 1.9rem;
  border-top: 1px solid rgba(227, 199, 190, .65);
}
.hero-meta > div { display: flex; align-items: flex-start; gap: .7rem; }
.hero-meta svg { width: 17px; height: 17px; color: var(--sauge-deep); flex: none; margin-top: .28rem; }
.hero-meta dt {
  font-size: .625rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--taupe-faint);
  font-weight: 600;
}
.hero-meta dd { margin: .15rem 0 0; font-size: .9375rem; color: var(--taupe); }

/* Colonne visuelle */
.hero-visual { position: relative; }
.hero-visual .bezel > div { aspect-ratio: 1374 / 1145; }
/* La banniere est une image de marque : aucun zoom, rien ne doit etre rogne */
.hero-visual img {
  width: 100%; height: 100%;
  object-fit: contain;
  background: var(--ivoire);
}

/* Pastille flottante « note Google » */
.hero-badge {
  position: absolute;
  left: -1.2rem;
  bottom: -1.5rem;
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .55rem;
  border-radius: 999px;
  background: rgba(250, 246, 239, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(227, 199, 190, .55);
  box-shadow: var(--lift-2);
}
.hero-badge .score {
  display: grid;
  place-items: center;
  width: 2.9rem; height: 2.9rem;
  border-radius: 50%;
  background: var(--olive);
  color: var(--ivoire);
  font-family: var(--serif);
  font-size: 1.15rem;
}
.hero-badge .txt { padding-right: 1rem; }
.hero-badge .stars { color: var(--rose-deep); font-size: .8rem; letter-spacing: .12em; line-height: 1; }
.hero-badge small { display: block; margin-top: .22rem; font-size: .7rem; color: var(--taupe-soft); }

/* ---------- 9. Bandeau de citation ---------- */
.quote-band {
  background: var(--ivoire-warm);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  text-align: center;
}
.quote-band blockquote {
  margin: 0 auto;
  max-width: 40ch;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.5rem, 3.2vw, 2.35rem);
  line-height: 1.35;
  color: var(--olive);
}
.quote-band cite {
  display: block;
  margin-top: 1.5rem;
  font-family: var(--sans);
  font-style: normal;
  font-size: .6875rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--taupe-faint);
}

/* ---------- 10. En-tête de section ---------- */
.sec-head { max-width: 62ch; margin-bottom: clamp(3rem, 6vw, 4.5rem); }
.sec-head.is-centered { margin-inline: auto; text-align: center; }
.sec-head h2 { margin: 1.4rem 0 1.3rem; }

/* ---------- 11. Bento de la réflexologie ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.1rem;
}

.card {
  position: relative;
  /* la largeur de grille est definie par .bento > .card */
  padding: .45rem;
  border-radius: var(--radius);
  background: rgba(169, 183, 158, .14);
  border: 1px solid rgba(169, 183, 158, .34);
  transition: transform .7s var(--ease), border-color .7s var(--ease), background-color .7s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  background: rgba(227, 199, 190, .2);
  border-color: rgba(227, 199, 190, .6);
}
.card-in {
  height: 100%;
  padding: 2.1rem 1.9rem 2.2rem;
  border-radius: var(--radius-in);
  background: var(--ivoire);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .7);
}
.card h3 { font-size: 1.4rem; margin-bottom: .7rem; }
.card p  { font-size: .9375rem; color: var(--taupe-soft); margin: 0; }

.card-icon {
  display: grid;
  place-items: center;
  width: 3rem; height: 3rem;
  margin-bottom: 1.5rem;
  border-radius: 50%;
  background: var(--rose-soft);
  color: var(--olive);
  transition: transform .7s var(--ease), background-color .7s var(--ease);
}
.card:hover .card-icon { transform: scale(1.07) rotate(-4deg); background: var(--rose); }
.card-icon svg { width: 21px; height: 21px; }

/* Carte large — visuel à gauche, texte à droite */
.bento > .card { grid-column: span 4; }
.bento > .card--wide { grid-column: span 8; }
.card--wide .card-in {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 2rem;
  align-items: center;
  padding: .45rem;
  overflow: hidden;
}
.card--wide figure { margin: 0; height: 100%; min-height: 210px; border-radius: var(--radius-in); overflow: hidden; }
.card--wide figure img { width: 100%; height: 100%; object-fit: cover; }
.card--wide .card-body { padding: 1.4rem 2rem 1.4rem .4rem; }

.card--sage .card-in { background: var(--ivoire-warm); }

/* ---------- 12. À propos ---------- */
.about {
  background: var(--ivoire-warm);
  position: relative;
  overflow: hidden;
}
.about-grid {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: clamp(2.5rem, 5.5vw, 5rem);
  align-items: start;
}
.about-visual { position: sticky; top: 7.5rem; }
.about-visual .bezel > div { aspect-ratio: 3 / 4; }
.about-visual img { width: 100%; height: 100%; object-fit: cover; }

.about-sign {
  margin-top: 1.6rem;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--olive);
}

.about-body h3 {
  font-size: 1.6rem;
  margin: 2.9rem 0 1rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.about-body h3:first-of-type { margin-top: 2rem; }
.about-body h3 svg { width: 20px; height: 20px; color: var(--rose-deep); flex: none; }
.about-body p { color: var(--taupe-soft); }
.about-body .first { font-size: 1.15rem; color: var(--taupe); }

.pull {
  margin: 2.4rem 0;
  padding: 1.6rem 1.9rem;
  border-left: 2px solid var(--rose);
  background: rgba(241, 225, 218, .5);
  border-radius: 0 var(--radius-in) var(--radius-in) 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.5;
  color: var(--olive);
}

/* ---------- 13. Tarifs ---------- */
.tarifs-grid {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 1.1rem;
  align-items: start;
}

.price-list { display: flex; flex-direction: column; }
.price-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 1.5rem;
  align-items: baseline;
  padding: 1.15rem .4rem;
  border-bottom: 1px solid rgba(227, 199, 190, .55);
  transition: background-color .5s var(--ease), padding-left .5s var(--ease);
}
.price-row:hover { background: rgba(241, 225, 218, .38); padding-left: 1rem; }
.price-row .nom { font-size: 1.0625rem; color: var(--taupe); }
.price-row .duree {
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--taupe-faint);
  white-space: nowrap;
}
.price-row .prix {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--olive);
  white-space: nowrap;
}

.card-in .price-sub {
  margin: 2.6rem 0 1.1rem;
  font-size: .6875rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--olive);
  font-weight: 600;
}

.card-in .price-note {
  margin-top: 2rem;
  font-size: .8125rem;
  color: var(--taupe-faint);
  line-height: 1.7;
}

/* Carte latérale infos pratiques */
.aside-card .card-in { padding: 2.2rem 2rem; }
.aside-card h3 { font-size: 1.45rem; margin-bottom: 1.4rem; }
.aside-card ul { list-style: none; margin: 0 0 1.8rem; padding: 0; }
.aside-card li {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  padding: .55rem 0;
  font-size: .9375rem;
  color: var(--taupe-soft);
  border-bottom: 1px dashed rgba(227, 199, 190, .7);
}
.aside-card li:last-child { border-bottom: 0; }
.aside-card li svg { width: 16px; height: 16px; color: var(--sauge-deep); flex: none; margin-top: .32rem; }

/* ---------- 14. Avis ---------- */
.avis-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  margin-bottom: 3.5rem;
}
.avis-score {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .8rem 1.5rem .8rem .9rem;
  border-radius: 999px;
  background: var(--ivoire-warm);
  border: 1px solid rgba(227, 199, 190, .6);
}
.avis-score b {
  display: grid;
  place-items: center;
  width: 3rem; height: 3rem;
  border-radius: 50%;
  background: var(--olive);
  color: var(--ivoire);
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.25rem;
}
.avis-score .stars { color: var(--rose-deep); letter-spacing: .16em; line-height: 1.1; }
.avis-score small { display: block; font-size: .75rem; color: var(--taupe-soft); }

.avis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.avis .card-in { display: flex; flex-direction: column; height: 100%; }
.avis .stars { color: var(--rose-deep); letter-spacing: .18em; font-size: .8rem; margin-bottom: 1.1rem; }
.avis blockquote {
  margin: 0 0 1.6rem;
  font-family: var(--serif);
  font-size: 1.1875rem;
  line-height: 1.55;
  color: var(--olive);
  flex: 1;
}
.avis figcaption { display: flex; align-items: center; gap: .75rem; }
.avis .initiale {
  display: grid;
  place-items: center;
  width: 2.3rem; height: 2.3rem;
  border-radius: 50%;
  background: var(--rose-soft);
  color: var(--olive);
  font-family: var(--serif);
  font-size: 1rem;
}
.avis .nom { font-size: .875rem; font-weight: 600; color: var(--taupe); }
.avis .quand { font-size: .75rem; color: var(--taupe-faint); }

/* ---------- 15. Appel final ---------- */
.final {
  position: relative;
  padding: clamp(6.5rem, 13vw, 10rem) 0;
  overflow: hidden;
  text-align: center;
  color: var(--ivoire);
}
.final-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.final-bg img { width: 100%; height: 100%; object-fit: cover; }
.final::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(74, 85, 54, .82), rgba(74, 85, 54, .9));
}
.final h2 { color: var(--ivoire); margin: 1.5rem auto 1.5rem; max-width: 16ch; }
.final .eyebrow { background: rgba(250, 246, 239, .14); border-color: rgba(250, 246, 239, .3); color: var(--ivoire); }
.final .eyebrow::before { background: var(--rose); }
.final p { color: rgba(250, 246, 239, .82); max-width: 48ch; margin-inline: auto; }
.final .hero-cta { justify-content: center; margin-top: 2.6rem; }
.final .btn--ghost { --btn-fg: var(--ivoire); border-color: rgba(250, 246, 239, .42); }
.final .btn--ghost:hover { background: rgba(250, 246, 239, .12); }

/* ---------- 16. Pied de page ---------- */
.footer {
  background: var(--ivoire-warm);
  padding: clamp(4rem, 8vw, 6rem) 0 2.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(227, 199, 190, .6);
}
.footer-brand { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.3rem; }
.footer-brand img { width: 58px; height: 58px; border-radius: 50%; object-fit: cover; transform: scale(1.06); }
.footer-brand strong { display: block; font-family: var(--serif); font-size: 1.35rem; color: var(--olive); font-weight: 400; }
.footer-brand small { font-size: .6875rem; letter-spacing: .16em; text-transform: uppercase; color: var(--taupe-faint); }
.footer p { font-size: .9375rem; color: var(--taupe-soft); max-width: 34ch; }

.footer h4 {
  font-family: var(--sans);
  font-size: .625rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--taupe-faint);
  font-weight: 600;
  margin-bottom: 1.2rem;
}
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin-bottom: .7rem; font-size: .9375rem; color: var(--taupe-soft); }
.footer li a { transition: color .45s var(--ease); }
.footer li a:hover { color: var(--olive); }

.socials { display: flex; gap: .6rem; margin-top: 1.6rem; }
.socials a {
  display: grid;
  place-items: center;
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  background: rgba(227, 199, 190, .3);
  border: 1px solid rgba(227, 199, 190, .55);
  color: var(--olive);
  transition: transform .55s var(--ease), background-color .55s var(--ease);
}
.socials a:hover { background: var(--rose); transform: translateY(-3px); }
.socials svg { width: 17px; height: 17px; }

.footer-base {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
  font-size: .75rem;
  color: var(--taupe-faint);
}

/* ---------- 17. Révélations au défilement ---------- */
.reveal {
  opacity: 0;
  transform: translateY(46px);
  filter: blur(7px);
  transition: opacity .95s var(--ease-soft), transform .95s var(--ease), filter .95s var(--ease-soft);
  will-change: transform, opacity;
}
.reveal.is-in {
  opacity: 1;
  transform: none;
  filter: blur(0);
  will-change: auto;
}
.reveal[data-d="1"] { transition-delay: .09s; }
.reveal[data-d="2"] { transition-delay: .18s; }
.reveal[data-d="3"] { transition-delay: .27s; }
.reveal[data-d="4"] { transition-delay: .36s; }
.reveal[data-d="5"] { transition-delay: .45s; }

/* ---------- 18. Adaptations écrans intermédiaires ---------- */
@media (max-width: 1040px) {
  .bento > .card, .bento > .card--wide { grid-column: span 6; }
  .tarifs-grid { grid-template-columns: 1fr; }
  .avis-grid { grid-template-columns: 1fr 1fr; }
  .about-visual { position: static; }
}

/* ---------- 19. Mobile ---------- */
@media (max-width: 860px) {
  .shell { width: calc(100% - 2.5rem); }
  .section { padding: 5rem 0; }

  .nav-links, .nav > .btn { display: none; }
  .burger { display: block; }
  .nav { padding: .45rem .45rem .45rem .7rem; width: calc(100% - 2rem); justify-content: space-between; }

  .hero { padding-top: 7.5rem; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .hero-visual { margin-bottom: 1.4rem; }
  .hero-visual .bezel > div { aspect-ratio: 1374 / 1145; }
  .hero-badge {
    position: static;
    transform: none;
    margin: 1.3rem auto 0;
    width: max-content;
  }
  .hero-meta { gap: 1rem 1.6rem; }

  .bento { gap: .9rem; }
  .bento > .card, .bento > .card--wide { grid-column: span 12; }
  .card--wide .card-in { grid-template-columns: 1fr; }
  .card--wide figure { height: 230px; min-height: 0; }
  .card--wide .card-body { padding: 1.6rem 1.6rem 1.8rem; }

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

  .price-row { grid-template-columns: 1fr auto; row-gap: .25rem; }
  .price-row .duree { grid-column: 1; font-size: .7rem; }
  .price-row .prix { grid-row: 1 / span 2; grid-column: 2; align-self: center; }

  .avis-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ---------- 20. Respect des préférences de mouvement ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; filter: none; }
}

/* ---------- 21. Ancres et navigation au clavier ---------- */
:target,
section[id],
header[id],
main[id] { scroll-margin-top: 7rem; }

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--olive);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn:focus-visible { outline-color: var(--rose-deep); }


/* ---------- 22. Respiration : le mot et les photos du cabinet ---------- */
.respire {
  padding: clamp(3.5rem, 7vw, 6rem) 0 clamp(4.5rem, 8vw, 7rem);
  background: var(--ivoire-warm);
}

.respire-mot {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 3.8rem);
}
.respire-mot p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.4vw, 2.5rem);
  line-height: 1.3;
  color: var(--olive);
}

.respire-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 2.4vw, 1.8rem);
}
.respire figure { margin: 0; }
.respire .bezel > div { aspect-ratio: 1 / 1; overflow: hidden; }
.respire img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.8s var(--ease);
}
.respire figure:hover > .bezel img { transform: scale(1.04); }
.respire figure:hover .ph-media img { transform: none; }

.respire figcaption {
  margin-top: .95rem;
  text-align: center;
  font-size: .625rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--taupe-faint);
}

/* Les photos prises au cabinet sont adoucies pour s'accorder à la palette */
.photo-vraie { filter: saturate(.9) contrast(1.02) brightness(1.02); }

@media (max-width: 860px) {
  .respire-grid { grid-template-columns: 1fr; gap: 1.6rem; }
  .respire .bezel > div { aspect-ratio: 1 / 1; }
}

/* ---------- 23. Compléments de la section accompagnements ---------- */

/* Étiquettes discrètes sous une carte (zones couvertes, modalité) */
.card-in .card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin: 1.2rem 0 0;
}
.card-tags span {
  padding: .28rem .7rem .32rem;
  border-radius: 999px;
  background: var(--rose-soft);
  border: 1px solid rgba(201, 163, 152, .45);
  color: var(--olive-deep);
  font-size: .625rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  line-height: 1;
}

/* Carte pleine largeur — l'intention de Myriam, en clôture de section */
.bento > .card--full { grid-column: span 12; }
.card--full .card-in {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.6rem;
  align-items: start;
  background: var(--ivoire-warm);
  padding: 2.4rem 2.6rem;
}
.card--full .card-icon { margin-bottom: 0; }
.card--full h3 { font-size: 1.5rem; margin-bottom: .7rem; }
.card--full p { max-width: 68ch; }

/* Introduction de la carte de réservation */
.aside-card .aside-intro {
  margin: -.6rem 0 1.5rem;
  font-size: .9375rem;
  color: var(--taupe-soft);
}

/* Réseaux sous le bouton du menu mobile */
.menu-socials {
  display: flex;
  justify-content: center;
  gap: 1.6rem;
  margin-top: 1.4rem;
}
.menu-socials a {
  font-size: .8125rem;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--taupe-soft);
  border-bottom: 1px solid var(--rose);
  padding-bottom: .15rem;
  transition: color .45s var(--ease);
}
.menu-socials a:hover { color: var(--olive); }

@media (max-width: 860px) {
  .bento > .card--full { grid-column: span 12; }
  .card--full .card-in {
    grid-template-columns: 1fr;
    gap: 1.1rem;
    padding: 2rem 1.8rem;
  }
}

/* ---------- 24. Photo du soin crânien : cadrage + voile sur le cache ----------
   Le rectangle noir de la photo d'origine barre le milieu du visage.
   Impossible de montrer la scène sans lui : on le recouvre donc d'un voile
   couleur peau aux bords fondus, bien moins dur à l'oeil que le noir.
   L'image et le voile vivent dans le même bloc .ph-media : ils se cadrent,
   se déplacent et s'agrandissent ensemble, donc le voile reste toujours
   exactement sur le cache, quelle que soit la taille de l'écran.           */
.ph-frame { position: relative; overflow: hidden; }

.ph-media {
  position: absolute;
  width: var(--w);
  left: var(--x);
  top: var(--y);
  aspect-ratio: 1576 / 2100;   /* proportions de la photo d'origine */
  transition: transform 1.8s var(--ease);
}
.respire figure:hover .ph-media { transform: scale(1.035); }

.ph-voile {
  position: absolute;
  left: 11%;
  top: 22%;
  width: 55%;
  height: 35%;
  border-radius: 26%;
  transform: rotate(22deg);
  filter: blur(4px);
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(230, 198, 174, 0) 0%,
    #E6C6AE 22%,
    #E6C6AE 78%,
    rgba(230, 198, 174, 0) 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 18%, #000 82%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0%, #000 18%, #000 82%, transparent 100%);
}

/* ---------- 25. Carte communication animale ---------- */
.card--animal figure img { object-position: 50% 52%; }

/* ---------- 26. Rappel des reseaux sous les boutons d'accueil ---------- */
.hero-reseaux {
  margin: 1rem 0 0;
  font-size: .875rem;
  color: var(--taupe-soft);
}
.hero-reseaux a {
  color: var(--olive);
  font-weight: 500;
  border-bottom: 1px solid var(--rose);
  padding-bottom: .1rem;
  transition: border-color .45s var(--ease);
}
.hero-reseaux a:hover { border-color: var(--olive); }

/* ---------- 27. Portrait de Myriam (section « Mon histoire ») ---------- */
.about-visual img {
  transform: scale(1.16);
  transform-origin: 60% 34%;
}

/* ---------- 28. Carte des soins aux enfants ---------- */
.card--enfant figure img { object-position: 58% 56%; }

/* ---------- 29. Bannière d'accueil : accord avec la palette du site ----------
   L'image d'origine est plus vive que le reste de la page. On abaisse la
   saturation et on pose un voile ivoire très léger par-dessus, pour qu'elle
   se fonde dans le fond sans perdre sa lisibilité.
   Pour la rendre plus vive : monter `saturate` vers 1 et baisser l'opacité
   du voile. Pour l'atténuer encore : l'inverse.                            */
.hero-visual .bezel > div { position: relative; }

.hero-visual img { filter: saturate(.68) contrast(.97); }

.hero-visual .bezel > div::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(250, 246, 239, .15);
  pointer-events: none;
}

/* ---------- 30. Derniers réglages d'affichage ---------- */

/* Par défaut, un élément de grille refuse d'être plus étroit que son contenu :
   sur un écran de 320 px, les cartes de tarifs débordaient. */
.bento > .card,
.tarifs-grid > *,
.avis-grid > *,
.respire-grid > *,
.footer-grid > * { min-width: 0; }

.price-row .nom,
.card-in p,
.aside-card li span { overflow-wrap: break-word; }

/* Les étoiles étaient trop claires pour être lisibles : même famille de
   rose, assombrie jusqu'au seuil de lisibilité (WCAG AA). */
.avis .stars,
.avis-score .stars,
.hero-badge .stars { color: #8C5C4F; }

/* Sur les écrans les plus étroits, on resserre un peu les marges. */
@media (max-width: 380px) {
  .shell { width: calc(100% - 1.8rem); }
  .card-in { padding: 1.7rem 1.3rem 1.8rem; }
  .card--wide .card-body { padding: 1.4rem 1.3rem 1.6rem; }
}

/* ---------- 31. Liens du bas de page ---------- */
.footer-base a {
  color: var(--taupe-soft);
  border-bottom: 1px solid var(--rose);
  padding-bottom: .05rem;
  transition: color .45s var(--ease), border-color .45s var(--ease);
}
.footer-base a:hover { color: var(--olive); border-color: var(--olive); }
