/* ============================================
   Laetitia TRY — Soins énergétiques
   Style 1 — Chill / Naturel
   ============================================ */

:root {
  --sable: #efe8de;
  --blanc-casse: #faf7f2;
  --gris-chaud: #7a746a;
  --gris-texte: #4a453e;
  --encre: #2c2924;
  --sauge: #7c8a6c;
  --sauge-fonce: #5f6b52;
  --sauge-clair: #e4e8de;
  --terracotta: #b06a4f;
  --ligne: rgba(44, 41, 36, 0.1);
  --ombre-douce: 0 10px 30px -12px rgba(44, 41, 36, 0.12);
  --rayon: 10px;
  --rayon-lg: 16px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-serif: "Fraunces", Georgia, "Times New Roman", serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--blanc-casse);
  color: var(--gris-texte);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; border-radius: var(--rayon); }

a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  font-family: var(--font-serif);
  color: var(--encre);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.1rem, 4.5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 1rem; }
h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }

p {
  margin-bottom: 1rem;
  text-align: justify;
  text-wrap: pretty;
  -webkit-hyphens: none;
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}

/* Short, centered taglines read better centered than justified */
.section-head p,
.cta-banner p,
.etapes-note,
.avis-liens,
.faq-preview-note {
  text-align: center;
  hyphens: none;
  -webkit-hyphens: none;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 90px 0;
}

.section-sable { background: var(--sable); }

.eyebrow {
  position: relative;
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sauge-fonce);
  margin-bottom: 14px;
  padding-bottom: 10px;
}
.eyebrow::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 28px;
  height: 2px;
  background: var(--sauge);
}

.section-head {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-head p { color: var(--gris-chaud); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--rayon);
  font-weight: 600;
  font-size: 0.98rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
  will-change: transform;
}
.btn-primary {
  background: var(--sauge);
  color: #fff;
}
.btn-primary:hover {
  background: var(--sauge-fonce);
  transform: translateY(-2px);
  box-shadow: var(--ombre-douce);
}
.btn-outline {
  background: transparent;
  border-color: var(--gris-chaud);
  color: var(--encre);
}
.btn-outline:hover {
  background: rgba(124, 138, 108, 0.07);
  border-color: var(--sauge-fonce);
  color: var(--sauge-fonce);
  transform: translateY(-2px);
}
.btn-sm { padding: 10px 20px; font-size: 0.9rem; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(44, 41, 36, 0.04);
  box-shadow: 0 0 0 rgba(44, 41, 36, 0);
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.nav.scrolled {
  background: rgba(250, 247, 242, 0.95);
  border-bottom-color: var(--ligne);
  box-shadow: 0 14px 32px -20px rgba(44, 41, 36, 0.28);
}
.nav-inner {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding 0.35s var(--ease);
}
.nav.scrolled .nav-inner { padding: 12px 24px; }
.logo {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--encre);
  letter-spacing: -0.01em;
  transition: transform 0.3s var(--ease);
}
.logo-icon {
  height: 42px;
  width: auto;
  margin-right: 9px;
  display: block;
}
.logo:hover { transform: scale(1.03); }
.logo span { color: var(--sauge-fonce); transition: color 0.3s var(--ease); }
.logo:hover span { color: var(--sauge); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 0.95rem;
  color: var(--gris-texte);
  position: relative;
  padding: 4px 0;
  transition: color 0.25s var(--ease);
}
.nav-links a.active { color: var(--sauge-fonce); font-weight: 600; }
.nav-indicator {
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 3px;
  background: var(--sauge);
  border-radius: 2px;
  transform-origin: left center;
  transform: translateX(0) scaleX(0);
  transition: transform 0.35s var(--ease), opacity 0.25s var(--ease);
  opacity: 0;
  pointer-events: none;
}
.nav-indicator.visible { opacity: 1; }
.nav-cta { display: flex; align-items: center; gap: 20px; }
.nav-cta-btn { gap: 7px; }
.cta-arrow { width: 15px; height: 15px; flex-shrink: 0; transition: transform 0.3s var(--ease); }
.nav-cta-btn:hover .cta-arrow { transform: translateX(3px); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  position: relative;
  z-index: 97;
}
.nav-toggle span {
  width: 24px; height: 2px; background: var(--encre); border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.25s var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(44, 41, 36, 0.28);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
  z-index: 94;
}

@media (max-width: 860px) {
  .nav-indicator { display: none; }
  .nav-backdrop { display: block; }
  .nav-backdrop.visible { opacity: 1; pointer-events: auto; }
  .nav-links {
    position: fixed;
    top: var(--nav-h, 68px); left: 0; right: 0;
    background: var(--blanc-casse);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 24px 20px;
    border-bottom: 1px solid var(--ligne);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s var(--ease);
    z-index: 96;
  }
  .nav-links.open { opacity: 1; pointer-events: auto; }
  .nav-links li {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid var(--ligne);
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  }
  .nav-links.open li { opacity: 1; transform: translateY(0); }
  .nav-cta .btn-primary.desktop-only { display: none; }
  .nav-toggle { display: flex; }
}

@media (prefers-reduced-motion: reduce) {
  .nav, .nav-inner, .logo, .logo span, .nav-indicator, .nav-links a, .nav-links li,
  .nav-backdrop, .cta-arrow, .nav-toggle span { transition: none; }
}

/* ---------- Hero ---------- */
.hero {
  padding: 70px 0 90px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.hero-text p.lead { font-size: 1.1rem; color: var(--gris-chaud); max-width: 480px; }
.hero-cta { display: flex; gap: 16px; margin-top: 28px; flex-wrap: wrap; }
.hero-media {
  position: relative;
}
.hero-media::before {
  content: "";
  position: absolute;
  top: -24px;
  right: -24px;
  width: 70%;
  height: 70%;
  background: var(--sauge-clair);
  border-radius: var(--rayon-lg);
  z-index: 0;
}
.hero-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: 50% 20%;
  box-shadow: var(--ombre-douce);
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; max-width: 340px; margin: 0 auto; }
  .hero-text { text-align: center; }
  .hero-text p.lead { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
}

/* ---------- Price banner ---------- */
.price-banner {
  text-align: center;
  font-weight: 600;
  color: var(--sauge-fonce);
  background: var(--sauge-clair);
  border: 1px solid rgba(124, 138, 108, 0.3);
  display: inline-block;
  padding: 10px 22px;
  border-radius: 999px;
  margin: 0 auto 40px;
}
.price-banner-wrap { text-align: center; }

/* ---------- Cards soins ---------- */
.soins-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.soin-card {
  background: var(--blanc-casse);
  border: 1px solid var(--ligne);
  border-radius: var(--rayon-lg);
  padding: 32px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}
.soin-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--ombre-douce);
  border-color: var(--sauge);
}
.soin-card-img {
  margin: -32px -32px 20px;
  border-radius: var(--rayon-lg) var(--rayon-lg) 0 0;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.soin-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}
.soin-badge {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--sauge-clair);
  border: 1px solid rgba(124, 138, 108, 0.4);
  color: var(--sauge-fonce);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  margin-bottom: 18px;
  font-size: 1.1rem;
}
.soin-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--gris-chaud);
  margin-bottom: 6px;
}
.tag-icon {
  width: 14px;
  height: 14px;
  color: var(--sauge);
  flex-shrink: 0;
}
.soin-card p { color: var(--gris-chaud); font-size: 0.98rem; flex-grow: 1; }
.soin-card .btn { margin-top: 18px; align-self: flex-start; }

@media (max-width: 900px) {
  .soins-grid { grid-template-columns: 1fr; }
}

/* ---------- Pourquoi consulter ---------- */
.pourquoi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.problemes-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.problemes-list li {
  display: flex; align-items: flex-start; gap: 12px;
  background: #fff;
  border: 1px solid var(--ligne);
  padding: 16px 18px;
  border-radius: var(--rayon);
  font-weight: 500;
  color: var(--encre);
}
.problemes-list li::before {
  content: "•";
  color: var(--sauge);
  font-size: 1.4rem;
  line-height: 1;
}
.solution-block { color: var(--gris-chaud); }
.solution-block strong { color: var(--encre); }

@media (max-width: 900px) {
  .pourquoi-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- Mon approche ---------- */
.approche-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.approche-text p { color: var(--gris-chaud); }
.approche-media img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: 32% 42%;
  border-radius: var(--rayon-lg);
  box-shadow: var(--ombre-douce);
}
@media (max-width: 900px) {
  .approche-grid { grid-template-columns: 1fr; }
  .approche-grid .approche-media { order: -1; }
  .approche-text { text-align: center; }
}

/* ---------- Deroule ---------- */
.etapes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  gap: 24px;
}
.etape-card {
  background: #fff;
  border: 1px solid var(--ligne);
  border-radius: var(--rayon-lg);
  padding: 30px;
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.etape-card:hover,
.etape-card:focus-within,
.etape-card.open {
  transform: translateY(-6px);
  box-shadow: var(--ombre-douce);
  border-color: var(--sauge);
  outline: none;
}
.etape-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.etape-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--sauge-clair);
  border: 1px solid rgba(124, 138, 108, 0.4);
  color: var(--sauge-fonce);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.etape-num svg { width: 24px; height: 24px; }
.etape-more {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--sauge-clair);
  color: var(--sauge-fonce);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}
.etape-more svg { width: 13px; height: 13px; }
.etape-card:hover .etape-more,
.etape-card:focus-within .etape-more,
.etape-card.open .etape-more { transform: rotate(180deg); }
.etape-teaser { color: var(--gris-chaud); font-size: 0.97rem; margin-bottom: 0; }
.etape-detail {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  border-top: 1px solid transparent;
  transition: max-height 0.4s var(--ease), opacity 0.3s var(--ease), margin-top 0.4s var(--ease), border-color 0.3s var(--ease);
}
.etape-detail p {
  color: var(--gris-chaud);
  font-size: 0.95rem;
  padding-top: 14px;
  margin-bottom: 0;
}
.etape-card:hover .etape-detail,
.etape-card:focus-within .etape-detail,
.etape-card.open .etape-detail {
  max-height: 260px;
  opacity: 1;
  margin-top: 14px;
  border-top-color: var(--ligne);
}
.etapes-note { text-align: center; color: var(--gris-chaud); margin-top: 36px; font-style: italic; }

@media (max-width: 700px) {
  .etapes-grid { grid-template-columns: 1fr; gap: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .etape-card, .etape-more, .etape-detail { transition: none; }
}

/* ---------- Avis marquee ---------- */
.avis-section {
  position: relative;
  overflow: hidden;
  background: var(--sable);
  padding: 90px 0 96px;
  border-top: 1px solid var(--ligne);
  border-bottom: 1px solid var(--ligne);
}
.avis-section::before {
  content: "";
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 640px;
  height: 320px;
  background: radial-gradient(closest-side, rgba(124,138,108,0.16), transparent);
  pointer-events: none;
}

.marquee-row {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
}
.marquee-row.left { animation: scrollLeft 60s linear infinite; margin-bottom: 20px; }
.marquee-row.right { animation: scrollRight 68s linear infinite; }
.marquee-track:hover .marquee-row { animation-play-state: paused; }

@keyframes scrollLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes scrollRight {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

.avis-card {
  flex: 0 0 auto;
  width: 340px;
  background: #fff;
  border: 1px solid var(--ligne);
  border-radius: var(--rayon-lg);
  padding: 26px;
  color: var(--gris-texte);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.avis-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: var(--sauge);
  box-shadow: var(--ombre-douce);
}
.avis-card .avis-quote {
  font-size: 0.96rem;
  line-height: 1.65;
  margin-bottom: 14px;
  color: var(--encre);
}
.avis-card .avis-auteur {
  font-weight: 600;
  color: var(--sauge-fonce) !important;
  font-size: 0.9rem;
}
.avis-card .avis-type {
  font-size: 0.8rem;
  color: var(--gris-chaud);
}
.avis-liens {
  position: relative;
  text-align: center;
  margin-top: 44px;
  font-size: 0.92rem;
  color: var(--gris-chaud);
}
.avis-liens a { color: var(--sauge-fonce); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

@media (prefers-reduced-motion: reduce) {
  .marquee-row.left, .marquee-row.right { animation: none; }
  .marquee-track { overflow-x: auto; }
}

/* ---------- FAQ preview + full ---------- */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--ligne);
  border-radius: var(--rayon);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--encre);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-question .icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--sauge-clair);
  color: var(--sauge-fonce);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  transition: transform 0.3s var(--ease);
}
.faq-item.open .faq-question .icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease), padding 0.35s var(--ease);
  padding: 0 24px;
  color: var(--gris-chaud);
}
.faq-item.open .faq-answer { padding: 0 24px 22px; }
.faq-preview-note { text-align: center; margin-top: 32px; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--sauge);
  color: #fff;
  text-align: center;
  border-radius: var(--rayon-lg);
  padding: 56px 32px;
  margin: 0 24px;
}
.cta-banner h2 { color: #fff; }
.cta-banner .btn-primary { background: #fff; color: var(--sauge-fonce); }
.cta-banner .btn-primary:hover { background: var(--sable); }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-info-item { display: flex; gap: 14px; margin-bottom: 18px; align-items: flex-start; }
.contact-info-item .icon { width: 22px; height: 22px; color: var(--sauge-fonce); flex-shrink: 0; margin-top: 2px; }
.contact-info-item a { color: var(--sauge-fonce); font-weight: 600; }
.map-wrap { border-radius: var(--rayon-lg); overflow: hidden; box-shadow: var(--ombre-douce); margin: 24px 0; }
.map-wrap iframe { width: 100%; height: 260px; border: 0; display: block; }
.social-links { display: flex; gap: 14px; margin-top: 20px; }
.social-links a {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--sable);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.social-links a:hover { background: var(--sauge-clair); box-shadow: var(--ombre-douce); transform: translateY(-3px); }
.social-links img {
  width: 22px; height: 22px;
  border-radius: 0;
  object-fit: contain;
  display: block;
}

form.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.9rem; font-weight: 600; color: var(--encre); }
.form-group input, .form-group textarea {
  padding: 13px 16px;
  border-radius: var(--rayon);
  border: 1px solid var(--ligne);
  background: #fff;
  font-family: inherit;
  font-size: 0.98rem;
  color: var(--encre);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--sauge);
  box-shadow: 0 0 0 3px rgba(124,138,108,0.18);
}
.form-note { font-size: 0.85rem; color: var(--gris-chaud); }
.form-success {
  display: none;
  background: var(--sauge-clair);
  color: var(--sauge-fonce);
  padding: 16px 20px;
  border-radius: var(--rayon);
  font-weight: 600;
}
.form-success.show { display: block; }

.disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--gris-chaud);
  background: var(--sable);
  padding: 16px 20px;
  border-radius: var(--rayon);
  margin: 32px 0;
}
.disclaimer-icon { width: 20px; height: 20px; color: var(--terracotta); flex-shrink: 0; margin-top: 1px; }
.policy-box {
  font-size: 0.87rem;
  color: var(--gris-chaud);
  border-top: 1px solid var(--ligne);
  padding-top: 24px;
  margin-top: 24px;
}
.policy-box h3 { font-size: 1rem; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ---------- Prestations page ---------- */
.prestations-hero { padding: 64px 0 0; }
.prestations-hero .section-head { max-width: 720px; margin-bottom: 36px; }
.prestations-hero h1 { font-size: clamp(2.3rem, 5vw, 3.4rem); }
.prestations-hero .price-banner-wrap { margin-bottom: 40px; }

/* Sticky sub-nav (in-page table of contents) */
.soins-subnav {
  position: sticky;
  top: var(--nav-h, 68px);
  z-index: 90;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--ligne);
  border-bottom: 1px solid var(--ligne);
}
.soins-subnav-inner {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 24px;
}
.soins-subnav-link {
  position: relative;
  z-index: 1;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gris-chaud);
  padding: 10px 18px;
  border-radius: 999px;
  white-space: nowrap;
  transition: color 0.3s var(--ease);
}
.soins-subnav-link:hover,
.soins-subnav-link.active { color: var(--sauge-fonce); }
.soins-subnav-indicator {
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -19px;
  width: 0;
  height: 38px;
  background: var(--sauge-clair);
  border: 1px solid var(--sauge);
  border-radius: 999px;
  box-sizing: border-box;
  transform: translateX(0);
  transition: transform 0.35s var(--ease), width 0.35s var(--ease), opacity 0.25s var(--ease);
  opacity: 0;
}
.soins-subnav-indicator.visible { opacity: 1; }
@media (max-width: 700px) {
  .soins-subnav-inner {
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .soins-subnav-inner::-webkit-scrollbar { display: none; }
}

/* Soin blocks */
.prestation-block {
  position: relative;
  padding: 64px 0;
  scroll-margin-top: calc(var(--nav-h, 68px) + 64px);
  background: linear-gradient(180deg, transparent, var(--sable) 18%, var(--sable) 82%, transparent);
}
.prestation-block .prestation-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.prestation-block--reverse .prestation-grid { direction: rtl; }
.prestation-block--reverse .prestation-grid > * { direction: ltr; }

.prestation-media { position: relative; }
.prestation-media::before {
  content: "";
  position: absolute;
  top: -18px;
  left: -18px;
  width: 100%;
  height: 100%;
  background: var(--sauge-clair);
  border-radius: var(--rayon-lg);
  z-index: 0;
}
.prestation-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: var(--rayon-lg);
  background: linear-gradient(155deg, rgba(124,138,108,0.22), rgba(124,138,108,0) 60%);
  mix-blend-mode: multiply;
  pointer-events: none;
}
.prestation-media img {
  position: relative;
  z-index: 1;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: 50% 50%;
  width: 100%;
  box-shadow: var(--ombre-douce);
}
.img-cabinet { object-position: 50% 42%; }
.img-portrait { object-position: 50% 22%; }
.img-radiesthesie { object-position: 32% 45%; }

.prestation-meta {
  display: flex;
  gap: 10px;
  margin: 18px 0;
  flex-wrap: wrap;
}
.prestation-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--sauge-clair);
  border: 1px solid rgba(124, 138, 108, 0.25);
  color: var(--sauge-fonce);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 14px;
  line-height: 1.4;
  border-radius: 999px;
}

.prestation-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  max-width: 320px;
  margin: 0 auto;
  padding: 0 24px;
}
.prestation-divider::before,
.prestation-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--ligne));
}
.prestation-divider::after { background: linear-gradient(to left, transparent, var(--ligne)); }
.prestation-divider span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sauge);
  box-shadow: 0 0 10px rgba(124, 138, 108, 0.45);
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .prestation-block .prestation-grid { grid-template-columns: 1fr; }
  .prestation-block--reverse .prestation-grid { direction: ltr; }
  .prestation-media::before { top: -12px; left: -12px; }
}

@media (prefers-reduced-motion: reduce) {
  .soins-subnav-link, .soins-subnav-indicator, .prestation-media { transition: none; }
}

/* ---------- Footer ---------- */
footer {
  background: var(--sable);
  border-top: 3px solid var(--sauge);
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-grid h4 { font-size: 0.95rem; margin-bottom: 14px; color: var(--encre); }
.footer-grid p, .footer-grid a { color: var(--gris-chaud); font-size: 0.92rem; }
.footer-grid ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  color: var(--gris-chaud);
  padding-top: 24px;
  border-top: 1px solid var(--ligne);
}
@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.reveal-img {
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal-img.is-visible { opacity: 1; transform: scale(1); }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-img { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
