/* =============================================================
   PHYSIO PASQUAL — Une histoire humaine
   Éditorial, calme, chaleureux. Navy #1E3A5F · Orange #E8823C
   ============================================================= */

:root {
  --navy: #1E3A5F;
  --navy-ink: #16283F;
  --orange: #E8823C;
  --cream: #FBF8F2;
  --sand: #F2EADC;
  --ink: #2A333E;
  --muted: #6A7480;
  --line: rgba(30, 58, 95, 0.12);

  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
          "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;

  --gutter: clamp(1.4rem, 5vw, 3rem);
  --breath: clamp(6rem, 14vw, 12rem);   /* énormément d'espace */

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 19px;
  line-height: 1.78;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2 { font-weight: 650; color: var(--navy); line-height: 1.12; letter-spacing: -0.025em; text-wrap: balance; }
h1 { font-size: clamp(2.5rem, 6.5vw, 4.4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.7rem); }
::selection { background: var(--orange); color: #fff; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; border-radius: 4px; }

.skip-link { position: fixed; top: -100px; left: 1rem; padding: .6rem 1.1rem; background: var(--navy); color: var(--cream); z-index: 999; border-radius: 10px; font-weight: 600; }
.skip-link:focus { top: 1rem; }

/* ---------- conteneurs ---------- */
.prose { width: min(660px, 100% - 2 * var(--gutter)); margin-inline: auto; }
.wide  { width: min(1100px, 100% - 2 * var(--gutter)); margin-inline: auto; }
.section { padding-block: calc(var(--breath) / 2); }
.section--breath { padding-block: calc(var(--breath) * .75); }
.section--alt { background: var(--sand); }

/* ---------- header minimal (sur fond cream) ---------- */
.header {
  position: absolute; inset-inline: 0; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem var(--gutter);
}
.brand { display: flex; align-items: center; gap: .7rem; }
.brand-logo { height: 44px; width: auto; background: #fff; border-radius: 999px; padding: 5px 9px; box-shadow: 0 2px 12px rgba(30, 58, 95, .12); }
.brand-text { display: flex; flex-direction: column; line-height: 1.25; }
.brand-name { font-weight: 700; font-size: .98rem; letter-spacing: .15em; text-transform: uppercase; color: var(--cream); }
.brand-name em { font-style: normal; color: var(--orange); }
.brand-tag { font-size: .64rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: rgba(251, 248, 242, .8); }
.header-right { display: flex; align-items: center; gap: 1.1rem; }
.langs { display: flex; align-items: center; gap: .5rem; font-size: .86rem; font-weight: 600; color: rgba(251, 248, 242, .9); }
.langs a { opacity: .7; transition: opacity .25s; }
.langs a:hover { opacity: 1; }
.langs a[aria-current] { opacity: 1; text-decoration: underline; text-underline-offset: 4px; text-decoration-color: var(--orange); }
.langs .dot { opacity: .4; }

.lang-dd { position: relative; }
.lang-dd summary {
  list-style: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: .4rem;
  font-weight: 600; font-size: .9rem; color: var(--navy);
  padding: .5rem 1rem; border: 1.5px solid var(--line); border-radius: 999px;
  background: rgba(251, 248, 242, .92); backdrop-filter: blur(6px);
  box-shadow: 0 2px 12px rgba(30, 58, 95, .08);
  transition: background .3s var(--ease);
}
.lang-dd summary::-webkit-details-marker { display: none; }
.lang-dd summary:hover { background: #fff; }
.lang-dd summary svg { width: 13px; height: 13px; transition: rotate .25s var(--ease); }
.lang-dd[open] summary svg { rotate: 180deg; }
.lang-menu {
  position: absolute; right: 0; top: calc(100% + 8px); z-index: 60;
  min-width: 150px; background: #fff; border-radius: 14px;
  box-shadow: 0 14px 40px rgba(30, 58, 95, .18); border: 1px solid var(--line);
  padding: .4rem; display: grid;
}
.lang-menu a { padding: .55rem .9rem; border-radius: 10px; font-weight: 550; font-size: .95rem; color: var(--navy); }
.lang-menu a:hover { background: var(--sand); }

.header-link {
  font-weight: 600; font-size: .95rem; color: var(--navy);
  padding: .55rem 1.2rem; border: 1.5px solid var(--line); border-radius: 999px;
  background: rgba(251, 248, 242, .92); backdrop-filter: blur(6px);
  box-shadow: 0 2px 12px rgba(30, 58, 95, .08);
  transition: background .3s var(--ease), border-color .3s;
}
.header-link:hover { background: #fff; border-color: var(--navy); }

/* ---------- hero : photo pleine largeur, texte par-dessus ---------- */
.hero { position: relative; min-height: 94svh; display: flex; align-items: flex-end; color: var(--cream); overflow: clip; }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 70% center; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(16, 27, 43, .82) 0%, rgba(16, 27, 43, .38) 46%, rgba(16, 27, 43, .18) 100%);
}
.hero-content { position: relative; z-index: 2; width: 100%; padding-block: clamp(3.2rem, 7vw, 5.5rem); }
.hero h1 { color: var(--cream); max-width: 14ch; }
.hero-sub { max-width: 36rem; margin-top: 1.6rem; font-size: clamp(1.02rem, 1.9vw, 1.2rem); color: rgba(251, 248, 242, .92); }
.hero-sub + .hero-sub { margin-top: 1rem; }
.hero .btn { background: rgba(251, 248, 242, .96); color: var(--navy); }

@keyframes rise { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
.hero-content .wide > * { animation: rise .9s var(--ease) both; }
.hero-content .wide > *:nth-child(2) { animation-delay: .15s; }
.hero-content .wide > *:nth-child(3) { animation-delay: .25s; }
.hero-content .wide > *:nth-child(4) { animation-delay: .38s; }

/* ---------- bouton doux (le seul style de bouton) ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  margin-top: 2.2rem; padding: .85rem 1.6rem; border-radius: 999px;
  font-weight: 600; font-size: 1rem;
  background: var(--navy); color: var(--cream);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  box-shadow: 0 8px 28px rgba(30, 58, 95, .22);
}
.btn svg { color: #7ce3a3; }
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 20px; height: 20px; }
.btn--ink { background: var(--navy); color: var(--cream); box-shadow: 0 8px 28px rgba(30, 58, 95, .25); }
.btn--ink svg { color: #7ce3a3; }

/* ---------- typo éditoriale ---------- */
.kicker {
  display: block; font-size: .8rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 1.6rem;
}
.prose h2 { margin-bottom: 2rem; }
.prose p + p { margin-top: 1.5rem; }
.prose .accent { color: var(--navy); font-weight: 600; }

/* lignes courtes, respiration entre les phrases */
.breathing p { max-width: 34rem; }

/* ---------- photos ---------- */
.photo { border-radius: 22px; overflow: clip; }
.photo img { width: 100%; height: 100%; object-fit: cover; }
.photo--full { width: min(1240px, 100% - 2 * var(--gutter)); margin-inline: auto; }
.photo--full img { aspect-ratio: 16 / 9; }
.photo figcaption { font-size: .88rem; color: var(--muted); padding-top: .9rem; text-align: center; }

/* photo + texte côte à côte — la photo prend la hauteur du texte */
.duo { display: grid; gap: clamp(2.5rem, 6vw, 5rem); align-items: stretch; }
.duo .photo { position: relative; min-height: 300px; }
.duo .photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 880px) { .duo { grid-template-columns: 1fr 1fr; } .duo--flip > :first-child { order: 2; } }
@media (max-width: 879px) { .duo .photo { min-height: 0; aspect-ratio: 4 / 3; } }

/* variant: hero santé — la photo reçoit plus de largeur */
@media (min-width: 880px) {
  .duo--wide-photo { grid-template-columns: 5fr 7fr; align-items: center; }
}

/* variant: photo entière, jamais recadrée (collages, compositions) */
.duo .photo--natural { min-height: 0; align-self: center; }
.duo .photo--natural img { position: static; width: 100%; height: auto; object-fit: unset; }
@media (max-width: 879px) { .duo .photo--natural { aspect-ratio: auto; } }

/* ---------- hero santé : éditorial centré, style Apple ---------- */
.hero--sante { min-height: 64svh; align-items: center; }
.hero--sante .hero-media img { object-position: 93% 12%; }
.hero--sante .hero-content { text-align: center; }
.hero--sante h1 { max-width: 18ch; margin-inline: auto; }
@media (max-width: 720px) { .hero--sante { min-height: 55svh; } }
.hero-sante { text-align: center; padding-top: clamp(7.5rem, 12vw, 10rem); }
.hero-sante--intro { padding-block: clamp(3.6rem, 7vw, 5.5rem) clamp(4.2rem, 8vw, 6.5rem); }
.hero-sante--intro .sub { margin-top: 0; }
.hero-sante--intro .btn-row { margin-top: clamp(1rem, 2.5vw, 1.8rem); }
.hero-sante .kicker { display: inline-flex; }
.hero-sante h1 { font-size: clamp(2.5rem, 5.5vw, 4rem); max-width: 18ch; margin-inline: auto; }
.hero-sante .sub { max-width: 700px; margin: 1.9rem auto 0; color: var(--muted); font-size: clamp(1.04rem, 1.9vw, 1.2rem); line-height: 1.75; }
.hero-sante .sub p + p { margin-top: 1.15rem; }
.hero-sante .btn-row { justify-content: center; }
.hero-sante-img {
  width: min(1200px, 100% - 2 * var(--gutter));
  margin: clamp(3.5rem, 7vw, 5.5rem) auto 0;
  border-radius: 34px; overflow: clip;
  box-shadow: 0 30px 80px rgba(30, 58, 95, .18);
}
.hero-sante-img img { width: 100%; height: auto; display: block; }

@keyframes heroSanteImg { from { opacity: 0; transform: scale(.975) translateY(18px); } to { opacity: 1; transform: none; } }
.hero-sante > * { animation: rise .9s var(--ease) both; }
.hero-sante > *:nth-child(2) { animation-delay: .1s; }
.hero-sante > *:nth-child(3) { animation-delay: .2s; }
.hero-sante > *:nth-child(4) { animation-delay: .32s; }
.hero-sante-img { animation: heroSanteImg 1.15s var(--ease) .4s both; }

/* ---------- À chaque âge : diaporama doux (3 photos entières) ---------- */
.ages { position: relative; align-self: stretch; width: 100%; }
.ages-slide {
  position: absolute; inset: 0;
  border-radius: 32px; overflow: clip;
  box-shadow: 0 24px 60px rgba(30, 58, 95, .16);
}
.ages-slide img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0; animation: agesFade 15s infinite;
}
.ages-slide img:nth-child(1) { object-position: 50% 45%; }
.ages-slide img:nth-child(2) { animation-delay: 5s; object-position: 50% 25%; }
.ages-slide img:nth-child(3) { animation-delay: 10s; object-position: 50% 38%; }
@media (max-width: 879px) {
  .ages { align-self: auto; }
  .ages-slide { position: relative; aspect-ratio: 3 / 4; }
}
@keyframes agesFade {
  0% { opacity: 0; }
  4% { opacity: 1; }
  33.3% { opacity: 1; }
  38% { opacity: 0; }
  100% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .ages-slide img { animation: none; }
  .ages-slide img:first-child { opacity: 1; }
}

/* intro + points clés */
.ages-intro { font-size: clamp(1.08rem, 2vw, 1.25rem); color: var(--muted); margin-top: 1.2rem; }
.feats { display: flex; flex-wrap: wrap; gap: clamp(1.4rem, 4vw, 2.8rem); margin-top: 2.4rem; }
.feat { display: flex; align-items: center; gap: .7rem; font-weight: 650; color: var(--navy); }
.feat .chip { flex: none; width: 2.7rem; height: 2.7rem; border-radius: 50%; background: rgba(232, 130, 60, .12); display: flex; align-items: center; justify-content: center; }
.feat svg { width: 21px; height: 21px; color: var(--orange); }
html.js .reveal .feat { opacity: 0; transform: translateY(12px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
html.js .reveal.is-in .feat { opacity: 1; transform: none; }
html.js .reveal.is-in .feat:nth-child(1) { transition-delay: .35s; }
html.js .reveal.is-in .feat:nth-child(2) { transition-delay: .5s; }
html.js .reveal.is-in .feat:nth-child(3) { transition-delay: .65s; }

/* mosaïque de moments */
.moments { display: grid; gap: 1.2rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 720px) { .moments { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }
.moments .photo { aspect-ratio: 1 / 1; }
.moments .photo.tall { grid-row: span 2; aspect-ratio: auto; }

/* ---------- avis Google ---------- */
.gbadge {
  display: inline-flex; align-items: center; gap: .6rem;
  margin-bottom: 2.4rem; padding: .55rem 1.15rem;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  box-shadow: 0 4px 18px rgba(30, 58, 95, .07);
  font-weight: 650; color: var(--navy); font-size: 1rem;
}
.gbadge svg { width: 20px; height: 20px; flex: none; }
.gbadge .gstars { color: #FBBC05; font-size: .92rem; letter-spacing: .08em; }
.gbadge .gmuted { color: var(--muted); font-weight: 500; font-size: .92rem; }
.words--google { gap: 1.9rem; }
.words--google p { font-size: clamp(1.02rem, 1.8vw, 1.18rem); line-height: 1.65; max-width: 52ch; }
.words--google span { margin-top: .45rem; }

/* ---------- témoignages sobres ---------- */
.words { display: grid; gap: 2.6rem; }
.duo .words { grid-template-columns: 1fr !important; column-gap: 0; }
.words p { font-size: clamp(1.2rem, 2.4vw, 1.55rem); line-height: 1.5; color: var(--navy); font-weight: 500; max-width: 30ch; }
.words span { display: block; margin-top: .6rem; font-size: .9rem; font-weight: 500; color: var(--muted); }
@media (min-width: 880px) { .words { grid-template-columns: 1fr 1fr; column-gap: 4rem; } }

/* ---------- philosophie (bandeau sombre et calme) ---------- */
.philosophy { background: var(--navy-ink); color: rgba(251, 248, 242, .88); }
.philosophy .photo { box-shadow: 0 18px 60px rgba(0, 0, 0, .35); }
.philosophy .photo img { object-position: 55% 45%; }
.philosophy h2 { color: var(--cream); }
.philosophy .kicker { color: var(--orange); }

/* ---------- contact ---------- */
.contact { text-align: center; }
.contact-avatar { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; margin: 0 auto 1.6rem; box-shadow: 0 10px 34px rgba(30, 58, 95, .18); }
.contact p { max-width: 32rem; margin-inline: auto; }
.contact .alt { margin-top: 1.6rem; font-size: .92rem; color: var(--muted); }
.contact .alt a { color: var(--navy); font-weight: 600; }

/* ---------- santé & zinzino ---------- */
.btn--ghost {
  background: transparent; color: var(--navy);
  border: 1.5px solid rgba(30, 58, 95, .3); box-shadow: none;
}
.btn--ghost:hover { border-color: var(--navy); }
.btn--ghost svg { color: var(--navy); }
.btn-row { display: flex; flex-wrap: wrap; gap: .9rem; align-items: center; }
.btn-row .btn { margin-top: 1.4rem; }
.ext-ico { width: 15px; height: 15px; margin-left: .1rem; opacity: .7; }

.promo-card {
  background: #fff; border: 1px solid rgba(30, 58, 95, .1); border-radius: 24px;
  padding: clamp(2rem, 5vw, 3.2rem);
  box-shadow: 0 6px 28px rgba(30, 58, 95, .06);
}
.promo-card h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
.promo-card p { max-width: 40rem; }

.page-hero { padding: clamp(7rem, 13vw, 9.5rem) 0 clamp(2.5rem, 5vw, 4rem); }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }

.pillars { display: grid; gap: 1.3rem; grid-template-columns: 1fr; margin-top: 2.5rem; }
@media (min-width: 640px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pillars { grid-template-columns: repeat(4, 1fr); } }
.pillar { background: #fff; border: 1px solid rgba(30, 58, 95, .1); border-radius: 18px; padding: 1.5rem 1.5rem 1.6rem; }
.pillar h3 { font-size: 1.08rem; font-weight: 650; color: var(--navy); margin-bottom: .55rem; }
.pillar p { font-size: .95rem; color: var(--muted); line-height: 1.6; }
.pillar .num { display: inline-flex; width: 1.9rem; height: 1.9rem; border-radius: 50%; background: rgba(232, 130, 60, .14); color: var(--orange); font-weight: 700; font-size: .95rem; align-items: center; justify-content: center; margin-bottom: .9rem; }

.stepsz { list-style: none; padding: 0; counter-reset: st; display: grid; gap: .9rem; margin-top: 2.2rem; max-width: 34rem; }
.stepsz li { counter-increment: st; position: relative; padding: .2rem 0 .2rem 3.2rem; font-size: 1.02rem; }
.stepsz li::before { content: counter(st); position: absolute; left: 0; top: 0; width: 2.2rem; height: 2.2rem; border-radius: 50%; background: var(--navy); color: var(--cream); font-weight: 700; display: flex; align-items: center; justify-content: center; font-size: .95rem; }

.who { display: grid; gap: .7rem; margin-top: 2rem; max-width: 36rem; }
.who span { display: flex; gap: .7rem; align-items: baseline; }
.who span::before { content: "—"; color: var(--orange); font-weight: 700; }

.note { background: var(--sand); border-left: 4px solid var(--orange); border-radius: 14px; padding: 1.6rem 1.8rem; max-width: 44rem; }
.note h2 { font-size: 1.3rem; margin-bottom: .8rem; }
.note p { font-size: .98rem; }
.note p + p { margin-top: .9rem; }

/* carte large : complément d'un mode de vie sain */
.basecard {
  background: var(--sand); border-left: 4px solid var(--orange);
  border-radius: 24px;
  padding: clamp(2rem, 5vw, 3.2rem) clamp(1.6rem, 4.5vw, 3.4rem);
}
.basecard h2 { font-size: clamp(1.45rem, 2.6vw, 1.9rem); }
.basecard-intro { color: var(--muted); margin-top: .7rem; }
.base-grid {
  list-style: none; padding: 0; margin-block: 0;
  display: grid; gap: clamp(.8rem, 1.6vw, 1.1rem);
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  margin-top: 1.9rem;
}
.base-item {
  display: flex; align-items: center; gap: .95rem;
  background: #fff; border-radius: 16px; padding: 1rem 1.25rem;
  font-weight: 620; color: var(--navy); line-height: 1.35;
  box-shadow: 0 4px 18px rgba(30, 58, 95, .06);
}
.base-item .chip { flex: none; width: 2.7rem; height: 2.7rem; border-radius: 50%; background: rgba(232, 130, 60, .12); display: flex; align-items: center; justify-content: center; }
.base-item svg { width: 21px; height: 21px; color: var(--orange); }
.basecard-out { margin-top: 1.9rem; color: var(--muted); font-size: .98rem; max-width: 62ch; }
html.js .reveal .base-item { opacity: 0; transform: translateY(12px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
html.js .reveal.is-in .base-item { opacity: 1; transform: none; }
.reveal.is-in .base-item:nth-child(2) { transition-delay: .1s; }
.reveal.is-in .base-item:nth-child(3) { transition-delay: .2s; }
.reveal.is-in .base-item:nth-child(4) { transition-delay: .3s; }

.faq { display: grid; gap: .8rem; margin-top: 2.2rem; max-width: 44rem; }
.faq details { background: #fff; border: 1px solid rgba(30, 58, 95, .1); border-radius: 14px; }
.faq summary { list-style: none; cursor: pointer; padding: 1.05rem 3rem 1.05rem 1.3rem; font-weight: 650; color: var(--navy); position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 1.2rem; top: 50%; translate: 0 -50%; color: var(--orange); font-size: 1.4rem; font-weight: 400; transition: rotate .25s var(--ease); }
.faq details[open] summary::after { rotate: 45deg; }
.faq .a { padding: 0 1.3rem 1.2rem; color: var(--muted); font-size: .98rem; }

/* nav ES : liens supplémentaires, repli mobile */
.nav-salud-short { display: none; }
@media (max-width: 900px) { .nav-home { display: none; } }
@media (max-width: 660px) {
  .nav-salud-full { display: none; }
  .nav-salud-short { display: inline; }
  .nav-m-hide { display: none; }
  .brand-tag { display: none; }
  .header { gap: .8rem; padding-inline: 1rem; }
  .brand { gap: .5rem; }
  .brand { min-width: 0; }
  .brand-name { font-size: .8rem; letter-spacing: .08em; line-height: 1.25; }
  .brand-logo { height: 38px; }
  .header-right { gap: .7rem; flex: none; }
}

/* header: subtiele paginalink */
.header-nav-link { font-weight: 600; font-size: .92rem; color: rgba(251, 248, 242, .92); }
.header-nav-link:hover { color: #fff; text-decoration: underline; text-underline-offset: 4px; text-decoration-color: var(--orange); }

/* ---------- footer minuscule ---------- */
.footer { padding: 3rem var(--gutter) 2.4rem; text-align: center; font-size: .85rem; color: var(--muted); }
.footer a { color: var(--navy); }
.footer .sep { margin-inline: .5rem; color: var(--line); }

/* ---------- reveals très doux ---------- */
.reveal { opacity: 1; transform: none; }
html.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
html.js .reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* lien texte discret */
.tlink { color: var(--navy); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(232, 130, 60, .55); }
.tlink:hover { text-decoration-color: var(--orange); }

/* ============ page santé : raffinement éditorial premium ============ */
/* rythme de fond, presque imperceptible */
.sec-white { background: #fff; }
.sec-grey  { background: #fafaf8; }
.sec-beige { background: #fbfaf7; }

/* beaucoup plus d'air entre les sections */
body.page-sante { background: #fff; }
.page-sante .section { padding-block: clamp(6rem, 10vw, 9rem); }
.page-sante .section--breath { padding-block: clamp(7rem, 12vw, 11rem); }

/* lecture plus calme : colonnes étroites, interligne généreux */
.page-sante .breathing p { max-width: 620px; line-height: 1.85; }
.page-sante .breathing p + p { margin-top: 1.4rem; }
.page-sante .breathing h2 { margin-bottom: 1.7rem; }
.page-sante .prose p { line-height: 1.85; }
.page-sante .breathing .btn-row { margin-top: 1.8rem; }

/* labels de section plus discrets */
.page-sante .kicker { font-size: .72rem; font-weight: 600; letter-spacing: .2em; opacity: .9; }

/* photos : coins plus doux, ombres plus légères, plus d'air */
.page-sante .duo { gap: clamp(3rem, 7vw, 6rem); }
.page-sante .photo { border-radius: 28px; box-shadow: 0 24px 60px rgba(30, 58, 95, .10); }

/* ---------- trio de cartes minimalistes ---------- */
.trio { list-style: none; padding: 0; margin-block: 0; display: grid; gap: clamp(1rem, 2vw, 1.4rem); grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.trio-card {
  background: #fff; border: 1px solid rgba(30, 58, 95, .07);
  border-radius: 24px; padding: clamp(1.8rem, 3vw, 2.4rem);
  box-shadow: 0 8px 30px rgba(30, 58, 95, .05);
}
.trio-card .chip { width: 2.7rem; height: 2.7rem; border-radius: 50%; background: rgba(232, 130, 60, .12); display: flex; align-items: center; justify-content: center; }
.trio-card svg { width: 21px; height: 21px; color: var(--orange); }
.trio-card h3 { margin-top: 1.2rem; font-size: 1.14rem; font-weight: 650; color: var(--navy); }
.trio-card p { margin-top: .5rem; font-size: .95rem; line-height: 1.65; color: var(--muted); }
html.js .reveal .trio-card, html.js .reveal.trio .trio-card { opacity: 0; transform: translateY(14px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
html.js .reveal.is-in .trio-card { opacity: 1; transform: none; }
.reveal.is-in .trio-card:nth-child(2) { transition-delay: .12s; }
.reveal.is-in .trio-card:nth-child(3) { transition-delay: .24s; }

/* ---------- respiration : citation pleine largeur ---------- */
.quote-band { padding: clamp(8rem, 13vw, 11.5rem) var(--gutter); text-align: center; }
.quote-band p {
  font-size: clamp(1.9rem, 4.6vw, 3.4rem); font-weight: 700;
  letter-spacing: -.02em; line-height: 1.32; color: var(--navy);
  max-width: 22ch; margin-inline: auto;
}

/* ---------- BalanceTest : parcours horizontal ---------- */
.journey {
  list-style: none; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: .8rem;
  max-width: 880px; margin: clamp(3.5rem, 7vw, 5.5rem) auto 0;
}
.jstep { text-align: center; position: relative; }
.jstep + .jstep::before {
  content: ""; position: absolute; top: 1.35rem;
  left: calc(-50% + 2.4rem); right: calc(50% + 2.4rem);
  border-top: 1.5px solid rgba(30, 58, 95, .16);
}
.jnum {
  display: inline-flex; width: 2.7rem; height: 2.7rem; border-radius: 50%;
  background: rgba(232, 130, 60, .12); color: var(--orange);
  font-weight: 700; align-items: center; justify-content: center;
}
.jlabel { display: block; margin-top: .85rem; font-weight: 600; color: var(--navy); font-size: .95rem; line-height: 1.35; }
@media (max-width: 640px) {
  .journey { grid-template-columns: repeat(2, 1fr); gap: 1.6rem .8rem; }
  .jstep:nth-child(3)::before { display: none; }
}

/* ---------- bande lifestyle panoramique ---------- */
.life-band { padding: clamp(7rem, 12vw, 10.5rem) var(--gutter); }
.life-line {
  text-align: center; font-size: clamp(1.5rem, 3.4vw, 2.4rem);
  font-weight: 700; letter-spacing: -.015em; line-height: 1.4;
  color: var(--navy); margin-bottom: clamp(2.6rem, 6vw, 4.2rem);
}
.life-photo {
  width: min(1240px, 100%); margin-inline: auto;
  border-radius: 28px; overflow: clip;
  box-shadow: 0 24px 60px rgba(30, 58, 95, .10);
}
.life-photo img { width: 100%; aspect-ratio: 21 / 9; object-fit: cover; object-position: 50% 20%; display: block; }
@media (max-width: 720px) { .life-photo img { aspect-ratio: 4 / 3; } }
html.js .life-photo.reveal { transform: translateY(18px) scale(.985); }
html.js .life-photo.reveal.is-in { transform: none; }

/* ---------- FAQ : accordéons élégants ---------- */
.page-sante .faq details { border-radius: 16px; transition: box-shadow .35s var(--ease), border-color .35s var(--ease); }
.page-sante .faq details:hover { box-shadow: 0 10px 30px rgba(30, 58, 95, .08); border-color: rgba(30, 58, 95, .16); }
.page-sante .faq .a { line-height: 1.75; }

/* ---------- CTA final : grand calme ---------- */
.page-sante .contact { padding-block: clamp(8rem, 13vw, 11rem); }
.page-sante .contact h2 { font-size: clamp(1.9rem, 3.8vw, 2.7rem); max-width: 20ch; margin-inline: auto; }
.page-sante .contact .btn-row { margin-top: 1.2rem; }
